
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg:      #0a0a0b;
      --bg2:     #101012;
      --bg3:     #161618;
      --border:  #222224;
      --border2: #2e2e32;
      --gold:    #c9a96e;
      --gold2:   #a8884e;
      --text1:   #f2ede8;
      --text2:   #8a8680;
      --muted:   #3e3c38;
      --serif:   'Cormorant Garamond', Georgia, serif;
      --sans:    'DM Sans', sans-serif;
      --mono:    'DM Mono', monospace;
    }

    html { scroll-behavior: smooth; }
    body { background: var(--bg); color: var(--text1); font-family: var(--sans); overflow-x: hidden; }

    /* Grain */
    body::after {
      content: ''; position: fixed; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      opacity: 0.022; pointer-events: none; z-index: 9999;
    }

    ::-webkit-scrollbar { width: 3px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: var(--border2); }

    /* ── Nav ─────────────────────────────────── */
    header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 48px; height: 72px;
      background: rgba(10,10,11,0.92); backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
    }
    .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
    .logo img { width: 40px; height: 40px; object-fit: cover; border-radius: 50%; border: 1px solid var(--border2); }
    .logo-text { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--text1); letter-spacing: 0.04em; }
    .logo-text span { color: var(--gold); }
    .navmenu { display: flex; gap: 36px; list-style: none; }
    .navmenu a {
      font-family: var(--mono); font-size: 11px; color: var(--text2);
      text-decoration: none; letter-spacing: 0.08em; text-transform: uppercase;
      transition: color 0.2s; position: relative;
    }
    .navmenu a::after {
      content: ''; position: absolute; bottom: -3px; left: 0;
      width: 0; height: 1px; background: var(--gold); transition: width 0.25s;
    }
    .navmenu a:hover, .navmenu a.active { color: var(--gold); }
    .navmenu a:hover::after, .navmenu a.active::after { width: 100%; }
    .nav-icons { display: flex; gap: 6px; align-items: center; }
    .nav-icon-btn {
      width: 36px; height: 36px; border: 1px solid var(--border); border-radius: 6px;
      display: flex; align-items: center; justify-content: center;
      color: var(--text2); font-size: 15px; text-decoration: none;
      transition: border-color 0.2s, color 0.2s; background: transparent; cursor: pointer;
    }
    .nav-icon-btn:hover { border-color: var(--gold); color: var(--gold); }
    .ham-btn { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
    .ham-btn span { display: block; width: 20px; height: 1px; background: var(--text1); transition: transform 0.3s, opacity 0.3s; }
    .ham-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .ham-btn.open span:nth-child(2) { opacity: 0; }
    .ham-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
    .mobile-menu {
      display: none; position: fixed; inset: 0;
      background: rgba(10,10,11,0.98); z-index: 99;
      flex-direction: column; align-items: center; justify-content: center; gap: 36px;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a { font-family: var(--serif); font-size: 36px; font-weight: 300; color: var(--text1); text-decoration: none; transition: color 0.2s; }
    .mobile-menu a:hover { color: var(--gold); }

    /* ── Page Hero ───────────────────────────── */
    .page-hero {
      padding-top: 72px; height: 260px;
      display: flex; align-items: center; justify-content: center;
      text-align: center; position: relative; overflow: hidden;
    }
    .page-hero::before {
      content: ''; position: absolute; inset: 0;
      background-image: repeating-linear-gradient(135deg, transparent, transparent 80px, rgba(201,169,110,0.03) 80px, rgba(201,169,110,0.03) 81px);
      pointer-events: none;
    }
    .page-hero-inner { position: relative; z-index: 1; }
    .page-hero-tag {
      font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
      display: flex; align-items: center; justify-content: center; gap: 10px;
    }
    .page-hero-tag::before, .page-hero-tag::after {
      content: ''; display: inline-block; width: 28px; height: 1px; background: var(--gold); opacity: 0.5;
    }
    .page-hero-title { font-family: var(--serif); font-size: clamp(36px, 7vw, 72px); font-weight: 300; line-height: 1.1; color: var(--text1); }
    .page-hero-title em { font-style: italic; color: var(--gold); }

    /* ── Filter Bar ──────────────────────────── */
    .filter-bar {
      border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
      padding: 0 48px; display: flex; align-items: center; overflow-x: auto;
    }
    .filter-bar::-webkit-scrollbar { height: 0; }
    .filter-tab {
      font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--text2); padding: 18px 24px;
      border: none; background: none; cursor: pointer; white-space: nowrap;
      border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s;
    }
    .filter-tab:hover { color: var(--gold); }
    .filter-tab.active { color: var(--gold); border-color: var(--gold); }

    /* ── Breadcrumb ──────────────────────────── */
    .breadcrumb {
      padding: 16px 48px; display: flex; align-items: center; gap: 8px;
      font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; color: var(--muted);
    }
    .breadcrumb a { color: var(--text2); text-decoration: none; transition: color 0.2s; }
    .breadcrumb a:hover { color: var(--gold); }
    .breadcrumb span { color: var(--gold); }

    /* ── Main Layout ─────────────────────────── */
    .shop-layout {
      display: grid; grid-template-columns: 240px 1fr;
      gap: 32px; max-width: 1280px; margin: 0 auto;
      padding: 0 48px 100px;
    }

    /* ── Sidebar ─────────────────────────────── */
    .sidebar { padding-top: 8px; }
    .sidebar-sticky { position: sticky; top: 96px; }
    .sidebar-section { margin-bottom: 32px; }
    .sidebar-title {
      font-family: var(--mono); font-size: 10px; letter-spacing: 0.15em;
      text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
      display: flex; align-items: center; gap: 8px;
    }
    .sidebar-title::before { content: ''; width: 14px; height: 1px; background: var(--gold); }

    /* Category links */
    .cat-links { display: flex; flex-direction: column; gap: 2px; }
    .cat-link {
      font-family: var(--sans); font-size: 13px; color: var(--text2);
      padding: 8px 12px; border-radius: 4px; cursor: pointer;
      border: 1px solid transparent; transition: all 0.2s;
      display: flex; align-items: center; justify-content: space-between;
      background: none; text-align: left;
    }
    .cat-link:hover { background: var(--bg3); color: var(--text1); border-color: var(--border); }
    .cat-link.active { background: var(--bg3); color: var(--gold); border-color: var(--border2); }
    .cat-link .count { font-family: var(--mono); font-size: 9px; color: var(--muted); }

    /* Price range */
    .price-inputs { display: flex; gap: 8px; }
    .price-input {
      flex: 1; background: var(--bg3); border: 1px solid var(--border2);
      border-radius: 4px; padding: 8px 10px;
      font-family: var(--mono); font-size: 11px; color: var(--text1);
      outline: none; transition: border-color 0.2s;
    }
    .price-input:focus { border-color: var(--gold); }
    .price-input::placeholder { color: var(--muted); }

    /* Sort */
    .sort-select {
      width: 100%; background: var(--bg3); border: 1px solid var(--border2);
      border-radius: 4px; padding: 9px 12px;
      font-family: var(--mono); font-size: 11px; color: var(--text2);
      outline: none; cursor: pointer; appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%238a8680' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
      background-repeat: no-repeat; background-position: right 10px center; background-size: 14px;
    }

    /* Size checkboxes */
    .size-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
    .size-btn {
      font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em;
      color: var(--text2); padding: 7px 4px; text-align: center;
      border: 1px solid var(--border); border-radius: 3px;
      cursor: pointer; background: none; transition: all 0.2s;
    }
    .size-btn:hover { border-color: var(--gold); color: var(--gold); }
    .size-btn.active { background: var(--gold); color: var(--bg); border-color: var(--gold); }

    /* Colour swatches */
    .color-grid { display: flex; gap: 8px; flex-wrap: wrap; }
    .color-swatch {
      width: 24px; height: 24px; border-radius: 50%; cursor: pointer;
      border: 2px solid transparent; transition: border-color 0.2s;
    }
    .color-swatch.active, .color-swatch:hover { border-color: var(--gold); }

    /* ── Product Grid ─────────────────────────── */
    .grid-header {
      display: flex; align-items: center; justify-content: space-between;
      margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border);
    }
    .grid-count { font-family: var(--mono); font-size: 11px; color: var(--text2); letter-spacing: 0.06em; }
    .view-toggle { display: flex; gap: 6px; }
    .view-btn {
      width: 32px; height: 32px; border: 1px solid var(--border); border-radius: 4px;
      display: flex; align-items: center; justify-content: center;
      color: var(--text2); cursor: pointer; background: none; transition: all 0.2s;
    }
    .view-btn.active, .view-btn:hover { border-color: var(--gold); color: var(--gold); }

    .products-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
    }
    .products-grid.list-view {
      grid-template-columns: 1fr;
    }
    .products-grid.list-view .product-card { display: flex; flex-direction: row; }
    .products-grid.list-view .product-img { width: 200px; flex-shrink: 0; height: auto; min-height: 180px; }
    .products-grid.list-view .product-body { flex: 1; padding: 20px 22px; display: flex; flex-direction: column; justify-content: center; }

    .product-card {
      background: var(--bg2); border: 1px solid var(--border); border-radius: 4px;
      overflow: hidden; cursor: pointer; transition: border-color 0.25s, transform 0.25s;
    }
    .product-card:hover { border-color: var(--gold); transform: translateY(-3px); }
    .products-grid.list-view .product-card:hover { transform: translateY(0) translateX(3px); }

    .product-img { position: relative; overflow: hidden; height: 280px; }
    .product-img img {
      width: 100%; height: 100%; object-fit: cover; display: block;
      transition: transform 0.5s ease, filter 0.4s;
      filter: brightness(0.88) saturate(0.9);
    }
    .product-card:hover .product-img img { transform: scale(1.05); filter: brightness(0.95) saturate(1); }
    .product-img::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(to bottom, transparent 50%, rgba(10,10,11,0.65));
    }

    .quick-add {
      position: absolute; bottom: 0; left: 0; right: 0;
      background: var(--gold); color: var(--bg);
      font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
      text-align: center; padding: 11px;
      transform: translateY(100%); transition: transform 0.3s ease;
      z-index: 3; cursor: pointer; border: none;
    }
    .product-card:hover .quick-add { transform: translateY(0); }
    .quick-add:hover { background: var(--gold2); }

    .product-badge {
      position: absolute; top: 14px; left: 14px; z-index: 2;
      font-family: var(--mono); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase;
      padding: 4px 9px; border-radius: 2px;
    }
    .badge-sale  { background: var(--gold); color: var(--bg); }
    .badge-new   { background: #2a5e2a; color: #b6f0b6; border: 1px solid #3a7d3a; }
    .badge-hot   { background: #5e1a1a; color: #ffb3b3; border: 1px solid #8b2020; }

    .wish-btn {
      position: absolute; top: 12px; right: 12px; z-index: 2;
      width: 32px; height: 32px; background: rgba(10,10,11,0.7);
      border: 1px solid var(--border2); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--text2); font-size: 14px; cursor: pointer;
      transition: background 0.2s, color 0.2s, border-color 0.2s;
    }
    .wish-btn:hover { background: var(--bg); color: #e05; border-color: #e05; }
    .wish-btn.active { color: #e05; border-color: #e05; }

    .stars { display: flex; gap: 2px; color: var(--gold); font-size: 11px; }
    .product-body { padding: 13px 15px 15px; }
    .product-name { font-family: var(--serif); font-size: 15px; font-weight: 400; color: var(--text1); margin-bottom: 4px; line-height: 1.3; }
    .product-price { font-family: var(--mono); font-size: 12px; color: var(--gold); margin-top: 4px; }

    /* ── Load more ───────────────────────────── */
    .load-more-wrap { text-align: center; margin-top: 48px; }
    .load-more-btn {
      font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--gold); background: transparent;
      border: 1px solid var(--gold); padding: 13px 36px; border-radius: 2px;
      cursor: pointer; transition: background 0.2s, color 0.2s;
    }
    .load-more-btn:hover { background: var(--gold); color: var(--bg); }

    /* ── Footer ──────────────────────────────── */
    .site-footer { border-top: 1px solid var(--border); background: var(--bg2); }
    .footer-inner {
      max-width: 1280px; margin: 0 auto; padding: 64px 48px 40px;
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 2fr; gap: 48px;
    }
    .footer-brand .logo-text { font-size: 22px; margin-bottom: 12px; display: block; }
    .footer-brand p { font-size: 13px; line-height: 1.8; color: var(--text2); margin-bottom: 20px; max-width: 220px; }
    .footer-socials { display: flex; gap: 8px; }
    .social-btn {
      width: 34px; height: 34px; border: 1px solid var(--border2); border-radius: 4px;
      display: flex; align-items: center; justify-content: center;
      color: var(--text2); font-size: 14px; text-decoration: none;
      transition: border-color 0.2s, color 0.2s;
    }
    .social-btn:hover { border-color: var(--gold); color: var(--gold); }
    .footer-col h4 { font-family: var(--mono); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul li a { font-size: 13px; color: var(--text2); text-decoration: none; transition: color 0.2s; }
    .footer-col ul li a:hover { color: var(--text1); }
    .footer-subscribe p { font-size: 13px; line-height: 1.8; color: var(--text2); margin-bottom: 16px; }
    .subscribe-form { display: flex; border: 1px solid var(--border2); border-radius: 2px; overflow: hidden; }
    .subscribe-form input { flex: 1; background: var(--bg3); border: none; outline: none; padding: 10px 14px; font-family: var(--mono); font-size: 11px; color: var(--text1); }
    .subscribe-form input::placeholder { color: var(--muted); }
    .subscribe-form button { background: var(--gold); border: none; padding: 10px 16px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--bg); cursor: pointer; transition: background 0.2s; }
    .subscribe-form button:hover { background: var(--gold2); }
    .footer-bottom { border-top: 1px solid var(--border); padding: 20px 48px; max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
    .footer-bottom p { font-family: var(--mono); font-size: 10px; color: var(--muted); letter-spacing: 0.06em; }

    /* Reveal */
    .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
    .reveal.visible { opacity: 1; transform: none; }
    .rd1 { transition-delay: 0.07s; }
    .rd2 { transition-delay: 0.14s; }
    .rd3 { transition-delay: 0.21s; }

    /* ── Responsive ──────────────────────────── */
    @media (max-width: 1024px) {
      .shop-layout { grid-template-columns: 1fr; padding: 0 24px 80px; }
      .sidebar { display: none; }
      .products-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 768px) {
      header { padding: 0 20px; }
      .navmenu { display: none; }
      .ham-btn { display: flex; }
      .filter-bar { padding: 0 20px; }
      .breadcrumb { padding: 12px 20px; }
      .shop-layout { padding: 0 16px 64px; }
      .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
      .footer-inner { grid-template-columns: 1fr 1fr; padding: 40px 20px 24px; gap: 28px; }
      .footer-bottom { padding: 16px 20px; flex-direction: column; gap: 8px; text-align: center; }
    }
    @media (max-width: 480px) {
      .products-grid { grid-template-columns: 1fr; }
      .footer-inner { grid-template-columns: 1fr; }
    }
