
    /* ── Reset & Tokens ──────────────────────────────────────────────── */
    *, *::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; letter-spacing: 0.02em;
      line-height: 1.1; color: var(--text1);
    }
    .page-hero-title em { font-style: italic; color: var(--gold); }

    /* ── Filter Tabs ─────────────────────────────────────────────────── */
    .filter-bar {
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 0 48px;
      display: flex; align-items: center;
      gap: 0; 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); }

    /* ── Category Section ────────────────────────────────────────────── */
    .category-section {
      padding: 72px 48px;
      max-width: 1280px; margin: 0 auto;
    }
    .category-section + .category-section {
      border-top: 1px solid var(--border);
    }

    .cat-header {
      display: flex; align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 36px;
    }
    .cat-tag {
      font-family: var(--mono);
      font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 8px;
    }
    .cat-title {
      font-family: var(--serif);
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 300; line-height: 1.1;
    }
    .cat-title em { font-style: italic; color: var(--gold); }
    .cat-count {
      font-family: var(--mono);
      font-size: 11px; color: var(--muted);
      letter-spacing: 0.08em;
    }

    /* ── Product Grid ────────────────────────────────────────────────── */
    .products-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .product-card {
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: 4px;
      overflow: hidden;
      position: relative;
      cursor: pointer;
      transition: border-color 0.25s, transform 0.25s;
    }
    .product-card:hover { border-color: var(--gold); transform: translateY(-3px); }

    /* Featured first card spans 2 cols */
    .products-grid.featured .product-card:first-child {
      grid-column: span 2;
    }
    .products-grid.featured .product-card:first-child .product-img { height: 460px; }

    .product-img {
      position: relative; overflow: hidden;
      height: 260px;
    }
    .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 overlay */
    .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); }

    /* Badge */
    .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; }

    /* Wishlist */
    .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;
    }
    .products-grid.featured .product-card:first-child .product-name { font-size: 19px; }
    .product-price {
      font-family: var(--mono); font-size: 12px; color: var(--gold);
    }
    .product-footer {
      display: flex; align-items: center;
      justify-content: space-between; margin-top: 10px;
    }

    /* ── Divider ─────────────────────────────────────────────────────── */
    .section-divider {
      max-width: 1280px; margin: 0 auto 0;
      padding: 0 48px;
    }
    .section-divider hr { border: none; border-top: 1px solid var(--border); }

    /* ── Footer ──────────────────────────────────────────────────────── */
    .site-footer { border-top: 1px solid var(--border); background: var(--bg2); margin-top: 80px; }
    .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;
    }

    /* ── Scroll 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.08s; }
    .rd2 { transition-delay: 0.16s; }
    .rd3 { transition-delay: 0.24s; }

    /* ── Responsive ──────────────────────────────────────────────────── */
    @media (max-width: 1024px) {
      .products-grid { grid-template-columns: repeat(3, 1fr); }
      .products-grid.featured .product-card:first-child { grid-column: span 3; }
      .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
    }
    @media (max-width: 768px) {
      header { padding: 0 20px; }
      .navmenu { display: none; }
      .ham-btn { display: flex; }
      .filter-bar { padding: 0 20px; }
      .category-section { padding: 56px 20px; }
      .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
      .products-grid.featured .product-card:first-child { grid-column: span 2; }
      .cat-header { flex-direction: column; align-items: flex-start; gap: 8px; }
      .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, .products-grid.featured .product-card:first-child { grid-column: span 1; }
      .products-grid { grid-template-columns: 1fr; }
      .footer-inner { grid-template-columns: 1fr; }
    }
