/* PaliRoots Complete E-Commerce CSS Design System */
@import url('https://fonts.cdnfonts.com/css/pp-neue-montreal');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700&family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ==========================================================================
   Typography & Font Faces: Neue Montreal Medium (Global)
   ========================================================================== */
@font-face {
    font-family: 'NeueMontreal-Medium';
    src: local('Neue Montreal Medium'), local('PP Neue Montreal Medium'),
         url('/fonts/NeueMontreal-Medium.woff') format('woff'),
         url('https://fonts.cdnfonts.com/s/100431/ppneuemontreal-medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'NeueMontreal-Medium';
    src: local('Neue Montreal Bold'), local('PP Neue Montreal Bold'),
         url('/fonts/NeueMontreal-Bold.woff') format('woff'),
         url('https://fonts.cdnfonts.com/s/100431/ppneuemontreal-bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'NeueMontreal-Medium';
    src: local('Neue Montreal Book'), local('PP Neue Montreal Book'), local('Neue Montreal Regular'),
         url('/fonts/NeueMontreal-Regular.woff') format('woff'),
         url('https://fonts.cdnfonts.com/s/100431/ppneuemontreal-book.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PP Neue Montreal';
    src: local('PP Neue Montreal Medium'), local('Neue Montreal Medium'),
         url('/fonts/NeueMontreal-Medium.woff') format('woff'),
         url('https://fonts.cdnfonts.com/s/100431/ppneuemontreal-medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PP Neue Montreal';
    src: local('PP Neue Montreal Bold'), local('Neue Montreal Bold'),
         url('/fonts/NeueMontreal-Bold.woff') format('woff'),
         url('https://fonts.cdnfonts.com/s/100431/ppneuemontreal-bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PP Neue Montreal';
    src: local('PP Neue Montreal Book'), local('Neue Montreal Book'),
         url('/fonts/NeueMontreal-Regular.woff') format('woff'),
         url('https://fonts.cdnfonts.com/s/100431/ppneuemontreal-book.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --brand-burgundy: #281716;
    --brand-burgundy-hover: #1c100f;
    --brand-red: #d9381e;
    --brand-dark: #111111;
    --brand-muted: #666666;
    --brand-light-bg: #f4f4f4;
    --brand-border: #e2e8f0;
    --brand-border-dark: #d1d5db;

    --font-heading: 'PP Neue Montreal', 'NeueMontreal-Regular', 'NeueMontreal-Medium', 'Cinzel', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-sans: 'PP Neue Montreal', 'NeueMontreal-Regular', 'NeueMontreal-Medium', 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-primary: 'PP Neue Montreal', 'NeueMontreal-Regular', 'NeueMontreal-Medium', sans-serif;

    --express-shop-pay: #5a31f4;
    --express-paypal: #ffc439;
    --express-gpay: #000000;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    width: 100%;
    max-width: 100vw;
    overflow-x: clip;
    -webkit-text-size-adjust: 100%;
    box-sizing: border-box;
}

body {
    font-family: 'PP Neue Montreal', 'NeueMontreal-Regular', 'NeueMontreal-Medium', var(--font-sans);
    color: var(--brand-dark);
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    line-height: 1.5;
    font-weight: 400;
    width: 100%;
    max-width: 100vw;
    overflow-x: clip;
    position: relative;
    min-height: 100vh;
}

img, svg, video, canvas, audio, iframe, embed, object {
    max-width: 100%;
    height: auto;
}

button, input, select, textarea, optgroup {
    font-family: 'NeueMontreal-Medium', 'PP Neue Montreal', var(--font-sans);
}

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

/* ==========================================================================
   Double Top Banners (Promo Bar + Benefits Ticker)
   ========================================================================== */
.top-promo-bar {
    background-color: #0d0d0d;
    color: #ffffff;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
    z-index: 102;
}

.announcement-bar {
    background-color: #414b32; /* Exact olive army green from benchmark */
    color: #ffffff;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 1px solid rgba(0,0,0,0.12);
    position: relative;
    z-index: 101;
}

.ticker-wrap {
    width: 100%;
    overflow: hidden;
}

.ticker-move {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: ticker 35s linear infinite;
}

.ticker-move:hover {
    animation-play-state: paused;
}

.ticker-item {
    display: inline-block;
    padding: 0 28px;
}

@keyframes ticker {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

/* ==========================================================================
   Header Navigation (PaliRoots Benchmark Sticky Behavior)
   ========================================================================== */
.main-header {
    background-color: #ffffff;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    transition: background-color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.main-header:not(:has(.category-bar)) {
    border-bottom: 1px solid #eeeeee;
}

.main-header.is-scrolled {
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-container {
    max-width: 1680px;
    margin: 0 auto;
    padding: 14px 40px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-size: 11.5px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #111111;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease, opacity 0.2s ease;
    text-decoration: none;
}

.nav-link:hover, .nav-link.active {
    color: #000000;
    opacity: 0.75;
}

/* ==========================================================================
   Full-Width Luxury Mega Menu Dropdown
   ========================================================================== */
.nav-item-shop {
    display: inline-flex;
    align-items: center;
    position: static;
    padding: 6px 0;
}

.nav-item-shop > .nav-link {
    cursor: pointer;
    padding: 6px 0;
}

.chevron-icon {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-left: 3px;
}

.nav-item-shop:hover .chevron-icon,
.nav-item-shop.is-open .chevron-icon {
    transform: rotate(180deg);
}

.mega-menu-dropdown {
    position: absolute;
    top: var(--nav-header-height, 64px);
    left: 0;
    right: 0;
    width: 100%;
    background-color: #ffffff !important;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #e2e2e2;
    box-shadow: 0 25px 50px -10px rgba(0, 0, 0, 0.14);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1), transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.22s;
    pointer-events: none;
}

/* Invisible hover bridge between link and dropdown spanning header gap */
.mega-menu-dropdown::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
    pointer-events: auto;
}

.nav-item-shop:hover .mega-menu-dropdown,
.mega-menu-dropdown:hover,
.nav-item-shop.is-open .mega-menu-dropdown,
.mega-menu-dropdown.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.mega-menu-inner {
    max-width: 980px;
    margin: 0 auto;
    padding: 36px 36px 32px;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 48px;
    box-sizing: border-box;
    align-items: start;
}

.mega-col {
    display: flex;
    flex-direction: column;
}

.mega-col-essentials {
    border-right: 1px solid #f0f0f0;
    padding-right: 36px;
}

.mega-col-title {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888888;
    margin-bottom: 18px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f2f2f2;
}

.mega-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.mega-categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 11px 36px;
    align-items: start;
}

.mega-link {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #222222;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    line-height: 1.4;
}

.mega-link:hover {
    color: #414b32;
    transform: translateX(4px);
}

.mega-link.mega-link-prominent {
    font-weight: 600;
    color: #111111;
}

.mega-link.sale-tag {
    color: #d9381e;
    font-weight: 500;
}

.mega-link-icon {
    font-size: 13px;
    line-height: 1;
    display: inline-flex;
}

.mega-bullet {
    color: #b5b5b5;
    font-size: 10px;
    line-height: 1;
    transition: color 0.2s ease, transform 0.2s ease;
}

.mega-link:hover .mega-bullet {
    color: #414b32;
    transform: scale(1.3);
}

.mega-pill {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 2px 6px;
    border-radius: 10px;
    text-transform: uppercase;
    line-height: 1;
    display: inline-block;
}

.mega-pill-new {
    background: #eef5ee;
    color: #286b36;
    border: 1px solid #c4dec7;
}

.mega-pill-sale {
    background: #fdf0ed;
    color: #d9381e;
    border: 1px solid #f8d3cc;
}

/* Luxury Bottom Trust Bar in Mega Menu */
.mega-menu-bottom-bar {
    background: #faf8f5;
    border-top: 1px solid #f0ede6;
    padding: 12px 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    box-sizing: border-box;
}

.mega-bottom-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #555555;
}

.mega-bottom-icon {
    font-size: 13px;
    line-height: 1;
}

.mega-bottom-divider {
    color: #d0c8be;
    font-size: 10px;
}

.logo-center {
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
}

.brand-logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-decoration: none;
    height: 46px;
    min-width: 140px;
}

.brand-logo-text {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 4.5px;
    color: #2b1810; /* Rich espresso brown matching screenshot */
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-block;
}

.brand-primary-logo {
    height: auto;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}

.brand-both-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 1;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-inline-emblem {
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.brand-logo-icon {
    height: 44px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
    position: absolute;
    opacity: 0;
    transform: scale(0.8) translateY(6px);
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

/* On Sticky Scroll: Wordmark / Logo morphs into Logo Icon */
.main-header.is-scrolled .brand-logo-wrap.has-scroll-logo .brand-logo-text,
.main-header.is-scrolled .brand-logo-wrap.has-scroll-logo .brand-primary-logo,
.main-header.is-scrolled .brand-logo-wrap.has-scroll-logo .brand-both-wrap {
    opacity: 0;
    transform: translateY(-8px) scale(0.9);
    pointer-events: none;
}

.main-header.is-scrolled .brand-logo-wrap.has-scroll-logo .brand-logo-icon {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
}

.main-header.is-scrolled .brand-logo-wrap:not(.has-scroll-logo) .brand-primary-logo {
    transform: scale(0.92);
}

@media (max-width: 768px) {
    .brand-logo-text {
        font-size: 22px;
        letter-spacing: 2px;
    }
    .brand-primary-logo {
        max-height: 28px !important;
        max-width: 160px;
    }
    .brand-both-wrap {
        gap: 8px;
    }
    .brand-inline-emblem {
        max-height: 22px !important;
    }
    .brand-logo-icon {
        height: 34px;
        max-width: 160px;
    }
}

.nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
}

.header-icon-btn {
    background: none;
    border: none;
    color: #111111;
    cursor: pointer;
    padding: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.header-icon-btn:hover {
    opacity: 0.65;
}

.icon-badge-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -10px;
    background-color: #111111;
    color: #ffffff;
    font-size: 10px;
    font-weight: 500;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Category Sub-Bar */
.category-bar {
    border-top: 1.5px solid #414b32; /* Signature thin divider line directly above categories / below logo */
    border-bottom: 1px solid #ececec;
    padding: 10px 40px;
    overflow-x: auto;
    white-space: nowrap;
    background-color: #ffffff;
    scrollbar-width: none;
}

.category-bar::-webkit-scrollbar {
    display: none;
}

.category-list {
    max-width: 1680px;
    margin: 0 auto;
    display: flex;
    gap: 26px;
    align-items: center;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.cat-item {
    color: #444444;
    padding: 4px 0;
    position: relative;
    transition: color 0.2s ease, border-color 0.2s ease;
    text-decoration: none;
    border-bottom: 2px solid transparent;
}

.cat-item:hover {
    color: #000000;
}

.cat-item.active-cat {
    color: #000000;
    font-weight: 500;
    border-bottom: 2px solid #111111;
}

.cat-item.active-cat::after {
    display: none !important;
}

.cat-item.highlight-red {
    color: #d9381e;
    font-weight: 500;
}

/* ==========================================================================
   Catalog Page Layout
   ========================================================================== */
.catalog-container {
    max-width: 1680px;
    margin: 0 auto;
    padding: 32px 40px 60px;
}

.catalog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.catalog-title {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #111111;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.catalog-count {
    font-size: 11px;
    font-weight: 500;
    color: #888888;
}

.catalog-clear-cat-btn {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #777777;
    text-decoration: none;
    background: #eeeeee;
    padding: 3px 8px;
    border-radius: 4px;
    margin-left: 8px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}

.catalog-clear-cat-btn:hover {
    background: #111111;
    color: #ffffff;
}

.catalog-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.catalog-bottom-action {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 38px 0 16px;
    width: 100%;
}

.catalog-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 36px;
    background: #ffffff;
    border: 1.5px solid #111111;
    color: #111111;
    font-family: inherit;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.catalog-view-all:hover {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.catalog-action-divider {
    color: #dddddd;
    font-size: 11px;
}

.catalog-filter-btn-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.catalog-filter-icon-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 13px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    color: #111111;
    font-family: inherit;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
    user-select: none;
}

.catalog-filter-icon-btn:hover,
.catalog-filter-btn-wrap.is-open .catalog-filter-icon-btn {
    background: #f7f7f7;
    border-color: #111111;
    color: #000000;
}

.catalog-filter-icon-btn.has-active-sort {
    background: #111111;
    border-color: #111111;
    color: #ffffff;
}

.catalog-filter-icon-btn.has-active-sort:hover,
.catalog-filter-btn-wrap.is-open .catalog-filter-icon-btn.has-active-sort {
    background: #242424;
    border-color: #242424;
    color: #ffffff;
}

.filter-icon-svg {
    flex-shrink: 0;
}

.filter-chevron-svg {
    flex-shrink: 0;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.65;
}

.catalog-filter-btn-wrap.is-open .filter-chevron-svg {
    transform: rotate(180deg);
    opacity: 1;
}

.catalog-filter-icon-btn.has-active-sort .filter-chevron-svg {
    opacity: 0.85;
}

/* Modern Minimalist Sort Dropdown Card */
.catalog-sort-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 260px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    padding: 6px;
    box-shadow: 0 16px 36px -4px rgba(0, 0, 0, 0.12), 0 4px 12px -2px rgba(0, 0, 0, 0.04);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.97);
    pointer-events: none;
    transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.2s;
}

.catalog-filter-btn-wrap.is-open .catalog-sort-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.catalog-sort-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px 8px;
    border-bottom: 1px solid #f2f2f2;
    margin-bottom: 4px;
}

.sort-menu-heading {
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 1.4px;
    color: #8c8c8c;
    text-transform: uppercase;
}

.sort-menu-reset-btn {
    font-size: 10.5px;
    font-weight: 500;
    color: #111111;
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
    transition: opacity 0.15s ease;
}

.sort-menu-reset-btn:hover {
    opacity: 0.6;
}

.catalog-sort-menu-list {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.catalog-sort-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 10px;
    border-radius: 6px;
    text-decoration: none;
    color: #222222;
    transition: background 0.15s ease, color 0.15s ease;
    cursor: pointer;
    outline: none;
}

.catalog-sort-option:hover,
.catalog-sort-option:focus-visible {
    background: #f7f7f7;
    color: #000000;
}

.sort-option-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
}

.sort-option-title {
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #222222;
}

.sort-option-sub {
    font-size: 10px;
    color: #8c8c8c;
    letter-spacing: 0.1px;
}

.sort-option-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-left: 8px;
}

.sort-radio-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: 1px solid #d4d4d4;
    transition: all 0.15s ease;
}

.catalog-sort-option:hover .sort-radio-dot,
.catalog-sort-option:focus-visible .sort-radio-dot {
    border-color: #777777;
    background: #eaeaea;
}

.catalog-sort-option.is-selected {
    background: #f3f3f3;
}

.catalog-sort-option.is-selected .sort-option-title {
    font-weight: 600;
    color: #000000;
}

.catalog-sort-option.is-selected .sort-option-check svg {
    color: #111111;
}

.catalog-sort-select-overlay {
    display: none;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 20px;
}

.product-card {
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
}

.card-image-wrap {
    background-color: #f7f7f7;
    aspect-ratio: 4 / 5;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.card-slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.card-slider-track::-webkit-scrollbar {
    display: none;
}

.card-img-slide {
    width: 100%;
    height: 100%;
    flex: 0 0 100%;
    object-fit: cover;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    user-select: none;
    -webkit-user-drag: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}

.product-card:hover .card-img-slide {
    transform: scale(1.03);
}

/* Card Slider Dots Indicator */
.card-slider-indicators {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
    z-index: 4;
    pointer-events: none;
}

.card-slider-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    transition: all 0.2s ease;
}

.card-slider-dot.active {
    width: 13px;
    border-radius: 4px;
    background: #ffffff;
}

/* Card Arrow Navigation Buttons (Desktop Hover) */
.card-arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
    border: none;
    color: #111111;
    font-size: 16px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    opacity: 0;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.card-arrow-prev {
    left: 6px;
}

.card-arrow-next {
    right: 6px;
}

.product-card:hover .card-arrow-btn {
    opacity: 1;
}

.card-arrow-btn:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.12);
}

/* Quick Add to Cart Plus Button (Bottom-Right Corner) */
.quick-add-btn {
    position: absolute;
    right: 8px;
    bottom: 8px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #ffffff !important;
    color: #111111 !important;
    border: 1.5px solid rgba(0, 0, 0, 0.14) !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18) !important;
    z-index: 30 !important;
    pointer-events: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
}

.quick-add-btn * {
    pointer-events: none !important;
}

.quick-add-btn .plus-icon {
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.quick-add-btn:hover {
    background: #111111 !important;
    color: #ffffff !important;
    border-color: #111111 !important;
    transform: scale(1.12);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28) !important;
}

.quick-add-btn.is-active {
    background: #111111 !important;
    color: #ffffff !important;
    border-color: #111111 !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28) !important;
}

.quick-add-btn.is-active .plus-icon {
    transform: rotate(45deg);
}

.quick-add-btn:active {
    transform: scale(0.92);
}

.quick-add-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.quick-add-btn.added {
    background: #108043 !important;
    color: #ffffff !important;
    border-color: #108043 !important;
}

/* ==================== CARD QUICK SIZE PICKER BAR ==================== */
.card-hover-sizes-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(246, 246, 247, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 8px 46px 8px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 25;
    transform: translateY(105%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.22s ease, visibility 0.22s ease;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
    pointer-events: none;
}

.card-hover-sizes-bar.is-open {
    transform: translateY(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.card-sizes-list {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    max-width: 270px;
    gap: 3px;
}

.card-size-pill {
    background: transparent;
    border: none;
    outline: none;
    color: #1a1a1a;
    font-family: inherit;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 5px 7px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 26px;
    line-height: 1;
    position: relative;
}

.card-size-pill:hover:not(:disabled) {
    background: #111111;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
}

.card-size-pill.size-adding {
    opacity: 0.7;
    pointer-events: none;
    transform: scale(0.92);
}

.card-size-pill.size-added {
    background: #108043 !important;
    color: #ffffff !important;
    transform: scale(1.08);
}

.card-size-pill.is-out-of-stock,
.card-size-pill:disabled {
    color: #9ca3af;
    cursor: not-allowed;
    text-decoration: line-through;
    text-decoration-color: #6b7280;
    text-decoration-thickness: 1.5px;
    opacity: 0.7;
}

.card-size-pill.is-out-of-stock:hover {
    background: transparent !important;
    color: #9ca3af !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Mobile & Touch Devices Support */
@media (max-width: 768px) {
    .card-hover-sizes-bar {
        padding: 6px 42px 6px 4px;
        background: rgba(248, 248, 248, 0.94);
    }
    .card-size-pill {
        font-size: 9.5px;
        letter-spacing: 0.5px;
        padding: 3px 4px;
        min-width: 20px;
    }
}

.quick-add-btn.added .plus-icon {
    display: none !important;
}

.quick-add-btn.added .check-icon {
    display: block !important;
}

/* ==========================================================================
   AS SEEN ON #PALIROOTS - INSTAGRAM STORIES SLIDER
   ========================================================================== */
.as-seen-section {
    max-width: 1440px;
    margin: 48px auto 40px;
    padding: 0 24px;
}

.as-seen-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.as-seen-title {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #111111;
    margin: 0;
}

.as-seen-nav-controls {
    display: flex;
    gap: 8px;
}

.as-seen-nav-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f7f7f7;
    border: 1px solid #e0e0e0;
    color: #111111;
    font-size: 18px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.as-seen-nav-btn:hover {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
}

.as-seen-slider-wrap {
    position: relative;
    width: 100%;
}

.as-seen-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    padding: 6px 2px 20px;
}

.as-seen-track::-webkit-scrollbar {
    display: none;
}

.story-card {
    position: relative;
    flex: 0 0 310px;
    height: 590px;
    border-radius: 18px;
    overflow: hidden;
    scroll-snap-align: start;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
    cursor: pointer;
    background: #1a1a1a;
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s ease;
}

.story-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
}

.story-progress-bar {
    position: absolute;
    top: 12px;
    left: 14px;
    right: 14px;
    height: 2.5px;
    background: rgba(255, 255, 255, 0.45);
    border-radius: 2px;
    z-index: 4;
}

.story-progress-fill {
    display: block;
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 2px;
}

.story-profile-bar {
    position: absolute;
    top: 22px;
    left: 14px;
    right: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 4;
}

.story-profile-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.story-profile-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid #ffffff;
    object-fit: cover;
    background: #2a2a2a;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.story-profile-username {
    font-size: 12.5px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
}

.story-profile-time {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.88);
    margin-left: 4px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
}

.story-profile-menu {
    display: flex;
    gap: 2.5px;
    align-items: center;
    padding: 4px;
}

.story-profile-menu span {
    width: 3.5px;
    height: 3.5px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.story-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.4s ease;
}

.story-card:hover .story-card-img {
    transform: scale(1.03);
}

.story-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.05) 26%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.35) 100%);
    z-index: 2;
    pointer-events: none;
}

/* ==========================================================================
   CATEGORY SHOWCASE SLIDER (MATCHING SCREENSHOT)
   ========================================================================== */
.category-slider-section {
    max-width: 1440px;
    margin: 48px auto;
    padding: 0 24px;
    position: relative;
}

.category-header-wrap {
    text-align: center;
    margin-bottom: 32px;
    padding: 0 16px;
}

.category-heading-title {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 38px;
    font-weight: 400;
    letter-spacing: 2.5px;
    color: #111111;
    text-transform: uppercase;
    margin: 0 0 8px 0;
    line-height: 1.15;
}

.category-heading-subtitle {
    font-family: 'Space Mono', 'Courier New', Courier, monospace;
    font-size: 16px;
    font-weight: 400;
    color: #2b2b2b;
    letter-spacing: 0.5px;
    line-height: 1.45;
    margin: 0 auto;
}

.category-slider-wrap {
    position: relative;
    width: 100%;
}

.category-slider-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    padding: 4px 2px 14px;
}

.category-slider-track::-webkit-scrollbar {
    display: none;
}

.category-slide-card {
    position: relative;
    flex: 0 0 calc(33.333% - 8px);
    min-width: 320px;
    max-width: 440px;
    height: 480px;
    border-radius: 4px;
    overflow: hidden;
    scroll-snap-align: start;
    display: block;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    background: #111111;
}

.category-slide-img-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.category-slide-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-slide-card:hover .category-slide-img-wrap img {
    transform: scale(1.05);
}

.category-slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.24);
    transition: background 0.3s ease;
    pointer-events: none;
}

.category-slide-card:hover .category-slide-overlay {
    background: rgba(0, 0, 0, 0.35);
}

.category-slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    z-index: 2;
    pointer-events: none;
}

.category-slide-title {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.25;
    margin: 0;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
    transition: transform 0.3s ease;
}

.category-slide-card:hover .category-slide-title {
    transform: scale(1.03);
}

/* Desktop Arrow Navigation */
.category-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    border: none;
    color: #111111;
    font-size: 22px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
    transition: all 0.2s ease;
    opacity: 0.88;
}

.category-arrow-prev {
    left: 8px;
}

.category-arrow-next {
    right: 8px;
}

.category-slider-arrow:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
}

/* ==========================================================================
   SHOP THE LOOK (COMBO SELL & INTERACTIVE MODAL)
   ========================================================================== */
.shop-the-look-section {
    max-width: 1440px;
    margin: 56px auto;
    padding: 0 24px;
    position: relative;
}

.shop-the-look-header {
    text-align: center;
    margin-bottom: 32px;
    padding: 0 16px;
}

.shop-look-title {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 38px;
    font-weight: 400;
    letter-spacing: 2.5px;
    color: #111111;
    text-transform: uppercase;
    margin: 0 0 8px 0;
    line-height: 1.15;
    text-align: center;
}

.shop-look-subtitle {
    font-family: 'Space Mono', 'Courier New', Courier, monospace;
    font-size: 16px;
    font-weight: 400;
    color: #2b2b2b;
    letter-spacing: 0.5px;
    line-height: 1.45;
    margin: 0 auto;
    text-align: center;
}

.shop-look-nav-controls {
    display: flex;
    gap: 8px;
}

.shop-look-nav-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f7f7f7;
    border: 1px solid #e0e0e0;
    color: #111111;
    font-size: 18px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.shop-look-nav-btn:hover {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
}

.shop-the-look-slider-wrap {
    position: relative;
    width: 100%;
}

.shop-the-look-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    padding: 6px 2px 20px;
}

.shop-the-look-track::-webkit-scrollbar {
    display: none;
}

.shop-look-card {
    position: relative;
    flex: 0 0 350px;
    height: 520px;
    border-radius: 8px;
    overflow: hidden;
    scroll-snap-align: start;
    cursor: pointer;
    background: #f4f4f4;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.shop-look-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.shop-look-card-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shop-look-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.shop-look-card:hover .shop-look-card-media img {
    transform: scale(1.04);
}

.shop-look-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(17, 17, 17, 0.92);
    backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 9.5px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: 2px;
    z-index: 4;
}

.shop-look-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.78) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    z-index: 3;
    transition: background 0.3s ease;
}

.shop-look-card:hover .shop-look-card-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 30%, rgba(0, 0, 0, 0.86) 100%);
}

.shop-look-card-title {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 4px;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.shop-look-card-count {
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.shop-look-btn {
    align-self: flex-start;
    background: #ffffff;
    color: #111111;
    border: none;
    padding: 8px 16px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.shop-look-card:hover .shop-look-btn {
    background: #a67c38;
    color: #ffffff;
}

/* ==========================================================================
   SHOP THE LOOK INTERACTIVE MODAL
   ========================================================================== */
.shop-look-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.shop-look-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
}

.shop-look-modal-content {
    position: relative;
    width: 100%;
    max-width: 880px;
    max-height: 88vh;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
    z-index: 2;
    display: flex;
    flex-direction: column;
    animation: modalPopIn 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalPopIn {
    from {
        opacity: 0;
        transform: scale(0.94) translateY(12px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.shop-look-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f4f4f4;
    border: 1px solid #e5e5e5;
    color: #111111;
    font-size: 22px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
}

.shop-look-modal-close:hover {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
}

.shop-look-modal-body {
    display: flex;
    height: 100%;
    min-height: 520px;
}

.shop-look-modal-left {
    flex: 0 0 42%;
    position: relative;
    background: #111111;
    overflow: hidden;
}

.shop-look-modal-left img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-look-modal-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(17, 17, 17, 0.9);
    backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 2px;
    z-index: 2;
}

.shop-look-modal-right {
    flex: 1;
    padding: 32px 30px 24px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.shop-look-modal-header {
    margin-bottom: 20px;
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 16px;
}

.shop-look-kicker {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #a67c38;
    display: block;
    margin-bottom: 4px;
}

.shop-look-modal-heading {
    font-size: 20px;
    font-weight: 500;
    color: #111111;
    margin: 0 0 6px;
}

.shop-look-modal-desc {
    font-size: 12.5px;
    color: #666666;
    margin: 0;
    line-height: 1.5;
}

.shop-look-items-wrap {
    flex: 1;
    margin-bottom: 20px;
}

.shop-look-bundle-title {
    font-size: 12px;
    font-weight: 500;
    color: #111111;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0 0 12px;
}

.shop-look-items-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.shop-look-item-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: #fafafa;
    border: 1px solid #eeeeee;
    border-radius: 6px;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.shop-look-item-row:hover {
    background: #f5f5f5;
    border-color: #e0e0e0;
}

.shop-look-item-checkbox-wrap {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.combo-item-check {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.custom-chk {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1.5px solid #bbb;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: transparent;
    transition: all 0.2s ease;
}

.combo-item-check:checked + .custom-chk {
    background: #111111;
    border-color: #111111;
    color: #ffffff;
}

.shop-look-item-thumb {
    width: 52px;
    height: 62px;
    border-radius: 4px;
    overflow: hidden;
    background: #e9e9e9;
    flex-shrink: 0;
}

.shop-look-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-look-item-info {
    flex: 1;
    min-width: 0;
}

.shop-look-item-name {
    font-size: 13px;
    font-weight: 500;
    color: #111111;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}

.shop-look-item-price {
    font-size: 12.5px;
    font-weight: 400;
    color: #111111;
    margin-bottom: 4px;
}

.shop-look-size-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
}

.shop-look-size-wrap .size-label {
    font-size: 10.5px;
    color: #888;
    font-weight: 400;
    text-transform: uppercase;
}

.shop-look-size-select {
    padding: 3px 8px;
    font-size: 11px;
    border: 1px solid #ccc;
    border-radius: 3px;
    background: #fff;
    color: #111;
    outline: none;
    cursor: pointer;
}

.shop-look-modal-footer {
    border-top: 1px solid #eeeeee;
    padding-top: 16px;
}

.shop-look-pricing-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.shop-look-total-label {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #444;
}

.shop-look-total-value {
    font-size: 20px;
    font-weight: 500;
    color: #111111;
}

.shop-look-primary-btn {
    width: 100%;
    padding: 15px 20px;
    background: #111111;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.22s ease;
}

.shop-look-primary-btn:hover {
    background: #a67c38;
    box-shadow: 0 6px 18px rgba(166, 124, 56, 0.35);
}

.shop-look-primary-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
}

.sale-pill-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    border: 1px solid #111111;
    border-radius: 2px;
    padding: 2px 7px;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    background-color: #ffffff;
    color: #111111;
    z-index: 2;
}

.card-details {
    padding: 10px 0 0;
}

.card-title {
    font-size: 11.5px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 4px;
    color: #111111;
    line-height: 1.4;
}

.card-price {
    font-size: 12.5px;
    font-weight: 400;
    color: #111111;
}

.card-price .price-sale {
    color: #d9381e;
    font-weight: 500;
    margin-right: 6px;
}

.card-price .price-regular {
    text-decoration: line-through;
    color: #888888;
    font-weight: 400;
    font-size: 11.5px;
}

/* ==========================================================================
   Editorial Cultural Callout (Dual Columns)
   ========================================================================== */
.editorial-dual-banner {
    max-width: 1680px;
    margin: 50px auto 40px;
    padding: 44px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .editorial-dual-banner {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 30px 20px;
    }
}

.editorial-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.editorial-col-title {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #111111;
    margin-bottom: 8px;
}

.editorial-col-text {
    font-size: 13px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 14px;
}

.editorial-col-link {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #111111;
    text-decoration: none;
    border-bottom: 1px solid #111111;
    display: inline-block;
    width: fit-content;
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}

.editorial-col-link:hover {
    color: #d9381e;
    border-color: #d9381e;
}

/* ==========================================================================
   Campaign Lookbook Triptych (3-Column Luxury Feature)
   ========================================================================== */
.campaign-triptych-section {
    max-width: 1680px;
    margin: 60px auto;
    padding: 0 40px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .campaign-triptych-section {
        padding: 0 16px;
        margin: 40px auto;
    }
}

.triptych-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media (max-width: 768px) {
    .triptych-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

.triptych-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #111111;
    border-radius: 3px;
}

.triptych-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.triptych-card:hover img {
    transform: scale(1.04);
}

.triptych-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
    color: #ffffff;
}

.triptych-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.triptych-sub {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #dedede;
}

/* ==========================================================================
   Community Style Streetwear Strip
   ========================================================================== */
.community-showcase-section {
    max-width: 1680px;
    margin: 60px auto;
    padding: 0 40px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .community-showcase-section {
        padding: 0 16px;
        margin: 40px auto;
    }
}

.community-header {
    text-align: center;
    margin-bottom: 24px;
}

.community-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #111111;
    margin-bottom: 6px;
}

.community-tagline {
    font-size: 12px;
    color: #777777;
    letter-spacing: 1px;
}

.community-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

@media (max-width: 991px) {
    .community-strip {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .community-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

.community-card {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 3px;
    overflow: hidden;
    background: #eeeeee;
    display: block;
    text-decoration: none;
    color: #ffffff;
}

.community-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.community-card:hover img {
    transform: scale(1.06);
}

.community-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 12px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 65%, transparent 100%);
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(6px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
}

.community-card:hover .community-card-overlay {
    opacity: 1;
    transform: translateY(0);
}

.community-card-name {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
    color: #ffffff;
}

.community-card-price {
    font-size: 11px;
    color: #c8a265;
    font-weight: 400;
}

/* Floating Filter/Sort Action Button */
.floating-filter-pill {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    border-radius: 30px;
    padding: 10px 24px;
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    z-index: 99;
}

.floating-filter-pill span {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ==========================================================================
   Product Detail Page (PDP Layout)
   ========================================================================== */
.pdp-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 32px 80px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
}

.pdp-gallery {
    width: 100%;
}

.pdp-gallery-wrap {
    width: 100%;
}

.pdp-single-showcase {
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
}

.pdp-single-showcase .gallery-img-box {
    background-color: var(--brand-light-bg);
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pdp-single-showcase .gallery-img-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.1);
}

.pdp-single-showcase img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pdp-slider-container {
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
}

.pdp-main-viewport {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    background-color: var(--brand-light-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.pdp-main-viewport img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.2s ease-in-out;
}

.pdp-slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(8px);
    color: #111;
    border: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 22px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 5;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.pdp-slide-arrow:hover {
    background: #111;
    color: #c8a265;
    border-color: #111;
    transform: translateY(-50%) scale(1.08);
}

.pdp-slide-arrow.prev-arrow {
    left: 14px;
}

.pdp-slide-arrow.next-arrow {
    right: 14px;
}

.pdp-slide-badge {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(17, 17, 17, 0.75);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 11px;
    font-weight: 400;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 1px;
    z-index: 5;
}

.pdp-thumbnails-strip {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: thin;
}

.pdp-thumb-item {
    width: 68px;
    height: 85px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: all 0.2s ease;
    flex-shrink: 0;
    background: var(--brand-light-bg);
}

.pdp-thumb-item:hover {
    opacity: 0.9;
}

.pdp-thumb-item.active {
    border-color: #c8a265;
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(200, 162, 101, 0.25);
}

.pdp-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-img-box {
    background-color: var(--brand-light-bg);
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 4px;
    overflow: hidden;
}

.gallery-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pdp-sidebar {
    padding-top: 10px;
}

.pdp-title {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.pdp-price-wrap {
    font-size: 16px;
    margin-bottom: 20px;
}

.pdp-sale-price {
    color: var(--brand-red);
    font-weight: 500;
}

.pdp-original-price {
    text-decoration: line-through;
    color: var(--brand-muted);
    margin-left: 8px;
    font-size: 14px;
}

.pdp-option-group {
    margin-bottom: 20px;
}

.option-label {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: #444;
}

.size-selector-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.size-pill {
    min-width: 44px;
    height: 34px;
    border: 1px solid #d0d0d0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 2px;
}

.size-pill:hover, .size-pill.active {
    border-color: var(--brand-dark);
    background-color: var(--brand-dark);
    color: #ffffff;
}

/* Color Selector Variations (PDP) */
.color-selector-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.color-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 12px;
    height: 34px;
    border: 1px solid #d0d0d0;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 400;
    cursor: pointer;
    background: #ffffff;
    color: #333333;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
}

.color-pill:hover {
    border-color: #111111;
    transform: translateY(-1px);
}

.color-pill.active {
    border-color: #111111;
    background: #111111;
    color: #ffffff;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);
}

.color-swatch-circle {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.color-pill.active .color-swatch-circle {
    border-color: #ffffff;
    transform: scale(1.15);
}

/* Card Color Swatches (Catalog Grid) */
.card-color-swatches {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 6px;
}

.card-color-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.15);
    display: inline-block;
    transition: transform 0.18s ease;
}

.card-color-dot:hover {
    transform: scale(1.25);
}

.card-color-more {
    font-size: 10px;
    font-weight: 500;
    color: #888888;
    margin-left: 2px;
}

.btn-primary-action {
    width: 100%;
    background-color: var(--brand-burgundy);
    color: #ffffff;
    border: none;
    padding: 16px 20px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 3px;
    margin-bottom: 24px;
    transition: background-color 0.2s;
}

.btn-primary-action:hover {
    background-color: var(--brand-burgundy-hover);
}

/* ==================== PDP SHIPPING & BENEFITS BOX (Screenshot 1) ==================== */
.pdp-benefits-box {
    border: 1px solid #ebebeb;
    background: #fafafa;
    border-radius: 4px;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.pdp-benefit-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    line-height: 1.45;
    color: #4b5563;
}

.pdp-benefit-icon {
    font-size: 16px;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 1px;
}

.pdp-benefit-text {
    flex: 1;
}

.pdp-benefit-text a {
    color: #111111;
    text-decoration: underline;
    font-weight: 600;
}

/* ==================== PDP ACCORDIONS (Screenshot 1) ==================== */
.pdp-accordion-group {
    border-top: 1px solid #ebebeb;
    margin-top: 20px;
    margin-bottom: 28px;
}

.pdp-accordion-item {
    border-bottom: 1px solid #ebebeb;
    overflow: hidden;
}

.pdp-accordion-item .accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s ease;
}

.pdp-accordion-item .acc-title {
    font-size: 15px;
    font-weight: 700;
    color: #111111;
    letter-spacing: 0.2px;
    font-family: inherit;
}

.pdp-accordion-item .acc-chevron {
    color: #111111;
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.pdp-accordion-item.active .acc-chevron {
    transform: rotate(180deg);
}

.pdp-accordion-item .accordion-content {
    display: none;
    padding: 0 0 18px 0;
    animation: fadeInAcc 0.25s ease;
}

.pdp-accordion-item .accordion-content.show {
    display: block;
}

.acc-inner-body {
    font-size: 13.5px;
    line-height: 1.7;
    color: #4b5563;
}

.pdp-acc-list {
    list-style: none;
    padding: 0;
    margin: 6px 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pdp-acc-list li {
    position: relative;
    padding-left: 16px;
}

.pdp-acc-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #111111;
    font-weight: bold;
}

@keyframes fadeInAcc {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==================== RICH CRAFTSMANSHIP & EDITORIAL STORY SECTION (Screenshot 2) ==================== */
.pdp-editorial-story-section {
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #f0f0f0;
    padding: 60px 20px 70px;
    margin-top: 40px;
}

.pdp-story-container {
    max-width: 860px;
    margin: 0 auto;
    text-align: left;
}

.story-headline-title {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: #111111;
    text-transform: uppercase;
    line-height: 1.15;
    margin: 0 0 20px 0;
}

.story-content-body {
    font-size: 14.5px;
    line-height: 1.75;
    color: #222222;
}

.story-paragraph {
    margin: 0 0 16px 0;
    font-size: 14.5px;
    line-height: 1.75;
    color: #222222;
}

.story-bullet-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 28px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.story-bullet-item {
    font-size: 14.5px;
    font-weight: 500;
    color: #111111;
    line-height: 1.5;
}

.story-craftsmanship-image-wrap {
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    margin: 32px 0 36px 0;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
    background: #f5f5f5;
}

.story-featured-img {
    width: 100%;
    height: auto;
    max-height: 650px;
    object-fit: cover;
    display: block;
}

.story-secondary-title {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: #111111;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0 0 18px 0;
}

.story-subcontent-text p {
    font-size: 14.5px;
    line-height: 1.75;
    color: #333333;
    margin: 0 0 16px 0;
}

@media (max-width: 768px) {
    .story-headline-title {
        font-size: 24px;
    }
    .story-secondary-title {
        font-size: 21px;
    }
    .pdp-editorial-story-section {
        padding: 40px 16px 50px;
    }
}

/* Styled By / Shop The Look Section (Below Story) */
.pdp-styled-by-wrap {
    max-width: 860px;
    margin: 0 auto 70px auto;
    padding: 0 20px;
    box-sizing: border-box;
    width: 100%;
}

.styled-by-section {
    background: #ffffff;
    border: 1px solid #ebebeb;
    border-radius: 6px;
    padding: 28px 24px;
    box-sizing: border-box;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.styled-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
    color: #111111;
}

.styled-bundle-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid #f2f2f2;
    font-size: 13px;
}

.styled-bundle-item:last-of-type {
    border-bottom: none;
    margin-bottom: 16px;
}

.styled-bundle-item input[type="checkbox"] {
    accent-color: var(--brand-dark);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.bundle-thumb {
    width: 52px;
    height: 66px;
    background-color: var(--brand-light-bg);
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #ebebeb;
    flex-shrink: 0;
}

.bundle-meta {
    flex: 1;
}

.bundle-name {
    font-weight: 600;
    font-size: 13px;
    color: #111111;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.bundle-prices {
    font-size: 13px;
    color: #4b5563;
}

@media (max-width: 768px) {
    .pdp-styled-by-wrap {
        padding: 0 16px;
        margin: 0 auto 40px auto;
    }
    .styled-by-section {
        padding: 20px 16px;
    }
}

.bundle-thumb {
    width: 48px;
    height: 60px;
    background-color: var(--brand-light-bg);
    object-fit: cover;
    border-radius: 2px;
}

.bundle-meta {
    flex: 1;
}

.bundle-name {
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.bundle-prices {
    font-size: 10px;
}

.bundle-size-select {
    padding: 2px 6px;
    font-size: 10px;
    border: 1px solid #ccc;
    margin-top: 4px;
}

/* ==========================================================================
   Checkout Page Layout (100% Screenshot Accuracy)
   ========================================================================== */
.checkout-wrapper {
    display: grid;
    grid-template-columns: 1fr 440px;
    min-height: 100vh;
}

.checkout-left {
    padding: 40px 60px 80px 100px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.checkout-left-inner {
    max-width: 580px;
    width: 100%;
}

.checkout-header-logo {
    text-align: center;
    margin-bottom: 30px;
}

.checkout-header-logo a {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 3px;
}

.express-checkout-box {
    margin-bottom: 24px;
}

.express-title {
    text-align: center;
    font-size: 11px;
    color: #666;
    margin-bottom: 10px;
}

.express-btns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.btn-express {
    height: 44px;
    border-radius: 6px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    color: #ffffff;
}

.btn-express.shop-pay {
    background-color: var(--express-shop-pay);
    font-style: italic;
    font-family: sans-serif;
}

.btn-express.paypal {
    background-color: var(--express-paypal);
    color: #003087;
}

.btn-express.gpay {
    background-color: var(--express-gpay);
}

.or-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
    color: #999;
    font-size: 11px;
}

.or-divider::before, .or-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e0e0e0;
}

.or-divider span {
    padding: 0 12px;
}

/* Form Styles */
.form-section {
    margin-bottom: 28px;
}

.form-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.form-section-title {
    font-size: 15px;
    font-weight: 400;
}

.form-link {
    font-size: 11px;
    text-decoration: underline;
    color: #555;
}

.form-group {
    margin-bottom: 10px;
    position: relative;
}

.form-control {
    width: 100%;
    height: 46px;
    padding: 10px 14px;
    border: 1px solid var(--brand-border-dark);
    border-radius: 5px;
    font-size: 13px;
    outline: none;
    transition: border-color 0.2s;
}

.form-control:focus {
    border-color: var(--brand-dark);
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.form-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.checkbox-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #333;
    margin-top: 10px;
}

.checkbox-wrap input[type="checkbox"] {
    accent-color: #108043;
    width: 16px;
    height: 16px;
}

.shipping-method-box {
    background-color: #f7f7f7;
    border: 1px solid #e3e3e3;
    border-radius: 5px;
    padding: 16px;
    font-size: 12px;
    color: #666;
    text-align: center;
}

/* Right Sidebar Order Summary */
.checkout-right {
    background-color: var(--brand-light-bg);
    border-left: 1px solid #e5e5e5;
    padding: 40px 100px 80px 40px;
}

.summary-items-list {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.summary-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.item-thumb-badge {
    position: relative;
    width: 60px;
    height: 60px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background-color: #fff;
    overflow: hidden;
}

.item-thumb-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background-color: rgba(100,100,100,0.9);
    color: #fff;
    font-size: 10px;
    font-weight: 500;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.item-info {
    flex: 1;
}

.item-name {
    font-size: 12px;
    font-weight: 400;
}

.item-spec {
    font-size: 11px;
    color: #777;
}

.item-price {
    font-size: 13px;
    font-weight: 400;
}

.discount-form {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
}

.btn-apply {
    background-color: #e6e6e6;
    color: #666;
    border: none;
    padding: 0 18px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 400;
    cursor: pointer;
}

.summary-line-rows {
    border-top: 1px solid #e0e0e0;
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 13px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    color: #555;
}

.summary-line.total {
    font-size: 16px;
    font-weight: 500;
    color: var(--brand-dark);
    border-top: 1px solid #e0e0e0;
    padding-top: 12px;
    margin-top: 6px;
}

/* ==========================================================================
   Mobile Navigation & Off-Canvas Drawer Styles
   ========================================================================== */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: -8px;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 5px;
    z-index: 101;
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #111;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.mobile-menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Off-Canvas Mobile Full-Screen Menu */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    visibility: hidden;
    pointer-events: none;
    background: #ffffff;
    opacity: 0;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.mobile-nav-drawer.open {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
}

.mobile-drawer-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 16px 20px 24px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: #ffffff;
    box-sizing: border-box;
}

.mobile-drawer-header {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
    padding: 6px 0 20px;
}

.mobile-drawer-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #111;
}

.mobile-drawer-brand {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 2.5px;
    color: var(--brand-dark);
    text-transform: uppercase;
    text-align: center;
    display: block;
    margin: 0 auto;
}

.mobile-drawer-cart {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* Mobile Search Bar */
.mobile-menu-search-form {
    margin: 8px 0 28px;
    padding-bottom: 8px;
    border-bottom: 1.5px solid #111;
}

.mobile-search-bar-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-search-bar-wrap svg {
    flex-shrink: 0;
    stroke: #666;
}

.mobile-search-bar-wrap input {
    border: none;
    background: transparent;
    width: 100%;
    outline: none;
    font-size: 15px;
    color: #111;
    font-family: inherit;
    padding: 2px 0;
}

.mobile-search-bar-wrap input::placeholder {
    color: #888;
    font-weight: 400;
}

/* Main Navigation Links List */
.mobile-main-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.mobile-nav-link {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #111;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.15s ease;
    cursor: pointer;
}

.mobile-nav-link:hover {
    color: var(--brand-red);
}

.mobile-nav-link.link-sale {
    color: #ef4444 !important;
    font-weight: 500;
}

.mobile-nav-link .chevron-arrow {
    stroke: #555;
    transition: transform 0.25s ease;
}

.mobile-nav-link.open .chevron-arrow {
    transform: rotate(90deg);
}

.mobile-shop-submenu {
    padding: 8px 0 8px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-left: 2px solid #eee;
    margin: 8px 0 6px 4px;
}

.mobile-shop-submenu a {
    font-size: 13px;
    font-weight: 400;
    color: #444;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-shop-submenu a:hover {
    color: #111;
}

/* Mobile Menu Bottom Area */
.mobile-menu-bottom {
    margin-top: auto;
    padding-top: 24px;
}

.mobile-account-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
}

.mobile-account-links a {
    font-size: 15px;
    font-weight: 500;
    color: #111;
    text-decoration: none;
}

.mobile-account-links a:hover {
    text-decoration: underline;
}

.mobile-country-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 14.5px;
    font-weight: 500;
    color: #111;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.mobile-country-selector:hover {
    color: #000;
}

.mobile-country-selector svg {
    stroke: #333;
    flex-shrink: 0;
    margin-left: 8px;
    transition: transform 0.2s ease;
}

.mobile-country-selector:hover svg {
    transform: translateY(2px);
}

.mobile-menu-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 16px;
}

.mobile-emblem-wrap {
    display: flex;
    align-items: center;
}

.mobile-emblem-wrap img {
    height: 42px;
    max-height: 48px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    display: block;
}

.mobile-copyright {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: #111;
    text-transform: uppercase;
}

/* ==========================================================================
   Responsive Breakpoints Engine
   ========================================================================== */

/* Tablet & Smaller Laptops */
@media (max-width: 1024px) {
    .header-container {
        padding: 14px 24px;
    }
    
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .pdp-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 24px 60px;
    }

    .checkout-wrapper {
        grid-template-columns: 1fr;
    }

    .checkout-left, .checkout-right {
        padding: 24px;
        align-items: stretch;
    }

    .collections-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Devices (Tablets to Phones: <= 768px) */
@media (max-width: 768px) {
    /* Base touch enhancements */
    body {
        font-size: 14px;
    }

    /* Top Announcement Ticker */
    .announcement-bar {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .ticker-item {
        margin-right: 20px;
    }

    /* Mobile Header Layout */
    .mobile-menu-toggle {
        display: flex;
    }

    .desktop-only {
        display: none !important;
    }

    .header-container {
        padding: 12px 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-left {
        display: none;
    }

    .logo-center {
        flex: 1;
        text-align: center;
        margin: 0;
    }

    .brand-logo {
        font-size: 20px;
        letter-spacing: 2px;
    }

    .nav-right {
        gap: 12px;
    }

    .cart-nav-btn {
        padding: 4px;
    }

    .cart-badge {
        top: -3px;
        right: -6px;
        width: 15px;
        height: 15px;
        font-size: 9px;
    }

    /* Category Horizontal Swipe Sub-Bar */
    .category-bar {
        padding: 10px 16px;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .category-bar::-webkit-scrollbar {
        display: none;
    }

    .category-list {
        display: flex;
        gap: 16px;
        font-size: 11px;
        letter-spacing: 0.8px;
    }

    .cat-item {
        flex-shrink: 0;
        padding-bottom: 4px;
        border-bottom: 2px solid transparent;
    }

    .cat-item.active-cat {
        border-bottom: 2px solid #111111;
    }

    .cat-item.active-cat::after {
        display: none !important;
    }

    /* Hero Banner Mobile - Optimized Image Visibility & Button Placement */
    .home-hero-banner {
        min-height: 520px;
        padding: 0;
        background-position: center 12%;
        align-items: flex-end !important;
    }

    .home-hero-banner .hero-banner-overlay {
        background: linear-gradient(180deg, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.18) 45%, rgba(0,0,0,0.72) 75%, rgba(0,0,0,0.92) 100%) !important;
    }

    .hero-banner-content {
        max-width: 100%;
        padding: 24px 20px 32px 20px !important;
        width: 100%;
        box-sizing: border-box;
    }

    .hero-banner-badge {
        font-size: 9px;
        letter-spacing: 2px;
        margin-bottom: 12px;
        padding: 4px 12px;
    }

    .hero-banner-title {
        font-size: 26px !important;
        letter-spacing: 2px;
        line-height: 1.25;
        margin-bottom: 10px;
    }

    .hero-banner-sub {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 14px;
    }

    .hero-banner-actions {
        display: flex;
        gap: 12px;
        width: 100%;
        margin-top: 18px !important;
    }

    .hero-btn-primary {
        display: inline-block;
        width: auto;
        text-align: center;
        padding: 13px 36px;
        font-size: 11px;
        letter-spacing: 2px;
        font-weight: 500;
        box-shadow: 0 6px 20px rgba(0,0,0,0.35);
    }

    .hero-btn-secondary {
        display: none !important;
    }

    /* Catalog Page Header & Mobile 2-Column Grid */
    .catalog-container {
        padding: 16px 12px 40px;
    }

    .catalog-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 16px;
        padding-bottom: 10px;
        border-bottom: 1px solid #f0f0f0;
    }

    .catalog-title {
        font-size: 13px;
        letter-spacing: 1px;
    }

    .catalog-actions {
        font-size: 11px;
        gap: 8px;
    }

    .catalog-bottom-action {
        padding: 28px 0 10px;
    }

    .catalog-view-all {
        padding: 11px 28px;
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .catalog-filter-icon-btn {
        padding: 5px 9px;
        font-size: 10px;
        letter-spacing: 0.8px;
        gap: 4px;
    }

    /* EXACT 2-COLUMN MOBILE PRODUCT GRID MATCHING SCREENSHOT */
    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }

    .card-image-wrap {
        aspect-ratio: 4 / 5;
        border-radius: 4px;
    }

    .quick-add-btn {
        right: 6px;
        bottom: 6px;
        width: 32px;
        height: 32px;
        z-index: 30 !important;
        pointer-events: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: inline-flex !important;
    }

    .card-arrow-btn {
        display: none !important;
    }

    .as-seen-section {
        margin: 28px auto 20px;
        padding: 0 12px;
    }

    .as-seen-header {
        margin-bottom: 12px;
    }

    .as-seen-title {
        font-size: 13px;
        letter-spacing: 1.2px;
    }

    .as-seen-track {
        gap: 12px;
        padding-bottom: 14px;
    }

    .story-card {
        flex: 0 0 230px;
        height: 440px;
        border-radius: 16px;
    }

    .story-profile-avatar {
        width: 30px;
        height: 30px;
    }

    .story-profile-username {
        font-size: 11.5px;
    }

    .story-profile-time {
        font-size: 10px;
    }

    .category-slider-section {
        margin: 28px auto;
        padding: 0 12px;
    }

    .category-header-wrap {
        margin-bottom: 20px;
    }

    .category-heading-title {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .category-heading-subtitle {
        font-size: 14px;
    }

    .category-slider-track {
        gap: 10px;
        padding-bottom: 8px;
    }

    .category-slide-card {
        flex: 0 0 240px;
        min-width: 240px;
        height: 360px;
        border-radius: 4px;
    }

    .category-slide-title {
        font-size: 18px;
        letter-spacing: 1.5px;
    }

    /* SHOP THE LOOK Mobile */
    .shop-the-look-section {
        margin: 32px auto;
        padding: 0 12px;
    }

    .shop-the-look-header {
        margin-bottom: 20px;
    }

    .shop-look-title {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .shop-look-subtitle {
        font-size: 14px;
    }

    .shop-look-card {
        flex: 0 0 260px;
        height: 380px;
    }

    .shop-look-modal {
        padding: 12px;
    }

    .shop-look-modal-content {
        max-height: 94vh;
    }

    .shop-look-modal-body {
        flex-direction: column;
        min-height: auto;
    }

    .shop-look-modal-left {
        flex: 0 0 200px;
        min-height: 200px;
    }

    .shop-look-modal-right {
        padding: 20px 16px 16px;
    }

    .shop-look-modal-heading {
        font-size: 17px;
    }

    .sale-pill-badge {
        top: 8px;
        left: 8px;
        padding: 2px 8px;
        font-size: 9px;
        letter-spacing: 0.8px;
        background: #ffffff;
        color: #111;
        border-color: #111;
    }

    .card-details {
        padding: 8px 2px;
    }

    .card-title {
        font-size: 11px;
        letter-spacing: 0.8px;
        line-height: 1.3;
        margin-bottom: 3px;
    }

    .card-price {
        font-size: 12px;
    }

    /* PDP Single Product Page Mobile */
    .pdp-container {
        padding: 0 16px 50px;
        gap: 20px;
        margin-top: 16px !important;
    }

    .pdp-single-showcase, .pdp-slider-container {
        max-width: 100%;
    }

    .pdp-main-viewport {
        border-radius: 6px;
    }

    .pdp-slide-arrow {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .pdp-thumb-item {
        width: 58px;
        height: 72px;
    }

    .pdp-title {
        font-size: 16px;
        letter-spacing: 1px;
        line-height: 1.4;
    }

    .pdp-price-wrap {
        margin: 10px 0 16px;
    }

    .pdp-sale-price {
        font-size: 18px;
    }

    .size-selector-row {
        gap: 8px;
    }

    .size-pill {
        min-width: 42px;
        height: 38px;
        padding: 0 12px;
        font-size: 12px;
    }

    .btn-primary-action {
        padding: 16px 20px;
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    /* Cart & Search Drawers Mobile */
    .drawer-content {
        width: 100%;
        max-width: 100vw;
    }

    .drawer-header {
        padding: 16px 20px;
    }

    .drawer-body {
        padding: 16px 20px;
    }

    .drawer-footer {
        padding: 16px 20px;
    }

    /* Checkout Page Mobile */
    .checkout-wrapper {
        display: flex;
        flex-direction: column-reverse;
    }

    .checkout-left, .checkout-right {
        padding: 20px 16px;
    }

    .checkout-right {
        background: #f9f9f9;
        border-bottom: 1px solid #eee;
    }

    .express-buttons-grid {
        grid-template-columns: 1fr;
    }

    /* Form controls prevent iOS auto-zoom */
    .form-control, .admin-input, .admin-select, .admin-textarea {
        font-size: 16px !important;
    }

    /* Editorial & CMS Pages Mobile */
    .editorial-hero {
        padding: 40px 16px 30px;
    }

    .editorial-hero h1 {
        font-size: 22px !important;
        letter-spacing: 2px;
    }

    .editorial-hero p {
        font-size: 13px;
        line-height: 1.6;
    }

    .collections-showcase-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .collection-card {
        aspect-ratio: 16 / 10;
    }

    .collection-card-title {
        font-size: 16px;
    }

    .collection-card-desc {
        display: none;
    }

    .impact-counters {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Footer Mobile */
    .site-footer {
        padding: 40px 16px 30px;
    }

    .footer-top-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-col {
        border-bottom: 1px solid #222;
        padding-bottom: 20px;
    }

    .footer-col:last-child {
        border-bottom: none;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
        padding: 12px;
    }
}

/* Extra Small Phones (<= 400px) */
@media (max-width: 400px) {
    .brand-logo {
        font-size: 18px;
        letter-spacing: 1.5px;
    }

    .product-grid {
        gap: 8px;
    }

    .sale-pill-badge {
        padding: 2px 6px;
        font-size: 8px;
    }

    .card-title {
        font-size: 10px;
    }

    .card-price {
        font-size: 11px;
    }
}

/* ==================== HOMEPAGE HERO BANNER SLIDESHOW ==================== */
.hero-slides-track {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}
.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.05);
    transition: opacity 1.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.3s, transform 7s cubic-bezier(0.1, 0, 0.1, 1);
    pointer-events: none;
}
.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 1;
}
.hero-slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 4;
    pointer-events: auto;
}
.hero-slider-dot {
    width: 22px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-slider-dot.active {
    background: #ffffff;
    width: 38px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.6);
}
.hero-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 4;
    opacity: 0;
    transition: all 0.25s ease;
    outline: none;
    user-select: none;
}
.home-hero-banner:hover .hero-nav-arrow {
    opacity: 0.85;
}
.hero-nav-arrow:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.08);
}
.hero-nav-prev { left: 24px; }
.hero-nav-next { right: 24px; }
@media (max-width: 768px) {
    .hero-nav-arrow { display: none; }
    .hero-slider-dots { bottom: 14px; }
    .hero-slide { background-position: center 12% !important; }
}

/* ==================== FLOATING WHATSAPP WIDGET ==================== */
.whatsapp-floating-widget {
    position: fixed;
    bottom: 26px;
    z-index: 9999;
    display: flex;
    align-items: center;
}

.whatsapp-floating-widget.pos-right {
    right: 26px;
}

.whatsapp-floating-widget.pos-left {
    left: 26px;
}

.whatsapp-floating-btn {
    position: relative;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-floating-btn:hover {
    transform: scale(1.1) rotate(6deg);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    color: #ffffff;
}

.whatsapp-icon-svg {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15));
}

.whatsapp-pulse-ring {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.65);
    animation: waPulse 2s infinite cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}

@keyframes waPulse {
    0% { transform: scale(0.95); opacity: 0.9; }
    50% { transform: scale(1.22); opacity: 0; }
    100% { transform: scale(1.22); opacity: 0; }
}

.whatsapp-tooltip-text {
    position: absolute;
    right: 70px;
    background: #111827;
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
    opacity: 0;
    pointer-events: none;
    transform: translateX(8px);
    transition: all 0.25s ease;
}

.pos-left .whatsapp-tooltip-text {
    right: auto;
    left: 70px;
    transform: translateX(-8px);
}

.whatsapp-floating-btn:hover .whatsapp-tooltip-text {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .whatsapp-floating-widget {
        bottom: 18px;
    }
    .whatsapp-floating-widget.pos-right {
        right: 18px;
    }
    .whatsapp-floating-widget.pos-left {
        left: 18px;
    }
    .whatsapp-floating-btn {
        width: 52px;
        height: 52px;
    }
    .whatsapp-icon-svg {
        width: 28px;
        height: 28px;
    }
    .whatsapp-tooltip-text {
        display: none;
    }
}

/* ==========================================================================
   Slide-Out Luxury Cart Drawer & Backdrop
   ========================================================================== */
.cart-overlay {
    position: fixed !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease !important;
    z-index: 100000 !important;
}

.cart-overlay.open {
    opacity: 1 !important;
    pointer-events: auto !important;
}

.cart-drawer {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    width: 420px !important;
    max-width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: #ffffff !important;
    z-index: 100001 !important;
    transform: translateX(100%) !important;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    display: flex !important;
    flex-direction: column !important;
    box-shadow: -6px 0 30px rgba(0, 0, 0, 0.22) !important;
    box-sizing: border-box !important;
}

.cart-drawer.open {
    transform: translateX(0) !important;
}

