/* Global trade CTA preview — intentionally local until visual approval. */
.brand-original {
    align-items: center;
    display: flex;
    gap: 9px;
    height: 70px;
    justify-content: flex-start;
    width: 184px;
}

.brand-original .brand-emblem {
    display: block;
    flex: 0 0 50px;
    height: 54px;
    overflow: hidden;
    position: relative;
}

.brand-original .brand-emblem img {
    height: 108px;
    left: 50%;
    max-width: none;
    object-fit: contain;
    position: absolute;
    top: -10px;
    transform: translateX(-50%);
    width: 108px;
}

.brand-wordmark {
    color: #29211f;
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    line-height: 1.25;
    white-space: nowrap;
}

.brand-wordmark b {
    color: #9d5128;
    font-size: 10px;
    letter-spacing: 3px;
}

.site-header nav a.nav-trade-cta {
    align-items: center;
    background: linear-gradient(135deg, #9d5128, #61311f);
    border-radius: 999px;
    box-shadow: 0 8px 22px rgba(105, 53, 31, .2);
    color: #fff;
    display: inline-flex;
    gap: 8px;
    padding: 9px 15px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.site-header nav a.nav-trade-cta:hover {
    box-shadow: 0 11px 26px rgba(105, 53, 31, .28);
    transform: translateY(-1px);
}

.site-header nav a.nav-trade-cta span {
    font-size: 17px;
    line-height: 1;
}

.mobile-trade-cta {
    display: none;
}

@media (max-width: 900px) {
    .brand-original {
        height: 62px;
        width: 58px;
    }

    .brand-wordmark {
        display: none;
    }

    .brand-original .brand-emblem {
        flex-basis: 52px;
    }

    .brand-original .brand-emblem img {
        height: 112px;
        width: 112px;
    }

    .site-header nav a.nav-trade-cta {
        justify-content: center;
        padding: 12px 18px;
        width: min(100%, 340px);
    }
}

@media (max-width: 600px) {
    body {
        padding-bottom: 74px;
    }

    .mobile-trade-cta {
        align-items: center;
        backdrop-filter: blur(10px);
        background: linear-gradient(135deg, #9d5128, #61311f);
        border: 1px solid rgba(255, 255, 255, .32);
        border-radius: 999px;
        bottom: 13px;
        box-shadow: 0 14px 34px rgba(35, 25, 20, .34);
        color: #fff;
        display: flex;
        font-size: 14px;
        font-weight: 900;
        gap: 9px;
        justify-content: center;
        left: 12px;
        min-height: 49px;
        padding: 11px 20px;
        position: fixed;
        opacity: 0;
        transform: translateY(14px);
        visibility: hidden;
        width: calc(100% - 92px);
        z-index: 35;
        transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    }

    .mobile-trade-cta.is-visible {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }

    .mobile-trade-cta span {
        font-size: 18px;
        line-height: 1;
    }

    .floating-whatsapp {
        bottom: 14px !important;
        right: 10px !important;
    }
}
