/* =========================================================
   FLEXI COMMERCE
   HEADER + FOOTER
   PREMIUM / RESPONSIVE / SVG READY
   FINAL CLEAN VERSION — deduplicated
========================================================= */


/* =========================================================
   VARIABLES
========================================================= */

.fc-site-header,
.fc-site-footer {

    --fc-green-950: #052d21;
    --fc-green-900: #073b2a;
    --fc-green-850: #08462f;
    --fc-green-800: #0b5138;
    --fc-green-700: #176a4b;
    --fc-green-600: #23815d;

    --fc-green-soft: #edf7f1;

    --fc-white: #ffffff;

    --fc-text: #17372a;
    --fc-muted: #73827b;

    --fc-gold: #f4a928;
    --fc-gold-light: #f9d385;

    --fc-border: #dfe9e3;

    --fc-ease: cubic-bezier(.22, 1, .36, 1);

    box-sizing: border-box;
}


/* =========================================================
   GLOBAL BOX SIZING
========================================================= */

.fc-site-header *,
.fc-site-header *::before,
.fc-site-header *::after,
.fc-site-footer *,
.fc-site-footer *::before,
.fc-site-footer *::after {
    box-sizing: border-box;
}


/* =========================================================
   HEADER SHELL
========================================================= */

.fc-site-header {

    width: 100%;

    position: sticky;
    top: 0;

    z-index: 9999;

    background:
        linear-gradient(
            135deg,
            #052d21 0%,
            #073b2a 52%,
            #0b4d36 100%
        );

    color: #ffffff;

    border-bottom:
        1px solid rgba(255, 255, 255, .08);

    box-shadow:
        0 5px 24px rgba(0, 0, 0, .12);

    isolation: isolate;
}


.fc-header-inner {

    width: min(1320px, calc(100% - 48px));

    margin: 0 auto;

    position: relative;
}


/* =========================================================
   DESKTOP HEADER
========================================================= */

.fc-desktop-header {

    width: 100%;

    min-height: 92px;

    display: grid !important;

    grid-template-columns:
        270px
        minmax(250px, 1fr)
        minmax(270px, 340px)
        auto;

    align-items: center;

    gap: 26px;

    position: relative;
}


/* =========================================================
   DESKTOP BRAND
========================================================= */

.fc-header-brand {

    min-width: 0;

    display: flex;

    align-items: center;

    justify-content: flex-start;
}


.fc-header-logo {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: auto;

    color: #ffffff !important;

    text-decoration: none !important;

    line-height: 0;

    transition:
        opacity 180ms ease,
        transform 200ms var(--fc-ease);
}


.fc-header-logo:hover {

    color: #ffffff !important;

    opacity: .94;

    transform: translateY(-1px);
}


/* Desktop logo size — single definitive value.
   (the old file set this in three places with two
   different values; this is the one that actually wins) */

.fc-header-logo-image {

    display: block !important;

    width: auto !important;
    height: auto !important;

    max-width: 232px !important;
    max-height: 76px !important;

    object-fit: contain !important;
    object-position: center !important;
}


.fc-header-site-name {

    color: #ffffff !important;

    font-size: 24px;

    font-weight: 700;

    line-height: 1.1;
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.fc-header-navigation {

    min-width: 0;

    display: flex !important;

    align-items: center;

    justify-content: center;

    gap: 5px;

    position: relative;
}


.fc-header-nav-item {

    position: relative;

    display: flex;

    align-items: center;
}


.fc-header-nav-link {

    min-height: 44px;

    padding: 0 14px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 6px;

    position: relative;

    border: 0 !important;

    border-radius: 10px;

    background: transparent !important;

    color: rgba(255, 255, 255, .92) !important;

    font-family: inherit;

    font-size: 14px;

    font-weight: 600;

    line-height: 1;

    white-space: nowrap;

    text-decoration: none !important;

    cursor: pointer;

    outline: none !important;

    box-shadow: none !important;

    -webkit-tap-highlight-color: transparent;

    transition:
        color 180ms ease,
        background-color 180ms ease,
        transform 180ms var(--fc-ease);
}


.fc-header-nav-link:hover {

    color: #ffffff !important;

    background:
        rgba(255, 255, 255, .075) !important;

    transform: translateY(-1px);
}


.fc-header-nav-link::after {

    content: "";

    position: absolute;

    left: 14px;
    right: 14px;

    bottom: 3px;

    height: 2px;

    border-radius: 999px;

    background: #ffffff;

    transform: scaleX(0);

    transform-origin: center;

    transition:
        transform 220ms var(--fc-ease);
}


.fc-header-nav-link:hover::after {

    transform: scaleX(1);
}


/* =========================================================
   DESKTOP CATEGORY DROPDOWN
========================================================= */

.fc-header-dropdown-toggle {

    appearance: none !important;

    -webkit-appearance: none !important;
}


.fc-dropdown-arrow {

    width: 17px;
    height: 17px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    transition:
        transform 220ms var(--fc-ease);
}


.fc-header-nav-item.fc-dropdown-open
.fc-dropdown-arrow {

    transform: rotate(180deg);
}


.fc-header-dropdown {

    width: 275px;

    padding: 8px;

    position: absolute;

    top: calc(100% + 10px);

    left: 50%;

    background: #ffffff;

    border:
        1px solid #e0e9e4;

    border-radius: 15px;

    box-shadow:
        0 22px 55px rgba(3, 35, 23, .20);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transform:
        translate(-50%, -8px)
        scale(.97);

    transition:
        opacity 180ms ease,
        visibility 180ms ease,
        transform 220ms var(--fc-ease);

    z-index: 100;
}


.fc-header-nav-item.fc-dropdown-open
.fc-header-dropdown {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform:
        translate(-50%, 0)
        scale(1);
}


.fc-header-dropdown-link {

    width: 100%;

    min-height: 50px;

    padding: 7px 10px;

    display: flex;

    align-items: center;

    gap: 11px;

    border: 0;

    border-radius: 10px;

    background: transparent;

    color: var(--fc-text);

    font-size: 13px;

    font-weight: 550;

    text-decoration: none;

    transition:
        background-color 180ms ease,
        color 180ms ease,
        padding-left 200ms var(--fc-ease);
}


.fc-header-dropdown-link:hover {

    padding-left: 15px;

    color: var(--fc-green-800);

    background: #f3faf6;
}


/* =========================================================
   DESKTOP DROPDOWN SVG ICON
========================================================= */

.fc-dropdown-icon {

    width: 35px;
    height: 35px;

    min-width: 35px;

    flex: 0 0 35px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: var(--fc-green-soft);

    color: var(--fc-green-800);

    font-size: 0;

    line-height: 0;
}


.fc-dropdown-icon svg {

    width: 19px;
    height: 19px;

    display: block;

    color: currentColor;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.7;

    overflow: visible;
}


.fc-dropdown-icon svg * {

    fill: none;

    stroke: currentColor;
}


.fc-dropdown-all {

    margin-top: 4px;

    padding-top: 9px;

    border-top:
        1px solid #edf2ef;
}


/* =========================================================
   DESKTOP SEARCH — untouched
========================================================= */

.fc-desktop-header .fc-header-search {

    width: 100% !important;

    min-width: 0 !important;

    position: relative !important;

    margin: 0 !important;

    padding: 0 !important;

    transform: none !important;

    align-self: center !important;

    justify-self: stretch !important;

    z-index: 20;
}


.fc-header-search-form {

    width: 100% !important;

    height: 48px !important;

    min-height: 48px !important;

    display: flex !important;

    align-items: center !important;

    position: relative !important;

    margin: 0 !important;

    padding: 0 !important;

    overflow: hidden !important;

    background: #ffffff !important;

    border:
        1px solid rgba(255, 255, 255, .16) !important;

    border-radius: 14px !important;

    box-shadow:
        0 6px 18px rgba(0, 0, 0, .09) !important;
}


.fc-header-search-icon {

    width: 46px !important;
    height: 48px !important;

    min-width: 46px !important;

    flex: 0 0 46px !important;

    display: inline-flex !important;

    align-items: center !important;
    justify-content: center !important;

    color: var(--fc-green-700) !important;

    background: transparent !important;
}


.fc-header-search-icon svg {

    width: 19px !important;
    height: 19px !important;

    display: block !important;

    fill: none !important;

    stroke: currentColor !important;
}


.fc-header-search-input {

    width: 100% !important;

    min-width: 0 !important;

    height: 48px !important;

    margin: 0 !important;

    padding: 0 42px 0 0 !important;

    border: 0 !important;

    outline: 0 !important;

    background: transparent !important;

    color: var(--fc-text) !important;

    font-family: inherit !important;

    font-size: 14px !important;

    font-weight: 450 !important;

    line-height: 48px !important;

    box-shadow: none !important;

    appearance: none !important;

    -webkit-appearance: none !important;
}


.fc-header-search-input:focus {

    border: 0 !important;

    outline: 0 !important;

    box-shadow: none !important;
}


.fc-header-search-input::placeholder {

    color: #7b8983 !important;

    opacity: 1 !important;
}


.fc-header-search-clear {

    width: 30px !important;
    height: 30px !important;

    position: absolute !important;

    top: 50% !important;
    right: 7px !important;

    transform:
        translateY(-50%) !important;

    display: inline-flex !important;

    align-items: center !important;
    justify-content: center !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;

    border-radius: 50% !important;

    background: transparent !important;

    color: #6c7c75 !important;

    font-size: 20px !important;

    font-weight: 400 !important;

    line-height: 1 !important;

    opacity: 0 !important;

    visibility: hidden !important;

    cursor: pointer !important;

    appearance: none !important;

    box-shadow: none !important;
}


.fc-header-search-clear.is-visible {

    opacity: 1 !important;

    visibility: visible !important;
}


.fc-header-search-clear:hover {

    color: var(--fc-green-900) !important;

    background: #edf5f0 !important;
}


/* =========================================================
   AJAX SEARCH RESULTS
========================================================= */

.fc-header-search-results {

    width: 100% !important;

    position: absolute !important;

    top: calc(100% + 9px) !important;

    left: 0 !important;

    margin: 0 !important;

    padding: 7px !important;

    background: #ffffff !important;

    border:
        1px solid #dfe9e3 !important;

    border-radius: 15px !important;

    box-shadow:
        0 20px 50px rgba(4, 35, 23, .20) !important;

    max-height: 430px !important;

    overflow-y: auto !important;

    overflow-x: hidden !important;

    opacity: 0 !important;

    visibility: hidden !important;

    pointer-events: none !important;

    transform: translateY(-7px) !important;

    transition:
        opacity 180ms ease,
        visibility 180ms ease,
        transform 200ms var(--fc-ease);

    z-index: 200 !important;

    scrollbar-width: thin;
}


.fc-header-search-results.is-open {

    opacity: 1 !important;

    visibility: visible !important;

    pointer-events: auto !important;

    transform: translateY(0) !important;
}


/* =========================================================
   SEARCH RESULT ITEM
========================================================= */

.fc-search-result {

    width: 100% !important;

    min-height: 72px !important;

    padding: 8px !important;

    display: flex !important;

    align-items: center !important;

    gap: 11px !important;

    position: relative !important;

    border: 0 !important;

    border-radius: 11px !important;

    background: transparent !important;

    color: var(--fc-text) !important;

    text-decoration: none !important;

    cursor: pointer !important;

    transition:
        background-color 160ms ease,
        transform 160ms var(--fc-ease);
}


.fc-search-result:hover {

    background: #f1f8f4 !important;

    color: var(--fc-text) !important;

    transform: translateX(2px);
}


.fc-search-result-image {

    width: 58px !important;
    height: 58px !important;

    min-width: 58px !important;

    flex: 0 0 58px !important;

    display: inline-flex !important;

    align-items: center !important;
    justify-content: center !important;

    overflow: hidden !important;

    border-radius: 10px !important;

    background: #edf5f0 !important;

    border:
        1px solid #e0ebe5 !important;
}


.fc-search-result-image img {

    width: 100% !important;
    height: 100% !important;

    display: block !important;

    object-fit: cover !important;

    border-radius: 9px !important;
}


.fc-search-result-placeholder {

    width: 100%;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 23px;
}


.fc-search-result-content {

    min-width: 0 !important;

    flex: 1 1 auto !important;

    display: flex !important;

    flex-direction: column !important;

    justify-content: center !important;

    gap: 3px !important;
}


.fc-search-result-title {

    display: block !important;

    width: 100% !important;

    overflow: hidden !important;

    color: #15392c !important;

    font-size: 14px !important;

    font-weight: 650 !important;

    line-height: 1.3 !important;

    white-space: nowrap !important;

    text-overflow: ellipsis !important;
}


.fc-search-result-category {

    display: block !important;

    overflow: hidden !important;

    color: #84938c !important;

    font-size: 11px !important;

    font-weight: 450 !important;

    line-height: 1.3 !important;

    white-space: nowrap !important;

    text-overflow: ellipsis !important;
}


.fc-search-result-bottom {

    width: 100% !important;

    display: flex !important;

    align-items: center !important;

    justify-content: space-between !important;

    gap: 8px !important;

    margin-top: 2px !important;
}


.fc-search-result-pricing {

    min-width: 0;

    display: flex !important;

    align-items: baseline !important;

    gap: 7px !important;
}


.fc-search-result-sale-price,
.fc-search-result-price {

    color: var(--fc-green-800) !important;

    font-size: 13px !important;

    font-weight: 700 !important;

    white-space: nowrap !important;
}


.fc-search-result-old-price {

    color: #9a9f9c !important;

    font-size: 10px !important;

    font-weight: 500 !important;

    text-decoration: line-through !important;

    white-space: nowrap !important;
}


.fc-search-result-stock {

    flex: 0 0 auto !important;

    padding: 3px 7px !important;

    border-radius: 999px !important;

    font-size: 9px !important;

    font-weight: 650 !important;

    line-height: 1.2 !important;

    white-space: nowrap !important;
}


.fc-search-result-stock.in {

    color: #1c694c !important;

    background: #e9f6ee !important;
}


.fc-search-result-stock.out {

    color: #a23b3b !important;

    background: #fbeeee !important;
}


.fc-search-empty {

    width: 100% !important;

    padding: 25px 15px !important;

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    text-align: center !important;

    color: #7c8b84 !important;

    font-size: 13px !important;

    font-weight: 500 !important;
}


.fc-header-search-results.fc-search-loading {

    min-height: 72px !important;
}


.fc-header-search-results.fc-search-loading::before {

    content: "Searching...";

    min-height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #788780;

    font-size: 12px;

    font-weight: 500;
}


/* =========================================================
   DESKTOP ACCOUNT
========================================================= */

.fc-header-actions {

    display: flex !important;

    align-items: center !important;

    justify-content: flex-end !important;

    gap: 8px !important;

    min-width: 0;
}


.fc-header-account {

    min-height: 46px;

    padding: 0 10px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 6px;

    color: rgba(255, 255, 255, .92) !important;

    background: transparent !important;

    border-radius: 10px;

    text-decoration: none !important;

    transition:
        background-color 180ms ease,
        transform 180ms var(--fc-ease);
}


.fc-header-account:hover {

    color: #ffffff !important;

    background:
        rgba(255, 255, 255, .075) !important;

    transform: translateY(-1px);
}


.fc-header-account-icon {

    width: 23px;
    height: 23px;

    display: inline-flex;

    align-items: center;
    justify-content: center;
}


.fc-header-account-icon svg {

    width: 22px;
    height: 22px;

    display: block;

    fill: none;

    stroke: currentColor;
}


.fc-header-account-text {

    font-size: 13px;

    font-weight: 550;

    white-space: nowrap;
}


/* =========================================================
   DESKTOP CART
========================================================= */

.fc-header-actions > .fc-header-cart,
.fc-desktop-cart {

    min-height: 48px;

    padding: 0 14px;

    display: inline-flex !important;

    align-items: center;

    justify-content: center;

    gap: 8px;

    position: relative;

    color: var(--fc-green-900) !important;

    background: #ffffff !important;

    border:
        1px solid rgba(255, 255, 255, .20);

    border-radius: 14px;

    text-decoration: none !important;

    box-shadow:
        0 5px 16px rgba(0, 0, 0, .10);

    transition:
        transform 180ms var(--fc-ease),
        box-shadow 180ms ease;
}


.fc-header-actions > .fc-header-cart:hover,
.fc-desktop-cart:hover {

    color: var(--fc-green-950) !important;

    background: #ffffff !important;

    transform: translateY(-2px);

    box-shadow:
        0 9px 22px rgba(0, 0, 0, .14);
}


.fc-header-cart-icon {

    width: 23px;
    height: 23px;

    display: inline-flex;

    align-items: center;
    justify-content: center;
}


.fc-header-cart-icon svg {

    width: 22px;
    height: 22px;

    display: block;

    fill: none;

    stroke: currentColor;
}


.fc-header-cart-text {

    font-size: 13px;

    font-weight: 600;

    white-space: nowrap;
}


.fc-header-cart-count {

    min-width: 22px;

    height: 22px;

    padding: 0 5px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border-radius: 999px;

    background: var(--fc-gold) !important;

    color: var(--fc-green-950) !important;

    font-size: 10px;

    font-weight: 700;

    line-height: 1;
}


/* =========================================================
   CART ANIMATIONS
========================================================= */

.fc-header-cart.fc-cart-bounce {

    animation:
        fcHeaderCartBounce
        700ms
        cubic-bezier(.34, 1.56, .64, 1);
}


.fc-header-cart-icon.fc-cart-icon-bounce {

    animation:
        fcHeaderCartIconBounce
        700ms
        cubic-bezier(.34, 1.56, .64, 1);
}


.fc-header-cart-count.fc-cart-count-bounce {

    animation:
        fcHeaderCartCountBounce
        500ms
        cubic-bezier(.34, 1.56, .64, 1);
}


@keyframes fcHeaderCartBounce {

    0% { transform: scale(1); }
    20% { transform: translateY(-5px) scale(1.06); }
    40% { transform: translateY(2px) scale(.98); }
    65% { transform: translateY(-3px) scale(1.035); }
    100% { transform: scale(1); }
}


@keyframes fcHeaderCartIconBounce {

    0% { transform: translateY(0) rotate(0) scale(1); }
    20% { transform: translateY(-7px) rotate(-8deg) scale(1.18); }
    40% { transform: translateY(2px) rotate(6deg) scale(.96); }
    65% { transform: translateY(-4px) rotate(-4deg) scale(1.08); }
    100% { transform: translateY(0) rotate(0) scale(1); }
}


@keyframes fcHeaderCartCountBounce {

    0% { transform: scale(1); }
    35% { transform: scale(1.28); }
    65% { transform: scale(.92); }
    100% { transform: scale(1); }
}


/* =========================================================
   MOBILE ELEMENTS HIDDEN BY DEFAULT
========================================================= */

.fc-mobile-header,
.fc-mobile-search,
.fc-mobile-navigation {

    display: none;
}


/* =========================================================================================
   MOBILE — SINGLE CLEAN SOURCE OF TRUTH (≤ 820px)
========================================================================================= */

@media (max-width: 820px) {

    /* -----------------------------------------------------
       HEADER STACKING
    ----------------------------------------------------- */

    .fc-site-header {
        position: sticky !important;
        top: 0 !important;
        z-index: 1000000 !important;
    }

    .fc-header-inner {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .fc-desktop-header {
        display: none !important;
    }


    /* -----------------------------------------------------
       MOBILE HEADER ROW
       (single definitive height — the old file set this
       twice, at 68px and again at 78px)
    ----------------------------------------------------- */

    .fc-mobile-header {
        order: 0;

        width: 100% !important;
        height: 78px !important;
        min-height: 78px !important;

        display: grid !important;
        grid-template-columns: 46px minmax(0, 1fr) 44px 44px !important;
        align-items: center !important;
        column-gap: 6px !important;

        /* extra right padding nudges account + cart slightly
           left, away from the screen edge, without touching
           the hamburger side */
        padding: 0 16px 0 12px !important;
        margin: 0 !important;

        position: relative !important;
        background: transparent !important;
    }


    /* -----------------------------------------------------
       MOBILE HEADER BUTTONS (hamburger / account / cart)
    ----------------------------------------------------- */

    .fc-mobile-menu-toggle,
    .fc-mobile-account,
    .fc-mobile-cart {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;

        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        min-height: 44px !important;

        margin: 0 !important;
        padding: 0 !important;

        border: 1px solid rgba(255, 255, 255, .14) !important;
        border-radius: 13px !important;

        background: rgba(255, 255, 255, .06) !important;
        color: #ffffff !important;
        text-decoration: none !important;

        box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08) !important;

        cursor: pointer !important;
        position: relative !important;

        -webkit-tap-highlight-color: transparent !important;

        transition:
            background-color 180ms ease,
            border-color 180ms ease,
            transform 150ms ease !important;
    }

    .fc-mobile-menu-toggle:hover,
    .fc-mobile-menu-toggle:active,
    .fc-mobile-account:hover,
    .fc-mobile-account:active,
    .fc-mobile-cart:hover,
    .fc-mobile-cart:active {
        background: rgba(255, 255, 255, .12) !important;
        border-color: rgba(255, 255, 255, .26) !important;
        color: #ffffff !important;
        transform: translateY(-1px);
    }

    .fc-mobile-menu-toggle {
        grid-column: 1;
        z-index: 1000001;
    }

    .fc-mobile-account {
        grid-column: 3;
        justify-self: center;
    }

    .fc-mobile-cart {
        grid-column: 4;
        justify-self: end;
    }


    /* -----------------------------------------------------
       HAMBURGER → X ANIMATION
       (this IS the menu close control — the separate
       top-right "×" button has been removed so there is
       only one close affordance)
    ----------------------------------------------------- */

    .fc-mobile-menu-lines {
        width: 20px;
        height: 16px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .fc-mobile-menu-lines span {
        width: 100%;
        height: 2px;
        display: block;
        border-radius: 999px;
        background: #ffffff;
        transform-origin: center;
        transition:
            transform 260ms var(--fc-ease),
            opacity 200ms ease;
    }

    .fc-mobile-menu-toggle.is-open .fc-mobile-menu-lines span:nth-child(1),
    .fc-mobile-menu-toggle.active .fc-mobile-menu-lines span:nth-child(1),
    .fc-mobile-menu-toggle[aria-expanded="true"] .fc-mobile-menu-lines span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .fc-mobile-menu-toggle.is-open .fc-mobile-menu-lines span:nth-child(2),
    .fc-mobile-menu-toggle.active .fc-mobile-menu-lines span:nth-child(2),
    .fc-mobile-menu-toggle[aria-expanded="true"] .fc-mobile-menu-lines span:nth-child(2) {
        opacity: 0;
    }

    .fc-mobile-menu-toggle.is-open .fc-mobile-menu-lines span:nth-child(3),
    .fc-mobile-menu-toggle.active .fc-mobile-menu-lines span:nth-child(3),
    .fc-mobile-menu-toggle[aria-expanded="true"] .fc-mobile-menu-lines span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* the separate close button (top-right "×") is hidden —
       it duplicated the hamburger's own close animation */

    .fc-mobile-menu-close {
        display: none !important;
    }


    /* -----------------------------------------------------
       ACCOUNT / CART ICON SVGs
    ----------------------------------------------------- */

    .fc-mobile-account svg,
    .fc-mobile-cart svg,
    .fc-mobile-cart-icon svg {
        width: 21px !important;
        height: 21px !important;
        display: block !important;
        color: #ffffff !important;
        fill: none !important;
        stroke: currentColor !important;
        stroke-width: 1.8 !important;
        overflow: visible !important;
    }

    .fc-mobile-account svg *,
    .fc-mobile-cart svg *,
    .fc-mobile-cart-icon svg * {
        fill: none !important;
        stroke: currentColor !important;
    }


    /* -----------------------------------------------------
       MOBILE LOGO — true screen-center, no cropping
       (single definitive rule — the old file had three
       conflicting versions of this across nested media
       queries plus a fourth dead-code override at the end)

       Positioned absolutely against the header itself, so
       it sits in the exact middle of the screen regardless
       of the hamburger/account/cart column widths on either
       side. Vertical padding keeps the image comfortably
       inside the 78px header row so nothing gets clipped.
    ----------------------------------------------------- */

    .fc-mobile-header {
        position: relative !important;
    }

    .fc-mobile-logo {
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;

        width: auto !important;
        max-width: calc(100% - 160px) !important;
        height: auto !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        padding: 10px 0 !important;
        margin: 0 !important;

        color: #ffffff !important;
        text-decoration: none !important;
        line-height: 0 !important;

        z-index: 2 !important;
    }

    .fc-mobile-logo-image {
        display: block !important;
        width: auto !important;
        height: auto !important;

        max-width: 100% !important;
        max-height: 64px !important;

        object-fit: contain !important;
        object-position: center !important;

        margin: 0 auto !important;
        padding: 0 !important;
    }

    .fc-mobile-site-name {
        color: #ffffff !important;
        font-size: 17px !important;
        font-weight: 700 !important;
    }


    /* -----------------------------------------------------
       MOBILE CART BADGE (header)
    ----------------------------------------------------- */

    .fc-mobile-cart .fc-header-cart-count {
        position: absolute !important;
        top: -4px !important;
        right: -4px !important;

        min-width: 19px !important;
        height: 19px !important;
        padding: 0 5px !important;

        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;

        border: 2px solid var(--fc-green-900) !important;
        border-radius: 999px !important;

        background: var(--fc-gold) !important;
        color: var(--fc-green-950) !important;

        font-size: 9px !important;
        font-weight: 700 !important;
        line-height: 1 !important;

        z-index: 5 !important;
    }


    /* -----------------------------------------------------
       MOBILE SEARCH — untouched, exactly as before
    ----------------------------------------------------- */

    .fc-mobile-search {
        order: 1;

        width: 100% !important;
        display: block !important;
        position: relative !important;

        margin: 0 !important;
        padding: 0 12px 12px !important;

        background: transparent !important;
        z-index: 20 !important;
    }

    .fc-mobile-search-form {
        width: 100% !important;
        height: 46px !important;
        min-height: 46px !important;

        display: flex !important;
        align-items: center !important;
        position: relative !important;

        margin: 0 !important;
        padding: 0 !important;

        overflow: hidden !important;

        background: #ffffff !important;
        border: 1px solid #dce7e1 !important;
        border-radius: 999px !important;

        box-shadow: 0 8px 22px rgba(0, 0, 0, .14) !important;

        transition:
            box-shadow 180ms ease,
            transform 180ms ease !important;
    }

    .fc-mobile-search-form:focus-within {
        box-shadow:
            0 10px 26px rgba(0, 0, 0, .18),
            0 0 0 3px rgba(244, 169, 40, .25) !important;
        transform: translateY(-1px);
    }

    .fc-mobile-search-icon {
        width: 44px !important;
        height: 46px !important;
        min-width: 44px !important;
        flex: 0 0 44px !important;

        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;

        margin: 0 !important;
        padding: 0 !important;

        background: transparent !important;
        color: var(--fc-green-700) !important;
    }

    .fc-mobile-search-icon svg {
        width: 19px !important;
        height: 19px !important;
        display: block !important;
        fill: none !important;
        stroke: currentColor !important;
    }

    .fc-mobile-search-input {
        width: 100% !important;
        min-width: 0 !important;
        height: 46px !important;

        margin: 0 !important;
        padding: 0 42px 0 0 !important;

        border: 0 !important;
        outline: 0 !important;

        background: transparent !important;
        color: #17372a !important;

        font-family: inherit !important;
        font-size: 15px !important;
        font-weight: 450 !important;
        line-height: 46px !important;

        box-shadow: none !important;
        appearance: none !important;
        -webkit-appearance: none !important;
    }

    .fc-mobile-search-input:focus {
        border: 0 !important;
        outline: 0 !important;
        box-shadow: none !important;
    }

    .fc-mobile-search-input::placeholder {
        color: #7b8983 !important;
        opacity: 1 !important;
    }

    .fc-mobile-search-input::-webkit-search-decoration,
    .fc-mobile-search-input::-webkit-search-cancel-button,
    .fc-mobile-search-input::-webkit-search-results-button,
    .fc-mobile-search-input::-webkit-search-results-decoration {
        -webkit-appearance: none !important;
        appearance: none !important;
    }

    .fc-mobile-search-clear {
        width: 30px !important;
        height: 30px !important;

        position: absolute !important;
        top: 50% !important;
        right: 7px !important;
        transform: translateY(-50%) !important;

        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;

        margin: 0 !important;
        padding: 0 !important;

        border: 0 !important;
        border-radius: 50% !important;

        background: transparent !important;
        color: #687871 !important;

        font-size: 21px !important;
        font-weight: 400 !important;
        line-height: 1 !important;

        opacity: 0 !important;
        visibility: hidden !important;

        appearance: none !important;
        box-shadow: none !important;
        cursor: pointer !important;

        z-index: 10 !important;
    }

    .fc-mobile-search-clear.is-visible {
        opacity: 1 !important;
        visibility: visible !important;
    }

    .fc-mobile-search-clear:hover {
        background: #edf5f0 !important;
        color: #064b39 !important;
    }


    /* -----------------------------------------------------
       MOBILE SEARCH RESULTS — untouched
    ----------------------------------------------------- */

    .fc-mobile-search .fc-header-search-results {
        width: calc(100% - 24px) !important;
        left: 12px !important;
        right: 12px !important;
        top: calc(100% - 4px) !important;

        max-height: min(390px, calc(100dvh - 145px)) !important;

        padding: 7px !important;
        border-radius: 16px !important;

        box-shadow: 0 18px 42px rgba(3, 35, 23, .22) !important;

        z-index: 300 !important;
    }

    .fc-mobile-search .fc-search-result {
        min-height: 68px !important;
        padding: 7px !important;
        gap: 10px !important;
        border-radius: 10px !important;
    }

    .fc-mobile-search .fc-search-result-image {
        width: 52px !important;
        height: 52px !important;
        min-width: 52px !important;
        flex-basis: 52px !important;
        border-radius: 9px !important;
    }

    .fc-mobile-search .fc-search-result-title    { font-size: 13px !important; }
    .fc-mobile-search .fc-search-result-category { font-size: 10px !important; }

    .fc-mobile-search .fc-search-result-sale-price,
    .fc-mobile-search .fc-search-result-price {
        font-size: 12px !important;
    }

    .fc-mobile-search .fc-search-result-old-price {
        font-size: 9px !important;
    }

    .fc-mobile-search .fc-search-result-stock {
        font-size: 8px !important;
        padding: 3px 6px !important;
    }


    /* -----------------------------------------------------
       MOBILE MENU BACKDROP
    ----------------------------------------------------- */

    html.fc-mobile-menu-open,
    body.fc-mobile-menu-open {
        overflow: hidden !important;
        overscroll-behavior: none !important;
    }

    body.fc-mobile-menu-open {
        width: 100% !important;
        position: fixed !important;
        touch-action: pan-y !important;
    }

    body.fc-mobile-menu-open::after {
        content: "";
        position: fixed !important;
        inset: 0 !important;
        z-index: 999998 !important;
        background: rgba(4, 20, 14, .55) !important;
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
        animation: fcOverlayFade .25s ease both;
    }

    @keyframes fcOverlayFade {
        from { opacity: 0; }
        to   { opacity: 1; }
    }


    /* -----------------------------------------------------
       MOBILE NAVIGATION PANEL
       (single definitive rule — this used to be defined
       twice with two different z-index values)
    ----------------------------------------------------- */

    .fc-mobile-navigation {
        order: 2;

        width: 100vw !important;
        display: block !important;

        position: fixed !important;
        inset: 0 !important;

        margin: 0 !important;
        padding: 0 !important;

        height: 100dvh !important;
        max-height: none !important;

        overflow-x: hidden !important;
        overflow-y: auto !important;
        overscroll-behavior: contain !important;
        -webkit-overflow-scrolling: touch !important;

        background:
            linear-gradient(180deg, #0c3a29 0%, #082c1f 100%) !important;

        border: 0 !important;
        border-radius: 0 !important;

        box-shadow: 0 22px 50px rgba(0, 0, 0, .30) !important;

        z-index: 999999 !important;

        visibility: hidden !important;
        opacity: 0 !important;
        transform: translateY(-10px) !important;
        pointer-events: none !important;

        transition:
            opacity 240ms ease,
            transform 280ms var(--fc-ease),
            visibility 240ms ease !important;
    }

    .fc-mobile-navigation.is-open,
    .fc-mobile-navigation.active,
    .fc-mobile-navigation.open,
    .fc-mobile-navigation[aria-hidden="false"] {
        visibility: visible !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
        pointer-events: auto !important;
    }


    /* -----------------------------------------------------
       MOBILE NAV INNER
    ----------------------------------------------------- */

    .fc-mobile-nav-inner {
        width: 100% !important;
        margin: 0 !important;
        min-height: 100% !important;
        padding: 10px 0 calc(24px + env(safe-area-inset-bottom)) !important;
    }


    /* -----------------------------------------------------
       MENU LOGO (inside the open panel)
    ----------------------------------------------------- */

    .fc-mobile-menu-logo {
        min-height: 106px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 20px !important;
        border-bottom: 1px solid rgba(255, 255, 255, .10) !important;
        background: rgba(255, 255, 255, .035) !important;
    }

    .fc-mobile-menu-logo a {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        color: #ffffff !important;
        text-decoration: none !important;
    }

    .fc-mobile-menu-logo img {
        display: block !important;
        width: auto !important;
        max-width: 204px !important;
        max-height: 70px !important;
        object-fit: contain !important;
        margin: 0 auto !important;
    }

    .fc-mobile-menu-logo span {
        color: #ffffff !important;
        font-size: 20px !important;
        font-weight: 600 !important;
    }


    /* -----------------------------------------------------
       MOBILE MENU LIST
    ----------------------------------------------------- */

    .fc-mobile-menu {
        width: 100% !important;
        list-style: none !important;
        margin: 0 !important;
        padding: 6px 10px !important;
    }

    .fc-mobile-menu-item {
        width: 100% !important;
        list-style: none !important;
        margin: 2px 0 !important;
        padding: 0 !important;
    }

    .fc-mobile-menu-item > a,
    .fc-mobile-nav-link {
        width: 100% !important;
        min-height: 52px !important;

        display: flex !important;
        align-items: center !important;
        gap: 12px !important;

        padding: 10px 12px !important;
        margin: 0 !important;

        border: 0 !important;
        border-radius: 13px !important;

        background: transparent !important;
        color: rgba(255, 255, 255, .90) !important;

        font-size: 15px !important;
        font-weight: 500 !important;
        line-height: 1.35 !important;

        text-decoration: none !important;
        outline: none !important;
        box-shadow: none !important;

        -webkit-tap-highlight-color: transparent !important;

        transition:
            background-color 180ms ease,
            padding-left 180ms ease,
            color 180ms ease !important;
    }

    .fc-mobile-menu-item > a:hover,
    .fc-mobile-menu-item > a:active,
    .fc-mobile-nav-link:hover,
    .fc-mobile-nav-link:active {
        color: #ffffff !important;
        background: rgba(255, 255, 255, .075) !important;
        padding-left: 16px !important;
    }


    /* -----------------------------------------------------
       MOBILE NAV ICON CHIP
    ----------------------------------------------------- */

    .fc-mobile-nav-icon {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        flex: 0 0 36px !important;

        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;

        border-radius: 10px !important;
        background: rgba(255, 255, 255, .07) !important;
        color: #ffffff !important;

        font-size: 0 !important;
        line-height: 0 !important;
    }

    .fc-mobile-nav-icon svg {
        width: 20px !important;
        height: 20px !important;
        display: block !important;
        color: #ffffff !important;
        fill: none !important;
        stroke: currentColor !important;
        stroke-width: 1.8 !important;
        overflow: visible !important;
    }

    .fc-mobile-nav-icon svg * {
        fill: none !important;
        stroke: currentColor !important;
    }


    /* -----------------------------------------------------
       CART COUNT INSIDE MOBILE MENU
    ----------------------------------------------------- */

    .fc-mobile-nav-cart-count {
        min-width: 20px !important;
        height: 20px !important;
        padding: 0 6px !important;

        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;

        margin-left: auto !important;

        border-radius: 999px !important;
        background: var(--fc-gold) !important;
        color: var(--fc-green-950) !important;

        font-size: 10px !important;
        font-weight: 700 !important;
        line-height: 1 !important;
    }


    /* -----------------------------------------------------
       CATEGORY GROUP (accordion card)
       single definitive rule — was defined twice with
       slightly different opacity values
    ----------------------------------------------------- */

    .fc-mobile-nav-group {
        width: calc(100% - 20px) !important;
        margin: 6px 10px !important;

        border: 1px solid rgba(255, 255, 255, .09) !important;
        border-radius: 16px !important;
        overflow: hidden !important;

        background: rgba(255, 255, 255, .035) !important;

        transition:
            background-color 180ms ease,
            border-color 180ms ease !important;
    }

    .fc-mobile-nav-group.is-open {
        border-color: rgba(244, 169, 40, .58) !important;
        background: rgba(244, 169, 40, .08) !important;
    }


    /* -----------------------------------------------------
       CATEGORY TOGGLE
    ----------------------------------------------------- */

    .fc-mobile-submenu-toggle,
    .fc-mobile-submenu-toggle:hover,
    .fc-mobile-submenu-toggle:active,
    .fc-mobile-submenu-toggle:focus {
        width: 100% !important;
        min-height: 60px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;

        padding: 10px 12px !important;
        margin: 0 !important;

        border: 0 !important;
        outline: 0 !important;
        box-shadow: none !important;

        -webkit-appearance: none !important;
        appearance: none !important;

        border-radius: 13px !important;
        background: transparent !important;
        color: rgba(255, 255, 255, .90) !important;

        font-family: inherit !important;
        font-size: 15px !important;
        font-weight: 500 !important;
        line-height: 1.35 !important;
        text-align: left !important;

        cursor: pointer !important;

        -webkit-tap-highlight-color: transparent !important;

        transition:
            background-color 180ms ease,
            color 180ms ease !important;
    }

    .fc-mobile-submenu-toggle:focus-visible {
        box-shadow: inset 0 0 0 2px rgba(244, 169, 40, .75) !important;
    }

    .fc-mobile-submenu-toggle:hover,
    .fc-mobile-submenu-toggle:active {
        color: #ffffff !important;
        background: rgba(255, 255, 255, .05) !important;
    }


    /* -----------------------------------------------------
       CATEGORY ARROW
    ----------------------------------------------------- */

    .fc-mobile-submenu-arrow {
        width: 30px !important;
        height: 30px !important;
        min-width: 30px !important;
        margin-left: auto !important;

        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;

        border-radius: 9px !important;
        background: rgba(255, 255, 255, .06) !important;
        color: #ffffff !important;

        transition: transform 220ms var(--fc-ease) !important;
    }

    .fc-mobile-submenu-arrow svg {
        width: 16px !important;
        height: 16px !important;
        display: block !important;
        color: #ffffff !important;
        fill: none !important;
        stroke: currentColor !important;
        stroke-width: 1.8 !important;
    }

    .fc-mobile-nav-group.is-open .fc-mobile-submenu-arrow,
    .fc-mobile-nav-group[aria-expanded="true"] .fc-mobile-submenu-arrow,
    .fc-mobile-submenu-toggle[aria-expanded="true"] .fc-mobile-submenu-arrow {
        transform: rotate(180deg) !important;
    }


    /* -----------------------------------------------------
       CATEGORY SUBMENU
    ----------------------------------------------------- */

    .fc-mobile-submenu {
        width: 100% !important;
        list-style: none !important;

        max-height: 0 !important;
        overflow: hidden !important;
        opacity: 0 !important;

        margin: 0 !important;
        padding: 0 !important;

        background: rgba(0, 0, 0, .14) !important;
        border-radius: 10px !important;

        transition:
            max-height 340ms var(--fc-ease),
            opacity 200ms ease !important;
    }

    .fc-mobile-nav-group.is-open .fc-mobile-submenu,
    .fc-mobile-submenu.is-open,
    .fc-mobile-submenu.open,
    .fc-mobile-submenu.active,
    .fc-mobile-submenu-toggle[aria-expanded="true"] ~ .fc-mobile-submenu {
        max-height: 500px !important;
        opacity: 1 !important;
    }

    .fc-mobile-nav-group .fc-mobile-submenu {
        margin: 0 8px 8px !important;
        border-radius: 12px !important;
        background: rgba(0, 0, 0, .16) !important;
    }


    /* -----------------------------------------------------
       SUBMENU LINKS
    ----------------------------------------------------- */

    .fc-mobile-submenu-link {
        width: 100% !important;
        min-height: 48px !important;

        display: flex !important;
        align-items: center !important;
        gap: 9px !important;

        padding: 10px 12px 10px 16px !important;
        margin: 0 !important;

        border-bottom: 1px solid rgba(255, 255, 255, .05) !important;

        color: rgba(255, 255, 255, .72) !important;

        font-size: 13.5px !important;
        font-weight: 450 !important;
        line-height: 1.4 !important;

        text-decoration: none !important;
        outline: none !important;
        box-shadow: none !important;

        -webkit-tap-highlight-color: transparent !important;

        transition:
            background-color 180ms ease,
            padding-left 180ms ease,
            color 180ms ease !important;
    }

    .fc-mobile-submenu-link:last-child {
        border-bottom: 0 !important;
    }

    .fc-mobile-submenu-link:hover,
    .fc-mobile-submenu-link:active,
    .fc-mobile-submenu-link:focus {
        color: #ffffff !important;
        background: rgba(255, 255, 255, .05) !important;
        padding-left: 20px !important;
        outline: none !important;
        box-shadow: none !important;
    }

    .fc-mobile-submenu-link svg {
        width: 17px !important;
        height: 17px !important;
        flex: 0 0 17px !important;
        display: block !important;
        color: #ffffff !important;
        fill: none !important;
        stroke: currentColor !important;
        stroke-width: 1.7 !important;
    }

    .fc-mobile-submenu-link svg * {
        fill: none !important;
        stroke: currentColor !important;
    }


    /* -----------------------------------------------------
       MOBILE BOTTOM ACCOUNT / CART CARD
       single definitive rule — was defined twice with
       different min-heights and icon sizes; this keeps the
       larger, more refined values
    ----------------------------------------------------- */

    .fc-mobile-bottom-card {
        width: auto !important;

        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;

        margin: 22px 10px 0 !important;
        padding: 8px !important;

        border: 1px solid rgba(255, 255, 255, .13) !important;
        border-radius: 18px !important;

        background:
            linear-gradient(135deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .045)) !important;

        box-shadow:
            0 16px 34px rgba(0, 0, 0, .20),
            inset 0 1px 0 rgba(255, 255, 255, .10) !important;
    }

    .fc-mobile-bottom-item {
        min-width: 0 !important;
        min-height: 112px !important;

        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: center !important;
        gap: 9px !important;

        padding: 14px !important;
        text-align: left !important;

        border: 1px solid rgba(255, 255, 255, .09) !important;
        border-radius: 13px !important;

        background: rgba(2, 28, 18, .26) !important;
        color: #ffffff !important;
        text-decoration: none !important;

        outline: none !important;
        -webkit-tap-highlight-color: transparent !important;

        transition:
            transform 180ms var(--fc-ease),
            background-color 180ms ease,
            border-color 180ms ease !important;
    }

    .fc-mobile-bottom-item:hover,
    .fc-mobile-bottom-item:active,
    .fc-mobile-bottom-item:focus {
        color: #ffffff !important;
        background: rgba(255, 255, 255, .09) !important;
        border-color: rgba(244, 169, 40, .40) !important;
        transform: translateY(-1px) !important;
        outline: none !important;
        box-shadow: none !important;
    }


    /* -----------------------------------------------------
       BOTTOM CARD ICON
    ----------------------------------------------------- */

    .fc-mobile-bottom-icon {
        width: 36px !important;
        height: 36px !important;
        flex: 0 0 36px !important;

        display: grid !important;
        place-items: center !important;

        border-radius: 11px !important;
        background: rgba(244, 169, 40, .16) !important;
        color: #ffffff !important;

        font-size: 0 !important;
        line-height: 0 !important;
    }

    .fc-mobile-bottom-icon svg {
        width: 20px !important;
        height: 20px !important;
        display: block !important;
        color: #ffffff !important;
        fill: none !important;
        stroke: currentColor !important;
        stroke-width: 1.8 !important;
        overflow: visible !important;
    }

    .fc-mobile-bottom-icon svg * {
        fill: none !important;
        stroke: currentColor !important;
    }


    /* -----------------------------------------------------
       BOTTOM CARD TEXT
    ----------------------------------------------------- */

    .fc-mobile-bottom-text {
        min-width: 0 !important;
        width: 100% !important;
    }

    .fc-mobile-bottom-text strong,
    .fc-mobile-bottom-text small {
        display: block !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
    }

    .fc-mobile-bottom-text strong {
        color: #ffffff !important;
        font-size: 13px !important;
        font-weight: 600 !important;
        line-height: 1.3 !important;
    }

    .fc-mobile-bottom-text small {
        margin-top: 3px !important;
        color: rgba(255, 255, 255, .58) !important;
        font-size: 11px !important;
        font-weight: 400 !important;
        line-height: 1.3 !important;
    }


    /* -----------------------------------------------------
       OLD AUTH CARD
       Not used by the current markup, kept in case another
       template still references it.
    ----------------------------------------------------- */

    .fc-mobile-auth-card {
        display: flex;
        align-items: center;
        gap: 12px;

        margin: 14px 10px calc(16px + env(safe-area-inset-bottom));
        padding: 16px;

        border-radius: 16px;

        background:
            linear-gradient(135deg, var(--fc-green-800) 0%, var(--fc-green-950) 100%);

        border: 1px solid rgba(255, 255, 255, .10);

        box-shadow:
            0 10px 28px rgba(0, 0, 0, .22),
            inset 0 1px 0 rgba(255, 255, 255, .06);
    }

    .fc-mobile-auth-icon {
        width: 42px;
        height: 42px;
        flex: 0 0 42px;

        display: inline-flex;
        align-items: center;
        justify-content: center;

        border-radius: 50%;
        background: rgba(255, 255, 255, .10);
        color: #ffffff;
    }

    .fc-mobile-auth-icon svg {
        width: 22px;
        height: 22px;
        display: block;
        color: currentColor;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
    }

    .fc-mobile-auth-text {
        flex: 1 1 auto;
        min-width: 0;
    }

    .fc-mobile-auth-text strong {
        display: block;
        color: #ffffff;
        font-size: 14px;
        font-weight: 600;
        line-height: 1.3;
    }

    .fc-mobile-auth-text span {
        display: block;
        margin-top: 2px;
        color: rgba(255, 255, 255, .64);
        font-size: 11.5px;
        font-weight: 400;
        line-height: 1.4;
    }

    .fc-mobile-auth-actions {
        flex: 0 0 auto;
        display: flex;
        gap: 8px;
    }

    .fc-mobile-auth-login,
    .fc-mobile-auth-signup {
        display: inline-flex;
        align-items: center;
        justify-content: center;

        min-height: 38px;
        padding: 0 14px;

        border-radius: 999px;

        font-size: 12px;
        font-weight: 600;
        white-space: nowrap;

        text-decoration: none;
        outline: none;

        transition:
            transform 150ms ease,
            box-shadow 150ms ease,
            background-color 150ms ease;
    }

    .fc-mobile-auth-login {
        border: 1px solid rgba(255, 255, 255, .55);
        background: transparent;
        color: #ffffff;
    }

    .fc-mobile-auth-login:hover {
        background: rgba(255, 255, 255, .10);
        color: #ffffff;
    }

    .fc-mobile-auth-signup {
        border: 1px solid var(--fc-gold);
        background: var(--fc-gold);
        color: var(--fc-green-950);
    }

    .fc-mobile-auth-signup:hover {
        background: var(--fc-gold-light);
        transform: translateY(-1px);
        box-shadow: 0 6px 16px rgba(244, 169, 40, .30);
    }


    /* -----------------------------------------------------
       SMALL PHONES
    ----------------------------------------------------- */

    @media (max-width: 480px) {

        .fc-mobile-header {
            height: 74px !important;
            min-height: 74px !important;

            grid-template-columns: 42px minmax(0, 1fr) 40px 40px !important;
            column-gap: 5px !important;
            padding: 0 14px 0 10px !important;
        }

        .fc-mobile-menu-toggle,
        .fc-mobile-account,
        .fc-mobile-cart {
            width: 40px !important;
            height: 40px !important;
            min-width: 40px !important;
            min-height: 40px !important;
        }

        .fc-mobile-logo-image {
            max-height: 64px !important;
        }

        .fc-mobile-search-form {
            height: 44px !important;
            min-height: 44px !important;
        }

        .fc-mobile-search-icon {
            height: 44px !important;
        }

        .fc-mobile-search-input {
            height: 44px !important;
            font-size: 14px !important;
            line-height: 44px !important;
        }

        .fc-mobile-menu-logo {
            min-height: 96px !important;
        }

        .fc-mobile-menu-logo img {
            max-width: 180px !important;
            max-height: 60px !important;
        }

        .fc-mobile-bottom-card {
            gap: 8px !important;
            padding: 8px !important;
            margin-top: 18px !important;
        }

        .fc-mobile-bottom-item {
            min-height: 88px !important;
            padding: 10px 8px !important;
        }
    }


    /* -----------------------------------------------------
       VERY SMALL PHONES
    ----------------------------------------------------- */

    @media (max-width: 380px) {

        .fc-mobile-header {
            grid-template-columns: 40px minmax(0, 1fr) 38px 38px !important;
            padding: 0 12px 0 8px !important;
            column-gap: 4px !important;
        }

        .fc-mobile-menu-toggle,
        .fc-mobile-account,
        .fc-mobile-cart {
            width: 38px !important;
            height: 38px !important;
            min-width: 38px !important;
            min-height: 38px !important;
        }

        .fc-mobile-logo-image {
            max-height: 64px !important;
        }

        .fc-mobile-bottom-card {
            grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
            margin-left: 8px !important;
            margin-right: 8px !important;
        }

        .fc-mobile-bottom-item {
            min-height: 84px !important;
            padding: 9px 7px !important;
        }

        .fc-mobile-bottom-text strong { font-size: 12px !important; }
        .fc-mobile-bottom-text small  { font-size: 10px !important; }

        .fc-mobile-auth-card {
            flex-wrap: wrap;
        }

        .fc-mobile-auth-actions {
            width: 100%;
            margin-top: 4px;
        }

        .fc-mobile-auth-login,
        .fc-mobile-auth-signup {
            flex: 1 1 0;
        }
    }
}


/* =========================================================
   DESKTOP ONLY
========================================================= */

@media screen and (min-width: 821px) {

    .fc-mobile-header,
    .fc-mobile-search,
    .fc-mobile-navigation {
        display: none !important;
    }

    .fc-desktop-header {
        display: grid !important;
    }

    .fc-desktop-header .fc-header-search {
        display: block !important;
    }

    .fc-header-search-results {
        display: block;
    }
}


/* =========================================================
   FOOTER
========================================================= */

.fc-site-footer {
    width: 100%;
    margin-top: 70px;
    color: #ffffff;
    background: linear-gradient(135deg, #05291d 0%, #073b2a 55%, #0a4a34 100%);
}

.fc-footer-inner {
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
    padding: 58px 0 40px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    gap: 40px;
}

.fc-footer-column {
    min-width: 0;
}

.fc-footer-logo {
    display: inline-flex;
    color: #ffffff;
    text-decoration: none;
}

.fc-footer-logo-image {
    width: auto;
    height: auto;
    max-width: 185px;
    max-height: 62px;
    object-fit: contain;
}

.fc-footer-site-name {
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
}

.fc-footer-tagline {
    margin: 7px 0 0;
    color: rgba(255, 255, 255, .48);
    font-size: 11px;
}

.fc-footer-description {
    margin: 15px 0 0;
    color: rgba(255, 255, 255, .62);
    font-size: 12px;
    line-height: 1.8;
}

.fc-footer-title {
    margin: 0 0 15px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
}

.fc-footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fc-footer-link {
    width: fit-content;
    color: rgba(255, 255, 255, .62);
    font-size: 12px;
    text-decoration: none;
    transition: color 180ms ease, transform 180ms var(--fc-ease);
}

.fc-footer-link:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.fc-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fc-footer-contact p {
    margin: 0;
    color: rgba(255, 255, 255, .62);
    font-size: 12px;
    line-height: 1.6;
}

.fc-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .09);
}

.fc-footer-bottom-inner {
    width: min(1240px, calc(100% - 40px));
    min-height: 62px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fc-footer-bottom-inner p {
    margin: 0;
    color: rgba(255, 255, 255, .43);
    font-size: 10px;
}


/* =========================================================
   FOOTER — MOBILE
========================================================= */

@media screen and (max-width: 767px) {

    .fc-footer-inner {
        width: calc(100% - 24px);
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px 24px;
        padding: 44px 0 32px;
    }

    .fc-footer-brand {
        grid-column: 1 / -1;
    }

    .fc-footer-bottom-inner {
        width: calc(100% - 24px);
        min-height: auto;
        padding: 17px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}

@media screen and (max-width: 520px) {

    .fc-footer-inner {
        width: calc(100% - 20px);
        grid-template-columns: 1fr;
        gap: 27px;
        padding: 38px 0 28px;
    }

    .fc-footer-brand {
        grid-column: auto;
    }
}







