/* ======================================================
   ZIRETHIC RESPONSIVE HEADER + HERO CLEAN CSS
   ====================================================== */

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    font-family: "Syne", sans-serif !important;
    background:   #ffffff;
    color: #ffffff;
}

body {
    top: 0 !important;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font-family: "Syne", sans-serif !important;
}

/* ================= HEADER ================= */

.zirethic-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: clamp(38px, 4vw, 46px) !important;
    z-index: 9999 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    transition: background 0.3s ease, box-shadow 0.3s ease !important;
}

.zirethic-header-inner {
    width: 100% !important;
    max-width: 1440px !important;
    height: 100% !important;
    margin: 0 auto !important;
    padding: 0 clamp(16px, 3vw, 38px) !important;

    display: grid !important;
    grid-template-columns: minmax(120px, 1fr) auto minmax(120px, 1fr) !important;
    align-items: center !important;
    position: relative !important;
}

/* ================= LEFT NAV ================= */

.z-nav-left {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: clamp(14px, 2vw, 28px) !important;
}

.z-nav-left a {
    font-size: 16px !important;
    font-weight: 400 !important;
    letter-spacing: 0.7px !important;
    color: rgba(255, 255, 255, 1) !important;
    text-transform: uppercase !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}

/* ================= CENTER LOGO ================= */

.z-logo {
    position: static !important;
    transform: none !important;
    justify-self: center !important;

    font-size: 32px !important;
    font-weight: 500 !important;
    letter-spacing: 0.7px !important;
    color: rgba(255, 255, 255, 1) !important;
    text-transform: uppercase !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    transition: color 0.3s ease !important;
}

/* ================= RIGHT NAV ================= */

.z-nav-right {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: clamp(9px, 1vw, 15px) !important;
    position: relative !important;
}

.z-dropdown,
.z-language,
.z-currency,
.z-product-search {
    position: relative !important;
    flex-shrink: 0 !important;
}


.z-dropdown-toggle,
.z-language-toggle,
.z-currency-toggle {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;

    padding: 0 !important;
    margin: 0 !important;

    background: transparent !important;
    border: none !important;

    color: rgba(255, 255, 255, 1)!important;
    font-size: 16px !important;
    font-weight: 400 !important;
    letter-spacing: 0.65px !important;
    text-transform: uppercase !important;
    line-height: 1 !important;

    cursor: pointer !important;
    white-space: nowrap !important;
}

.z-dropdown-toggle i,
.z-language-toggle i,
.z-currency-toggle i {
    font-size: 12px !important;
    line-height: 1 !important;
}



/* ================= ICONS ================= */

.z-icon-btn,
.z-icon-link {
    width: 14px !important;
    height: 18px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 0 !important;
    margin: 0 !important;

    color: rgba(255, 255, 255, 1) !important;
    background: transparent !important;
    border: none !important;
    text-decoration: none !important;

    cursor: pointer !important;
    flex-shrink: 0 !important;
}

.z-icon-btn svg,
.z-icon-link svg {
    width: 14px !important;
    height: 18px !important;
    stroke: #ffffff !important;
    stroke-width: 1.7 !important;
}

.z-icon-btn i,
.z-icon-link i {
    font-size: 18px !important;
    color: #ffffff !important;
    line-height: 1 !important;
}

.z-nav-left a:hover,
.z-logo:hover,
.z-dropdown-toggle:hover,
.z-language-toggle:hover,
.z-currency-toggle:hover,
.z-icon-btn:hover,
.z-icon-link:hover {
    opacity: 0.7 !important;
}

/* ================= WHITE DROPDOWNS ================= */

.z-dropdown-menu,
.z-language-menu,
.z-currency-menu {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    right: 0 !important;

    width: min(245px, calc(100vw - 28px)) !important;
    max-height: min(260px, 60vh) !important;
    overflow: hidden !important;

    display: none !important;
    padding: 9px !important;

    background: #ffffff !important;
    border-radius: 10px !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.16) !important;

    z-index: 10050 !important;
}

.z-dropdown.open .z-dropdown-menu,
.z-language.open .z-language-menu,
.z-currency.open .z-currency-menu {
    display: block !important;
}

.z-dropdown-search {
    width: 100% !important;
    height: 28px !important;

    display: flex !important;
    align-items: center !important;
    gap: 7px !important;

    padding: 0 9px !important;
    margin-bottom: 7px !important;
  border: 1px solid rgba(233, 234, 235, 1) !important;
    background: rgba(255, 255, 255, 1) !important;
    border-radius: 6px !important;
}

.z-dropdown-search svg {
    width: 12px !important;
    height: 12px !important;
    stroke: #7b7b7b !important;
    stroke-width: 1.8 !important;
}

.z-dropdown-search input {
    width: 100% !important;
    border: none !important;
    outline: none !important;
    background: transparent !important;
    color: rgba(65, 70, 81, 1) !important;
    font-size: 12px !important;
    font-weight: 400 !important;
}

.z-dropdown-search input::placeholder {
    color: rgba(117, 117, 117, 1) !important;
}

.z-dropdown-list {
    max-height: 190px !important;
    overflow-y: auto !important;
    padding-right: 2px !important;
}

.z-dropdown-list::-webkit-scrollbar {
    width: 3px !important;
}

.z-dropdown-list::-webkit-scrollbar-thumb {
    background: #d6d6d6 !important;
    border-radius: 10px !important;
}

.z-dropdown-item,
.z-language-menu button,
.z-currency-menu button {
    width: 100% !important;
    min-height: 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    padding: 4px 5px !important;
    background: transparent !important;
    border: none !important;
    border-radius: 5px !important;
    color: rgba(65, 70, 81, 1) !important;
    cursor: pointer !important;
    text-align: left !important;
}

.z-dropdown-item span {
    font-size: 12px !important;
    font-weight: 400 !important;
    color: rgba(65, 70, 81, 1) !important;
}

.z-dropdown-item small {
    font-size: 12px !important;
    font-weight: 400 !important;
    color: rgba(65, 70, 81, 1) !important;
    white-space: nowrap !important;
}

.z-dropdown-item:hover,
.z-language-menu button:hover,
.z-currency-menu button:hover {
    background: #f4f4f4 !important;
}

/* ================= SEARCH DROPDOWN ================= */

.z-search-menu {
    right: -18px !important;
}

.search-dropdown {
    position: static !important;
    width: 100% !important;
    max-height: 190px !important;
    overflow-y: auto !important;
    display: block !important;
    background: transparent !important;
    border: none !important;
}

.search-item {
    width: 100% !important;
    min-height: 40px !important;

    display: flex !important;
    align-items: center !important;
    gap: 8px !important;

    padding: 6px 4px !important;

    color: #222 !important;
    text-decoration: none !important;
    border-radius: 6px !important;
}

.search-item:hover {
    background: #f4f4f4 !important;
}

.search-item img {
    width: 30px !important;
    height: 34px !important;
    object-fit: cover !important;
    border-radius: 4px !important;
}

.search-item-text {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
}

.search-item-text .name {
    font-size: 9px !important;
    font-weight: 700 !important;
    color: #222 !important;
}

.search-item-text .price {
    font-size: 8px !important;
    color: #666 !important;
}

/* ================= HIDE OLD SEARCH OVERLAY ================= */

.z-search-overlay,
.z-search-box,
.z-search-close {
    display: none !important;
}

/* ================= GOOGLE TRANSLATE HIDE ================= */

#google_translate_element {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.goog-te-banner-frame,
.goog-te-balloon-frame,
.goog-te-gadget,
.goog-te-combo,
body > .skiptranslate {
    display: none !important;
}


/* ============================shop dropdown ============================== */
/* ============================ SHOP DROPDOWN ============================== */

.z-shop-nav {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
}

/* Make SHOP exactly same as NEW and ABOUT */
.z-shop-trigger {
    padding: 0 !important;
    margin: 0 !important;

    background: transparent !important;
    border: none !important;

    font-family: PP Neue Montreal, Arial, sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    letter-spacing: 0.7px !important;
    line-height: 1 !important;

    color: inherit !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;

    cursor: pointer !important;
}

/* Full white dropdown background like your second image */
.z-shop-mega {
    position: fixed !important;
    top: clamp(38px, 4vw, 46px) !important;
    left: 0 !important;
    right: 0 !important;

    width: 100% !important;
    min-height: 140px !important;

    display: none !important;

    background: #ffffff !important;
    border-top: 1px solid rgba(0, 0, 0, 0.03) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
    box-shadow: none !important;

    z-index: 9998 !important;
}

.z-shop-nav.open .z-shop-mega {
    display: block !important;
}

/* Push links under SHOP, but slightly left */
.z-shop-mega-inner {
    width: 100% !important;
    max-width: 1440px !important;
    margin: 0 auto !important;

    padding-top: 10px !important;
    padding-bottom: 22px !important;
    padding-left: calc(clamp(16px, 3vw, 38px) + 52px) !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 6px !important;
}

.z-shop-mega-inner a {
    display: block !important;

    padding: 0 !important;
    margin: 0 !important;

    color: #111111 !important;

    font-family: "Syne", sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    letter-spacing: 0.7px !important;
    line-height: 1.15 !important;

    text-decoration: none !important;
    text-transform: none !important;
    white-space: nowrap !important;
}
.z-shop-mega-inner a:nth-child(2) {
    margin-bottom: 12px !important;
}

.z-shop-mega-inner a:hover {
    opacity: 0.55 !important;
}


/* Header becomes white when dropdown opens */
.zirethic-header.shop-dropdown-open {
    background: #e2e2e0 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.zirethic-header.shop-dropdown-open .z-nav-left a,
.zirethic-header.shop-dropdown-open .z-shop-trigger,
.zirethic-header.shop-dropdown-open .z-logo,
.zirethic-header.shop-dropdown-open .z-dropdown-toggle,
.zirethic-header.shop-dropdown-open .z-language-toggle,
.zirethic-header.shop-dropdown-open .z-currency-toggle,
.zirethic-header.shop-dropdown-open .z-icon-btn,
.zirethic-header.shop-dropdown-open .z-icon-link {
    color: #111111 !important;
}

.zirethic-header.shop-dropdown-open .z-icon-btn svg,
.zirethic-header.shop-dropdown-open .z-icon-link svg {
    stroke: #111111 !important;
}

.zirethic-header.shop-dropdown-open .z-dropdown-toggle i,
.zirethic-header.shop-dropdown-open .z-language-toggle i,
.zirethic-header.shop-dropdown-open .z-currency-toggle i {
    color: #111111 !important;
}
.zirethic-header.is-inner {
    background: #e2e2e0 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
}


/* ================= HERO ================= */

.site-content {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.hero {
    position: relative !important;
    width: 100% !important;
    height: 80svh !important;
    min-height: 1000px !important;
    overflow: hidden !important;
    background: #071620 !important;
}

.hero-bg,
.hero-slide {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;

    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

.hero-overlay {
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;

    background: linear-gradient(
        180deg,
        rgba(10, 28, 46, 0.68) 0%,
        rgba(18, 78, 120, 0.48) 50%,
        rgba(12, 34, 51, 0.72) 100%
    ) !important;
}


.hero-content {
    position: absolute !important;
    left: 50% !important;
    top: 72% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 2 !important;

    width: 100% !important;
    max-width: 1200px !important;
    padding: 0 20px !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.hero-content h1 {
    margin: 0 0 clamp(16px, 2vw, 28px) !important;
    font-size: 74px !important;
    font-weight: 700 !important;
    line-height: 0.95 !important;
    letter-spacing: -1.5px !important;
    color: #ffffff !important;
    text-align: center !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
}

.hero-btn {
    width: clamp(132px, 12vw, 158px) !important;
    height: clamp(40px, 4vw, 48px) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid rgba(255, 255, 255, 0.75) !important;
    background: rgba(255, 255, 255, 0.02) !important;
    color: #ffffff !important;
    font-size: 20px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    transition: all 0.25s ease !important;
}

.hero-btn:hover {
    background: #ffffff !important;
    color: #071620 !important;
}


/* ================= MOBILE MENU BASE ================= */

.z-hamburger,
.z-mobile-menu,
.z-mobile-search-panel {
    display: none !important;
}

/* ================= TABLET ================= */

@media (max-width: 1024px) {
    .zirethic-header-inner {
        padding: 0 22px !important;
    }

    .z-nav-left {
        gap: 20px !important;
    }

    .z-nav-right {
        gap: 11px !important;
    }

    .hero-content {
        top: 70% !important;
    }
}

/* ================= MOBILE HEADER / MENU / SEARCH ================= */

@media (max-width: 768px) {
    body.menu-open,
    body.mobile-search-open {
        overflow: hidden !important;
    }

    .zirethic-header {
        height: 61px !important;
        z-index: 99998 !important;
    }

    .zirethic-header-inner {
        height: 61px !important;
        display: grid !important;
        grid-template-columns: 28px 28px 1fr 28px 28px !important;
        align-items: center !important;
        gap: 6px !important;
        padding: 0 14px !important;
        position: relative !important;
    }

    .z-nav-left,
    .z-language,
    .z-currency,
    #google_translate_element,
    .z-nav-right > .z-icon-link[aria-label="Account"] {
        display: none !important;
    }

    .z-hamburger {
        grid-column: 1 !important;
        grid-row: 1 !important;
        display: flex !important;
        width: 24px !important;
        height: 24px !important;
        align-items: center !important;
        justify-content: center !important;
        border: none !important;
        background: transparent !important;
        padding: 0 !important;
        position: relative !important;
        z-index: 100002 !important;
    }

    .z-hamburger span {
        position: absolute !important;
        width: 13px !important;
        height: 1px !important;
        left: 5px !important;
        transition: 0.2s ease !important;
    }

    .z-hamburger span:nth-child(1) { top: 8px !important; }
    .z-hamburger span:nth-child(2) { top: 12px !important; }
    .z-hamburger span:nth-child(3) { top: 16px !important; }

    .zirethic-header.menu-open .z-hamburger span:nth-child(1) {
        top: 12px !important;
        transform: rotate(45deg) !important;
    }

    .zirethic-header.menu-open .z-hamburger span:nth-child(2) {
        opacity: 0 !important;
    }

    .zirethic-header.menu-open .z-hamburger span:nth-child(3) {
        top: 12px !important;
        transform: rotate(-45deg) !important;
    }

    .z-logo {
        grid-column: 3 !important;
        grid-row: 1 !important;
        justify-self: center !important;
        font-size: 16px !important;
        font-weight: 500 !important;
        text-decoration: none !important;
        letter-spacing: 0.5px !important;
        z-index: 100001 !important;
    }

    .z-nav-right {
        display: contents !important;
    }

    .z-product-search {
        grid-column: 2 !important;
        grid-row: 1 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .z-product-search .z-search-menu {
        display: none !important;
    }

    .z-search-btn,
    .z-product-search .z-icon-btn {
        width: 24px !important;
        height: 24px !important;
        padding: 0 !important;
        border: none !important;
        background: transparent !important;
    }

    .z-nav-right > .z-icon-link[aria-label="Tag"] {
        grid-column: 4 !important;
        grid-row: 1 !important;
        width: 24px !important;
        height: 24px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        z-index: 100001 !important;
    }

    .z-cart-trigger,
    .z-nav-right > .z-icon-link[aria-label="Cart"] {
        grid-column: 5 !important;
        grid-row: 1 !important;
        width: 24px !important;
        height: 24px !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border: none !important;
        background: transparent !important;
        z-index: 100001 !important;
    }

    .z-product-search svg,
    .z-search-btn svg,
    .z-icon-link svg,
    .z-cart-trigger svg {
        width: 14px !important;
        height: 14px !important;
        stroke-width: 1.5 !important;
    }

    .z-mobile-menu {
        position: fixed !important;
        top: 61px !important;
        left: 0 !important;
        width: 88vw !important;
        max-width: 360px !important;
        height: calc(100vh - 61px) !important;
        background: #ffffff !important;
        z-index: 99997 !important;
        transform: translateX(-100%) !important;
        transition: transform 0.25s ease !important;
        overflow: hidden !important;
        border-right: 1px solid #eeeeee !important;
    }

    .zirethic-header.menu-open .z-mobile-menu {
        transform: translateX(0) !important;
    }

    .z-mobile-menu-panel {
        position: absolute !important;
        inset: 0 !important;
        background: #ffffff !important;
        display: none !important;
        flex-direction: column !important;
        justify-content: space-between !important;
    }

    .z-mobile-menu-panel.active {
        display: flex !important;
    }

    .z-mobile-menu-links {
        width: 100% !important;
    }

    .z-mobile-menu-links a,
    .z-mobile-menu-links button {
        width: 100% !important;
        height: 44px !important;
        padding: 0 22px !important;
        border: none !important;
        border-bottom: 1px solid #eeeeee !important;
        background: transparent !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        text-decoration: none !important;
        color: #111111 !important;
        font-size: 10px !important;
        font-weight: 400 !important;
        text-transform: uppercase !important;
        text-align: left !important;
        cursor: pointer !important;
    }

    .z-mobile-shop-link span:last-child {
        font-size: 18px !important;
        font-weight: 300 !important;
    }

    .z-mobile-back-link {
        justify-content: flex-start !important;
        gap: 8px !important;
    }

    .z-mobile-back-link span:first-child {
        font-size: 16px !important;
        line-height: 1 !important;
    }

    .z-mobile-menu-bottom {
        padding: 0 22px 26px !important;
    }

    .z-mobile-login-link {
        display: inline-flex !important;
        align-items: center !important;
        gap: 8px !important;
        text-decoration: none !important;
        color: #111111 !important;
        font-size: 10px !important;
        text-transform: uppercase !important;
        margin-bottom: 20px !important;
    }

    .z-mobile-login-link svg {
        width: 13px !important;
        height: 13px !important;
        stroke-width: 1.5 !important;
    }

    .z-mobile-currency {
        position: relative !important;
    }

    .z-mobile-currency-toggle {
        border: none !important;
        background: transparent !important;
        color: #9a9a9a !important;
        padding: 0 !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 5px !important;
        cursor: pointer !important;
    }

    .z-mobile-currency-code {
        font-size: 10px !important;
        font-weight: 400 !important;
        color: #9a9a9a !important;
        line-height: 1 !important;
        text-transform: uppercase !important;
    }

    .z-mobile-currency-icon {
        width: 9px !important;
        height: 9px !important;
        color: #9a9a9a !important;
        stroke: #9a9a9a !important;
        transform: translateY(1px) !important;
    }

    .z-mobile-currency.open .z-mobile-currency-icon {
        transform: translateY(1px) rotate(180deg) !important;
    }

    .z-mobile-currency-list {
        display: none !important;
        margin-top: 12px !important;
        max-height: 160px !important;
        overflow-y: auto !important;
        width: 170px !important;
        background: #ffffff !important;
        border: 1px solid #eeeeee !important;
        scrollbar-width: none !important;
    }

    .z-mobile-currency-list::-webkit-scrollbar {
        display: none !important;
    }

    .z-mobile-currency.open .z-mobile-currency-list {
        display: block !important;
    }

    .z-mobile-currency-list button {
        width: 100% !important;
        height: 34px !important;
        padding: 0 10px !important;
        border: none !important;
        border-bottom: 1px solid #f1f1f1 !important;
        background: #ffffff !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        color: #111111 !important;
        font-size: 9px !important;
        cursor: pointer !important;
    }

    .z-mobile-currency-list small {
        color: #8a8a8a !important;
        font-size: 8px !important;
    }

    .z-mobile-search-panel {
        position: fixed !important;
        top: 61px !important;
        left: 0 !important;
        right: 0 !important;
        background: #ffffff !important;
        z-index: 99996 !important;
        display: none !important;
        border-bottom: 1px solid #e5e5e5 !important;
    }

    .z-mobile-search-panel.active {
        display: block !important;
    }

    .z-mobile-search-row {
        height: 42px !important;
        display: flex !important;
        align-items: center !important;
        padding: 0 14px !important;
        gap: 8px !important;
    }

    .z-mobile-search-row svg {
        width: 14px !important;
        height: 14px !important;
        stroke-width: 1.5 !important;
        stroke: #111111 !important;
    }

    .z-mobile-search-row input {
        flex: 1 !important;
        border: none !important;
        outline: none !important;
        background: transparent !important;
        font-size: 10px !important;
        color: #111111 !important;
        text-transform: uppercase !important;
    }

    .z-mobile-search-row button {
        border: none !important;
        background: transparent !important;
        font-size: 16px !important;
        line-height: 1 !important;
        color: #111111 !important;
        padding: 0 !important;
    }

    .z-mobile-search-results {
        max-height: 360px !important;
        overflow-y: auto !important;
        background: #ffffff !important;
        scrollbar-width: none !important;
    }

    .z-mobile-search-results::-webkit-scrollbar {
        display: none !important;
    }

    .z-mobile-search-results a {
        display: flex !important;
        gap: 10px !important;
        padding: 10px 14px !important;
        border-top: 1px solid #eeeeee !important;
        text-decoration: none !important;
        color: #111111 !important;
    }

    .z-mobile-search-results img {
        width: 45px !important;
        height: 52px !important;
        object-fit: contain !important;
        background: #e2e2e0 !important;
    }

    .z-mobile-search-results .name {
        display: block !important;
        font-size: 10px !important;
        margin-bottom: 3px !important;
    }

    .z-mobile-search-results .price {
        display: block !important;
        font-size: 9px !important;
    }

    .z-mobile-search-empty {
        padding: 14px !important;
        font-size: 10px !important;
        color: #111111 !important;
        border-top: 1px solid #eeeeee !important;
    }

    .site-content {
        padding-top: 61px !important;
    }
}

/* ======================================================
   HERO MOBILE HEIGHT FIX - SHORTER
   ====================================================== */

@media (max-width: 768px) {
    .hero {
        height: 430px !important;
        min-height: 430px !important;

        overflow: hidden !important;
    }

    .hero-bg,
    .hero-slide {
        background-size: cover !important;
        background-position: center top !important;
    }

    .hero-content {
        top: auto !important;
        bottom: 28px !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        padding: 0 16px !important;
        align-items: flex-start !important;
    }

    .hero-content h1 {
        max-width: 300px !important;
        margin: 0 0 12px !important;
        font-size: 28px !important;
        line-height: 1.08 !important;
        letter-spacing: -0.4px !important;
        text-align: left !important;
        white-space: normal !important;
    }

    .hero-btn {
        width: 100% !important;
        max-width: 270px !important;
        height: 40px !important;
        font-size: 13px !important;
    }
}

@media (max-width: 420px) {
    .hero {
        height: 400px !important;
        min-height: 400px !important;
    }

    .hero-content {
        bottom: 24px !important;
    }

    .hero-content h1 {
        max-width: 285px !important;
        font-size: 26px !important;
    }

    .hero-btn {
        max-width: 260px !important;
        height: 38px !important;
    }
}
/* ======================================================
   HERO DESKTOP / LAPTOP RESPONSIVE FIX
   ====================================================== */

@media (min-width: 769px) {
    .hero {
        height: 70svh !important;
        min-height: 500px !important;
        overflow: hidden !important;
    }

    .hero-content {
        left: 50% !important;
        top: 72% !important;
        transform: translate(-50%, -50%) !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 34px !important;
        align-items: center !important;
        text-align: center !important;
    }



    .hero-btn {
        width: 158px !important;
        height: 48px !important;
        font-size: 20px !important;
    }
}

/* Smaller laptop / devtools width */
@media (min-width: 769px) and (max-width: 1100px) {
    .hero-content h1 {
        font-size: clamp(40px, 6vw, 58px) !important;
        max-width: calc(100vw - 48px) !important;
    }
}

/* ================= ANIMATION ================= */

@keyframes zMobileMenuDrop {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ======================================================
   HEADER COLOR CONTROL
   Home + About use transparent/white nav. Other pages use light/black nav.
   ====================================================== */

/* HOME + ABOUT HEADER */
.zirethic-header.is-home {
    background: transparent !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

.zirethic-header.is-home .z-nav-left a,
.zirethic-header.is-home .z-shop-trigger,
.zirethic-header.is-home .z-logo,
.zirethic-header.is-home .z-dropdown-toggle,
.zirethic-header.is-home .z-language-toggle,
.zirethic-header.is-home .z-currency-toggle,
.zirethic-header.is-home .z-icon-btn,
.zirethic-header.is-home .z-icon-link,
.zirethic-header.is-home .z-cart-trigger,
.zirethic-header.is-home .z-search-btn {
    color: #ffffff !important;
}

.zirethic-header.is-home .z-icon-btn svg,
.zirethic-header.is-home .z-icon-link svg,
.zirethic-header.is-home .z-cart-trigger svg,
.zirethic-header.is-home .z-search-btn svg,
.zirethic-header.is-home .z-product-search svg {
    stroke: #ffffff !important;
    color: #ffffff !important;
}

.zirethic-header.is-home .z-hamburger span {
    background: #ffffff !important;
}

/* INNER PAGES HEADER */
.zirethic-header.is-inner {
    background: #e2e2e0 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
}

.zirethic-header.is-inner .z-nav-left a,
.zirethic-header.is-inner .z-shop-trigger,
.zirethic-header.is-inner .z-logo,
.zirethic-header.is-inner .z-dropdown-toggle,
.zirethic-header.is-inner .z-language-toggle,
.zirethic-header.is-inner .z-currency-toggle,
.zirethic-header.is-inner .z-icon-btn,
.zirethic-header.is-inner .z-icon-link,
.zirethic-header.is-inner .z-cart-trigger,
.zirethic-header.is-inner .z-search-btn {
    color: #111111 !important;
}

.zirethic-header.is-inner .z-icon-btn svg,
.zirethic-header.is-inner .z-icon-link svg,
.zirethic-header.is-inner .z-cart-trigger svg,
.zirethic-header.is-inner .z-search-btn svg,
.zirethic-header.is-inner .z-product-search svg {
    stroke: #111111 !important;
    color: #111111 !important;
}

.zirethic-header.is-inner .z-hamburger span {
    background: #111111 !important;
}

@media (max-width: 768px) {
    .zirethic-header.is-home {
        background: transparent !important;
        border-bottom: none !important;
    }

    .zirethic-header.is-home .z-logo,
    .zirethic-header.is-home .z-search-btn,
    .zirethic-header.is-home .z-product-search,
    .zirethic-header.is-home .z-product-search .z-icon-btn,
    .zirethic-header.is-home .z-icon-link,
    .zirethic-header.is-home .z-cart-trigger {
        color: #ffffff !important;
    }

    .zirethic-header.is-home .z-search-btn svg,
    .zirethic-header.is-home .z-product-search svg,
    .zirethic-header.is-home .z-icon-link svg,
    .zirethic-header.is-home .z-cart-trigger svg {
        stroke: #ffffff !important;
        color: #ffffff !important;
    }

    .zirethic-header.is-home .z-hamburger span {
        background: #ffffff !important;
    }
}







/* ======================================================
   HOME PRODUCTS SECTION
   Updated for category filter buttons
   ====================================================== */

.home-products-section {
    width: 100%;
    background: #ffffff;
    color: rgba(0, 0, 0, 1);
    padding: 48px 34px 70px;
}

.home-products-top {
    max-width: 1180px;
    margin: 0 auto 18px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.home-products-top > div {
    min-width: 0;
}

.home-products-top h2 {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.1px;
    color: rgba(0, 0, 0, 1);
}

.home-category-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.home-category-nav a,
.home-category-filter {
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;

    font-family: "Syne", sans-serif !important;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.35px;
    line-height: 1;

    color: rgba(141, 141, 141, 1);
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;

    cursor: pointer;
    transition: color 0.2s ease, opacity 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.home-category-nav a:hover,
.home-category-filter:hover,
.home-category-filter.active {
    color: rgba(0, 0, 0, 1);
}

.home-filter-btn {
    width: 82px;
    height: 39px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: transparent;
    border: 1px solid rgba(0, 0, 0, 1);

    color: rgba(0, 0, 0, 1);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.4px;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;

    transition: background 0.25s ease, color 0.25s ease;
}

.home-filter-btn:hover {
    background: #111111;
    color: #ffffff;
}

.home-products-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px 8px;
}

.home-product-card {
    display: block;
    min-width: 0;
    color: rgba(0, 0, 0, 1);
    text-decoration: none;
}

.home-product-card.is-hidden {
    display: none !important;
}

.home-product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.31;
    background: rgba(226, 226, 224, 1);
    overflow: hidden;
}

.home-product-image .product-img {
    position: absolute;
    display: block;
    object-position: center center;
    transition: opacity 0.28s ease;
}

.home-product-image .product-img-main {
    top: 50%;
    left: 50%;
    width: 345px;
    height: 468px;
    transform: translate(-50%, -50%);
    object-fit: contain;
    object-position: center center;
    opacity: 1;
    z-index: 1;
}

.home-product-image .product-img-hover {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 0;
    z-index: 2;
}

.home-product-card.has-hover:hover .product-img-main {
    opacity: 0;
}

.home-product-card.has-hover:hover .product-img-hover {
    opacity: 1;
}

.home-product-info {
    padding-top: 7px;
}

.home-product-info h3 {
    margin: 0 0 3px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.1px;
    line-height: 1.2;
    color: rgba(0, 0, 0, 1);
    text-transform: capitalize;
     font-family: PP Neue Montreal, Arial, sans-serif !important;
}

.home-product-info p {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    color: rgba(32, 32, 32, 1);
    font-family: "PP Neue Montreal", Arial, sans-serif !important;
}

.product-swatches {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-top: 4px;
}

.product-swatches span {
    width: 9px;
    height: 9px;
    display: inline-block;
    border-radius: 1px;
    border: 1px solid rgba(217, 217, 217, 1);
}

.home-product-info .product-swatches {
    margin-top: 4px;
}

.home-empty-products {
    grid-column: 1 / -1;
    padding: 60px 0;
    text-align: center;
}

.home-empty-products p {
    font-size: 12px;
    color: #555555;
}

.home-filter-empty {
    max-width: 1180px;
    margin: 0 auto;
}

/* ======================================================
   RESPONSIVE HOME PRODUCTS ONLY
   Keeps desktop styling intact
   ====================================================== */

@media (max-width: 1024px) {
    .home-products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 768px) {
    .home-products-section {
        padding: 24px 7px 46px !important;
    }

    .home-products-top {
        width: 100% !important;
        margin: 0 auto 10px !important;
        display: flex !important;
        align-items: flex-start !important;
        justify-content: space-between !important;
        gap: 6px !important;
    }

    .home-products-top > div {
        min-width: 0 !important;
        flex: 1 !important;
    }

    .home-products-top h2 {
        margin: 0 0 8px !important;
        
        line-height: 1 !important;
        font-weight: 500 !important;
    }

   
    .home-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px 6px !important;
    }

    .home-product-image {
        aspect-ratio: 1 / 1.28 !important;
    }

    .home-product-image .product-img-main {
        width: 195px !important;
        height: 264.52px !important;
    }

    .home-product-info {
        padding-top: 5px !important;
    }
    .home-category-nav {
    display: none;
    
}

    .home-product-info h3,
    .home-product-info p {
      font-size: 12;
        line-height: 1.15 !important;
    }

    .home-product-info p {
        color: #A5A5A5;
    }

    .product-swatches {
        gap: 2px !important;
        margin-top: 2px !important;
    }

    .product-swatches span {
        width: 5px !important;
        height: 5px !important;
    }
}

@media (max-width: 420px) {
    .home-products-section {
        padding-left: 7px !important;
        padding-right: 7px !important;
    }

    .home-category-nav {
        grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
        gap: 4px !important;
    }

    .home-category-nav a,
    .home-category-filter {
        height: 21px !important;
        padding: 0 3px !important;
       
    }

    .home-products-grid {
        gap: 10px 5px !important;
    }
}

/* ======================================================
   ZIRETHIC CLEAN FOOTER
   ====================================================== */

.z-footer {
    width: 100%;
    background: #ffffff;
    color: rgba(0, 0, 0, 1);

    /* keep footer centered but reduce side padding */
    padding: 58px 18px 42px;

}

.z-footer-inner {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content;
    gap: 80px;
    align-items: flex-start;
}

.z-footer-links {
    justify-self: end;

    display: grid;
    grid-template-columns: repeat(3, max-content);
    gap: 42px;
    align-items: flex-start;
}

.z-footer-brand {
    max-width: 500px;
}

.z-footer-brand p {
    margin: 0;
    max-width: 500px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: 0px;
    color: rgba(0, 0, 0, 1);
    font-family: "PP Neue Montreal", Arial, sans-serif !important;
}


.z-footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.z-footer-col h4 {
    margin: 0 0 12px;

    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.2px;

    color: rgba(0, 0, 0, 1);
    text-transform: uppercase;

    white-space: nowrap;
}

.z-footer-col a {
    margin-bottom: 7px;

    font-size: 14px;
    font-weight: 400;
    line-height: 1.1;
    color: rgba(0, 0, 0, 1);
    text-decoration: none;
    font-family: "PP Neue Montreal", Arial, sans-serif !important;
    white-space: nowrap;
}
.z-footer-col a:hover {
    opacity: 0.55;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
    .z-footer {
        padding: 46px 18px 36px;
    }

    .z-footer-inner {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .z-footer-links {
        justify-self: start;
        grid-template-columns: repeat(3, max-content);
        gap: 26px;
    }

    .z-footer-col h4,
    .z-footer-col a {
        white-space: nowrap;
    }
.z-footer-col a {
   color:  #757575;}
}

@media (max-width: 600px) {
    .z-footer {
        padding: 40px 18px 34px;
    }

    .z-footer-brand p {
       
        max-width: 100%;
    }

    .z-footer-links {
        justify-self: start;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .z-footer-col h4 {
      
        margin-bottom: 10px;
        white-space: nowrap;
    }

    .z-footer-col a {
      
        margin-bottom: 6px;
        white-space: nowrap;
    }
}
/* ======================================================
   JOIN THE MOVEMENT / NEWSLETTER SECTION
   ====================================================== */

.join-movement-section {
    width: 100%;
    background: #000000;
    color: rgba(255, 255, 255, 1);
    border-top: 2px solid #ffffff;
    padding: 26px 34px 28px;
    min-height: 182px;
}

.join-movement-inner {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.join-movement-text {
    max-width: 620px;
}

.join-movement-text h3 {
    margin: 0 0 4px;
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    color: #ffffff;
    text-transform: capitalize;
}

.join-movement-text p {
    margin-top: 20px;
    font-family: "PP Neue Montreal", Arial, sans-serif !important;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.35;

    color: #F2F2F2;
}

.join-movement-form {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;

    flex-shrink: 0;
}

.join-movement-form input {
    width: 352px;
    height: 43px;

    padding: 0 9px;

    background: transparent;
    border: 1px solid #FFFFFF;
    outline: none;
    font-family: "PP Neue Montreal", Arial, sans-serif !important;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
}

.join-movement-form input::placeholder {
    color: rgba(255, 255, 255, 0.65);
}

.join-movement-form button {
    height: 43px;
    min-width: 84px;
    padding: 0 10px;
    background: #D5D7DA;
    border: 1px solid #D5D7DA;
   
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.2px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.25s ease, color 0.25s ease;
}

.join-movement-form button:hover {
    background: transparent;
    color: #ffffff;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
    .join-movement-section {
        padding: 20px 16px 20px;
    }

    .join-movement-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .join-movement-form {
        width: 100%;
        justify-content: flex-start;
    }

    .join-movement-form input {
        width: 100%;
        max-width: 320px;
        height: 41px;
        font-size: 14px;
    }



    .join-movement-text h3 {
  
    font-size: 20px;
    font-weight: 600;
   
}

.join-movement-text p {
   
    font-size: 12px;
    font-weight: 400;
    

  
}


.join-movement-form button {
   
   
    font-size: 14px;
    font-weight: 400;
   
}
}

@media (max-width: 420px) {
    .join-movement-section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .join-movement-form {
        gap: 5px;
    }

    .join-movement-form input {
        height: 40px;
        
    }

    .join-movement-form button {
        height: 26px;
        min-width: 45px;
       
    }
}

/* ======================================================
   BIG ZIRETHIC SIGNATURE - FULL WIDTH
   ====================================================== */

.zirethic-signature-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);

    height: 200px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
    overflow: hidden;

    padding-top: 130px;

    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.zirethic-signature-section h1 {
    width: 100vw;
    margin: 0;

    text-align: center;
    white-space: nowrap;
    text-transform: uppercase;

    font-size: clamp(170px, 23vw, 340px);
    font-weight: 500;
    line-height: 0.85;
    letter-spacing: -10px;

    color: rgba(164, 167, 174, 1);

    transform: translateY(8px);

    pointer-events: none;
    user-select: none;
}


/* ================= RESPONSIVE ================= */
/* Make ZIRETHIC signature take full mobile width */
@media (max-width: 768px) {
    .zirethic-signature-section {
        width: 100vw !important;
        height: 78px !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
        padding: 0 !important;
        background: #ffffff !important;
        overflow: hidden !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .zirethic-signature-section h1 {
        width: 100vw !important;
        max-width: none !important;
        margin: 0 !important;

        font-size: 22vw !important;
        font-weight: 500 !important;
        line-height: 0.85 !important;
        letter-spacing: -5px !important;

        color: rgba(164, 167, 174, 1) !important;
        text-align: center !important;
        white-space: nowrap !important;

        transform: translateY(8px) !important;
    }
}

@media (max-width: 420px) {
    .zirethic-signature-section {
        height: 72px !important;
    }

    .zirethic-signature-section h1 {
        font-size: 24vw !important;
        letter-spacing: -4px !important;
        transform: translateY(7px) !important;
    }
}
/* ======================================================
   FOOTER / JOIN MOVEMENT / SIGNATURE MOBILE FIX ONLY
   ====================================================== */

@media (max-width: 768px) {
    .z-footer {
        padding: 34px 18px 30px !important;
        background: #ffffff !important;
    }

    .z-footer-inner {
        width: 100% !important;
        max-width: 100% !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    .z-footer-brand {
        max-width: 100% !important;
    }

    .z-footer-brand p {
        max-width: 100% !important;
        margin: 0 !important;
       
        line-height: 1.55 !important;
        color: #000000 !important;
    }

    .z-footer-links {
        width: 100% !important;
        justify-self: start !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .z-footer-col {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .z-footer-col h4 {
        margin: 0 0 8px !important;
       
        line-height: 1 !important;
        
        text-transform: uppercase !important;
    }

    .z-footer-col a {
        margin-bottom: 6px !important;
       
        line-height: 1.15 !important;
       
        white-space: nowrap !important;
    }

    /* JOIN THE MOVEMENT */
    .join-movement-section {
        padding: 24px 18px 26px !important;
        background: #000000 !important;
        border-top: none !important;
    }

    .join-movement-inner {
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 14px !important;
    }

    .join-movement-text {
        max-width: 100% !important;
    }

    .join-movement-text h3 {
        margin: 0 0 6px !important;
      
        line-height: 1 !important;
        color: #ffffff !important;
    }

    .join-movement-text p {
        margin: 0 !important;
        max-width: 240px !important;
       
        line-height: 1.45 !important;
        color: rgba(255, 255, 255, 0.82) !important;
    }

    .join-movement-form {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        gap: 10px !important;
    }

    .join-movement-form input {
        width: 100% !important;
        max-width: 100% !important;
        height: 32px !important;
        padding: 0 10px !important;
        border: 1px solid rgba(255, 255, 255, 0.65) !important;
        background: transparent !important;
        
    }

    .join-movement-form button {
        width: 95px !important;
        height: 28px !important;
        min-width: 95px !important;
        padding: 0 !important;
        background: #ffffff !important;
        border: 1px solid #ffffff !important;
        
       
    }

    /* BIG ZIRETHIC SIGNATURE */
    .zirethic-signature-section {
        width: 100vw !important;
        height: 70px !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
        padding-top: 0 !important;
        background: #ffffff !important;
        overflow: hidden !important;
        display: flex !important;
        align-items: flex-start !important;
        justify-content: center !important;
    }

    .zirethic-signature-section h1 {
        width: 100vw !important;
        margin: 0 !important;
        font-size: 68px !important;
        font-weight: 500 !important;
        line-height: 0.78 !important;
        letter-spacing: -3px !important;
        color: rgba(164, 167, 174, 1) !important;
        transform: translateY(8px) !important;
        white-space: nowrap !important;
    }
}

@media (max-width: 420px) {
    .z-footer {
        padding: 32px 16px 28px !important;
    }

    .join-movement-section {
        padding: 24px 16px 26px !important;
    }

    .zirethic-signature-section {
        height: 66px !important;
    }

    .zirethic-signature-section h1 {
        font-size: 64px !important;
        letter-spacing: -3px !important;
    }
}
/* Make ZIRETHIC signature take full mobile width */
@media (max-width: 768px) {
    .zirethic-signature-section {
        width: 100vw !important;
        height: 78px !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
        padding: 0 !important;
        background: #ffffff !important;
        overflow: hidden !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .zirethic-signature-section h1 {
        width: 100vw !important;
        max-width: none !important;
        margin: 0 !important;

        font-size: 22vw !important;
        font-weight: 500 !important;
        line-height: 0.85 !important;
        letter-spacing: -5px !important;

        color: rgba(164, 167, 174, 1) !important;
        text-align: center !important;
        white-space: nowrap !important;

        transform: translateY(20px) !important;
    }
}

@media (max-width: 420px) {
    .zirethic-signature-section {
        height: 72px !important;
    }

    .zirethic-signature-section h1 {
        font-size: 24vw !important;
        letter-spacing: -4px !important;
        transform: translateY(20px) !important;
    }
}












/* ======================================================
   SHOP PAGE
   Reuses home product card, image hover, swatches
   ====================================================== */

.shop-page {
    width: 100%;
    min-height: 100vh;

    background: #ffffff;
    color: #111111;

    padding: 68px 14px 70px;
}

.shop-topbar {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto 14px;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.shop-topbar-left h1 {
    margin: 0 0 8px;

    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.1px;

    color: #000000;
}

.shop-category-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.shop-category-nav a {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.35px;

    color: rgba(141, 141, 141, 1);
    text-transform: uppercase;
    text-decoration: none;
}

.shop-category-nav a.active,
.shop-category-nav a:hover {
    color: #000000;
}

.shop-products-grid {
    padding: 0;
}

/* Make shop use same image feel as home */
.shop-products-grid .home-product-image {
    background: #e8e8e6;
}

.shop-products-grid .home-product-info {
    padding-top: 6px;
}


/* ======================================================
   SHOP PAGINATION
   ====================================================== */

.shop-pagination {
    max-width: 1180px;
    margin: 36px auto 0;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
}

.shop-pagination a,
.shop-pagination span {
    font-size: 12px;
    font-weight: 500;
    color: #111111;
    text-decoration: none;
}

.shop-pagination .active {
    color: #d9401f;
}

.shop-pagination .disabled {
    opacity: 0.35;
}

/* ======================================================
   SHOP TOP RIGHT CONTROLS - LATEST CLEAN STYLE
   ====================================================== */

.shop-actions-right {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-end !important;

    gap: 10px !important;
    height: 44px !important;
    font-family: PP Neue Montreal, Arial, sans-serif !important;
    white-space: nowrap !important;
}

/* VIEW ICON GROUP */

.shop-view-toggle {
    display: inline-flex !important;
    align-items: center !important;

    gap: 15px !important;
    height: 20px !important;
}

.shop-view-btn {
    height: 20px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 0 !important;
    margin: 0 !important;

    border: none !important;
    background: transparent !important;

    cursor: pointer !important;
    line-height: 1 !important;
}

.view-icon {
    display: grid !important;
    flex-shrink: 0 !important;
}

/* 2 vertical blocks */
.view-icon-2 {
    grid-template-columns: repeat(2, 13px) !important;
    grid-template-rows: 32px !important;
    gap: 4px !important;
}

.view-icon-2 span {
    width: 13px !important;
    height: 32px !important;

    display: block !important;
    background: #bfbfbf !important;
}

/* 2 x 2 black blocks */
.view-icon-4 {
    grid-template-columns: repeat(2, 15px) !important;
    grid-template-rows: repeat(2, 15px) !important;
    gap: 3px !important;
}

.view-icon-4 span {
    width: 15px !important;
    height: 15px !important;

    display: block !important;
    background: #000000 !important;
}

/* 3 x 3 grey blocks */
.view-icon-6 {
    grid-template-columns: repeat(3, 8px) !important;
    grid-template-rows: repeat(3, 8px) !important;
    gap: 3px !important;
}

.view-icon-6 span {
    width: 8px !important;
    height: 8px !important;

    display: block !important;
    background: #c9c9c9 !important;
}

/* active/inactive */
.shop-view-btn.active .view-icon span {
    background: #000000 !important;
}

.shop-view-btn:not(.active) .view-icon span,
.shop-view-btn.muted .view-icon span {
    background: #bfbfbf !important;
}

/* FILTER AND SORT BUTTONS */

.shop-action-btn {
    height: 20px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 13px !important;

    padding: 0 !important;
    margin: 0 !important;

    border: none !important;
    background: transparent !important;

    font-family: "PP Neue Montreal", Arial, sans-serif !important;
    color: #111111 !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    text-transform: uppercase !important;

    cursor: pointer !important;
    white-space: nowrap !important;
}

.shop-action-text {
    height: 44px !important;

    display: inline-flex !important;
    align-items: center !important;

    line-height: 1 !important;
}

/* FILTER ICON */

.shop-filter-icon {
    width: 20px !important;
    height: 20px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    color: #111111 !important;
    flex-shrink: 0 !important;
    line-height: 1 !important;
}

.shop-filter-icon svg {
    width: 30px !important;
    height: 24px !important;
    display: block !important;
}

/* SORT ICON */

.shop-sort-arrows {
    width: 28px !important;
    height: 44px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    color: #111111 !important;
    flex-shrink: 0 !important;
    line-height: 1 !important;
}

.shop-sort-arrows svg {
    width: 28px !important;
    height: 28px !important;
    display: block !important;
}

/* HOVER */

.shop-view-btn:hover,
.shop-action-btn:hover {
    opacity: 0.75 !important;
}


/* ======================================================
   RIGHT DRAWER FILTER / SORT - LATEST CLEAN STYLE
   ====================================================== */

.shop-drawer-backdrop {
    position: fixed !important;
    inset: 0 !important;

    display: none !important;
    justify-content: flex-end !important;

    background: rgba(0, 0, 0, 0.32) !important;
    z-index: 99999 !important;
}

.shop-drawer-backdrop.active {
    display: flex !important;
}

.shop-drawer {
    width: 400px !important;
    max-width: 88vw !important;
    height: 978px !important;

    background: #ffffff !important;
    color: #111111 !important;

    display: flex !important;
    flex-direction: column !important;

    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.12) !important;
}

/* DRAWER HEADER */

.shop-drawer-header {
    position: relative !important;

    height: 50px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    padding: 0 22px !important;
    border-bottom: none !important;
}

.shop-drawer-header::after {
    content: "" !important;
    position: absolute !important;

    left: 22px !important;
    right: 22px !important;
    bottom: 0 !important;

    height: 1px !important;
    background: #8D8D8D !important;
}

.shop-drawer-header h2 {
    margin: 0 !important;

    font-family: "PP Neue Montreal", Arial, sans-serif !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    letter-spacing: 0.2px !important;
    color: #111111 !important;
    text-transform: uppercase !important;
}

.shop-drawer-close {
    width: 24px !important;
    height: 24px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 0 !important;
    border: none !important;
    background: transparent !important;

    font-size: 30px !important;
    font-weight: 100 !important;
    line-height: 1 !important;
    color: #111111 !important;

    cursor: pointer !important;
}

.shop-drawer-form {
    height: calc(100vh - 50px) !important;

    display: flex !important;
    flex-direction: column !important;
}

/* ACCORDION */

.shop-accordion {
    position: relative !important;

    padding: 8px 0 !important;
    border-bottom: none !important;
}

.shop-accordion::after {
    content: "" !important;
    position: absolute !important;

    left: 22px !important;
    right: 22px !important;
    bottom: 0 !important;

    height: 1px !important;
    background: #eeeeee !important;
}

.shop-accordion-head {
    width: 100% !important;
    height: 52px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    padding: 0 22px !important;

    background: #ffffff !important;
    border: none !important;

    font-family: "PP Neue Montreal", Arial, sans-serif !important;
    color: #111111 !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    text-align: left !important;

    cursor: pointer !important;
}

.shop-accordion-icon {
    width: 13px !important;
    height: 13px !important;

    stroke-width: 1.7 !important;
    transition: none !important;
    transform: rotate(0deg) !important;
}

/* Keep chevron facing down whether open or closed */
.shop-accordion.active .shop-accordion-icon,
.shop-accordion:not(.active) .shop-accordion-icon {
    transform: rotate(0deg) !important;
}

.shop-accordion-body {
    display: none !important;
    padding: 6px 22px 24px !important;
}

.shop-accordion.active .shop-accordion-body {
    display: block !important;
}


/* SIZE FILTER - 3 PER ROW */

.filter-check-grid {
    display: grid !important;
}

.size-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    column-gap: 34px !important;
    row-gap: 18px !important;
}

.size-grid .filter-check {
    width: 100% !important;

    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;

    font-family: "PP Neue Montreal", Arial, sans-serif !important;
    color: #111111 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1 !important;

    cursor: pointer !important;
    white-space: nowrap !important;
}

.size-grid .filter-check input {
    width: 13px !important;
    height: 13px !important;

    margin: 0 !important;
    padding: 0 !important;

    accent-color: #000000 !important;
    cursor: pointer !important;
}


/* COLOUR FILTER */

.colour-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    column-gap: 26px !important;
    row-gap: 16px !important;
}

.filter-colour-option {
    position: relative !important;

    width: 100% !important;

    display: inline-flex !important;
    align-items: center !important;

    cursor: pointer !important;
    user-select: none !important;
}

/* Hide checkbox but keep the full colour label clickable */
.filter-colour-option input {
    position: absolute !important;
    opacity: 0 !important;

    width: 0 !important;
    height: 0 !important;

    pointer-events: none !important;
}

.filter-colour-content {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;

    padding: 2px 0 !important;

    font-family: "PP Neue Montreal", Arial, sans-serif !important;
    color: #111111 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1 !important;

    cursor: pointer !important;
    opacity: 1 !important;
}

.colour-dot {
    width: 13px !important;
    height: 13px !important;

    display: inline-block !important;
    flex-shrink: 0 !important;

    border-radius: 50% !important;
    border: 1px solid rgba(0, 0, 0, 0.35) !important;
    outline: none !important;
}

/* Selected colour should look like a clean radio selection */
.filter-colour-option input:checked + .filter-colour-content {
    font-weight: 400 !important;
    opacity: 1 !important;
    outline: none !important;
    border: none !important;
}

.filter-colour-option input:checked + .filter-colour-content .colour-dot {
    border: 1px solid #000000 !important;
    outline: none !important;
    box-shadow: inset 0 0 0 3px #ffffff !important;
}

/* Remove browser focus outline */
.filter-colour-option input:focus + .filter-colour-content,
.filter-colour-option input:focus-visible + .filter-colour-content,
.filter-colour-content:focus,
.filter-colour-content:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}


/* SORT DRAWER OPTIONS */

.sort-check {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;

    margin-bottom: 14px !important;

    font-family: "PP Neue Montreal", Arial, sans-serif !important;
    color: #111111 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1 !important;

    cursor: pointer !important;
}

.sort-check input {
    width: 13px !important;
    height: 13px !important;

    margin: 0 !important;

    accent-color: #000000 !important;
}


/* BOTTOM BUTTON */

.shop-drawer-bottom {
    margin-top: auto !important;
    padding: 12px 22px 16px !important;
}

.drawer-clear-btn,
.drawer-apply-btn {
    width: 100% !important;
    height: 43px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border: 1px solid rgba(164, 167, 174, 1) !important;
    background: #ffffff !important;

    font-family: "PP Neue Montreal", Arial, sans-serif !important;
    color: rgba(0, 0, 0, 1) !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    text-decoration: none !important;

    cursor: pointer !important;
}

.drawer-apply-btn {
    display: none !important;
}


/* RESPONSIVE SHOP ACTIONS */
/* ================= MOBILE SHOP TOPBAR LIKE SAMPLE ================= */

@media (max-width: 768px) {
    .shop-page {
        padding: 72px 10px 50px !important;
    }

    .shop-topbar {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 10px !important;

        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 8px !important;
    }

    .shop-topbar-left {
        width: 100% !important;
    }

    .shop-topbar-left h1 {
        margin: 0 !important;
        font-size: 12px !important;
        font-weight: 400 !important;
        line-height: 1 !important;
        color: #111111 !important;
        text-transform: capitalize !important;
    }

    .shop-category-nav {
        display: none !important;
    }

    .shop-actions-right {
        width: 100% !important;
        height: 18px !important;

        display: flex !important;
        align-items: center !important;
               justify-content: space-between !important;

        gap: 0 !important;
    }

    .shop-action-btn {
        height: 18px !important;
        gap: 5px !important;

        font-size: 7px !important;
        font-weight: 400 !important;
        line-height: 1 !important;
        color: #111111 !important;
        text-transform: uppercase !important;
    }

    .shop-filter-icon {
        width: 9px !important;
        height: 9px !important;
    }

    .shop-filter-icon svg {
        width: 9px !important;
        height: 9px !important;
    }

    .shop-action-text {
        height: auto !important;
        font-size: 7px !important;
        line-height: 1 !important;
    }

    .shop-view-toggle {
        height: 18px !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 5px !important;
        margin-left: auto !important;
    }

    .shop-view-btn {
        height: 18px !important;
    }

    .view-icon-2 {
        grid-template-columns: repeat(2, 6px) !important;
        grid-template-rows: 12px !important;
        gap: 2px !important;
    }

    .view-icon-2 span {
        width: 6px !important;
        height: 12px !important;
    }

    .view-icon-4 {
        grid-template-columns: repeat(2, 6px) !important;
        grid-template-rows: repeat(2, 6px) !important;
        gap: 1px !important;
    }

    .view-icon-4 span {
        width: 6px !important;
        height: 6px !important;
    }

    .view-icon-6 {
        grid-template-columns: repeat(3, 4px) !important;
        grid-template-rows: repeat(3, 4px) !important;
        gap: 1px !important;
    }

    .view-icon-6 span {
        width: 4px !important;
        height: 4px !important;
    }

    .shop-products-grid {
        margin-top: 8px !important;
    }
}

@media (max-width: 480px) {
    .shop-topbar {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .shop-actions-right {
        width: 100% !important;
        justify-content: flex-start !important;
    }

    .shop-drawer {
        width: 100% !important;
        max-width: 100vw !important;
    }

    .size-grid,
    .colour-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

/* ======================================================
   SMALLER SHOP TOP RIGHT CONTROLS SIZE
   ====================================================== */

.shop-actions-right {
    gap: 16px !important;
    height: 28px !important;
}

.shop-view-toggle {
    gap: 7px !important;
    height: 28px !important;
}

.shop-view-btn {
    height: 28px !important;
}

/* 2 vertical blocks */
.view-icon-2 {
    grid-template-columns: repeat(2, 7px) !important;
    grid-template-rows: 19px !important;
    gap: 2px !important;
}

.view-icon-2 span {
    width: 7px !important;
    height: 19px !important;
}

/* 2 x 2 blocks */
.view-icon-4 {
    grid-template-columns: repeat(2, 9px) !important;
    grid-template-rows: repeat(2, 9px) !important;
    gap: 2px !important;
}

.view-icon-4 span {
    width: 9px !important;
    height: 9px !important;
}

/* 3 x 3 blocks */
.view-icon-6 {
    grid-template-columns: repeat(3, 6px) !important;
    grid-template-rows: repeat(3, 6px) !important;
    gap: 2px !important;
}

.view-icon-6 span {
    width: 6px !important;
    height: 6px !important;
}

/* FILTER / SORT */
.shop-action-btn {
    height: 28px !important;
    gap: 6px !important;
    font-size: 14px !important;
}

.shop-action-text {
    height: 28px !important;
}

.shop-filter-icon {
    width: 18px !important;
    height: 28px !important;
}

.shop-filter-icon svg {
    width: 18px !important;
    height: 14px !important;
}

.shop-sort-arrows {
    width: 18px !important;
    height: 28px !important;
}

.shop-sort-arrows svg {
    width: 18px !important;
    height: 18px !important;
}
/* ===============================
   SHOP GRID VIEW SWITCHING
================================ */

.shop-products-grid.view-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.shop-products-grid.view-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.shop-products-grid.view-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
}


/* Mobile control */
@media (max-width: 900px) {
    .shop-products-grid.view-2,
    .shop-products-grid.view-4,
    .shop-products-grid.view-6 {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 480px) {
    .shop-products-grid.view-2,
    .shop-products-grid.view-4,
    .shop-products-grid.view-6 {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}
/* SAME HEIGHT VIEW ICONS */

.shop-view-toggle {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    height: 18px !important;
}

.shop-view-btn {
    height: 18px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    background: transparent !important;
    cursor: pointer !important;
}

.view-icon {
    display: grid !important;
    align-items: center !important;
    justify-content: center !important;
    height: 16px !important;
}


/* 2 vertical blocks - total height 16px */

.view-icon-2 {
    grid-template-columns: repeat(2, 5px) !important;
    grid-template-rows: 16px !important;
    gap: 2px !important;
}

.view-icon-2 span {
    width: 5px !important;
    height: 16px !important;
    display: block !important;
}


/* 2 x 2 blocks - total height 16px */

.view-icon-4 {
    grid-template-columns: repeat(2, 7px) !important;
    grid-template-rows: repeat(2, 7px) !important;
    gap: 2px !important;
}

.view-icon-4 span {
    width: 7px !important;
    height: 7px !important;
    display: block !important;
}


/* 3 x 3 blocks - total height 16px */

.view-icon-6 {
    grid-template-columns: repeat(3, 4px) !important;
    grid-template-rows: repeat(3, 4px) !important;
    gap: 2px !important;
}

.view-icon-6 span {
    width: 4px !important;
    height: 4px !important;
    display: block !important;
}


.z-shop-mega {
    z-index: 10050 !important;
}

.zirethic-header .z-shop-mega .z-shop-mega-inner a,
.zirethic-header.is-home .z-shop-mega .z-shop-mega-inner a,
.zirethic-header.is-inner .z-shop-mega .z-shop-mega-inner a,
.zirethic-header.shop-dropdown-open .z-shop-mega .z-shop-mega-inner a {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #111111 !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    position: relative !important;
    z-index: 10051 !important;
}
/* NORMAL HOME HEADER */
.zirethic-header.is-home {
    background: transparent !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

/* HOME HEADER ONLY WHEN SHOP DROPDOWN IS OPEN */
.zirethic-header.is-home.shop-dropdown-open {
    background: rgba(226, 226, 224, 0.2) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border-bottom: 1px solid rgba(226, 226, 224, 0.25) !important;
}

/* INNER PAGE HEADER WHEN SHOP DROPDOWN IS OPEN */
.zirethic-header.is-inner.shop-dropdown-open {
    background: rgba(226, 226, 224, 0.2) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
}
.zirethic-header.is-home.shop-dropdown-open,
.zirethic-header.shop-dropdown-open {
    background: rgba(226, 226, 224, 0.2) !important;
    background-color: rgba(226, 226, 224, 0.2) !important;
}
/* ======================================================
   SHOP PAGE MOBILE RESPONSIVENESS ONLY
   Hide view toggle completely on mobile
   ====================================================== */
/* ================= MOBILE SHOP TOPBAR LIKE SAMPLE ================= */

@media (max-width: 768px) {
   .shop-page {
    padding: 61px 10px 50px !important;
}
    .shop-topbar {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 10px !important;

        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 8px !important;
    }

    .shop-topbar-left {
        width: 100% !important;
    }

    .shop-topbar-left h1 {
        margin: 0 !important;
        font-size: 12px !important;
        font-weight: 400 !important;
        line-height: 1 !important;
        color: #111111 !important;
        text-transform: capitalize !important;
    }

    .shop-category-nav {
        display: none !important;
    }

    .shop-actions-right {
        width: 100% !important;
        height: 18px !important;

        display: flex !important;
        align-items: center !important;
               justify-content: space-between !important;

        gap: 0 !important;
    }

    .shop-action-btn {
        height: 18px !important;
        gap: 5px !important;

        font-size: 7px !important;
        font-weight: 400 !important;
        line-height: 1 !important;
        color: #111111 !important;
        text-transform: uppercase !important;
    }

    .shop-filter-icon {
        width: 9px !important;
        height: 9px !important;
    }

    .shop-filter-icon svg {
        width: 9px !important;
        height: 9px !important;
    }

    .shop-action-text {
        height: auto !important;
        font-size: 7px !important;
        line-height: 1 !important;
    }

    .shop-view-toggle {
        height: 18px !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 5px !important;
        margin-left: auto !important;
    }

    .shop-view-btn {
        height: 18px !important;
    }

    .view-icon-2 {
        grid-template-columns: repeat(2, 6px) !important;
        grid-template-rows: 12px !important;
        gap: 2px !important;
    }

    .view-icon-2 span {
        width: 6px !important;
        height: 12px !important;
    }

    .view-icon-4 {
        grid-template-columns: repeat(2, 6px) !important;
        grid-template-rows: repeat(2, 6px) !important;
        gap: 1px !important;
    }

    .view-icon-4 span {
        width: 6px !important;
        height: 6px !important;
    }

    .view-icon-6 {
        grid-template-columns: repeat(3, 4px) !important;
        grid-template-rows: repeat(3, 4px) !important;
        gap: 1px !important;
    }

    .view-icon-6 span {
        width: 4px !important;
        height: 4px !important;
    }

    .shop-products-grid {
        margin-top: 8px !important;
    }
}




/* ======================================================
   SHOP MOBILE PAGINATION
   ====================================================== */


@media (max-width: 768px) {
   .shop-pagination {
    width: fit-content !important;
    max-width: none !important;

    margin: 26px auto 0 auto !important;
    padding: 0 0 12px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 18px !important;
     font-family: "PP Neue Montreal", Arial, sans-serif !important;
    border: none !important;
    border-bottom: none !important;
    background: transparent !important;
}

    .shop-pagination .desktop-label {
        display: none !important;
    }

    .shop-pagination .mobile-label {
        display: inline !important;
    }

    .shop-page-arrow {
        width: 12px !important;
        height: 16px !important;

        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;

        color: #717680 !important;
        text-decoration: none !important;

        font-size: 18px !important;
        font-weight: 300 !important;
        line-height: 1 !important;
    }

    .shop-page-arrow.disabled {
        display: none !important;
    }

    .shop-page-numbers {
        flex: 0 0 auto !important;

        display: inline-flex !important;
        align-items: center !important;
        justify-content: flex-start !important;

        padding: 0 !important;
        margin: 0 !important;
        gap: 20px !important;
    }

    .shop-page-numbers a,
    .shop-page-numbers span {
        position: relative !important;

        min-width: auto !important;
        width: auto !important;
        height: 16px !important;

        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;

        color: #717680 !important;
        text-decoration: none !important;

        font-size: 10px !important;
        font-weight: 400 !important;
        line-height: 1 !important;
    }

    .shop-page-numbers a.active,
    .shop-page-numbers span.active {
        color: #111111 !important;
    }

    .shop-page-numbers a.active::after,
    .shop-page-numbers span.active::after {
        content: "" !important;
        position: absolute !important;

        left: 50% !important;
        bottom: -13px !important;

        width: 18px !important;
        height: 3px !important;

        background: #111111 !important;
        transform: translateX(-50%) !important;
    }

    .pagination-dots {
        color: #717680 !important;
    }
}
/* ======================================================
   MOBILE FILTER/SORT DRAWER - RIGHT SIDE + NO BLUR
   ====================================================== */

@media (max-width: 768px) {
    .shop-drawer-backdrop {
        position: fixed !important;
        top: 61px !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;

        width: 100vw !important;
        height: calc(100svh - 61px) !important;

        display: none !important;
        align-items: stretch !important;
        justify-content: flex-end !important;

        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;

        z-index: 99997 !important;
        overflow: hidden !important;
    }

    .shop-drawer-backdrop.active {
        display: flex !important;
    }

    .shop-drawer {
        position: relative !important;
        top: 0 !important;
        left: auto !important;
        right: 0 !important;
        bottom: auto !important;

        width: 82vw !important;
        max-width: 320px !important;
        height: calc(100svh - 61px) !important;
        max-height: calc(100svh - 61px) !important;

        margin: 0 !important;
        padding: 0 !important;

        background: #ffffff !important;
        color: #111111 !important;

        display: flex !important;
        flex-direction: column !important;

        border-radius: 0 !important;
        box-shadow: none !important;
        overflow: hidden !important;

        transform: translateX(100%) !important;
        transition: transform 0.25s ease !important;
    }

    .shop-drawer-backdrop.active .shop-drawer {
        transform: translateX(0) !important;
    }

    .shop-drawer-header {
        height: 48px !important;
        min-height: 48px !important;
        padding: 0 14px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;

        background: #ffffff !important;
        border-bottom: 1px solid #e5e5e5 !important;
    }

    .shop-drawer-form {
        flex: 1 !important;
        min-height: 0 !important;

        display: flex !important;
        flex-direction: column !important;

        overflow: hidden !important;
        background: #ffffff !important;
    }

    .shop-drawer-bottom {
        margin-top: auto !important;
        padding: 14px !important;
        background: #ffffff !important;
        border-top: 1px solid #e5e5e5 !important;
    }
}
/* ======================================================
   SHOP PAGE MOBILE RESPONSIVENESS ONLY
   Matches mobile layout:
   Title first, Filter left, View icons right
   ====================================================== */

@media (max-width: 768px) {
    .shop-page {
        .shop-page {
    padding: 61px 10px 50px !important;
}
        background: #ffffff !important;
        color: #111111 !important;
    }

    .shop-topbar {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 10px !important;

        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 11px !important;

        padding: 0 !important;
        background: #ffffff !important;
    }

    .shop-topbar-left {
        order: 1 !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .shop-topbar-left h1 {
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;

      
        line-height: 1 !important;
        letter-spacing: 0 !important;

        color: #111111 !important;
        text-transform: capitalize !important;
    }

    .shop-category-nav {
        display: none !important;
    }

    .shop-actions-right {
        order: 2 !important;

        width: 100% !important;
        height: 14px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;

        gap: 0 !important;
        padding: 0 !important;
        margin: 0 !important;

        background: transparent !important;
        border: none !important;
    }

    /* FILTER LEFT */
    .shop-action-btn {
        

        display: inline-flex !important;
        align-items: center !important;
        justify-content: flex-start !important;

        gap: 5px !important;
        padding: 0 !important;
        margin: 0 !important;

        border: none !important;
        background: transparent !important;

       
        
        line-height: 1 !important;
        letter-spacing: 0 !important;

        color: #111111 !important;
        text-transform: uppercase !important;
        white-space: nowrap !important;
    }

    .shop-action-btn[data-target="filterModal"],
    .shop-filter-btn {
        order: 1 !important;
    }

    /* Hide sort on mobile to match screenshot */
    .shop-action-btn[data-target="sortModal"],
    .shop-sort-btn,
    .shop-sort-arrows {
        display: none !important;
    }

    .shop-filter-icon {
        width: 9px !important;
        height: 9px !important;

        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;

        color: #111111 !important;
        flex-shrink: 0 !important;
    }

    .shop-filter-icon svg {
        width: 9px !important;
        height: 9px !important;
        display: block !important;
        stroke-width: 1.7 !important;
    }

    .shop-action-text {
        height: auto !important;
        display: inline-flex !important;
        align-items: center !important;

        font-size: 7px !important;
        line-height: 1 !important;
        color: #111111 !important;
    }

    /* VIEW ICONS RIGHT */
    .shop-view-toggle {
        order: 2 !important;

        height: 14px !important;

        display: inline-flex !important;
        align-items: center !important;
        justify-content: flex-end !important;

        gap: 5px !important;
        padding: 0 !important;
        margin: 0 0 0 auto !important;

        border: none !important;
        background: transparent !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .shop-view-btn {
        width: auto !important;
        height: 14px !important;

        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;

        padding: 0 !important;
        margin: 0 !important;

        border: none !important;
        background: transparent !important;
        cursor: pointer !important;
    }

    .view-icon {
        display: grid !important;
        flex-shrink: 0 !important;
    }

    .view-icon-2 {
        grid-template-columns: repeat(2, 6px) !important;
        grid-template-rows: 12px !important;
        gap: 2px !important;
    }

    .view-icon-2 span {
        width: 6px !important;
        height: 12px !important;
        display: block !important;
    }

    .view-icon-4 {
        grid-template-columns: repeat(2, 6px) !important;
        grid-template-rows: repeat(2, 6px) !important;
        gap: 1px !important;
    }

    .view-icon-4 span {
        width: 6px !important;
        height: 6px !important;
        display: block !important;
    }

    .view-icon-6 {
        grid-template-columns: repeat(3, 4px) !important;
        grid-template-rows: repeat(3, 4px) !important;
        gap: 1px !important;
    }

    .view-icon-6 span {
        width: 4px !important;
        height: 4px !important;
        display: block !important;
    }

    .shop-view-btn.active .view-icon span {
        background: #000000 !important;
    }

    .shop-view-btn:not(.active) .view-icon span,
    .shop-view-btn.muted .view-icon span {
        background: #c9c9c9 !important;
    }

 
}

@media (max-width: 480px) {
    .shop-topbar {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .shop-actions-right {
        justify-content: space-between !important;
    }

    .shop-drawer {
        width: 100% !important;
        max-width: 100vw !important;
    }

   
}

/* REMOVE / OVERRIDE ANY MOBILE SHOP TOP MARGIN */
@media (max-width: 768px) {
    .shop-page {
        margin-top: 0 !important;
        padding-top: 61px !important;
    }

    .shop-topbar,
    .shop-topbar-left,
    .shop-topbar-left h1,
    .shop-actions-right,
    .shop-products-grid {
        margin-top: 0 !important;
    }

    .shop-topbar {
        padding-top: 0 !important;
        margin-bottom: 10px !important;
    }

    .shop-products-grid {
        padding-top: 0 !important;
    }
}

    

    .shop-products-grid {
        padding-top: 0 !important;
    }



    /* MOBILE FILTER DRAWER - OPENING ON THE LEFT */
@media (max-width: 768px) {
    .shop-drawer-backdrop.active {
        display: flex !important;
        justify-content: flex-end !important;
        align-items: stretch !important;
        background: rgba(0, 0, 0, 0.18) !important;
    }

    .shop-drawer {
        position: relative !important;
        left: auto !important;
        right: 0 !important;

        width: calc(100vw - 32px) !important;
        max-width: calc(100vw - 32px) !important;
        height: 100vh !important;
        min-height: 100vh !important;

        margin-left: 32px !important;
        margin-right: 0 !important;

        background: #ffffff !important;
        box-shadow: none !important;
    }

 

    .shop-drawer-header::after {
        display: none !important;
        content: none !important;
    }
}
/* MOBILE FILTER DRAWER HEIGHT FIX - SHOW CLEAR BUTTON */
@media (max-width: 768px) {
    .shop-drawer-backdrop.active {
        top: 61px !important;
        height: calc(100dvh - 61px) !important;
        min-height: calc(100dvh - 61px) !important;

        display: flex !important;
        justify-content: flex-end !important;
        align-items: stretch !important;
        background: rgba(0, 0, 0, 0.18) !important;
    }

    .shop-drawer {
        width: calc(100vw - 32px) !important;
        max-width: calc(100vw - 32px) !important;

        height: calc(100dvh - 61px) !important;
        min-height: calc(100dvh - 61px) !important;

        margin-left: 32px !important;
        margin-right: 0 !important;

        display: flex !important;
        flex-direction: column !important;

        background: #ffffff !important;
        box-shadow: none !important;
        overflow: hidden !important;
    }

    .shop-drawer-form {
        height: calc(100% - 50px) !important;
        min-height: 0 !important;

        display: flex !important;
        flex-direction: column !important;
        overflow: hidden !important;
    }

    .shop-drawer-content,
    .shop-drawer-body {
        flex: 1 1 auto !important;
        min-height: 0 !important;
        overflow-y: auto !important;
    }

    .shop-drawer-bottom {
        margin-top: auto !important;
        padding: 12px 22px 20px !important;
        background: #ffffff !important;
        border-top: 1px solid #eeeeee !important;
        flex-shrink: 0 !important;
    }

    .drawer-clear-btn,
    .drawer-apply-btn {
        height: 43px !important;
    }
    .shop-action-text{
        font-size: 12px;
    }
}



/* ======================================================
   MOBILE VIEW TOGGLE: 1 / 2 / 3 PRODUCTS PER ROW
   ====================================================== */

@media (max-width: 768px) {
    .shop-view-toggle {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 6px !important;
        height: 14px !important;
        margin-left: auto !important;
    }

    .shop-view-btn {
        width: 16px !important;
        height: 16px !important;
        padding: 0 !important;
        margin: 0 !important;
        border: none !important;
        background: transparent !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        cursor: pointer !important;
    }

    .view-icon {
        display: grid !important;
        flex-shrink: 0 !important;
    }

    /* SINGLE VIEW ICON */
    .shop-view-btn[data-view="1"] .view-icon,
    .shop-view-btn[data-view="2"] .view-icon-2 {
        width: 13px !important;
        height: 13px !important;
        display: block !important;
        background: #c9c9c9 !important;
    }

    .shop-view-btn[data-view="1"] .view-icon span,
    .shop-view-btn[data-view="2"] .view-icon-2 span {
        display: none !important;
    }

    /* 2 PER ROW ICON */
    .shop-view-btn[data-view="2-cols"] .view-icon,
    .shop-view-btn[data-view="4"] .view-icon-4 {
        width: 13px !important;
        height: 13px !important;
        display: grid !important;
        grid-template-columns: repeat(2, 6px) !important;
        grid-template-rows: repeat(2, 6px) !important;
        gap: 1px !important;
        background: transparent !important;
    }

    .shop-view-btn[data-view="2-cols"] .view-icon span,
    .shop-view-btn[data-view="4"] .view-icon-4 span {
        width: 6px !important;
        height: 6px !important;
        display: block !important;
        background: #c9c9c9 !important;
    }

    /* 3 PER ROW ICON */
    .shop-view-btn[data-view="3-cols"] .view-icon,
    .shop-view-btn[data-view="6"] .view-icon-6 {
        width: 13px !important;
        height: 13px !important;
        display: grid !important;
        grid-template-columns: repeat(3, 4px) !important;
        grid-template-rows: repeat(3, 4px) !important;
        gap: 1px !important;
        background: transparent !important;
    }

    .shop-view-btn[data-view="3-cols"] .view-icon span,
    .shop-view-btn[data-view="6"] .view-icon-6 span {
        width: 4px !important;
        height: 4px !important;
        display: block !important;
        background: #c9c9c9 !important;
    }

    /* ACTIVE ICON */
    .shop-view-btn.active .view-icon,
    .shop-view-btn.active .view-icon::before,
    .shop-view-btn.active .view-icon-2,
    .shop-view-btn.active .view-icon-2::before {
        background: #000000 !important;
    }

    .shop-view-btn.active .view-icon span,
    .shop-view-btn.active .view-icon-4 span,
    .shop-view-btn.active .view-icon-6 span {
        background: #000000 !important;
    }

    /* GRID STATES */
    .shop-products-grid.mobile-view-1 {
        grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
    }

    .shop-products-grid.mobile-view-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .shop-products-grid.mobile-view-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 10px 5px !important;
    }

    .shop-products-grid.mobile-view-3 .home-product-info h3,
    .shop-products-grid.mobile-view-3 .home-product-info p {
        font-size: 6px !important;
    }

    .shop-products-grid.mobile-view-3 .product-swatches span {
        width: 3px !important;
        height: 3px !important;
    }
}


/* ======================================================
   FINAL HEADER COLOR CONTROL
   Home dropdown = grey
   Other pages = white
   ====================================================== */

.zirethic-header.is-home {
    background: transparent !important;
}

.zirethic-header.is-home.shop-dropdown-open {
    background: #e2e2e0 !important;
}

.zirethic-header.is-inner {
    background: #ffffff !important;
    box-shadow: none !important;
}

.zirethic-header.is-inner.shop-dropdown-open {
    background: #ffffff !important;
}
/* ===========
===========================================
   FINAL HEADER COLOR CONTROL
   Home dropdown = grey
   Other pages = white
   ====================================================== */

/* HOME PAGE: normal transparent */
.zirethic-header.is-home {
    background: transparent !important;
}

/* HOME PAGE: when SHOP dropdown opens */
.zirethic-header.is-home.shop-dropdown-open {
    background: #e2e2e0 !important;

}

/* OTHER PAGES: always white */
.zirethic-header.is-inner {
    background: #ffffff !important;

    box-shadow: none !important;
}

/* OTHER PAGES: even when SHOP dropdown opens, keep white */
.zirethic-header.is-inner.shop-dropdown-open {
    background: #ffffff !important;

}


/* ======================================================
   MAKE TEXT/ICONS BLACK ON HOME WHEN SHOP IS OPEN
   ====================================================== */

.zirethic-header.is-home.shop-dropdown-open .z-nav-left a,
.zirethic-header.is-home.shop-dropdown-open .z-shop-trigger,
.zirethic-header.is-home.shop-dropdown-open .z-logo,
.zirethic-header.is-home.shop-dropdown-open .z-dropdown-toggle,
.zirethic-header.is-home.shop-dropdown-open .z-language-toggle,
.zirethic-header.is-home.shop-dropdown-open .z-currency-toggle,
.zirethic-header.is-home.shop-dropdown-open .z-icon-btn,
.zirethic-header.is-home.shop-dropdown-open .z-icon-link {
    color: #111111 !important;
}

.zirethic-header.is-home.shop-dropdown-open .z-icon-btn svg,
.zirethic-header.is-home.shop-dropdown-open .z-icon-link svg {
    stroke: #111111 !important;
}

.zirethic-header.is-home.shop-dropdown-open .z-icon-btn i,
.zirethic-header.is-home.shop-dropdown-open .z-icon-link i,
.zirethic-header.is-home.shop-dropdown-open .z-dropdown-toggle i,
.zirethic-header.is-home.shop-dropdown-open .z-language-toggle i,
.zirethic-header.is-home.shop-dropdown-open .z-currency-toggle i {
    color: #111111 !important;
}


/* ======================================================
   MAKE TEXT/ICONS BLACK ON ALL INNER PAGES
   ====================================================== */

.zirethic-header.is-inner .z-nav-left a,
.zirethic-header.is-inner .z-shop-trigger,
.zirethic-header.is-inner .z-logo,
.zirethic-header.is-inner .z-dropdown-toggle,
.zirethic-header.is-inner .z-language-toggle,
.zirethic-header.is-inner .z-currency-toggle,
.zirethic-header.is-inner .z-icon-btn,
.zirethic-header.is-inner .z-icon-link {
    color: #111111 !important;
}

.zirethic-header.is-inner .z-icon-btn svg,
.zirethic-header.is-inner .z-icon-link svg {
    stroke: #111111 !important;
}

.zirethic-header.is-inner .z-icon-btn i,
.zirethic-header.is-inner .z-icon-link i,
.zirethic-header.is-inner .z-dropdown-toggle i,
.zirethic-header.is-inner .z-language-toggle i,
.zirethic-header.is-inner .z-currency-toggle i {
    color: #111111 !important;
}


/* SHOP DROPDOWN PANEL SHOULD REMAIN WHITE */
.z-shop-mega {
    background: #ffffff !important;
}


/* ======================================================
   FINAL RESPONSIVE HEADER / SEARCH / MOBILE MENU CONTROL
   Single source of truth. Keep this at the bottom.
   ====================================================== */

/* Desktop / laptop: search icon must show; mobile search panel must never show */
@media (min-width: 769px) {
    .zirethic-header .z-product-search,
    .zirethic-header .z-nav-right .z-product-search {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        position: relative !important;
    }

    .zirethic-header .z-product-search .z-search-btn {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        cursor: pointer !important;
        color: inherit !important;
    }

    .zirethic-header .z-product-search .z-search-btn svg {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        stroke: currentColor !important;
    }

    .zirethic-header .z-product-search.open .z-search-menu {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    .z-mobile-search-panel,
    .z-mobile-search-panel.active,
    #zMobileSearchPanel {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}

/* Mobile: white header, black icons, sliding menu, separate mobile search */
@media (max-width: 768px) {
    html,
    body {
        width: 100% !important;
        overflow-x: hidden !important;
    }

    body.menu-open,
    body.mobile-search-open {
        overflow: hidden !important;
    }

    .zirethic-header,
    .zirethic-header.is-home,
    .zirethic-header.is-inner,
    .zirethic-header.menu-open {
        height: 61px !important;
        background: #ffffff !important;
        border-bottom: 1px solid #e5e5e5 !important;
        color: #111111 !important;
        overflow: visible !important;
        z-index: 99998 !important;
    }

    .zirethic-header-inner {
        height: 61px !important;
        display: grid !important;
        grid-template-columns: 28px 28px 1fr 28px 28px !important;
        align-items: center !important;
        gap: 6px !important;
        padding: 0 14px !important;
        position: relative !important;
        overflow: visible !important;
    }

    .z-nav-left,
    .z-language,
    .z-currency,
    #google_translate_element,
    .z-nav-right > .z-icon-link[aria-label="Account"] {
        display: none !important;
    }

    .z-nav-right {
        display: contents !important;
    }

    .z-hamburger {
        grid-column: 1 !important;
        grid-row: 1 !important;
        display: flex !important;
        width: 24px !important;
        height: 24px !important;
        align-items: center !important;
        justify-content: center !important;
        border: none !important;
        background: transparent !important;
        padding: 0 !important;
        position: relative !important;
        z-index: 100004 !important;
        cursor: pointer !important;
    }

    .z-hamburger span,
    .zirethic-header.is-home .z-hamburger span,
    .zirethic-header.is-inner .z-hamburger span {
        position: absolute !important;
        width: 15px !important;
        height: 1px !important;
        left: 5px !important;
        background: #111111 !important;
        display: block !important;
        transition: 0.2s ease !important;
    }

    .z-hamburger span:nth-child(1) { top: 8px !important; }
    .z-hamburger span:nth-child(2) { top: 12px !important; }
    .z-hamburger span:nth-child(3) { top: 16px !important; }

    .zirethic-header.menu-open .z-hamburger span:nth-child(1) {
        top: 12px !important;
        transform: rotate(45deg) !important;
    }

    .zirethic-header.menu-open .z-hamburger span:nth-child(2) {
        opacity: 0 !important;
    }

    .zirethic-header.menu-open .z-hamburger span:nth-child(3) {
        top: 12px !important;
        transform: rotate(-45deg) !important;
    }

    .z-logo,
    .zirethic-header.is-home .z-logo,
    .zirethic-header.is-inner .z-logo {
        grid-column: 3 !important;
        grid-row: 1 !important;
        justify-self: center !important;
        color: #111111 !important;
        font-size: 24px !important;
        font-weight: 500 !important;
        letter-spacing: 0.5px !important;
        text-decoration: none !important;
        z-index: 100003 !important;
    }

    .z-product-search {
        grid-column: 2 !important;
        grid-row: 1 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        z-index: 100003 !important;
    }

    .z-product-search .z-search-menu {
        display: none !important;
    }

    .z-search-btn,
    .z-product-search .z-icon-btn {
        width: 24px !important;
        height: 24px !important;
        padding: 0 !important;
        border: none !important;
        background: transparent !important;
        color: #111111 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    .z-nav-right > .z-icon-link[aria-label="Tag"] {
        grid-column: 4 !important;
        grid-row: 1 !important;
        width: 24px !important;
        height: 24px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        color: #111111 !important;
        z-index: 100003 !important;
    }

    .z-cart-trigger,
    .z-nav-right > .z-icon-link[aria-label="Cart"] {
        grid-column: 5 !important;
        grid-row: 1 !important;
        width: 24px !important;
        height: 24px !important;
        padding: 0 !important;
        border: none !important;
        background: transparent !important;
        color: #111111 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        z-index: 100003 !important;
    }

    .z-product-search svg,
    .z-icon-link svg,
    .z-cart-trigger svg,
    .z-icon-btn svg,
    .zirethic-header.is-home .z-product-search svg,
    .zirethic-header.is-home .z-icon-link svg,
    .zirethic-header.is-home .z-cart-trigger svg,
    .zirethic-header.is-inner .z-product-search svg,
    .zirethic-header.is-inner .z-icon-link svg,
    .zirethic-header.is-inner .z-cart-trigger svg {
        width: 14px !important;
        height: 14px !important;
        stroke: #111111 !important;
        color: #111111 !important;
        stroke-width: 1.5 !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .z-mobile-menu {
        display: block !important;
        position: fixed !important;
        top: 61px !important;
        left: 0 !important;
        width: 88vw !important;
        max-width: 360px !important;
        height: calc(100vh - 61px) !important;
        background: #ffffff !important;
        z-index: 99997 !important;
        transform: translateX(-100%) !important;
        transition: transform 0.25s ease !important;
        overflow: hidden !important;
        border-right: 1px solid #eeeeee !important;
    }

    .zirethic-header.menu-open .z-mobile-menu,
    .z-mobile-menu.is-open {
        transform: translateX(0) !important;
    }

    .z-mobile-menu-panel {
        position: absolute !important;
        inset: 0 !important;
        background: #ffffff !important;
        display: none !important;
        flex-direction: column !important;
        justify-content: space-between !important;
    }

    .z-mobile-menu-panel.active {
        display: flex !important;
    }

    .z-mobile-menu-links {
        display: block !important;
        width: 100% !important;
        background: #ffffff !important;
    }

    .z-mobile-menu-links a,
    .z-mobile-menu-links button {
        width: 100% !important;
        height: 44px !important;
        padding: 0 22px !important;
        border: none !important;
        border-bottom: 1px solid #eeeeee !important;
        background: #ffffff !important;
        color: #111111 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        text-decoration: none !important;
        font-size: 16px !important;
        font-weight: 400 !important;
        text-transform: uppercase !important;
        text-align: left !important;
        cursor: pointer !important;
    }

    .z-mobile-menu-bottom {
        display: block !important;
        padding: 0 22px 26px !important;
        background: #ffffff !important;
    }

    .z-mobile-login-link {
        display: inline-flex !important;
        align-items: center !important;
        gap: 8px !important;
        text-decoration: none !important;
        color: #111111 !important;
        font-size: 16px !important;
        text-transform: uppercase !important;
        margin-bottom: 20px !important;
    }

    .z-mobile-login-link svg {
        width: 13px !important;
        height: 13px !important;
        stroke-width: 1.5 !important;
    }

    .z-mobile-currency {
        position: relative !important;
    }

    .z-mobile-currency-toggle {
        border: none !important;
        background: transparent !important;
        color: #9a9a9a !important;
        font-size: 14px !important;
        padding: 0 !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 5px !important;
        cursor: pointer !important;
    }

    .z-mobile-currency-list {
        display: none !important;
        margin-top: 12px !important;
        max-height: 160px !important;
        overflow-y: auto !important;
        width: 170px !important;
        background: #ffffff !important;
        border: 1px solid #eeeeee !important;
        scrollbar-width: none !important;
    }

    .z-mobile-currency.open .z-mobile-currency-list {
        display: block !important;
    }

    .z-mobile-currency-list::-webkit-scrollbar {
        display: none !important;
    }

    .z-mobile-currency-list button {
        width: 100% !important;
        height: 34px !important;
        padding: 0 10px !important;
        border: none !important;
        border-bottom: 1px solid #f1f1f1 !important;
        background: #ffffff !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        color: #111111 !important;
        font-size: 9px !important;
        cursor: pointer !important;
    }

    .z-mobile-currency-list small {
        color: #8a8a8a !important;
        font-size: 8px !important;
    }

    .z-mobile-search-panel {
        position: fixed !important;
        top: 61px !important;
        left: 0 !important;
        right: 0 !important;
        background: #ffffff !important;
        z-index: 99996 !important;
        display: none !important;
        border-bottom: 1px solid #e5e5e5 !important;
    }

    .z-mobile-search-panel.active {
        display: block !important;
    }

    .z-mobile-search-row {
        height: 42px !important;
        display: flex !important;
        align-items: center !important;
        padding: 0 14px !important;
        gap: 8px !important;
    }

    .z-mobile-search-row svg {
        width: 14px !important;
        height: 14px !important;
        stroke-width: 1.5 !important;
    }

    .z-mobile-search-row input {
        flex: 1 !important;
        border: none !important;
        outline: none !important;
        background: transparent !important;
        color: #111111 !important;
        font-size: 10px !important;
        text-transform: uppercase !important;
    }

    .z-mobile-search-row button {
        border: none !important;
        background: transparent !important;
        color: #111111 !important;
        font-size: 16px !important;
        line-height: 1 !important;
        padding: 0 !important;
        cursor: pointer !important;
    }

    .z-mobile-search-results {
        max-height: 360px !important;
        overflow-y: auto !important;
        background: #ffffff !important;
        scrollbar-width: none !important;
    }

    .z-mobile-search-results::-webkit-scrollbar {
        display: none !important;
    }

    .z-mobile-search-results a {
        display: flex !important;
        gap: 10px !important;
        padding: 10px 14px !important;
        border-top: 1px solid #eeeeee !important;
        text-decoration: none !important;
        color: #111111 !important;
    }

    .z-mobile-search-results img {
        width: 45px !important;
        height: 52px !important;
        object-fit: contain !important;
        background: #e2e2e0 !important;
    }

    .z-mobile-search-results .name {
        display: block !important;
        font-size: 10px !important;
        margin-bottom: 3px !important;
    }

    .z-mobile-search-results .price {
        display: block !important;
        font-size: 9px !important;
    }

    .z-mobile-search-empty {
        padding: 14px !important;
        font-size: 10px !important;
        color: #111111 !important;
        border-top: 1px solid #eeeeee !important;
    }

    .site-content {
        padding-top: 61px !important;
    }
}
@media (max-width: 768px) {
    .z-mobile-menu-links .z-mobile-back-link {
        justify-content: flex-start !important;
        gap: 8px !important;
    }

    .z-mobile-menu-links .z-mobile-back-link span {
        display: inline-flex !important;
        width: auto !important;
        flex: 0 0 auto !important;
    }

    .z-mobile-menu-links .z-mobile-back-link span:first-child {
        font-size: 16px !important;
        line-height: 1 !important;
    }

    .z-mobile-menu-links .z-mobile-back-link span:last-child {
        font-size: 16px !important;
        line-height: 1 !important;
    }
}
@media (max-width: 768px) {
    .z-mobile-currency-toggle {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 4px !important;
        border: none !important;
        background: transparent !important;
        padding: 0 !important;
        margin: 0 !important;
        color: #9a9a9a !important;
        cursor: pointer !important;
        line-height: 1 !important;
    }

    .z-mobile-currency-code {
        font-size: 14px !important;
        font-weight: 400 !important;
        color: #9a9a9a !important;
        line-height: 1 !important;
        text-transform: uppercase !important;
    }

    .z-mobile-currency-icon {
        width: 18px !important;
        height:18px !important;
        color: #9a9a9a !important;
        stroke: #9a9a9a !important;
        transform: translateY(1px) !important;
    }

    .z-mobile-currency.open .z-mobile-currency-icon {
        transform: translateY(1px) rotate(180deg) !important;
    }
}

/* =========================================
   FINAL MOBILE HEADER HEIGHT FIX
========================================= */

@media (max-width: 768px) {
    .zirethic-header {
        width: 100% !important;
        height: 61px !important;
        min-height: 61px !important;
        max-height: 61px !important;

        margin: 0 !important;
        padding: 0 !important;

        display: block !important;
        overflow: visible !important;
        box-sizing: border-box !important;
    }

    .zirethic-header-inner {
        width: 100% !important;
        height: 61px !important;
        min-height: 61px !important;
        max-height: 61px !important;

        margin: 0 auto !important;
        padding: 0 14px !important;

        display: grid !important;
        grid-template-columns: 28px 28px 1fr 28px 28px !important;
        align-items: center !important;
        align-content: center !important;
        gap: 6px !important;

        box-sizing: border-box !important;
    }

    .z-hamburger,
    .z-product-search,
    .z-logo,
    .z-nav-right,
    .z-icon-link,
    .z-icon-btn,
    .z-cart-trigger {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        top: auto !important;
        bottom: auto !important;
        transform: none !important;
        align-self: center !important;
    }

    .z-logo {
        grid-column: 3 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        line-height: 1 !important;
    }

    .z-hamburger {
        grid-column: 1 !important;
    }

    .z-product-search {
        grid-column: 2 !important;
    }

    .z-nav-right > .z-icon-link[aria-label="Tag"] {
        grid-column: 4 !important;
    }

    .z-cart-trigger,
    .z-nav-right > .z-icon-link[aria-label="Cart"] {
        grid-column: 5 !important;
    }

    /* Inner pages need room for the fixed header */
    .zirethic-header.is-inner + .site-content,
    body:not(:has(.zirethic-header.is-home)) .site-content {
        padding-top: 61px !important;
    }

    /* Homepage hero begins directly behind the transparent header */
    body:has(.zirethic-header.is-home) .site-content {
        padding-top: 0 !important;
    }

    /* About page uses a white mobile header, so reserve exactly 61px */
    body:has(.about-page-screen) .site-content {
        padding-top: 61px !important;
    }

    .site-content {
        margin-top: 0 !important;
    }

    .site-content > :first-child {
        margin-top: 0 !important;
    }
}


/* ======================================================
   HERO HEIGHT INCREASE - DESKTOP ONLY
   ====================================================== */

@media (min-width: 769px) {
    .hero {
        height: 95svh !important;
        min-height: 850px !important;
    }

    .hero-bg,
    .hero-slide {
        height: 100% !important;
        background-size: cover !important;
        background-position: center center !important;
    }
}



/* ================= SMOOTH DESKTOP SEARCH BAR ================= */

@media (min-width: 769px) {
    .zirethic-header.search-open {
        background: #ffffff !important;
       
        box-shadow: none !important;
        overflow: visible !important;
    }

    .zirethic-header.search-open .zirethic-header-inner {
        height: clamp(38px, 4vw, 46px) !important;
    }

    .zirethic-header.search-open .z-nav-left a,
    .zirethic-header.search-open .z-shop-trigger,
    .zirethic-header.search-open .z-logo,
    .zirethic-header.search-open .z-dropdown-toggle,
    .zirethic-header.search-open .z-language-toggle,
    .zirethic-header.search-open .z-currency-toggle,
    .zirethic-header.search-open .z-icon-btn,
    .zirethic-header.search-open .z-icon-link,
    .zirethic-header.search-open .z-cart-trigger {
        color: #111111 !important;
    }

    .zirethic-header.search-open .z-icon-btn svg,
    .zirethic-header.search-open .z-icon-link svg,
    .zirethic-header.search-open .z-cart-trigger svg,
    .zirethic-header.search-open .z-search-btn svg,
    .zirethic-header.search-open .z-product-search svg {
        stroke: #111111 !important;
        color: #111111 !important;
    }

    .z-product-search {
        position: static !important;
    }

    .z-product-search .z-search-menu {
        position: fixed !important;
        top: clamp(38px, 4vw, 46px) !important;
        left: 0 !important;
        right: 0 !important;
        width: 100vw !important;
        max-width: 100vw !important;
        height: 56px !important;
        display: none !important;
        padding: 0 34px !important;
        background: #ffffff !important;
        border: none !important;
    
        border-radius: 0 !important;
        box-shadow: none !important;
        z-index: 10050 !important;
    }

    .z-product-search.open .z-search-menu {
        display: block !important;
    }

    .z-product-search .z-dropdown-search {
        width: 100% !important;
        height: 56px !important;
        margin: 0 !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
        border: none !important;
        background: transparent !important;
        border-radius: 0 !important;
    }

    .z-product-search .z-dropdown-search input {
        flex: 1 !important;
        width: 100% !important;
        height: 56px !important;
        border: none !important;
        outline: none !important;
        background: transparent !important;
        color: #111111 !important;
        font-size: 12px !important;
        font-weight: 400 !important;
        text-transform: uppercase !important;
    }

    .z-product-search .z-dropdown-search input::placeholder {
        color: #717680 !important;
        text-transform: uppercase !important;
    }

    .z-desktop-search-close {
        width: 24px !important;
        height: 24px !important;
        border: none !important;
        background: transparent !important;
        color: #717680 !important;
        font-size: 22px !important;
        line-height: 1 !important;
        cursor: pointer !important;
        padding: 0 !important;
    }

    .z-product-search .search-dropdown {
        position: fixed !important;
        top: calc(clamp(38px, 4vw, 46px) + 56px) !important;
        left: 0 !important;
        right: 0 !important;
        width: 100vw !important;
        max-width: 100vw !important;
        max-height: 340px !important;
        padding: 0 34px 18px !important;
        background: #ffffff !important;
        overflow-y: auto !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
    }
}

/* MOVE FAVOURITES ICON BESIDE CART ON MOBILE */
@media (max-width: 768px) {
    .z-nav-right > .z-icon-link[aria-label="Favourites"] {
        grid-column: 4 !important;
        grid-row: 1 !important;
        width: 24px !important;
        height: 24px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        z-index: 100001 !important;
    }

    .z-cart-trigger,
    .z-nav-right > .z-icon-link[aria-label="Cart"] {
        grid-column: 5 !important;
        grid-row: 1 !important;
        width: 24px !important;
        height: 24px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        z-index: 100001 !important;
    }
}
/* REMOVE MOBILE SHOP TOP SPACE + BORDER */
@media (max-width: 768px) {
    .zirethic-header,
    .zirethic-header.is-inner,
    .zirethic-header.is-home,
    .zirethic-header.shopzirethic-header.is-home,
    .zirethic-header.shop-dropdown-open {
        border: none !important;
        border-bottom: none !important;
        box-shadow: none !important;
    }

    .site-content {
        padding-top: 61px !important;
        margin-top: 0 !important;
    }

    .shop-page {
        padding-top: 10px !important;
        margin-top: 0 !important;
    }

    .shop-topbar {
        margin-top: 0 !important;
        padding-top: 0 !important;
        border: none !important;
    }

    .shop-topbar::before,
    .shop-topbar::after,
    .shop-actions-right::before,
    .shop-actions-right::after {
        display: none !important;
        content: none !important;
    }

    .shop-actions-right {
        border: none !important;
        border-top: none !important;
        border-bottom: none !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .shop-topbar-left,
    .shop-topbar-left h1 {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
}
/* ======================================================
   FINAL DESKTOP SEARCH HEADER FIX
   Home, About and all other pages
   ====================================================== */

@media (min-width: 769px) {

    /* Entire navigation/header becomes white */
    body:has(.z-product-search.open) .zirethic-header,
    body:has(.z-product-search.open) .zirethic-header.is-home,
    body:has(.z-product-search.open) .zirethic-header.is-inner {
        background: #ffffff !important;
        background-color: #ffffff !important;
        background-image: none !important;

        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;

        border-bottom: none !important;
        box-shadow: none !important;
        overflow: visible !important;
    }

    /* Make the actual nav container white too */
    body:has(.z-product-search.open)
    .zirethic-header .zirethic-header-inner {
        background: #ffffff !important;
        background-color: #ffffff !important;
    }

    /* Make every navigation text black */
    body:has(.z-product-search.open)
    .zirethic-header .z-nav-left a,

    body:has(.z-product-search.open)
    .zirethic-header .z-shop-trigger,

    body:has(.z-product-search.open)
    .zirethic-header .z-logo,

    body:has(.z-product-search.open)
    .zirethic-header .z-dropdown-toggle,

    body:has(.z-product-search.open)
    .zirethic-header .z-language-toggle,

    body:has(.z-product-search.open)
    .zirethic-header .z-currency-toggle,

    body:has(.z-product-search.open)
    .zirethic-header .z-icon-btn,

    body:has(.z-product-search.open)
    .zirethic-header .z-icon-link,

    body:has(.z-product-search.open)
    .zirethic-header .z-cart-trigger,

    body:has(.z-product-search.open)
    .zirethic-header .z-search-btn {
        color: #111111 !important;
    }

    /* Make all header SVG icons black */
    body:has(.z-product-search.open)
    .zirethic-header svg {
        color: #111111 !important;
        stroke: #111111 !important;
    }

    body:has(.z-product-search.open)
    .zirethic-header svg path,

    body:has(.z-product-search.open)
    .zirethic-header svg circle,

    body:has(.z-product-search.open)
    .zirethic-header svg line,

    body:has(.z-product-search.open)
    .zirethic-header svg polyline {
        stroke: #111111 !important;
    }

    /* Font Awesome icons */
    body:has(.z-product-search.open)
    .zirethic-header i {
        color: #111111 !important;
    }

    /* Keep search area completely white */
    body:has(.z-product-search.open)
    .z-product-search.open .z-search-menu,

    body:has(.z-product-search.open)
    .z-product-search.open .z-dropdown-search,

    body:has(.z-product-search.open)
    .z-product-search.open .search-dropdown {
        background: #ffffff !important;
        background-color: #ffffff !important;
    }

    /* Search text */
    body:has(.z-product-search.open)
    .z-product-search input {
        color: #111111 !important;
    }

    body:has(.z-product-search.open)
    .z-product-search input::placeholder {
        color: #717680 !important;
    }

    /* Close icon */
    body:has(.z-product-search.open)
    .z-desktop-search-close {
        color: #717680 !important;
    }
}

/* DESKTOP CURRENCY VS SEARCH FIX
   When the currency dropdown opens, the desktop search panel is hidden
   and the currency menu stays above every header panel. */
@media screen and (min-width: 769px) {
    .zirethic-header .z-currency {
        position: relative !important;
        z-index: 10100 !important;
    }

    .zirethic-header .z-currency.open {
        z-index: 10120 !important;
    }

    .zirethic-header .z-currency.open .z-currency-menu {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        z-index: 10150 !important;
    }

    /* Do not allow the open search bar to cover the currency list. */
    .zirethic-header:has(.z-currency.open)
    .z-product-search.open
    .z-search-menu {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}
