/*--------------------------------------------------------------
# Components
# Reusable interface components used throughout the theme.
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.fixquo-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .625rem;
    min-height: 48px;
    padding: 0 1.5rem;
    border: 1px solid var(--fx-gold);
    border-radius: var(--fx-radius-sm);
    background: var(--fx-gold);
    color: var(--fx-navy);
    font-size: .95rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition:
        background .25s ease,
        border-color .25s ease,
        color .25s ease,
        transform .2s ease,
        box-shadow .25s ease;
}

.fixquo-button:hover,
.fixquo-button:focus-visible {
    background: var(--fx-gold-hover);
    border-color: var(--fx-gold-hover);
    color: var(--fx-navy);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, .08);
}

.fixquo-button:disabled {
    opacity: .6;
    cursor: not-allowed;
    pointer-events: none;
}

/*--------------------------------------------------------------
# Button Variants
--------------------------------------------------------------*/
.fixquo-button--outline {
    background: transparent;
    border-color: #CBD5E1;
    color: var(--fx-heading);
}

.fixquo-button--outline:hover {
    background: #1e3853;
    border-color: var(--fx-gold);
    color: var(--fx-heading);
}

.fixquo-button--light {
    background: var(--fx-white);
    color: var(--fx-gold-dark);
    border-color: var(--fx-gold);
}

.fixquo-button--light:hover {
    background: #FFF7E6;
}

.fixquo-button--small {
    min-height: 40px;
    padding: 0 1rem;
    font-size: .875rem;
}

.fixquo-button--large {
    min-height: 56px;
    padding: 0 2rem;
    font-size: 1rem;
}

.fixquo-button--full {
    width: 100%;
}

/*--------------------------------------------------------------
# Cards
--------------------------------------------------------------*/
.fixquo-card {
    background: var(--fx-white);
    border: 1px solid var(--fx-border);
    border-radius: var(--fx-radius);
    box-shadow: var(--fx-shadow);
}

.fixquo-card__header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--fx-border);
}

.fixquo-card__body {
    padding: 1.5rem;
}

.fixquo-card__footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--fx-border);
}

/*--------------------------------------------------------------
# Badges
--------------------------------------------------------------*/
.fixquo-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .35rem .75rem;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 700;
    line-height: 1;
    text-transform: capitalize;
}

.fixquo-badge--success {
    background: #ECFDF5;
    color: #059669;
}

.fixquo-badge--warning {
    background: #FFF7ED;
    color: #EA580C;
}

.fixquo-badge--danger {
    background: #FEF2F2;
    color: #DC2626;
}

.fixquo-badge--info {
    background: #EFF6FF;
    color: #2563EB;
}

/*--------------------------------------------------------------
# Empty State
--------------------------------------------------------------*/
.fixquo-empty {
    padding: 3rem 2rem;
    text-align: center;
    border: 2px dashed var(--fx-border);
    border-radius: var(--fx-radius);
    background: #FCFDFD;
}

.fixquo-empty__icon {
    margin-bottom: 1rem;
}

.fixquo-empty__title {
    margin: 0 0 .5rem;
    font-size: 1.25rem;
    color: var(--fx-heading);
}

.fixquo-empty__description {
    margin: 0;
    color: var(--fx-text);
}

/*--------------------------------------------------------------
# Section
--------------------------------------------------------------*/
.section {
    padding: 4rem 0;
}

.section-eyebrow {
    margin-bottom: .5rem;
    color: var(--fx-gold);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-align: center;
}

.section-title {
    margin: 0;
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    color: var(--fx-heading);
}

.section-title::after {
    content: "";
    display: block;
    width: 36px;
    height: 3px;
    margin: .875rem auto 0;
    background: var(--fx-gold);
    border-radius: 999px;
}

/*--------------------------------------------------------------
# Check List
--------------------------------------------------------------*/
.check-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: .625rem;
    margin-bottom: .875rem;
    color: var(--fx-text);
}

.check-list li::before {
    content: "✓";
    color: var(--fx-gold);
    font-weight: 700;
    flex-shrink: 0;
}

.site-nav__mobile-actions {
    display: none;
}

@media (max-width: 860px) {

    .site-nav__mobile-actions {
        display: flex;
        flex-direction: column;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, .08);
    }

    .site-nav__mobile-actions a {
        padding: 1rem 0;
        color: #fff;
        text-decoration: none;
    }

}