/* Base Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: 'Blinker', sans-serif;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    line-height: normal;
    text-decoration: none;
}

.btn:focus {
    outline: 2px solid var(--outline-or-fill);
    outline-offset: 2px;
}

/* 16px Size Variant */
.btn-16 {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px var(--s) 11px;
}

.btn-16.btn-outline {
    background: transparent;
    border: 1px solid var(--outline-or-fill);
    color: var(--outline-text);
}

.btn-16.btn-outline:hover {
    background: var(--hover-fill);
    color: var(--hover-text);
    border: 1px solid var(--hover-fill);
}

.btn-16.btn-fill {
    background: var(--outline-or-fill);
    color: var(--fill-text);
}

.btn-16.btn-fill:hover {
    background: var(--hover-fill);
    color: var(--hover-text);
}

.btn-16.btn-hover {
    background: var(--hover-fill);
    color: var(--hover-text);
}

/* 18px Size Variant */
.btn-18 {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: capitalize;
    padding: 9px var(--m) 10px;
    height: 42px;
}

.btn-18.btn-outline {
    background: transparent;
    border: 1.5px solid var(--outline-or-fill);
    color: var(--outline-text);
}

.btn-18.btn-outline:hover {
    background: var(--hover-fill);
    color: var(--hover-text);
    border: 1px solid var(--hover-fill);
}

.btn-18.btn-fill {
    background: var(--outline-or-fill);
    color: var(--fill-text);
}

.btn-18.btn-fill:hover {
    background: var(--hover-fill);
    color: var(--hover-text);
}

.btn-18.btn-hover {
    background: var(--hover-fill);
    color: var(--hover-text);
}

/* CTA Size Variant */
.btn-cta {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 13px var(--m) 14px;
    height: 50px;
}

.btn-cta.btn-outline {
    background: transparent;
    border: 1.5px solid var(--outline-or-fill);
    color: var(--outline-text);
}

.btn-cta.btn-outline:hover {
    background: var(--hover-fill);
    color: var(--hover-text);
    border: 1px solid var(--hover-fill);
}

.btn-cta.btn-fill {
    background: var(--outline-or-fill);
    color: var(--fill-text);
}

.btn-cta.btn-fill:hover {
    background: var(--hover-fill);
    color: var(--hover-text);
}

.btn-cta.btn-hover {
    background: var(--hover-fill);
    color: var(--hover-text);
}

/* Submit Button (20px with Icon) */
.btn-submit {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 13px var(--l) 14px;
    height: 50px;
    width: 300px;
}

.btn-submit.btn-fill-orange {
    background: var(--orange-fill);
    color: var(--fill-text-white);
}

.btn-submit.btn-fill-orange:hover {
    background: var(--orange-hover);
    color: var(--hover-text-light);
}

.btn-submit.btn-hover {
    background: var(--orange-hover);
    color: var(--hover-text-light);
}

.btn-submit i {
    font-size: 16px;
    line-height: 0;
}

/* Responsive Design */
@media screen and (max-width: 767px) {
    .btn-submit {
        width: 100%;
        max-width: 300px;
    }
    
    .btn-cta {
        padding-left: 20px;
        padding-right: 20px;
    }
}
