        :root {
            --primary-green: #141414;
            --primary-green-dark: #0a0a0a;
            --cream: #f0ece4;
            --cream-dark: #d9d3c7;
            --black: #1a1a1a;
            --white: #ffffff;
            --light-gray: #f7f6f3;
            --gray: #6b6b6b;
            --gold: #c4a265;
            --charcoal: #1e1e1e;
            --warm-white: #fcfaf6;
            --accent: #2a2520;
            --radius: 0px;
            --transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Space Grotesk', sans-serif;
            background-color: var(--warm-white);
            color: var(--primary-green);
            line-height: 1.7;
            overflow-x: hidden;
            font-weight: 400;
        }

        /* Typography */
        h1,
        h2,
        h3,
        h4 {
            font-family: 'Fraunces', serif;
            font-weight: 500;
            font-optical-sizing: auto;
        }

        .logo-text {
            font-family: 'Fraunces', serif;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: none;
        }

        /* Header - Mainspring: Clean minimal bar */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 0 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            transition: var(--transition);
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
            height: 72px;
        }

        /* Global search overlay */
        .search-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            display: none;
            align-items: flex-start;
            justify-content: center;
            padding: 80px 20px 20px;
            z-index: 2001;
        }

        .search-overlay.active {
            display: flex;
        }

        .search-panel {
            width: 100%;
            max-width: 1100px;
            background: var(--white);
            border-radius: var(--radius);
            padding: 24px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        }

        .search-panel .search-input {
            width: 100%;
            padding: 14px 20px;
            border: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: 0;
            font-size: 1rem;
            font-family: 'Space Grotesk', sans-serif;
            margin-bottom: 16px;
            outline: none;
            transition: var(--transition);
        }

        .search-panel .search-input:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(196, 162, 101, 0.1);
        }

        .search-results {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            max-height: 60vh;
            overflow: auto;
        }

        @media (max-width: 992px) {
            .search-results {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .search-panel {
                padding: 12px;
            }

            .search-results {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
        }

        .header.scrolled {
            background: var(--charcoal);
            backdrop-filter: none;
            border-bottom: none;
            box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
        }

        .header.scrolled .logo-link,
        .header.scrolled .header-icon,
        .header.scrolled .header-nav li a {
            color: var(--white);
        }

        .header.scrolled .header-nav li a {
            color: rgba(255, 255, 255, 0.85);
        }

        .header.scrolled .header-nav li a:hover {
            color: var(--white);
        }

        .header.scrolled .nav-more-dropdown {
            background: var(--charcoal);
            border-color: rgba(255, 255, 255, 0.1);
        }

        .header.scrolled .nav-more-dropdown a {
            color: rgba(255, 255, 255, 0.8);
        }

        .header.scrolled .nav-more-dropdown a:hover {
            color: var(--white);
            background: rgba(255, 255, 255, 0.05);
        }

        .header.scrolled .header-nav .nav-more>a .chevron-icon {
            color: rgba(255, 255, 255, 0.5);
        }

        .header.scrolled .burger-menu span {
            background: var(--white);
        }

        .header.scrolled .currency-toggle {
            color: var(--white);
            border-color: rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.1);
        }

        .header.scrolled .logo-img {
            filter: invert(1);
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .burger-menu {
            width: 30px;
            height: 20px;
            cursor: pointer;
            position: relative;
            z-index: 1001;
        }

        .burger-menu span {
            display: block;
            width: 100%;
            height: 2px;
            background: var(--black);
            position: absolute;
            left: 0;
            transition: var(--transition);
        }

        .burger-menu span:nth-child(1) {
            top: 0;
        }

        .burger-menu span:nth-child(2) {
            top: 50%;
            transform: translateY(-50%);
        }

        .burger-menu span:nth-child(3) {
            bottom: 0;
        }

        .burger-menu.active span:nth-child(1) {
            transform: rotate(45deg);
            top: 50%;
        }

        .burger-menu.active span:nth-child(2) {
            opacity: 0;
        }

        .burger-menu.active span:nth-child(3) {
            transform: rotate(-45deg);
            bottom: 50%;
        }

        .header-center {
            position: relative;
            left: auto;
            transform: none;
            display: flex;
            align-items: center;
        }

        .logo-link {
            text-decoration: none;
            color: var(--black);
            display: flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
        }

        .logo-main {
            font-family: 'Fraunces', serif;
            font-size: 1.3rem;
            font-weight: 500;
            letter-spacing: 0.04em;
        }

        .logo-img {
            height: 66px;
            width: auto;
            display: block;
            filter: none;
            transition: var(--transition);
        }

        .header.scrolled .logo-img {
            filter: none;
        }

        /* Inline desktop nav links in header */
        .header-nav {
            display: flex;
            align-items: center;
            gap: 36px;
            list-style: none;
        }

        .header-nav li a {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.82rem;
            font-weight: 500;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: rgba(0, 0, 0, 0.7);
            text-decoration: none;
            transition: var(--transition);
            position: relative;
        }

        .header-nav li a:hover {
            color: var(--black);
        }

        .header-nav li a::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: var(--transition);
            border-radius: 0;
        }

        .header-nav li a:hover::after {
            width: 70%;
        }

        /* Desktop "More" dropdown */
        .header-nav .nav-more {
            position: relative;
        }

        .header-nav .nav-more>a {
            display: flex;
            align-items: center;
            gap: 5px;
            cursor: pointer;
        }

        .header-nav .nav-more>a .chevron-icon {
            font-size: 0.5rem;
            opacity: 0.5;
            transition: var(--transition);
        }

        .header-nav .nav-more:hover>a .chevron-icon {
            opacity: 1;
            transform: rotate(180deg);
        }

        .header-nav .nav-more>a::after {
            display: none;
        }

        .nav-more-dropdown {
            position: absolute;
            top: calc(100% + 16px);
            left: 50%;
            transform: translateX(-50%) translateY(6px);
            background: var(--white);
            border: 1px solid var(--cream-dark);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
            min-width: 210px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
            z-index: 1001;
            padding: 10px 0;
        }

        .header-nav .nav-more:hover .nav-more-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .nav-more-dropdown a {
            display: block;
            padding: 10px 24px;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.08em;
            color: rgba(0, 0, 0, 0.6);
            text-decoration: none;
            text-transform: uppercase;
            transition: var(--transition);
        }

        .nav-more-dropdown a::after {
            display: none !important;
        }

        .nav-more-dropdown a:hover {
            color: var(--primary-green);
            background: var(--cream);
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        /* Currency Selector */
        .currency-selector {
            position: relative;
        }

        .currency-toggle {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            background: rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.15);
            border-radius: 0;
            cursor: pointer;
            font-size: 0.85rem;
            color: var(--black);
            transition: var(--transition);
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 500;
        }

        .currency-toggle:hover {
            background: rgba(0, 0, 0, 0.1);
            border-color: rgba(0, 0, 0, 0.25);
        }

        .currency-flag {
            font-size: 1.2rem;
            line-height: 1;
        }

        .currency-code {
            font-weight: 600;
            letter-spacing: 0.05em;
        }

        .currency-toggle i {
            font-size: 0.7rem;
            transition: var(--transition);
        }

        .currency-dropdown-menu {
            position: absolute;
            top: 100%;
            right: 0;
            background: var(--white);
            border: 1px solid var(--cream-dark);
            border-radius: var(--radius);
            margin-top: 8px;
            display: none;
            flex-direction: column;
            min-width: 140px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
            z-index: 1001;
            animation: slideDown 0.3s ease;
            overflow: hidden;
        }

        .currency-dropdown-menu.active {
            display: flex;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .currency-option {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 16px;
            cursor: pointer;
            transition: var(--transition);
            border-bottom: 1px solid var(--cream-dark);
            font-size: 0.95rem;
        }

        .currency-option:last-child {
            border-bottom: none;
        }

        .currency-option:hover {
            background: var(--light-gray);
        }

        .currency-option.selected {
            background: var(--cream);
            font-weight: 600;
        }

        .currency-option .flag {
            font-size: 1.2rem;
            line-height: 1;
        }

        .currency-option .label {
            letter-spacing: 0.05em;
        }

        .header-icon {
            font-size: 1.15rem;
            cursor: pointer;
            transition: var(--transition);
            color: var(--black);
        }

        .header-icon:hover {
            color: var(--gold);
            transform: scale(1.1);
        }

        /* WhatsApp Floating Button */
        .whatsapp-float {
            position: fixed;
            bottom: 24px;
            right: 24px;
            width: 52px;
            height: 52px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
            transition: var(--transition);
            cursor: pointer;
            text-decoration: none;
        }

        .whatsapp-float:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
            text-decoration: none;
        }

        .whatsapp-float i {
            color: white;
            font-size: 1.5rem;
        }

        /* Instagram Floating Button */
        .instagram-float {
            position: fixed;
            bottom: 90px;
            right: 24px;
            width: 52px;
            height: 52px;
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            box-shadow: 0 4px 16px rgba(200, 50, 100, 0.3);
            transition: var(--transition);
            cursor: pointer;
            text-decoration: none;
        }

        .instagram-float:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(200, 50, 100, 0.4);
            text-decoration: none;
        }

        .instagram-float i {
            color: white;
            font-size: 1.5rem;
        }

        /* WhatsApp Community Section */
        .whatsapp-community {
            padding: 70px 40px;
            background: var(--black);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .whatsapp-community::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at center, rgba(196, 162, 101, 0.06) 0%, transparent 60%);
            pointer-events: none;
        }

        .whatsapp-community h2 {
            font-family: 'Fraunces', serif;
            font-size: 2.8rem;
            font-weight: 500;
            letter-spacing: -0.01em;
            color: var(--white);
            margin-bottom: 20px;
            position: relative;
        }

        .whatsapp-community p {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.6);
            max-width: 520px;
            margin: 0 auto 40px;
            line-height: 1.8;
            position: relative;
        }

        .whatsapp-community-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 16px 40px;
            background: #25D366;
            color: var(--white);
            text-decoration: none;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 0.06em;
            border-radius: 0;
            transition: var(--transition);
            position: relative;
        }

        .whatsapp-community-btn:hover {
            background: #20BD5A;
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(37, 211, 102, 0.3);
        }

        .whatsapp-community-btn i {
            font-size: 1.3rem;
        }

        /* Cart & Wishlist Sidebar */
        .cart-sidebar {
            position: fixed;
            top: 0;
            right: 0;
            width: 400px;
            max-width: 90%;
            height: 100%;
            background: var(--white);
            z-index: 2000;
            transform: translateX(100%);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            box-shadow: -10px 0 60px rgba(0, 0, 0, 0.12);
            border-radius: var(--radius) 0 0 var(--radius);
        }

        .cart-sidebar.active {
            transform: translateX(0);
        }

        .cart-header {
            padding: 25px;
            border-bottom: 1px solid var(--cream-dark);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .cart-header h3 {
            font-family: 'Fraunces', serif;
            font-size: 1.3rem;
            letter-spacing: 0.1em;
        }

        .cart-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--primary-green);
        }

        .cart-items {
            flex: 1;
            overflow-y: auto;
            padding: 20px;
        }

        .cart-item {
            display: flex;
            gap: 15px;
            padding: 15px 0;
            border-bottom: 1px solid var(--cream-dark);
        }

        .cart-item-image {
            width: 80px;
            height: 80px;
            background: var(--light-gray);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cart-item-image i {
            font-size: 2rem;
            color: var(--cream-dark);
        }

        .cart-item-details {
            flex: 1;
        }

        .cart-item-name {
            font-family: 'Fraunces', serif;
            font-size: 1rem;
            color: var(--primary-green);
            margin-bottom: 5px;
        }

        .cart-item-price {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--primary-green);
        }

        .cart-item-remove {
            background: none;
            border: none;
            color: var(--gray);
            cursor: pointer;
            font-size: 1rem;
        }

        .cart-item-remove:hover {
            color: #e74c3c;
        }

        .cart-footer {
            padding: 25px;
            border-top: 1px solid var(--cream-dark);
        }

        .cart-total {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
            font-family: 'Fraunces', serif;
            font-size: 1.2rem;
        }

        .cart-checkout-btn {
            width: 100%;
            padding: 18px;
            background: var(--primary-green);
            color: var(--white);
            border: none;
            font-family: 'Fraunces', serif;
            font-size: 1rem;
            letter-spacing: 0.15em;
            cursor: pointer;
            transition: var(--transition);
        }

        .cart-checkout-btn:hover {
            background: var(--primary-green-dark);
        }

        .cart-empty {
            text-align: center;
            padding: 60px 20px;
            color: var(--gray);
        }

        .cart-empty i {
            font-size: 4rem;
            margin-bottom: 20px;
            color: var(--cream-dark);
        }

        /* Cart item quantity controls */
        .cart-item-qty {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 6px;
        }

        .cart-item-qty button {
            width: 28px;
            height: 28px;
            border: 1px solid var(--cream-dark);
            background: var(--light-gray);
            cursor: pointer;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 0;
            transition: var(--transition);
        }

        .cart-item-qty button:hover {
            background: var(--cream-dark);
        }

        .cart-item-qty span {
            font-size: 0.9rem;
            font-weight: 600;
            min-width: 20px;
            text-align: center;
        }

        /* Checkout Overlay */
        .checkout-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 3000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .checkout-overlay.active {
            display: flex;
        }

        .checkout-modal {
            background: var(--white);
            width: 100%;
            max-width: 600px;
            max-height: 90vh;
            overflow-y: auto;
            border-radius: var(--radius);
            box-shadow: 0 20px 80px rgba(0, 0, 0, 0.25);
        }

        .checkout-modal-header {
            padding: 25px 30px;
            border-bottom: 1px solid var(--cream-dark);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .checkout-modal-header h3 {
            font-family: 'Fraunces', serif;
            font-size: 1.4rem;
            letter-spacing: 0.05em;
        }

        .checkout-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--gray);
        }

        .checkout-body {
            padding: 30px;
        }

        .checkout-summary {
            margin-bottom: 30px;
        }

        .checkout-summary-item {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid var(--cream);
            font-size: 0.95rem;
        }

        .checkout-summary-item .item-name {
            flex: 1;
        }

        .checkout-summary-item .item-qty {
            color: var(--gray);
            margin: 0 15px;
        }

        .checkout-summary-total {
            display: flex;
            justify-content: space-between;
            padding: 15px 0;
            font-family: 'Fraunces', serif;
            font-size: 1.2rem;
            font-weight: 600;
        }

        .payment-methods {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .payment-method-label {
            font-family: 'Fraunces', serif;
            font-size: 1.1rem;
            margin-bottom: 10px;
            letter-spacing: 0.05em;
        }

        .payment-method {
            border: 2px solid var(--cream-dark);
            border-radius: var(--radius);
            padding: 18px 20px;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .payment-method:hover {
            border-color: var(--primary-green);
        }

        .payment-method.selected {
            border-color: var(--primary-green);
            background: rgba(20, 20, 20, 0.03);
        }

        .payment-method-icon {
            width: 44px;
            height: 44px;
            background: var(--light-gray);
            border-radius: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--primary-green);
            flex-shrink: 0;
        }

        .payment-method-info {
            flex: 1;
        }

        .payment-method-name {
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 2px;
        }

        .payment-method-desc {
            font-size: 0.8rem;
            color: var(--gray);
        }

        .payment-method-surcharge {
            font-size: 0.8rem;
            color: #c0392b;
            font-weight: 600;
        }

        .payment-method-price {
            font-weight: 600;
            font-size: 1rem;
            text-align: right;
            min-width: 80px;
        }

        .checkout-confirm-btn {
            width: 100%;
            padding: 18px;
            background: var(--primary-green);
            color: var(--white);
            border: none;
            font-family: 'Fraunces', serif;
            font-size: 1rem;
            letter-spacing: 0.15em;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 25px;
            border-radius: var(--radius);
        }

        .checkout-confirm-btn:hover {
            background: var(--primary-green-dark);
        }

        .checkout-confirm-btn:disabled {
            opacity: 0.5;
            cursor: default;
        }

        /* Checkout confirmation */
        .checkout-confirmation {
            text-align: center;
            padding: 30px;
        }

        .checkout-confirmation i {
            font-size: 3rem;
            color: var(--primary-green);
            margin-bottom: 15px;
        }

        .checkout-confirmation h4 {
            font-family: 'Fraunces', serif;
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .checkout-confirmation p {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .checkout-bank-details {
            background: var(--light-gray);
            padding: 20px;
            border-radius: var(--radius);
            margin: 20px 0;
            text-align: left;
        }

        .checkout-bank-details p {
            margin-bottom: 6px;
            color: var(--black);
            font-size: 0.9rem;
        }

        .checkout-bank-details strong {
            color: var(--primary-green);
        }

        @media (max-width: 480px) {
            .checkout-modal {
                max-height: 95vh;
            }

            .checkout-body {
                padding: 20px;
            }

            .payment-method {
                padding: 14px 16px;
            }
        }

        /* Checkout customer form */
        .checkout-form {
            margin-bottom: 25px;
        }

        .checkout-form-title {
            font-family: 'Fraunces', serif;
            font-size: 1.1rem;
            margin-bottom: 15px;
            letter-spacing: 0.05em;
        }

        .checkout-field {
            margin-bottom: 14px;
        }

        .checkout-field label {
            display: block;
            font-size: 0.8rem;
            color: var(--gray);
            margin-bottom: 5px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .checkout-field input,
        .checkout-field textarea {
            width: 100%;
            padding: 12px 14px;
            border: 1px solid var(--cream-dark);
            border-radius: 0;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.95rem;
            transition: var(--transition);
            background: var(--light-gray);
            box-sizing: border-box;
        }

        .checkout-field input:focus,
        .checkout-field textarea:focus {
            outline: none;
            border-color: var(--primary-green);
            background: var(--white);
        }

        .checkout-field textarea {
            resize: vertical;
            min-height: 60px;
        }

        .checkout-field .field-error {
            color: #c0392b;
            font-size: 0.78rem;
            margin-top: 4px;
            display: none;
        }

        .checkout-steps {
            display: flex;
            gap: 8px;
            margin-bottom: 25px;
        }

        .checkout-step {
            flex: 1;
            height: 4px;
            background: var(--cream-dark);
            border-radius: 0;
            transition: var(--transition);
        }

        .checkout-step.active {
            background: var(--primary-green);
        }

        .checkout-loading {
            text-align: center;
            padding: 40px 20px;
        }

        .checkout-loading i {
            font-size: 2rem;
            color: var(--primary-green);
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        .checkout-error {
            background: #fef2f2;
            border: 1px solid #fecaca;
            border-radius: var(--radius);
            padding: 12px 16px;
            color: #991b1b;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        /* Order tracking section */
        .order-tracking-section {
            max-width: 600px;
            margin: 100px auto 60px;
            padding: 0 20px;
        }

        .order-tracking-section h2 {
            font-family: 'Fraunces', serif;
            font-size: 1.8rem;
            margin-bottom: 25px;
        }

        .order-status-card {
            background: var(--white);
            border: 1px solid var(--cream-dark);
            border-radius: var(--radius);
            padding: 30px;
            margin-top: 20px;
        }

        .order-status-badge {
            display: inline-block;
            padding: 6px 14px;
            border-radius: 0;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .order-status-badge.pending {
            background: #fef3c7;
            color: #92400e;
        }

        .order-status-badge.confirmed {
            background: #d1fae5;
            color: #065f46;
        }

        .order-status-badge.processing {
            background: #dbeafe;
            color: #1e40af;
        }

        .order-status-badge.paid {
            background: #d1fae5;
            color: #065f46;
        }

        .order-status-badge.shipped {
            background: #e0e7ff;
            color: #3730a3;
        }

        .order-status-badge.delivered {
            background: #d1fae5;
            color: #065f46;
        }

        .order-status-badge.failed {
            background: #fee2e2;
            color: #991b1b;
        }

        .order-status-badge.cancelled {
            background: #f3f4f6;
            color: #374151;
        }

        .order-timeline {
            margin-top: 20px;
            padding-left: 20px;
            border-left: 2px solid var(--cream-dark);
        }

        .order-timeline-item {
            padding: 10px 0 10px 15px;
            position: relative;
        }

        .order-timeline-item::before {
            content: '';
            position: absolute;
            left: -7px;
            top: 14px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--cream-dark);
            border: 2px solid var(--white);
        }

        .order-timeline-item:last-child::before {
            background: var(--primary-green);
        }

        /* Wishlist */
        .wishlist-items {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .wishlist-item {
            position: relative;
            background: var(--light-gray);
            padding: 15px;
            text-align: center;
        }

        .wishlist-item-image {
            height: 100px;
            background: var(--cream);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
        }

        .wishlist-item-image i {
            font-size: 2rem;
            color: var(--cream-dark);
        }

        .wishlist-item-name {
            font-size: 0.85rem;
            color: var(--primary-green);
            margin-bottom: 5px;
        }

        .wishlist-item-remove {
            position: absolute;
            top: 5px;
            right: 5px;
            background: none;
            border: none;
            color: var(--gray);
            cursor: pointer;
        }

        /* Cart Badge */
        .cart-badge {
            position: absolute;
            top: -6px;
            right: -6px;
            background: var(--gold);
            color: var(--white);
            font-size: 0.65rem;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
        }

        .header-icon-wrapper {
            position: relative;
        }

        /* Navigation Overlay - Scale + fade */
        .nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--black);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transform: scale(1.05);
            transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
            overflow: auto;
            padding: 120px 40px 40px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .nav-overlay.active {
            opacity: 1;
            visibility: visible;
            transform: scale(1);
        }

        .nav-overlay-backdrop {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .nav-overlay-backdrop.active {
            opacity: 1;
            visibility: visible;
        }

        .nav-links {
            list-style: none;
            text-align: center;
            padding-top: 0;
        }

        .nav-links li {
            margin: 20px 0;
            opacity: 0;
            transform: translateY(20px);
            transition: var(--transition);
        }

        .nav-overlay.active .nav-links li {
            opacity: 1;
            transform: translateY(0);
        }

        .nav-overlay.active .nav-links li:nth-child(1) {
            transition-delay: 0.12s;
        }

        .nav-overlay.active .nav-links li:nth-child(2) {
            transition-delay: 0.20s;
        }

        .nav-overlay.active .nav-links li:nth-child(3) {
            transition-delay: 0.28s;
        }

        .nav-overlay.active .nav-links li:nth-child(4) {
            transition-delay: 0.36s;
        }

        .nav-overlay.active .nav-links li:nth-child(5) {
            transition-delay: 0.44s;
        }

        .nav-overlay.active .nav-links li:nth-child(6) {
            transition-delay: 0.52s;
        }

        .nav-overlay.active .nav-links li:nth-child(7) {
            transition-delay: 0.60s;
        }

        .nav-overlay.active .nav-links li:nth-child(8) {
            transition-delay: 0.68s;
        }

        .nav-links a {
            font-family: 'Fraunces', serif;
            font-size: 2.25rem;
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            letter-spacing: -0.01em;
            transition: var(--transition);
            position: relative;
            font-weight: 400;
        }

        .nav-links a:hover {
            color: var(--white);
        }

        .nav-links a::after {
            display: none;
        }

        /* Watches static filter section */
        .nav-watches-item {
            text-align: center;
        }

        .nav-section-label {
            font-family: 'Fraunces', serif;
            font-size: 2.25rem;
            color: rgba(255, 255, 255, 0.5);
            letter-spacing: 0.1em;
            font-weight: 400;
            display: block;
            text-transform: uppercase;
        }

        .nav-watches-filters {
            display: flex;
            flex-direction: row;
            justify-content: center;
            gap: 16px;
            margin-top: 6px;
        }

        .nav-watches-filters a {
            font-family: 'Lato', sans-serif !important;
            font-size: 0.85rem !important;
            color: rgba(245, 241, 235, 0.6);
            letter-spacing: 0.08em;
            text-transform: capitalize;
            padding: 4px 8px;
            transition: color 0.2s ease;
        }

        .nav-watches-filters a:hover {
            color: var(--gold);
        }

        .nav-watches-filters a::after {
            display: none !important;
        }

        /* Dropdown in Navigation */
        .nav-item-wrapper {
            position: relative;
        }

        .nav-item-wrapper>a::after {
            content: '\f078' !important;
            font-family: 'Font Awesome 5 Free' !important;
            font-weight: 900;
            font-size: 0.6rem;
            margin-left: 10px;
            opacity: 0.4;
            position: static !important;
            width: auto !important;
            height: auto !important;
            background: none !important;
            bottom: auto !important;
            left: auto !important;
            transform: none !important;
        }

        .nav-item-wrapper>a:hover::after {
            opacity: 1;
            transform: none !important;
            width: auto !important;
        }

        .nav-dropdown {
            position: relative;
            top: auto;
            left: auto;
            width: auto;
            max-height: 0;
            background: transparent;
            margin-left: 0;
            padding: 0;
            box-shadow: none;
            border-radius: 0;
            opacity: 1;
            visibility: visible;
            transform: none;
            transition: max-height 0.3s ease;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            align-items: center;
            overflow: hidden;
        }

        .nav-item-wrapper:hover .nav-dropdown {
            max-height: 500px;
        }

        .nav-dropdown::before {
            display: none;
        }

        .nav-dropdown li {
            margin: 0 !important;
            opacity: 1 !important;
            transform: none !important;
        }

        .nav-dropdown a {
            font-family: 'Lato', sans-serif !important;
            font-size: 0.9rem !important;
            letter-spacing: 0.08em !important;
            padding: 8px 20px !important;
            display: block;
            border-bottom: none;
            color: rgba(245, 241, 235, 0.6);
            transition: color 0.2s ease;
        }

        .nav-dropdown a:hover {
            background: transparent;
            color: var(--gold);
        }

        .nav-dropdown a::after {
            display: none !important;
        }

        .nav-links>li {
            position: relative;
        }

        /* Main Content */
        .main-content {
            padding-top: 80px;
        }

        /* Page Sections */
        .page-section {
            display: none;
            min-height: 100vh;
            animation: fadeIn 0.6s ease;
        }

        .page-section.active {
            display: block;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 80vh;
            display: flex;
            align-items: flex-end;
            justify-content: flex-start;
            overflow: hidden;
            background: #0a0a0a;
            margin: 0;
            padding: 0;
        }

        .hero-logo-bg {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) translateZ(0);
            width: 200px;
            height: 200px;
            background-image: url('mainspring-logo.png');
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
            z-index: 1;
            opacity: 0.08;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: left;
            padding: 80px 60px;
            max-width: 700px;
        }

        .hero-title {
            font-family: 'Fraunces', serif;
            font-size: 5rem;
            font-weight: 400;
            letter-spacing: -0.02em;
            color: var(--white);
            margin-bottom: 24px;
            animation: slideUp 1s ease;
            line-height: 1;
        }

        .hero-subtitle-container {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 40px;
            animation: slideUp 1s ease 0.2s both;
        }

        .subtitle-item {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.7);
            letter-spacing: 0.15em;
            text-transform: uppercase;
            font-weight: 400;
        }

        .subtitle-separator {
            font-size: 0.6rem;
            color: rgba(255, 255, 255, 0.25);
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-cta {
            display: inline-block;
            padding: 16px 42px;
            background: var(--gold);
            border: none;
            color: var(--white);
            text-decoration: none;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            font-size: 0.82rem;
            font-weight: 500;
            transition: var(--transition);
            animation: slideUp 1s ease 0.4s both;
            border-radius: 0;
        }

        .hero-cta:hover {
            background: var(--white);
            color: var(--black);
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
        }

        .hero-secondary-cta {
            margin-top: 40px;
            animation: slideUp 1s ease 0.6s both;
        }

        .hero-cta-text {
            font-size: 1.1rem;
            color: var(--white);
            letter-spacing: 0.1em;
            margin-bottom: 20px;
            font-style: italic;
        }

        .hero-whatsapp-btn {
            display: inline-block;
            padding: 14px 32px;
            background: #25D366;
            color: white;
            text-decoration: none;
            border: none;
            border-radius: 0;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            transition: var(--transition);
            cursor: pointer;
        }

        .hero-whatsapp-btn:hover {
            background: #1EA952;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
        }

        .hero-whatsapp-btn i {
            margin-right: 8px;
        }

        /* Slideshow Section */
        .hero-slideshow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .slideshow-slides {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: visible;
        }

        .slideshow-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0;
            transition: none;
        }

        .slideshow-slide.active {
            opacity: 1;
            animation: slideUpImage 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
        }

        .slideshow-slide.prev {
            animation: slideUpImageExit 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
        }

        @keyframes slideUpImage {
            from {
                transform: translateY(100%);
                opacity: 1;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @keyframes slideUpImageExit {
            from {
                transform: translateY(0);
                opacity: 1;
            }

            to {
                transform: translateY(-100%);
                opacity: 1;
            }
        }

        /* Navigation Dots */
        .slideshow-dots {
            display: flex;
            flex-direction: row;
            gap: 10px;
            z-index: 3;
            margin-top: 40px;
        }

        .dot {
            width: 30px;
            height: 3px;
            border-radius: 0;
            border: none;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0;
        }

        .dot:hover {
            background: rgba(255, 255, 255, 0.6);
        }

        .dot.active {
            background: var(--gold);
            width: 50px;
        }

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 3s infinite;
        }

        .scroll-indicator i {
            font-size: 1.5rem;
            color: var(--primary-green);
            opacity: 0.5;
        }

        @keyframes bounce {

            0%,
            100% {
                transform: translateX(-50%) translateY(0);
            }

            50% {
                transform: translateX(-50%) translateY(10px);
            }
        }

        /* Reviews Section */
        .reviews-section {
            padding: 80px 40px;
            background: var(--light-gray);
        }

        .section-title {
            text-align: center;
            font-family: 'Fraunces', serif;
            font-size: 2.4rem;
            font-weight: 400;
            letter-spacing: -0.01em;
            color: var(--primary-green);
            margin-bottom: 50px;
        }

        .reviews-container {
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden;
            cursor: grab;
            -webkit-user-select: none;
            user-select: none;
        }

        .reviews-container:active {
            cursor: grabbing;
        }

        .reviews-track {
            display: flex;
            gap: 30px;
            will-change: transform;
        }

        .reviews-track.dragging {
            transition: none !important;
        }

        .review-card {
            min-width: 400px;
            background: var(--white);
            padding: 36px;
            border-radius: var(--radius);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.04);
        }

        .review-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
        }

        .review-stars {
            color: var(--gold);
            font-size: 1rem;
            margin-bottom: 20px;
        }

        .review-text {
            font-size: 1rem;
            color: var(--black);
            line-height: 1.8;
            margin-bottom: 25px;
            font-style: italic;
        }

        .review-author {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.04em;
            color: var(--black);
        }

        /* Instagram Section */
        .instagram-section {
            padding: 35px 0;
            background: var(--white);
            overflow: hidden;
        }

        .instagram-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .instagram-header h2 {
            font-family: 'Fraunces', serif;
            font-size: 2.2rem;
            font-weight: 400;
            letter-spacing: -0.01em;
            color: var(--primary-green);
            margin-bottom: 20px;
        }

        .instagram-header a {
            color: var(--black);
            text-decoration: none;
            letter-spacing: 0.1em;
            font-size: 1rem;
        }

        .instagram-carousel {
            position: relative;
            width: 100%;
            overflow: hidden;
            cursor: grab;
            -webkit-user-select: none;
            user-select: none;
            touch-action: pan-y;
            padding-top: 45px;
        }

        .instagram-carousel::before {
            content: '\2190  DRAG TO SCROLL  \2192';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 45px;
            z-index: 2;
            cursor: grab;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: inherit;
            font-size: 11px;
            letter-spacing: 2px;
            color: rgba(0, 0, 0, 0.35);
            background: rgba(0, 0, 0, 0.03);
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
            transition: color 0.2s, background 0.2s;
        }

        .instagram-carousel:hover::before {
            color: rgba(0, 0, 0, 0.6);
            background: rgba(0, 0, 0, 0.06);
        }

        .instagram-carousel:active::before {
            cursor: grabbing;
            content: '\2190  SCROLLING  \2192';
            color: rgba(0, 0, 0, 0.8);
            background: rgba(0, 0, 0, 0.08);
        }

        .instagram-carousel:active {
            cursor: grabbing;
        }

        .instagram-track {
            display: flex;
            gap: 0px;
            will-change: transform;
        }

        .instagram-track.dragging {
            transition: none !important;
        }

        .instagram-item {
            min-width: 400px;
            background: transparent;
            position: relative;
            overflow: visible;
            cursor: pointer;
            touch-action: pan-x;
        }

        .instagram-item .instagram-media {
            width: 100% !important;
            margin: 0 !important;
            max-width: 100% !important;
            min-width: 100% !important;
            pointer-events: auto;
        }

        /* Mask over Instagram engagement buttons (inside iframe, can't target directly) */
        /* Removed the opaque bottom mask so embeds aren't blocked */
        .instagram-item::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 0;
            background: transparent;
            pointer-events: none;
            z-index: 10;
        }

        .instagram-track.dragging .instagram-media {
            pointer-events: none;
        }

        .instagram-item img {
            width: 100%;
            height: auto;
            object-fit: contain;
            transition: var(--transition);
        }

        .instagram-item:hover img {
            transform: scale(1.1);
        }

        .instagram-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(26, 58, 42, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: var(--transition);
        }

        .instagram-item:hover .instagram-overlay {
            opacity: 1;
        }

        .instagram-overlay i {
            color: var(--white);
            font-size: 2rem;
        }

        /* Remove engagement buttons completely */
        .instagram-overlay {
            display: none !important;
        }

        /* Shop Section */
        .shop-section {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            min-height: 50vh;
            gap: 20px;
            padding: 20px;
            max-width: 1400px;
            margin: 42px auto;
        }

        .shop-block {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            cursor: pointer;
            transition: var(--transition);
            border-radius: var(--radius);
            min-height: 400px;
        }

        .shop-block:first-child {
            background: var(--black);
        }

        .shop-block:last-child {
            background: var(--cream);
        }

        .shop-block-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: var(--transition);
        }

        .shop-block:first-child .shop-block-bg {
            background-image: url('../shop-block-dark.png');
        }

        .shop-block:last-child .shop-block-bg {
            background-image: url('../shop-block-light.png');
        }

        .shop-block:hover .shop-block-bg {
            transform: scale(1.1);
        }

        .shop-block-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .shop-block h2 {
            font-family: 'Fraunces', serif;
            font-size: 2.8rem;
            font-weight: 400;
            letter-spacing: -0.01em;
            color: var(--white);
            margin-bottom: 24px;
            transition: var(--transition);
        }

        .shop-block p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            margin-bottom: 30px;
        }

        .shop-block:last-child h2 {
            color: var(--black);
        }

        .shop-block:last-child p {
            color: rgba(0, 0, 0, 0.6);
        }

        .shop-block:hover h2 {
            transform: translateY(-4px);
        }

        .shop-cta {
            display: inline-block;
            padding: 12px 32px;
            border: 1px solid var(--gold);
            background: transparent;
            color: var(--white);
            text-decoration: none;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            font-size: 0.75rem;
            font-weight: 500;
            transition: var(--transition);
            border-radius: 0;
            position: relative;
        }

        .shop-block:last-child .shop-cta {
            border-color: rgba(0, 0, 0, 0.4);
            color: var(--black);
        }

        .shop-cta:hover {
            background: var(--gold);
            border-color: var(--gold);
            color: var(--white);
        }

        /* Watch Inquiry Section */
        .watch-inquiry-section {
            padding: 70px 40px;
            background: var(--cream);
            text-align: center;
            position: relative;
        }

        .watch-inquiry-content {
            max-width: 600px;
            margin: 0 auto;
        }

        .inquiry-title {
            font-family: 'Fraunces', serif;
            font-size: 2.6rem;
            font-weight: 400;
            letter-spacing: -0.01em;
            color: var(--black);
            margin-bottom: 16px;
        }

        .inquiry-subtitle {
            font-size: 1rem;
            color: var(--gray);
            max-width: 480px;
            margin: 0 auto 30px;
            line-height: 1.8;
        }

        .inquiry-text {
            font-family: 'Fraunces', serif;
            font-size: 1.5rem;
            color: var(--black);
            letter-spacing: -0.01em;
            margin-bottom: 28px;
            font-style: italic;
            font-weight: 400;
        }

        .inquiry-whatsapp-btn {
            display: inline-block;
            padding: 14px 36px;
            background: #25D366;
            color: white;
            text-decoration: none;
            border: none;
            border-radius: 0;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            transition: var(--transition);
            cursor: pointer;
        }

        .inquiry-whatsapp-btn:hover {
            background: #1EA952;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
        }

        .inquiry-whatsapp-btn i {
            margin-right: 8px;
        }

        /* Page Header */
        .page-header {
            padding: 40px 40px 30px;
            height: 28vh;
            background: var(--black);
            text-align: left;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding-bottom: 40px;
            padding-left: 60px;
        }

        .page-header h1 {
            font-family: 'Fraunces', serif;
            font-size: 3.2rem;
            font-weight: 400;
            letter-spacing: -0.02em;
            color: var(--white);
            margin-bottom: 8px;
        }

        .page-header p {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.45);
            letter-spacing: 0.02em;
        }

        /* Filter Section */
        .filter-section {
            padding: 16px 40px;
            background: var(--warm-white);
            border-bottom: none;
            position: sticky;
            top: 55px;
            z-index: 100;
        }

        .policy-section {
            padding: 0px 0 15px;
        }

        .policy-container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .filter-container {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            flex-wrap: nowrap;
        }

        .filter-group-main {
            display: flex;
            gap: 12px;
            flex: 1;
            align-items: center;
        }

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

        .more-filters-btn {
            background: var(--white);
            border: 1px solid rgba(0, 0, 0, 0.1);
            padding: 10px 18px;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.78rem;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--primary-green);
        }

        .more-filters-btn:hover {
            border-color: var(--primary-green);
            background: var(--cream);
        }

        .mobile-filter-trigger {
            display: none;
            width: 100%;
            padding: 14px;
            background: var(--white);
            border: 1px solid rgba(0, 0, 0, 0.1);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            text-align: center;
            gap: 10px;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            color: var(--primary-green);
            letter-spacing: 0.1em;
        }

        /* Filter Drawer Overlay */
        .filter-drawer {
            position: fixed;
            top: 0;
            right: -100%;
            width: 380px;
            height: 100vh;
            background: var(--white);
            z-index: 2500;
            box-shadow: -10px 0 50px rgba(0, 0, 0, 0.15);
            transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            padding: 40px 30px;
            display: flex;
            flex-direction: column;
        }

        .filter-drawer.active {
            right: 0;
        }

        .filter-drawer-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            padding-bottom: 20px;
        }

        .filter-drawer-header h2 {
            font-family: 'Fraunces', serif;
            font-size: 1.5rem;
            font-weight: 400;
            margin: 0;
        }

        .close-drawer {
            font-size: 1.5rem;
            cursor: pointer;
            opacity: 0.5;
            transition: var(--transition);
        }

        .close-drawer:hover {
            opacity: 1;
            color: var(--gold);
        }

        .drawer-content {
            flex: 1;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 30px;
            padding-right: 10px;
        }

        .drawer-section {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .drawer-section-title {
            font-size: 0.7rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--gold);
            font-weight: 600;
        }

        .filter-drawer-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(4px);
            z-index: 2400;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .filter-drawer-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .drawer-footer {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
            display: flex;
            gap: 10px;
        }

        .apply-filters-btn {
            flex: 1;
            background: var(--charcoal);
            color: var(--white);
            padding: 16px;
            border: none;
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }

        .apply-filters-btn:hover {
            background: var(--gold);
        }

        .clear-filters-btn {
            padding: 16px;
            background: transparent;
            border: 1px solid rgba(0, 0, 0, 0.1);
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }

        .clear-filters-btn:hover {
            background: var(--light-gray);
        }

        @media (max-width: 992px) {

            .filter-group-main,
            .filter-group-actions {
                display: none;
            }

            .mobile-filter-trigger {
                display: flex;
            }

            .filter-drawer {
                width: 100%;
                right: -100%;
            }
        }

        .custom-dropdown {
            position: relative;
        }

        .custom-dropdown-trigger {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 15px;
            background: var(--white);
            border: 1px solid rgba(0, 0, 0, 0.1);
            cursor: pointer;
            transition: var(--transition);
            min-width: 140px;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.85rem;
            font-weight: 500;
            border-radius: 0;
            white-space: nowrap;
        }

        .custom-dropdown-trigger:hover {
            border-color: var(--gold);
            background: rgba(196, 162, 101, 0.05);
        }

        .custom-dropdown-trigger::after {
            content: '';
            width: 0;
            height: 0;
            border-left: 4px solid transparent;
            border-right: 4px solid transparent;
            border-top: 4px solid var(--gray);
            margin-left: 10px;
            transition: transform 0.3s ease;
        }

        .custom-dropdown.open .custom-dropdown-trigger::after {
            transform: rotate(180deg);
        }

        .filter-drawer .custom-dropdown-trigger {
            background: var(--warm-white);
            border: none;
            padding: 14px 20px;
            font-size: 0.85rem;
            color: var(--charcoal);
        }

        .filter-drawer .custom-dropdown-menu {
            border: 1px solid rgba(0, 0, 0, 0.05);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        .custom-dropdown.open .custom-dropdown-trigger {
            border-color: var(--gold);
            background: var(--white);
            box-shadow: 0 0 0 3px rgba(196, 162, 101, 0.1);
        }

        .custom-dropdown-menu {
            position: absolute;
            top: calc(100% + 6px);
            left: 0;
            right: 0;
            background: var(--white);
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: var(--radius);
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, opacity 0.3s ease;
            opacity: 0;
            z-index: 1000;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }

        .custom-dropdown.open .custom-dropdown-menu {
            max-height: 220px;
            opacity: 1;
            overflow-y: auto;
        }

        /* Custom scrollbar for dropdown menus */
        .custom-dropdown.open .custom-dropdown-menu::-webkit-scrollbar {
            width: 4px;
        }

        .custom-dropdown.open .custom-dropdown-menu::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        .custom-dropdown.open .custom-dropdown-menu::-webkit-scrollbar-thumb {
            background: #d4af37;
        }

        /* Slider Custom Styles */
        .custom-dropdown-slider-wrap {
            padding: 15px 20px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            background: var(--light-gray);
            cursor: default;
        }

        .slider-labels {
            display: flex;
            justify-content: space-between;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.8rem;
            color: var(--gray);
            margin-bottom: 10px;
        }

        .slider-labels span:last-child {
            color: var(--gold);
            font-weight: 500;
        }

        .luxury-slider {
            -webkit-appearance: none;
            appearance: none;
            width: 100%;
            height: 2px;
            background: var(--gray);
            outline: none;
            opacity: 0.7;
            transition: opacity 0.2s;
            margin: 10px 0;
        }

        .luxury-slider:hover {
            opacity: 1;
        }

        .luxury-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: var(--gold);
            cursor: pointer;
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
        }

        .luxury-slider::-moz-range-thumb {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: var(--gold);
            cursor: pointer;
            border: none;
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
        }

        .custom-dropdown-item {
            padding: 10px 20px;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.82rem;
            color: var(--primary-green);
            cursor: pointer;
            transition: background 0.2s ease;
        }

        .custom-dropdown-item:hover {
            background: var(--light-gray);
        }

        .custom-dropdown-item.selected {
            background: var(--gold);
            color: var(--white);
        }

        .search-box {
            position: relative;
            flex: 1;
            max-width: 400px;
        }

        .search-box input {
            width: 100%;
            padding: 10px 45px 10px 20px;
            border: 1px solid rgba(0, 0, 0, 0.1);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.85rem;
            transition: var(--transition);
            border-radius: 0;
            background: var(--white);
        }

        .search-box input:focus {
            border-color: var(--gold);
            outline: none;
            box-shadow: 0 0 0 3px rgba(196, 162, 101, 0.1);
        }

        .search-box i {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gray);
        }

        /* Products Grid */
        .products-section {
            padding: 10px 20px 40px;
            background: var(--warm-white);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 16px;
            max-width: 1600px;
            margin: 0 auto;
        }

        .product-card {
            background: var(--white);
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            cursor: pointer;
            overflow: hidden;
            border-radius: var(--radius);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .product-card:hover {
            box-shadow: 0 16px 50px rgba(0, 0, 0, 0.08);
            transform: translateY(-3px);
        }

        .product-image {
            position: relative;
            height: 300px;
            overflow: hidden;
            background: var(--light-gray);
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .product-card:hover .product-image img {
            transform: scale(1.05);
        }

        .product-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--cream) 0%, var(--light-gray) 100%);
        }

        .product-placeholder i {
            font-size: 4rem;
            color: var(--cream-dark);
        }

        /* Sold product styles */
        .product-card.sold {
            opacity: 0.7;
        }

        .product-card.sold .product-image::after {
            content: 'SOLD';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 0.3em;
            z-index: 1;
            pointer-events: none;
        }

        .product-card.sold:hover {
            transform: translateY(-5px);
            opacity: 0.8;
        }

        .product-info {
            padding: 14px 16px;
            position: relative;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .product-brand {
            font-size: 0.72rem;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 6px;
            font-weight: 500;
        }

        .product-name {
            font-family: 'Fraunces', serif;
            font-size: 1.15rem;
            font-weight: 400;
            color: var(--black);
            margin-bottom: 10px;
        }

        .product-price {
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--primary-green);
        }

        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            margin-top: 60px;
        }

        .pagination button {
            padding: 11px 24px;
            border: 1px solid rgba(0, 0, 0, 0.1);
            background: var(--white);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--primary-green);
            cursor: pointer;
            transition: var(--transition);
            border-radius: 0;
        }

        .pagination button:hover:not(:disabled) {
            background: var(--black);
            color: var(--white);
            border-color: var(--black);
        }

        .pagination button:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .pagination span {
            font-size: 1rem;
            color: var(--gray);
        }

        /* Featured Collection Section */
        .featured-collection {
            padding: 56px 40px;
            background: var(--warm-white);
            margin: 60px 0;
        }

        .featured-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .featured-collection .section-label {
            display: block;
            text-align: center;
            margin-bottom: 12px;
        }

        .featured-collection .section-title {
            text-align: center;
            margin-bottom: 12px;
        }

        .section-subtitle {
            text-align: center;
            color: var(--gray);
            font-size: 0.95rem;
            margin-bottom: 50px;
        }

        .featured-products-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 20px;
            margin-bottom: 50px;
        }

        .featured-cta-container {
            display: flex;
            justify-content: center;
        }

        .featured-cta-btn {
            display: inline-block;
            padding: 16px 48px;
            background: var(--black);
            color: var(--white);
            text-decoration: none;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            font-size: 0.8rem;
            font-weight: 500;
            transition: var(--transition);
            border-radius: var(--radius);
            border: 2px solid var(--black);
        }

        .featured-cta-btn:hover {
            background: var(--white);
            color: var(--black);
            border-color: var(--black);
        }

        /* Responsive Featured Grid */
        @media (max-width: 1200px) {
            .featured-products-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (max-width: 992px) {
            .featured-products-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .featured-collection {
                padding: 60px 20px;
                margin: 40px 0;
            }

            .featured-products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
                margin-bottom: 40px;
            }

            .featured-cta-btn {
                padding: 14px 36px;
                font-size: 0.75rem;
            }
        }


        /* Accessories Categories */
        .categories-section {
            padding: 25px 40px 40px;
            background: var(--white);
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .category-card {
            position: relative;
            height: 250px;
            overflow: hidden;
            cursor: pointer;
            transition: var(--transition);
            border-radius: var(--radius);
        }

        .category-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, transparent 30%, var(--black) 100%);
            opacity: 0.85;
            z-index: 1;
            transition: var(--transition);
        }

        .category-card:hover::before {
            opacity: 0.7;
        }

        .category-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
        }

        .category-placeholder i {
            font-size: 4rem;
            color: var(--primary-green);
            opacity: 0.3;
        }

        .category-image-wrapper {
            width: 100%;
            height: 100%;
            overflow: hidden;
            position: absolute;
            top: 0;
            left: 0;
        }

        .category-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
            display: block;
        }

        .category-card:hover .category-image-wrapper img {
            transform: scale(1.05);
        }

        .category-info {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 15px 20px;
            z-index: 2;
        }

        .category-info h3 {
            font-family: 'Fraunces', serif;
            font-size: 1.1rem;
            letter-spacing: 0.12em;
            color: var(--white);
            margin-bottom: 5px;
        }

        .category-info span {
            font-size: 0.75rem;
            color: var(--cream);
            letter-spacing: 0.08em;
        }

        /* All Accessories category card - responsive styling */
        .category-card-all {
            grid-column: 1 / -1;
            height: 140px;
            max-width: 400px;
            margin: 20px auto 0;
        }

        .category-card-all .category-info {
            padding: 12px 20px;
        }

        .category-card-all .category-info h3 {
            font-size: 1rem;
        }

        .category-card-all .category-info span {
            font-size: 0.7rem;
        }

        /* Mobile - normal size for all card */
        @media (max-width: 992px) {
            .category-card-all {
                grid-column: auto;
                height: 250px;
                max-width: 100%;
                margin: 0;
            }

            .category-card-all .category-info {
                padding: 15px 20px;
            }

            .category-card-all .category-info h3 {
                font-size: 1.1rem;
            }

            .category-card-all .category-info span {
                font-size: 0.75rem;
            }
        }

        /* Product Detail Page */
        .detail-section {
            padding: 80px 40px 80px;
            background: var(--white);
        }

        .detail-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .detail-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
        }

        /* Gallery */
        .detail-gallery {
            position: sticky;
            top: 80px;
            height: fit-content;
        }

        .gallery-main {
            position: relative;
            width: 600px;
            height: 550px;
            max-width: 100%;
            background: var(--light-gray);
            overflow: hidden;
            margin-bottom: 16px;
            border-radius: var(--radius);
        }

        .gallery-ref-code {
            position: absolute;
            top: 12px;
            right: 12px;
            background: rgba(255, 255, 255, 0.82);
            color: var(--gray);
            font-size: 0.68rem;
            letter-spacing: 2px;
            padding: 4px 10px;
            font-family: 'Montserrat', sans-serif;
            z-index: 10;
            pointer-events: none;
            border-radius: 2px;
        }

        .gallery-main img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 55%;
            cursor: zoom-in;
        }

        .gallery-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--cream) 0%, var(--light-gray) 100%);
        }

        .gallery-placeholder i {
            font-size: 8rem;
            color: var(--cream-dark);
        }

        .gallery-nav-bar {
            position: absolute;
            bottom: 16px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            gap: 8px;
            z-index: 3;
        }

        .gallery-nav {
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.85);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            touch-action: manipulation;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
            font-size: 0.75rem;
            flex-shrink: 0;
        }

        .gallery-nav:hover {
            background: var(--primary-green);
            color: var(--white);
        }

        /* Trust Section Styles */
        .trust-section {
            padding: 84px 40px;
            background: var(--white);
        }

        .trust-container {
            max-width: 1100px;
            margin: 0 auto;
        }

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

        .trust-card {
            text-align: center;
        }

        .trust-icon {
            font-size: 1.8rem;
            color: var(--gold);
            margin-bottom: 24px;
            background: var(--cream);
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin-left: auto;
            margin-right: auto;
        }

        .trust-card h3 {
            font-family: 'Fraunces', serif;
            font-size: 1.35rem;
            font-weight: 500;
            margin-bottom: 16px;
            color: var(--black);
        }

        .trust-card p {
            font-size: 0.95rem;
            line-height: 1.8;
            color: var(--gray);
            font-family: 'Space Grotesk', sans-serif;
        }

        @media (max-width: 992px) {
            .trust-grid {
                grid-template-columns: 1fr;
                gap: 60px;
            }
        }

        .gallery-dots {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .gallery-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            border: 1px solid rgba(0, 0, 0, 0.15);
            cursor: pointer;
            padding: 0;
            touch-action: manipulation;
            transition: all 0.3s ease;
        }

        .gallery-dot:hover {
            background: rgba(255, 255, 255, 0.8);
        }

        .gallery-dot.active {
            background: var(--primary-green);
            border-color: var(--primary-green);
        }

        .gallery-thumbs-wrapper {
            position: relative;
            max-width: 600px;
            overflow: hidden;
        }

        .gallery-thumbs-wrapper .thumb-scroll-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 28px;
            height: 28px;
            background: var(--white);
            border: 1px solid var(--light-gray);
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
            font-size: 0.7rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }

        .gallery-thumbs-wrapper .thumb-scroll-btn:hover {
            background: var(--primary-green);
            color: var(--white);
        }

        .gallery-thumbs-wrapper .thumb-scroll-left {
            left: 0;
        }

        .gallery-thumbs-wrapper .thumb-scroll-right {
            right: 0;
        }

        .gallery-thumbs {
            display: flex;
            gap: 10px;
            overflow-x: auto;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            padding: 0 2px;
        }

        .gallery-thumbs::-webkit-scrollbar {
            display: none;
        }

        .gallery-thumb {
            min-width: 72px;
            width: 72px;
            height: 72px;
            background: var(--light-gray);
            cursor: pointer;
            border: 2px solid transparent;
            transition: var(--transition);
            overflow: hidden;
            flex-shrink: 0;
            border-radius: 0;
        }

        .gallery-thumb.active {
            border-color: var(--gold);
        }

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

        /* Image zoom overlay */
        .gallery-zoom-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.82);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.25s ease, visibility 0.25s ease;
        }

        .gallery-zoom-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .gallery-zoom-container {
            position: relative;
            max-width: 80vw;
            max-height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: transparent;
            box-shadow: none;
            line-height: 0;
            touch-action: none;
        }

        .gallery-zoom-img {
            display: block;
            max-width: 80vw;
            max-height: 80vh;
            width: auto;
            height: auto;
            object-fit: contain;
            transform-origin: center center;
            cursor: zoom-in;
            will-change: transform;
            user-select: none;
            -webkit-user-drag: none;
            transition: cursor 0.1s;
            vertical-align: bottom;
            margin: 0;
            padding: 0;
        }

        .gallery-zoom-close {
            position: fixed;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.15);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.3);
            width: 42px;
            height: 42px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            z-index: 10001;
            transition: background 0.2s ease;
            backdrop-filter: blur(4px);
        }

        .gallery-zoom-close:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        .gallery-zoom-nav {
            position: fixed;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.15);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            z-index: 10001;
            transition: background 0.2s ease;
            backdrop-filter: blur(4px);
        }

        .gallery-zoom-nav:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        .gallery-zoom-nav.prev {
            left: 20px;
        }

        .gallery-zoom-nav.next {
            right: 20px;
        }

        .gallery-zoom-hint {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.55);
            color: rgba(255, 255, 255, 0.85);
            padding: 6px 14px;
            border-radius: 0;
            font-size: 0.72rem;
            white-space: nowrap;
            pointer-events: none;
            z-index: 10001;
            letter-spacing: 0.03em;
        }

        /* Detail Info */
        .detail-info {
            padding: 20px 15px;
        }

        .detail-brand {
            font-size: 0.9rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--gray);
            margin-bottom: 15px;
        }

        .detail-name {
            font-family: 'Fraunces', serif;
            font-size: 2.6rem;
            font-weight: 400;
            color: var(--black);
            margin-bottom: 25px;
            line-height: 1.15;
            letter-spacing: -0.02em;
        }

        .detail-price {
            font-size: 2rem;
            font-weight: 600;
            color: var(--primary-green);
            margin-bottom: 30px;
        }

        .detail-description {
            font-size: 1rem;
            line-height: 1.8;
            color: var(--gray);
            margin-bottom: 40px;
        }

        .detail-actions {
            display: flex;
            gap: 20px;
            margin-bottom: 40px;
            align-items: center;
        }

        .btn-primary {
            flex: 1;
            padding: 20px 40px;
            background: var(--black);
            color: var(--white);
            border: none;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 0.06em;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            border-radius: var(--radius);
        }

        .btn-primary:hover {
            background: var(--gold);
            transform: translateY(-1px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .btn-secondary {
            padding: 12px 20px;
            background: transparent;
            color: var(--primary-green);
            border: 1px solid rgba(0, 0, 0, 0.15);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.85rem;
            letter-spacing: 0.06em;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border-radius: var(--radius);
        }

        .btn-secondary:hover {
            background: var(--light-gray);
            border-color: var(--gold);
            color: var(--gold);
        }

        /* Desktop: make the row wrapper transparent to flex layout */
        .detail-actions-row {
            display: contents;
        }

        .detail-meta {
            border-top: 1px solid var(--cream-dark);
            padding-top: 30px;
        }

        .meta-item {
            display: flex;
            flex-direction: column;
            gap: 4px;
            padding: 15px 0;
            border-bottom: 1px solid var(--cream-dark);
        }

        .meta-label {
            color: var(--gray);
            font-size: 0.9rem;
        }

        .meta-value {
            color: var(--primary-green);
            font-weight: 500;
        }

        /* Recommendations */
        .recommendations {
            margin-top: 100px;
            padding-top: 80px;
            border-top: 1px solid var(--cream-dark);
        }

        .recommendations h3 {
            font-family: 'Fraunces', serif;
            font-size: 1.8rem;
            font-weight: 400;
            letter-spacing: -0.01em;
            color: var(--black);
            margin-bottom: 40px;
            text-align: center;
        }

        .recommendations-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        /* About Page */
        .about-section {
            padding: 30px 40px;
            background: var(--warm-white);
        }

        .about-container {
            max-width: 1100px;
            margin: 0 auto;
        }

        .about-hero {
            text-align: left;
            margin-bottom: 80px;
            max-width: 700px;
        }

        .policy-hero h1 {
            font-family: 'Fraunces', serif;
            font-size: 3.5rem;
            font-weight: 400;
            margin-bottom: 12px;
            color: var(--black);
        }

        .policy-hero p {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1rem;
            color: var(--gray);
            max-width: 700px;
            margin-bottom: 20px;
        }

        .about-hero h1 {
            font-family: 'Fraunces', serif;
            font-size: 3.5rem;
            font-weight: 400;
            letter-spacing: -0.02em;
            color: var(--primary-green);
            margin-bottom: 24px;
        }

        .about-hero p {
            font-size: 1.1rem;
            color: var(--gray);
            line-height: 1.9;
        }

        .about-content {
            display: grid;
            gap: 80px;
        }

        .about-block {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            text-align: left;
        }

        .about-block:nth-child(even) {
            direction: rtl;
        }

        .about-block:nth-child(even)>* {
            direction: ltr;
        }

        .about-block h2 {
            font-family: 'Fraunces', serif;
            font-size: 2rem;
            font-weight: 400;
            letter-spacing: -0.01em;
            color: var(--primary-green);
            margin-bottom: 20px;
        }

        .about-block p {
            font-size: 1rem;
            color: var(--gray);
            line-height: 1.9;
        }

        .about-image {
            width: 100%;
            height: 350px;
            background: var(--cream);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0;
            border-radius: var(--radius);
        }

        .about-image i {
            font-size: 4rem;
            color: var(--gold);
            opacity: 0.3;
        }

        /* Footer */
        .footer {
            background: var(--black);
            color: var(--white);
            padding: 70px 50px 40px;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 50px;
            margin-bottom: 50px;
        }

        .footer-brand h3 {
            font-family: 'Fraunces', serif;
            font-size: 1.5rem;
            font-weight: 500;
            letter-spacing: 0.02em;
            margin-bottom: 20px;
        }

        .footer-brand p {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.45);
            line-height: 1.8;
        }

        .footer-column h4 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            margin-bottom: 20px;
            color: rgba(255, 255, 255, 0.35);
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 10px;
        }

        .footer-column a {
            color: rgba(255, 255, 255, 0.65);
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .footer-column a:hover {
            color: var(--gold);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 24px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            text-align: center;
        }

        .footer-bottom p {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.3);
            letter-spacing: 0.02em;
        }

        .swiftloop-credit {
            margin-top: 0;
            font-size: 0.82rem;
            color: var(--gold) !important;
        }

        .swiftloop-credit a {
            color: var(--gold) !important;
            text-decoration: none;
            transition: var(--transition);
        }

        /* Footer social icons: gold color, +40% size, remove underline */
        .footer .footer-brand > div a,
        .footer .footer-brand > div a i {
            color: var(--gold) !important;
            font-size: 1.rem !important;
            text-decoration: none !important;
            transition: var(--transition);
        }

        .swiftloop-credit a:hover {
            color: rgba(255, 255, 255, 0.709) !important;
        }

        /* Loading State */
        .loading {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 100px;
            grid-column: 1 / -1;
        }

        .loading-spinner {
            width: 36px;
            height: 36px;
            border: 2px solid var(--cream-dark);
            border-top-color: var(--gold);
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .products-grid {
                grid-template-columns: repeat(4, 1fr);
            }

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

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

        /* Burger menu hidden on desktop, shown on mobile */
        .burger-menu {
            display: none;
        }

        .mobile-only-block {
            display: none !important;
        }

        @media (max-width: 992px) {
            .mobile-only-block {
                display: block !important;
            }
        }

        @media (max-width: 992px) {
            .header-nav {
                display: none !important;
            }

            .burger-menu {
                display: block !important;
            }

            .hero {
                height: 75vh;
            }

            .hero-title {
                font-size: 3.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .instagram-header h2 {
                font-size: 1.8rem;
            }

            .whatsapp-community h2 {
                font-size: 2rem;
            }

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

            .shop-block {
                min-height: 280px;
            }

            .shop-block h2 {
                font-size: 2.2rem;
            }

            .about-hero h1 {
                font-size: 2.5rem;
            }

            .about-block {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .about-block:nth-child(even) {
                direction: ltr;
            }

            .about-block h2 {
                font-size: 1.6rem;
            }

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

            .categories-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .detail-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .detail-gallery {
                position: relative;
                top: 0;
                max-width: 100%;
                overflow: hidden;
                margin: 0 auto;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 8px;
                text-align: center;
            }
        }

        .product-image {
            position: relative;
            height: 200px;
            overflow: hidden;
            background: var(--light-gray);
        }

        .product-image img {
            width: 100%;
            height: 110%;
            object-fit: cover;
            transition: var(--transition);
        }

        @media (max-width: 768px) {
            .detail-section {
                padding: 70px 10px 60px;
            }

            .hero {
                height: 70vh;
            }

            .hero-content {
                padding: 40px 24px;
            }

            .header {
                padding: 0 16px;
                height: 60px;
            }

            .logo-main {
                font-size: 0.85rem;
                letter-spacing: 0.03em;
            }

            .logo-img {
                height: 38px;
                width: auto;
                display: block;
            }

            #mobileWishlist,
            #mobileCart {
                display: flex !important;
                gap: 12px;
            }

            .header-right .header-icon-wrapper:not(#mobileWishlist):not(#mobileCart) {
                display: none !important;
            }

            .header-icon-wrapper {
                position: relative;
            }

            .currency-toggle {
                padding: 6px 6px;
                border: none;
                gap: 0;
            }

            .currency-code {
                display: none;
            }

            .currency-toggle i {
                display: none;
            }

            .hero-title {
                font-size: 3.2rem;
            }

            .hero-subtitle-container {
                margin-bottom: 24px;
                gap: 10px;
            }

            .subtitle-item {
                font-size: 0.8rem;
            }

            .slideshow-dots {
                left: 24px;
                bottom: 80px;
            }

            .hero-cta-text {
                font-size: 1rem;
                margin-bottom: 15px;
            }

            .hero-whatsapp-btn {
                padding: 12px 30px;
                font-size: 0.85rem;
            }

            .section-title {
                font-size: 1.6rem;
            }

            .instagram-header h2 {
                font-size: 1.5rem;
            }

            .whatsapp-community h2 {
                font-size: 1.8rem;
            }

            .whatsapp-community p {
                font-size: 0.9rem;
            }

            .shop-section {
                padding: 16px;
                gap: 12px;
                margin: 30px auto;
            }

            .shop-block h2 {
                font-size: 1.8rem;
            }

            .watch-inquiry-section {
                padding: 60px 24px;
            }

            .inquiry-title {
                font-size: 1.8rem;
            }

            .inquiry-subtitle {
                font-size: 0.95rem;
                margin-bottom: 24px;
            }

            .inquiry-text {
                font-size: 1.3rem;
                margin-bottom: 24px;
            }

            .page-header {
                padding: 100px 24px 30px;
                height: auto;
                min-height: 22vh;
            }

            .page-header h1 {
                font-size: 2rem;
            }

            .about-hero h1 {
                font-size: 2.2rem;
            }

            .about-block h2 {
                font-size: 1.5rem;
            }

            .review-card {
                min-width: 300px;
                padding: 25px;
            }

            .instagram-item {
                min-width: 253px;
                touch-action: pan-x;
            }

            .instagram-carousel {
                margin-bottom: 30px;
                padding-bottom: 10px;
                padding-top: 35px;
                touch-action: pan-x;
            }

            .instagram-carousel::before {
                height: 35px;
                font-size: 10px;
                letter-spacing: 1.5px;
                content: '\2190  SWIPE TO SCROLL  \2192';
            }

            .instagram-track {
                /* JS-driven scroll speed handled via data-mobile attribute */
            }

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

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

            .filter-container {
                flex-direction: column;
                align-items: stretch;
            }

            .filter-group {
                width: 100%;
            }

            .filter-select {
                flex: 1;
                min-width: 140px;
            }

            .search-box {
                max-width: 100%;
            }

            .recommendations-grid {
                grid-template-columns: 1fr;
            }

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

            .detail-name {
                font-size: 2rem;
            }

            .gallery-main {
                width: 100%;
                max-width: 100vw;
                height: 430px;
            }

            .gallery-thumbs-wrapper {
                max-width: 100%;
            }

            .gallery-thumb {
                min-width: 65px;
                width: 65px;
                height: 65px;
            }

            .gallery-dots {
                display: flex;
            }

            .gallery-nav-bar {
                gap: 12px;
            }

            .gallery-zoom-nav {
                width: 38px;
                height: 38px;
            }

            .page-header {
                padding: 120px 15px 60px;
            }

            /* Product detail page mobile button layout */
            .detail-actions {
                flex-direction: column;
                gap: 10px;
            }

            .btn-whatsapp-action {
                width: 100%;
                flex: none;
            }

            .detail-actions-row {
                display: flex;
                width: 100%;
                align-items: stretch;
                gap: 0;
            }

            .detail-actions-row .btn-cart-action {
                flex: 7;
                padding: 16px;
            }

            .detail-actions-row .btn-wishlist-action {
                flex: 3;
                padding: 16px;
            }

            .btn-secondary {
                padding: 24px 20px;
            }

            .product-image {
                position: relative;
                height: 240px;
                overflow: hidden;
                background: var(--light-gray);
            }

            .product-image img {
                width: 100%;
                height: 110%;
                object-fit: cover;
                transition: var(--transition);
            }

            .products-section {
                padding: 10px 10px 30px;
            }

            .products-grid {
                gap: 10px;
            }

            .product-info {
                padding: 10px 12px;
            }

            @media (max-width: 768px) {
                .nav-overlay {
                    width: 60%;
                    max-width: 500px;
                }

                .nav-dropdown {
                    width: 280px;
                    left: 220px;
                }

                .nav-dropdown::before {
                    left: -220px;
                    width: 220px;
                }
            }

            @media (max-width: 480px) {
                .detail-section {
                    padding: 65px 10px 50px;
                }

                .hero {
                    position: relative;
                    height: 65vh;
                }

                .hero-content {
                    padding: 30px 20px;
                }

                .dot {
                    width: 20px;
                }

                .dot.active {
                    width: 36px;
                }

                .slideshow-dots {
                    left: 20px;
                    bottom: 60px;
                }

                .logo-img {
                    height: 42px;
                    width: auto;
                    display: block;
                }

                .nav-overlay {
                    width: 100%;
                    min-width: 0;
                    overflow: hidden;
                }

                .nav-dropdown {
                    position: relative;
                    left: auto;
                    right: auto;
                    top: auto;
                    height: auto;
                    width: 100%;
                    display: block;
                    box-shadow: none;
                    background: transparent;
                    max-height: 0;
                    opacity: 1;
                    visibility: visible;
                    transform: none;
                    transition: max-height 0.3s ease-out;
                    padding: 0 !important;
                    overflow: hidden;
                }

                .nav-item-wrapper.mobile-expanded .nav-dropdown {
                    max-height: 500px;
                    transform: none;
                    transition: max-height 0.3s ease-out;
                }

                .nav-links>li>a,
                .nav-item-wrapper>a {
                    font-size: 1.62rem !important;
                }

                .nav-dropdown::before {
                    display: none;
                }

                .nav-dropdown a {
                    padding: 12px 20px !important;
                    font-size: 1rem !important;
                    font-family: 'Lato', sans-serif !important;
                    letter-spacing: 0.08em !important;
                    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
                }

                .header-right {
                    gap: 12px;
                }

                .header-icon {
                    font-size: 1rem;
                }

                .currency-toggle {
                    padding: 5px 8px;
                    font-size: 0.8rem;
                    gap: 4px;
                }

                .currency-flag {
                    font-size: 1rem;
                }

                .currency-dropdown-menu {
                    min-width: 120px;
                }

                .currency-option {
                    padding: 10px 12px;
                    font-size: 0.85rem;
                }

                .hero-title {
                    font-size: 2.5rem;
                    line-height: 1;
                }

                .hero-subtitle-container {
                    margin-bottom: 24px;
                    gap: 8px;
                }

                .subtitle-item {
                    font-size: 0.7rem;
                }

                .hero-cta {
                    padding: 13px 28px;
                    font-size: 0.78rem;
                }

                .hero-cta-text {
                    font-size: 0.95rem;
                    margin-bottom: 15px;
                }

                .hero-whatsapp-btn {
                    padding: 12px 25px;
                    font-size: 0.75rem;
                }

                .section-title {
                    font-size: 1.3rem;
                }

                .instagram-header h2 {
                    font-size: 1.2rem;
                }

                .whatsapp-community h2 {
                    font-size: 1.4rem;
                }

                .whatsapp-community {
                    padding: 60px 16px;
                }

                .shop-block h2 {
                    font-size: 1.5rem;
                }

                .shop-block {
                    min-height: 220px;
                }

                .watch-inquiry-section {
                    padding: 50px 16px;
                }

                .inquiry-title {
                    font-size: 1.4rem;
                }

                .inquiry-subtitle {
                    font-size: 0.9rem;
                    margin-bottom: 18px;
                }

                .inquiry-text {
                    font-size: 1.1rem;
                    margin-bottom: 18px;
                }

                .page-header {
                    padding-left: 20px;
                }

                .page-header h1 {
                    font-size: 1.6rem;
                }

                .product-image {
                    position: relative;
                    height: 240px;
                    overflow: hidden;
                    background: var(--light-gray);
                }

                .product-image img {
                    width: 100%;
                    height: 110%;
                    object-fit: cover;
                    transition: var(--transition);
                }

                .about-hero h1 {
                    font-size: 1.8rem;
                }

                .about-hero {
                    text-align: left;
                }

                .logo-main {
                    font-size: 0.7rem;
                    letter-spacing: 0.03em;
                }

                .review-card {
                    min-width: 300px;
                    padding: 20px;
                }

                .review-text {
                    font-size: 0.9rem;
                }

                .instagram-item {
                    min-width: 260px;
                    touch-action: pan-x;
                }

                .instagram-track {
                    animation-duration: 10s;
                }

                .gallery-main {
                    width: 100%;
                    max-width: 100vw;
                    height: 400px;
                }

                .gallery-thumbs-wrapper {
                    max-width: 100%;
                }

                .gallery-thumb {
                    min-width: 55px;
                    width: 55px;
                    height: 55px;
                }

                .thumb-scroll-btn {
                    display: none !important;
                }

                .filter-group {
                    display: grid;
                    grid-template-columns: repeat(3, 1fr);
                    gap: 10px;
                    width: 100%;
                }

                .custom-dropdown {
                    min-width: auto;
                }

                .custom-dropdown-trigger {
                    padding: 10px 15px;
                    font-size: 0.8rem;
                    min-width: auto;
                }

                .reviews-section {
                    padding: 50px 0px;
                }

                /* Hide Instagram engagement elements on mobile */
                .instagram-item .instagram-media {
                    max-height: 600px !important;
                }

                .instagram-item .instagram-media footer {
                    display: none !important;
                }

                .instagram-item .instagram-media .caption {
                    display: none !important;
                }

                /* Hide action buttons and engagement metrics */
                .instagram-item .instagram-media button {
                    display: none !important;
                }

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

                .categories-grid {
                    grid-template-columns: 1fr;
                    gap: 12px;
                    padding: 0px 0px;
                }

                .category-card {
                    height: 120px;
                }
            }
        }

        /* Blog Section */
        .blog-section {
            padding: 40px 40px;
            background: var(--warm-white);
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .blog-card {
            background: var(--white);
            border: 1px solid rgba(0, 0, 0, 0.05);
            overflow: hidden;
            transition: var(--transition);
            cursor: pointer;
            border-radius: var(--radius);
        }

        .blog-card:hover {
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
            transform: translateY(-3px);
        }

        .blog-card-image {
            height: 220px;
            overflow: hidden;
            background: var(--cream);
        }

        .blog-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

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

        .blog-card-image .blog-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--charcoal) 0%, var(--primary-green) 100%);
        }

        .blog-card-image .blog-placeholder i {
            font-size: 3rem;
            color: var(--gold);
            opacity: 0.4;
        }

        .blog-card-body {
            padding: 25px;
        }

        .blog-card-meta {
            display: flex;
            gap: 15px;
            align-items: center;
            margin-bottom: 12px;
        }

        .blog-card-category {
            font-size: 0.7rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--gold);
            font-weight: 600;
        }

        .blog-card-date {
            font-size: 0.75rem;
            color: var(--gray);
        }

        .blog-card-title {
            font-family: 'Fraunces', serif;
            font-size: 1.2rem;
            font-weight: 400;
            color: var(--black);
            margin-bottom: 10px;
            line-height: 1.3;
        }

        .blog-card-excerpt {
            font-size: 0.9rem;
            color: var(--gray);
            line-height: 1.7;
            margin-bottom: 15px;
        }

        .blog-card-readmore {
            font-size: 0.8rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--primary-green);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
        }

        .blog-card-readmore:hover {
            color: var(--gold);
        }

        /* Blog Detail */
        .blog-detail-section {
            padding: 80px 40px;
            background: var(--white);
        }

        .blog-detail-container {
            max-width: 1100px;
            margin: 0 auto;
        }

        .blog-detail-hero-img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            margin-bottom: 40px;
            border-radius: var(--radius);
        }

        .blog-detail-title {
            font-family: 'Fraunces', serif;
            font-size: 2.8rem;
            font-weight: 400;
            color: var(--black);
            margin-bottom: 20px;
            line-height: 1.15;
            letter-spacing: -0.02em;
        }

        .blog-detail-meta {
            display: flex;
            gap: 20px;
            align-items: center;
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 1px solid var(--cream-dark);
        }

        .blog-detail-content {
            font-size: 1.05rem;
            line-height: 2;
            color: var(--black);
        }

        .blog-detail-content p {
            margin-bottom: 20px;
        }

        .blog-empty {
            text-align: center;
            padding: 80px 20px;
            color: var(--gray);
        }

        .blog-empty i {
            font-size: 4rem;
            color: var(--cream-dark);
            margin-bottom: 20px;
        }

        @media (max-width: 992px) {
            .blog-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

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

            .blog-detail-title {
                font-size: 2rem;
            }
        }

        /* Animations for items */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(24px);
            transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* ── About Page Redesign ─────────────────────────────── */
        .about-quote {
            font-family: 'Fraunces', serif;
            font-size: 2.2rem;
            font-weight: 400;
            font-style: italic;
            color: var(--primary-green);
            letter-spacing: -0.02em;
            line-height: 1.3;
            margin-bottom: 60px;
            padding-bottom: 60px;
            border-bottom: 1px solid var(--cream-dark);
            max-width: 820px;
        }

        .about-quote cite {
            display: block;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.78rem;
            font-style: normal;
            font-weight: 600;
            letter-spacing: 0.12em;
            color: var(--gold);
            text-transform: uppercase;
            margin-top: 20px;
        }

        .about-story {
            display: grid;
            grid-template-columns: 3fr 2fr;
            gap: 80px;
            align-items: start;
            margin-bottom: 80px;
            padding-bottom: 80px;
            border-bottom: 1px solid var(--cream-dark);
        }

        .about-story-text p {
            font-size: 1rem;
            color: var(--gray);
            line-height: 1.95;
            margin-bottom: 18px;
        }

        .about-story-text p strong {
            color: var(--primary-green);
        }

        .about-facts-card {
            background: var(--cream);
            padding: 36px;
        }

        .about-facts-label {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 20px;
        }

        .about-facts-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .about-facts-list li {
            font-size: 0.88rem;
            color: var(--gray);
            padding: 10px 0;
            border-bottom: 1px solid var(--cream-dark);
            line-height: 1.6;
        }

        .about-facts-list li:last-child {
            border-bottom: none;
        }

        .about-credentials-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 0;
        }

        .about-credential-item {
            padding: 36px;
            border: 1px solid var(--cream-dark);
            margin: -1px 0 0 -1px;
        }

        .about-credential-icon {
            color: var(--gold);
            font-size: 1.4rem;
            margin-bottom: 16px;
        }

        .about-credential-item h3 {
            font-family: 'Fraunces', serif;
            font-size: 1.1rem;
            font-weight: 400;
            color: var(--primary-green);
            margin-bottom: 10px;
        }

        .about-credential-item p {
            font-size: 0.85rem;
            color: var(--gray);
            line-height: 1.7;
        }

        /* ── Contact Page ────────────────────────────────────── */
        .contact-section {
            padding: 30px 40px;
            background: var(--warm-white);
        }

        .contact-container {
            max-width: 1100px;
            margin: 0 auto;
        }

        .contact-hero {
            margin-bottom: 70px;
            max-width: 600px;
        }

        .contact-hero h1 {
            font-family: 'Fraunces', serif;
            font-size: 3.5rem;
            font-weight: 400;
            letter-spacing: -0.02em;
            color: var(--primary-green);
            margin-bottom: 20px;
        }

        .contact-hero p {
            font-size: 1rem;
            color: var(--gray);
            line-height: 1.9;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .contact-info-block {
            display: flex;
            flex-direction: column;
            gap: 36px;
        }

        .contact-info-item h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 10px;
        }

        .contact-info-item p,
        .contact-info-item a {
            font-size: 0.95rem;
            color: var(--gray);
            line-height: 1.8;
            text-decoration: none;
            display: block;
        }

        .contact-info-item a:hover {
            color: var(--primary-green);
        }

        .contact-social-row {
            display: flex;
            gap: 10px;
            margin-top: 10px;
        }

        .contact-social-icon {
            width: 42px;
            height: 42px;
            border: none; /* removed box outline */
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray);
            padding: 0;
            line-height: 1;
            text-decoration: none;
            transition: var(--transition);
        }

        .contact-social-icon i {
            font-size: 34px; /* match the box size so the glyph fills it */
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-social-icon:hover {
            background: var(--primary-green);
            color: var(--white);
            border-color: var(--primary-green);
        }

        .contact-note {
            background: var(--cream);
            padding: 40px;
            border-left: 3px solid var(--gold);
        }

        .contact-note p {
            font-size: 0.95rem;
            color: var(--gray);
            line-height: 1.9;
            font-style: italic;
        }

        /* ── Policy / Sourcing / Sell (shared base) ──────────── */
        .policy-section {
            padding: 30px 40px;
            background: var(--warm-white);
        }

        .policy-container {
            max-width: 1100px;
            margin: 0 auto;
        }

        .policy-hero {
            margin-bottom: 20px;
        }

        .policy-hero h1 {
            font-family: 'Fraunces', serif;
            font-size: 3rem;
            font-weight: 400;
            letter-spacing: -0.02em;
            color: var(--primary-green);
            margin-bottom: 20px;
        }

        .policy-hero p {
            font-size: 1rem;
            color: var(--gray);
            line-height: 1.9;
        }

        .policy-block {
            margin-bottom: 52px;
        }

        .policy-block h2 {
            font-family: 'Fraunces', serif;
            font-size: 1.45rem;
            font-weight: 400;
            color: var(--primary-green);
            margin-bottom: 16px;
            padding-bottom: 12px;
            border-bottom: 1px solid var(--cream-dark);
        }

        .policy-block p {
            font-size: 0.95rem;
            color: var(--gray);
            line-height: 1.9;
            margin-bottom: 12px;
        }

        .policy-block ul,
        .policy-block ol {
            padding-left: 20px;
            margin-top: 10px;
        }

        .policy-block li {
            font-size: 0.95rem;
            color: var(--gray);
            line-height: 1.9;
            margin-bottom: 8px;
        }

        .policy-highlight {
            background: var(--cream);
            border-left: 3px solid var(--gold);
            padding: 20px 28px;
            margin: 20px 0 24px;
            font-size: 0.95rem;
            color: var(--gray);
            line-height: 1.9;
        }

        /* ── FAQ Page ────────────────────────────────────────── */
        .faq-section {
            padding: 30px 40px;
            background: var(--warm-white);
        }

        .faq-container {
            max-width: 1100px;
            margin: 0 auto;
        }

        .faq-hero {
            margin-bottom: 70px;
            max-width: 600px;
        }

        .faq-hero h1 {
            font-family: 'Fraunces', serif;
            font-size: 3.5rem;
            font-weight: 400;
            letter-spacing: -0.02em;
            color: var(--primary-green);
            margin-bottom: 20px;
        }

        .faq-hero p {
            font-size: 1rem;
            color: var(--gray);
            line-height: 1.9;
        }

        .faq-item {
            border-bottom: 1px solid var(--cream-dark);
        }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            text-align: left;
            padding: 22px 0;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--primary-green);
            transition: var(--transition);
        }

        .faq-question:hover {
            color: var(--gold);
        }

        .faq-question .faq-icon {
            font-size: 1.3rem;
            color: var(--gold);
            flex-shrink: 0;
            transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
            line-height: 1;
        }

        .faq-item.open .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .faq-item.open .faq-answer {
            max-height: 700px;
        }

        .faq-answer-inner {
            padding: 0 0 28px 0;
            font-size: 0.93rem;
            color: var(--gray);
            line-height: 1.9;
        }

        .faq-answer-inner p {
            margin-bottom: 10px;
        }

        .faq-answer-inner ul {
            padding-left: 20px;
            margin-top: 8px;
        }

        .faq-answer-inner li {
            margin-bottom: 6px;
        }

        .faq-answer-inner a {
            color: var(--gold);
            text-decoration: none;
        }

        .faq-answer-inner a:hover {
            color: var(--primary-green);
        }

        /* ── Sell Your Watch ─────────────────────────────────── */
        .sell-hero-callout {
            background: var(--primary-green);
            color: var(--cream);
            padding: 32px 40px;
            margin-bottom: 56px;
            border-left: 3px solid var(--gold);
        }

        .sell-hero-callout h3 {
            font-family: 'Fraunces', serif;
            font-size: 1.4rem;
            font-weight: 400;
            margin-bottom: 10px;
            color: var(--cream);
        }

        .sell-hero-callout p {
            font-size: 0.92rem;
            color: rgba(240, 236, 228, 0.75);
            line-height: 1.8;
        }

        .sell-options-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 24px 0 40px;
        }

        .sell-option-card {
            border: 1px solid var(--cream-dark);
            padding: 32px;
            background: var(--white);
        }

        .sell-option-card h3 {
            font-family: 'Fraunces', serif;
            font-size: 1.2rem;
            font-weight: 400;
            color: var(--primary-green);
            margin-bottom: 12px;
        }

        .sell-option-card p {
            font-size: 0.9rem;
            color: var(--gray);
            line-height: 1.8;
        }

        .sell-cta-row {
            margin-top: 52px;
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }

        .sell-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 13px 26px;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            text-decoration: none;
            cursor: pointer;
            border: none;
            transition: var(--transition);
        }

        .sell-cta-btn.primary {
            background: var(--primary-green);
            color: var(--white);
        }

        .sell-cta-btn.primary:hover {
            background: var(--black);
        }

        .sell-cta-btn.secondary {
            background: transparent;
            color: var(--primary-green);
            border: 1px solid var(--primary-green);
        }

        .sell-cta-btn.secondary:hover {
            background: var(--primary-green);
            color: var(--white);
        }

        /* ── Page hero images & placeholders ─────────────────── */
        .page-hero-image {
            width: 100%;
            height: 340px;
            background: var(--cream);
            overflow: hidden;
            margin-bottom: 60px;
            position: relative;
        }

        .page-hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .page-hero-image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 80px;
            background: linear-gradient(to top, var(--warm-white), transparent);
        }

        .page-hero-banner {
            background: var(--primary-green);
            padding: 70px 40px 60px;
            margin-bottom: 0;
            text-align: center;
        }

        .page-hero-banner h1 {
            font-family: 'Fraunces', serif;
            font-size: 3.2rem;
            font-weight: 400;
            letter-spacing: -0.02em;
            color: var(--cream);
            margin-bottom: 16px;
        }

        .page-hero-banner p {
            font-size: 1rem;
            color: rgba(240, 236, 228, 0.7);
            line-height: 1.8;
            max-width: 600px;
            margin: 0 auto;
        }

        .page-hero-banner .hero-divider {
            width: 40px;
            height: 2px;
            background: var(--gold);
            margin: 20px auto 0;
        }

        /* Contact page map/image */
        .contact-image-box {
            width: 100%;
            height: 240px;
            background: var(--cream);
            overflow: hidden;
            margin-bottom: 28px;
        }

        .contact-image-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* About hero image */
        .about-hero-image {
            width: 100%;
            height: 400px;
            background: var(--cream);
            overflow: hidden;
            margin-bottom: 20px;
        }

        .about-hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Inline image for story section */
        .about-story-image {
            width: 100%;
            height: 320px;
            background: var(--cream);
            overflow: hidden;
            margin-bottom: 24px;
        }

        .about-story-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Section label (small uppercase tag) */
        .section-label {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 16px;
            display: block;
        }

        /* Divider line */
        .gold-divider {
            width: 40px;
            height: 2px;
            background: var(--gold);
            margin: 24px 0;
        }

        /* Policy page number badges */
        .policy-step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            background: var(--primary-green);
            color: var(--white);
            font-family: 'Fraunces', serif;
            font-size: 0.9rem;
            font-weight: 400;
            margin-right: 12px;
            flex-shrink: 0;
            vertical-align: middle;
        }

        /* FAQ decorative border-top */
        .faq-list {
            border-top: 1px solid var(--cream-dark);
        }

        /* Warranty icon header row */
        .warranty-icon-header {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 24px;
        }

        .warranty-icon-header i {
            font-size: 2rem;
            color: var(--gold);
        }

        .warranty-icon-header span {
            font-family: 'Fraunces', serif;
            font-size: 1.6rem;
            font-weight: 400;
            color: var(--primary-green);
        }

        /* Sourcing step heading with inline number */
        .policy-block h2 .step-num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            background: var(--primary-green);
            color: var(--white);
            font-family: 'Fraunces', serif;
            font-size: 0.85rem;
            font-weight: 400;
            margin-right: 10px;
            vertical-align: middle;
        }

        /* Sell page stat row */
        .sell-stats-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            margin: 32px 0 48px;
            border: 1px solid var(--cream-dark);
        }

        .sell-stat-item {
            padding: 28px 24px;
            text-align: center;
            border-right: 1px solid var(--cream-dark);
        }

        .sell-stat-item:last-child {
            border-right: none;
        }

        .sell-stat-item .stat-icon {
            color: var(--gold);
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .sell-stat-item h4 {
            font-family: 'Fraunces', serif;
            font-size: 1.1rem;
            font-weight: 400;
            color: var(--primary-green);
            margin-bottom: 6px;
        }

        .sell-stat-item p {
            font-size: 0.78rem;
            color: var(--gray);
            line-height: 1.5;
        }

        /* ── Responsive overrides for new pages ──────────────── */
        @media (max-width: 768px) {
            .about-story {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-credentials-grid {
                grid-template-columns: 1fr;
            }

            .about-credential-item {
                margin: 0;
                border-bottom: none;
                border-top: 1px solid var(--cream-dark);
            }

            .about-quote {
                font-size: 1.6rem;
            }

            .about-hero-image {
                height: 260px;
                margin-bottom: 50px;
            }

            .about-story-image {
                height: 220px;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .contact-hero h1 {
                font-size: 2.5rem;
            }

            .contact-image-box {
                height: 180px;
            }

            .sell-options-grid {
                grid-template-columns: 1fr;
            }

            .sell-stats-row {
                grid-template-columns: 1fr;
            }

            .sell-stat-item {
                border-right: none;
                border-bottom: 1px solid var(--cream-dark);
            }

            .sell-stat-item:last-child {
                border-bottom: none;
            }

            .policy-hero h1 {
                font-size: 2.2rem;
            }

            .faq-hero h1 {
                font-size: 2.5rem;
            }

            .policy-section,
            .faq-section,
            .contact-section {
                padding: 80px 24px;
            }

            .page-hero-banner h1 {
                font-size: 2.4rem;
            }

            .page-hero-banner {
                padding: 60px 24px 50px;
            }

            .page-hero-image {
                height: 220px;
                margin-bottom: 40px;
            }

            .policy-section,
            .faq-section,
            .contact-section {
                padding: 80px 24px;
            }

            .nav-more-dropdown {
                display: none;
            }

            .header-nav .nav-more {
                display: none;
            }

            @media (max-width: 992px) {
                .nav-more-dropdown {
                    display: block;
                }
            }        }
