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

        :root {
            --warm-cream: #FAF7F2;
            --soft-linen: #F5F0E8;
            --card-bg: #FFFDF9;
            --deep-espresso: #1C1917;
            --warm-charcoal: #292524;
            --antique-gold: #B8860B;
            --gold-light: #D4A843;
            --deep-emerald: #1B4332;
            --emerald-muted: #2D5A3D;
            --navy: #1E3A5F;
            --rich-red: #8B2500;
            --warm-taupe: #8B7355;
            --muted-sage: #A8B5A0;
            --border-light: rgba(44, 24, 16, 0.08);
            --border-medium: rgba(44, 24, 16, 0.12);
            --shadow-sm: 0 1px 3px rgba(28, 25, 23, 0.06);
            --shadow-md: 0 4px 16px rgba(28, 25, 23, 0.08);
            --shadow-lg: 0 8px 32px rgba(28, 25, 23, 0.12);
            --shadow-hover: 0 12px 40px rgba(28, 25, 23, 0.16);
            --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        body {
            font-family: 'DM Sans', -apple-system, sans-serif;
            background: var(--warm-cream);
            color: var(--deep-espresso);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        /* ==================== NAVIGATION ==================== */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 48px;
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(250, 247, 242, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-light);
        }

        .logo {
            display: flex;
            align-items: center;
        }

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

        .nav-links {
            display: flex;
            gap: 32px;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--warm-taupe);
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            transition: color var(--transition-base);
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--antique-gold);
            transition: width var(--transition-base);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after { width: 100%; }

        .nav-links a:hover,
        .nav-links a.active { color: var(--deep-espresso); }

        /* Mobile nav toggle */
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
        }

        .nav-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--deep-espresso);
            margin: 5px 0;
            transition: var(--transition-base);
        }

        /* ==================== HERO / PAGE HEADER ==================== */
        .page-header {
            padding: 72px 48px 48px;
            text-align: center;
            position: relative;
            overflow: hidden;
            border-bottom: 2px solid rgba(184, 134, 11, 0.15);
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(ellipse at 20% 50%, rgba(27, 56, 40, 0.05) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 50%, rgba(184, 134, 11, 0.06) 0%, transparent 50%);
            pointer-events: none;
        }

        .page-header .eyebrow {
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--antique-gold);
            margin-bottom: 16px;
        }

        .page-header h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 400;
            color: var(--deep-espresso);
            letter-spacing: -1px;
            line-height: 1.15;
            margin-bottom: 16px;
        }

        .page-header h1 em {
            font-style: italic;
            color: var(--deep-emerald);
        }

        .page-header .subtitle {
            font-size: 1.05rem;
            color: var(--warm-taupe);
            max-width: 560px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* ==================== TOOLBAR (FILTERS + SORT) ==================== */
        .toolbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 48px;
            margin-bottom: 8px;
            flex-wrap: wrap;
            gap: 16px;
        }

        .filter-bar {
            display: flex;
            gap: 10px;
            align-items: center;
            flex-wrap: wrap;
        }

        .filter-chip {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 18px;
            background: var(--card-bg);
            border: 1px solid var(--border-medium);
            border-radius: 100px;
            font-size: 13px;
            font-weight: 500;
            color: var(--warm-charcoal);
            cursor: pointer;
            transition: all var(--transition-base);
            user-select: none;
        }

        .filter-chip:hover {
            border-color: var(--antique-gold);
            color: var(--deep-espresso);
        }

        .filter-chip.active {
            background: var(--deep-emerald);
            color: white;
            border-color: var(--deep-emerald);
        }

        .filter-chip svg {
            width: 14px;
            height: 14px;
        }

        .sort-select {
            appearance: none;
            -webkit-appearance: none;
            background: var(--card-bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%238B7355' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E") no-repeat right 14px center;
            border: 1px solid var(--border-medium);
            border-radius: 100px;
            padding: 8px 36px 8px 18px;
            font-family: inherit;
            font-size: 13px;
            font-weight: 500;
            color: var(--warm-charcoal);
            cursor: pointer;
            transition: all var(--transition-base);
        }

        .sort-select:hover { border-color: var(--antique-gold); }
        .sort-select:focus { outline: none; border-color: var(--antique-gold); }

        .results-count {
            font-size: 13px;
            color: var(--warm-taupe);
            font-weight: 400;
        }

        /* ==================== PRODUCT GRID ==================== */
        .shop-content {
            padding: 24px 48px 80px;
        }

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

        .product-card {
            display: block;
            text-decoration: none;
            color: inherit;
            position: relative;
            cursor: pointer;
        }

        .product-card .image-wrapper {
            position: relative;
            overflow: hidden;
            aspect-ratio: 4 / 5;
            background: var(--soft-linen);
            margin-bottom: 16px;
        }

        .product-card .image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: opacity 0.5s ease;
        }

        .product-card .image-wrapper .hover-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .product-card:hover .image-wrapper .hover-image {
            opacity: 1;
        }

        /* Sold overlay */
        .product-card .sold-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            background: var(--warm-charcoal);
            color: white;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 6px 14px;
            z-index: 2;
        }

        .product-card .product-info {
            padding: 0 4px;
        }

        .product-card .product-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.05rem;
            font-weight: 500;
            color: var(--deep-espresso);
            line-height: 1.4;
            margin-bottom: 6px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .product-card .product-price {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--warm-charcoal);
            letter-spacing: 0.5px;
        }

        .product-card .product-price .original {
            text-decoration: line-through;
            color: var(--warm-taupe);
            margin-left: 8px;
            font-weight: 400;
        }

        .product-card .product-era {
            font-size: 0.8rem;
            color: var(--warm-taupe);
            margin-top: 4px;
            letter-spacing: 0.3px;
        }

        /* Subtle hover lift */
        .product-card .image-wrapper::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(28, 25, 23, 0);
            transition: background var(--transition-base);
        }

        .product-card:hover .image-wrapper::after {
            background: rgba(28, 25, 23, 0.03);
        }

        /* Quick view hint on hover */
        .product-card .quick-view {
            position: absolute;
            bottom: 16px;
            left: 50%;
            transform: translateX(-50%) translateY(8px);
            background: white;
            color: var(--deep-espresso);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            padding: 10px 24px;
            opacity: 0;
            transition: all var(--transition-base);
            z-index: 3;
            white-space: nowrap;
        }

        .product-card:hover .quick-view {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }

        /* ==================== EMPTY STATE ==================== */
        .empty-state {
            text-align: center;
            padding: 80px 20px;
        }

        .empty-state h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 400;
            margin-bottom: 12px;
            color: var(--deep-espresso);
        }

        .empty-state p {
            color: var(--warm-taupe);
            font-size: 1.05rem;
        }

        .loading {
            text-align: center;
            padding: 80px 20px;
            color: var(--warm-taupe);
            font-size: 0.95rem;
        }

        .loading .spinner {
            width: 32px;
            height: 32px;
            border: 2px solid var(--border-medium);
            border-top-color: var(--antique-gold);
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
            margin: 0 auto 16px;
        }

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

        /* ==================== EMAIL CAPTURE ==================== */
        .email-section {
            max-width: 680px;
            margin: 0 auto 64px;
            text-align: center;
            padding: 56px 40px;
            background: #1B2838;
            position: relative;
            overflow: hidden;
            border-top: 3px solid #B8860B;
        }

        .email-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(ellipse at 30% 20%, rgba(184, 134, 11, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .email-section .eyebrow {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold-light);
            margin-bottom: 16px;
            position: relative;
        }

        .email-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 1.75rem;
            font-weight: 400;
            color: white;
            margin-bottom: 8px;
            position: relative;
        }

        .email-section .desc {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 28px;
            position: relative;
        }

        .email-form {
            display: flex;
            gap: 0;
            max-width: 440px;
            margin: 0 auto;
            position: relative;
        }

        .email-form input {
            flex: 1;
            padding: 14px 20px;
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-right: none;
            color: white;
            font-family: inherit;
            font-size: 0.9rem;
            outline: none;
            transition: all var(--transition-base);
        }

        .email-form input::placeholder { color: rgba(255, 255, 255, 0.5); }
        .email-form input:focus {
            background: rgba(255, 255, 255, 0.18);
            border-color: rgba(255, 255, 255, 0.35);
        }

        .email-form button {
            padding: 14px 28px;
            background: var(--antique-gold);
            color: white;
            border: 1px solid var(--antique-gold);
            font-family: inherit;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all var(--transition-base);
            white-space: nowrap;
            min-height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .email-form button:hover:not(:disabled) {
            background: var(--gold-light);
            border-color: var(--gold-light);
        }

        .email-form button:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .email-message {
            margin-top: 16px;
            padding: 10px 16px;
            font-size: 0.85rem;
            font-weight: 500;
            position: relative;
        }

        .email-message.success {
            color: var(--gold-light);
        }

        .email-message.error {
            color: #fca5a5;
        }

        /* ==================== INQUIRE BUTTON ON CARDS ==================== */
        .card-inquire-btn {
            display: inline-block;
            margin-top: 12px;
            padding: 9px 20px;
            background: transparent;
            color: var(--deep-emerald);
            border: 1.5px solid var(--deep-emerald);
            font-family: 'DM Sans', -apple-system, sans-serif;
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            cursor: pointer;
            transition: background 0.2s, color 0.2s;
            line-height: 1;
        }
        .card-inquire-btn:hover {
            background: var(--deep-emerald);
            color: #FAF7F2;
        }

        /* ==================== FOOTER ==================== */
        footer {
            background: var(--warm-charcoal);
            color: rgba(255, 255, 255, 0.6);
            padding: 48px;
            text-align: center;
            border-top: 3px solid #B8860B;
        }

        footer .footer-brand {
            font-family: 'Playfair Display', serif;
            font-size: 18px;
            color: white;
            margin-bottom: 16px;
        }

        footer .footer-links {
            display: flex;
            justify-content: center;
            gap: 32px;
            list-style: none;
            margin-bottom: 24px;
        }

        footer .footer-links a {
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            font-size: 13px;
            letter-spacing: 0.5px;
            transition: color var(--transition-base);
        }

        footer .footer-links a:hover { color: white; }

        footer .copyright {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.35);
        }

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 1024px) {
            nav { padding: 16px 24px; }
            .page-header { padding: 56px 24px 36px; }
            .toolbar { padding: 0 24px; }
            .shop-content { padding: 24px 24px 64px; }
            .product-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }
            footer { padding: 36px 24px; }
        }

        @media (max-width: 768px) {
            nav { height: 52px; padding: 0 16px; }

            .logo { height: 52px; overflow: hidden; display: flex; align-items: center; }
            .logo img { height: 36px; max-height: 36px; width: auto; max-width: 140px; }

            .nav-links { display: none; }
            .nav-links.open {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(250, 247, 242, 0.98);
                backdrop-filter: blur(20px);
                padding: 16px;
                gap: 12px;
                border-bottom: 1px solid var(--border-light);
                z-index: 200;
            }

            .nav-toggle {
                display: block;
                min-width: 44px;
                min-height: 44px;
                align-items: center;
                justify-content: center;
                padding: 8px;
                background: none;
                border: none;
                border-radius: 4px;
                cursor: pointer;
            }

            .page-header { padding: 40px 16px 24px; }
            .page-header h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
            .page-header .subtitle { font-size: 0.9rem; line-height: 1.6; }

            .toolbar {
                padding: 0 16px;
                flex-direction: column;
                align-items: stretch;
                gap: 12px;
            }

            .filter-bar {
                overflow-x: auto;
                flex-wrap: nowrap;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                padding-bottom: 6px;
            }

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

            .shop-content { padding: 16px 16px 48px; }

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

            .product-card .product-title { font-size: 0.85rem; line-height: 1.3; }
            .product-card .product-price { font-size: 0.8rem; }
            .product-card .product-era { font-size: 0.7rem; }
            .product-card .quick-view { display: none; }

            .email-section { padding: 36px 16px; margin: 0 auto 40px; }
            .email-section h2 { font-size: 1.4rem; }
            .email-form { flex-direction: column; }
            .email-form input { border-right: 1px solid rgba(255, 255, 255, 0.2); border-bottom: none; padding: 14px 14px; }
            .email-form button { width: 100%; padding: 14px 16px; }

            footer { padding: 28px 16px; }
            footer .footer-links { flex-wrap: wrap; gap: 12px; }
        }

        @media (max-width: 425px) {
            body { font-size: 14px; }

            nav { height: 48px; padding: 0 12px; }
            .logo { height: 48px; overflow: hidden; display: flex; align-items: center; }
            .logo img { height: 30px; max-height: 30px; width: auto; max-width: 120px; }

            .nav-links.open { padding: 12px; gap: 8px; }
            .nav-links a { font-size: 12px; }

            .page-header { padding: 32px 14px 20px; }
            .page-header .eyebrow { font-size: 10px; letter-spacing: 2px; }
            .page-header h1 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 12px; }
            .page-header .subtitle { font-size: 0.85rem; line-height: 1.5; max-width: 100%; }

            .toolbar { padding: 0 14px; gap: 10px; }
            .filter-chip { padding: 8px 12px; font-size: 12px; }
            .sort-select { padding: 8px 32px 8px 12px; font-size: 12px; }
            .results-count { font-size: 12px; }

            .shop-content { padding: 12px 14px 40px; }

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

            .product-card .image-wrapper { margin-bottom: 8px; }
            .product-card .product-title { font-size: 0.75rem; }
            .product-card .product-price { font-size: 0.7rem; }
            .product-card .product-era { font-size: 0.65rem; }
            .product-card .sold-badge { top: 8px; left: 8px; padding: 4px 10px; font-size: 9px; }

            .active-filters { padding: 0 14px; }
            .active-filter-tag { font-size: 11px; padding: 3px 8px; }

            .email-section { padding: 28px 12px; margin: 0 auto 32px; }
            .email-section .eyebrow { font-size: 10px; }
            .email-section h2 { font-size: 1.15rem; margin-bottom: 6px; }
            .email-section .desc { font-size: 0.8rem; margin-bottom: 16px; }
            .email-form input { padding: 12px 12px; font-size: 0.85rem; }
            .email-form button { padding: 12px 14px; font-size: 11px; }
            .email-message { margin-top: 12px; font-size: 0.8rem; }

            footer { padding: 20px 14px; }
            footer .footer-brand { font-size: 16px; }
            footer .footer-links { gap: 8px; margin-bottom: 12px; }
            footer .footer-links a { font-size: 11px; }
            footer .copyright { font-size: 10px; }
        }

        /* ==================== FILTER DROPDOWN ==================== */
        .filter-dropdown {
            position: relative;
            display: inline-block;
        }

        .filter-dropdown-menu {
            display: none;
            position: absolute;
            top: calc(100% + 8px);
            left: 0;
            min-width: 220px;
            background: white;
            border: 1px solid var(--border-medium);
            box-shadow: var(--shadow-lg);
            padding: 12px 0;
            z-index: 50;
        }

        .filter-dropdown-menu.open { display: block; }

        .filter-dropdown-menu label {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 20px;
            font-size: 13px;
            color: var(--warm-charcoal);
            cursor: pointer;
            transition: background var(--transition-base);
        }

        .filter-dropdown-menu label:hover { background: var(--soft-linen); }

        .filter-dropdown-menu input[type="checkbox"] {
            accent-color: var(--deep-emerald);
        }

        .price-range-group {
            padding: 12px 20px;
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .price-range-group input {
            width: 80px;
            padding: 6px 10px;
            border: 1px solid var(--border-medium);
            font-family: inherit;
            font-size: 13px;
            text-align: center;
            outline: none;
        }

        .price-range-group input:focus { border-color: var(--antique-gold); }

        .price-range-group span { color: var(--warm-taupe); font-size: 13px; }

        .active-filters {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            padding: 0 48px;
            margin-bottom: 16px;
        }

        .active-filter-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 12px;
            background: var(--soft-linen);
            border: 1px solid var(--border-light);
            border-radius: 100px;
            font-size: 12px;
            color: var(--warm-charcoal);
        }

        .active-filter-tag button {
            background: none;
            border: none;
            cursor: pointer;
            color: var(--warm-taupe);
            font-size: 14px;
            line-height: 1;
            padding: 0;
        }

        .active-filter-tag button:hover { color: var(--rich-red); }

        @media (max-width: 640px) {
            .active-filters { padding: 0 20px; }
        }
