
  /* ── Base ── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Outfit', sans-serif; cursor: none; overflow-x: hidden; background: #faf8f4; color: #1a1a1a; }
  @media (max-width: 768px) { body { cursor: auto; } #cursor, #cursorRing { display: none; } }

  /* ── Custom Cursor ── */
  #cursor {
    width: 10px; height: 10px; background: #c9a96e; border-radius: 50%;
    position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
    transition: transform 0.15s ease; mix-blend-mode: difference;
  }
  #cursorRing {
    width: 36px; height: 36px; border: 1px solid #c9a96e; border-radius: 50%;
    position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9998;
    transition: all 0.35s cubic-bezier(0.25,0.46,0.45,0.94); opacity: 0.6;
  }

  /* ── Hero grain ── */
  .hero-section::after {
    content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.4;
  }

  /* ── Reveal animations ── */
  .reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
  .reveal-left.visible { opacity: 1; transform: translateX(0); }
  .reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
  .reveal-right.visible { opacity: 1; transform: translateX(0); }
  .reveal-scale { opacity: 0; transform: scale(0.92); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
  .reveal-scale.visible { opacity: 1; transform: scale(1); }
  [data-delay="1"] { transition-delay: 0.1s !important; }
  [data-delay="2"] { transition-delay: 0.2s !important; }
  [data-delay="3"] { transition-delay: 0.3s !important; }
  [data-delay="4"] { transition-delay: 0.4s !important; }
  [data-delay="5"] { transition-delay: 0.5s !important; }
  [data-delay="6"] { transition-delay: 0.6s !important; }

  /* ── Hero text entrance ── */
  .hero-badge  { animation: fadeSlideUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.3s both; }
  .hero-title  { animation: fadeSlideUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.5s both; }
  .hero-desc   { animation: fadeSlideUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.7s both; }
  .hero-cta    { animation: fadeSlideUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.9s both; }
  .hero-stats  { animation: fadeSlideUp 0.9s cubic-bezier(0.16,1,0.3,1) 1.1s both; }
  .hero-frame  { animation: fadeSlideUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.6s both; }
  @keyframes fadeSlideUp { from { opacity:0; transform:translateY(32px); } to { opacity:1; transform:translateY(0); } }

  /* ── Badge pulse dot ── */
  .badge-dot::before {
    content: ''; width: 6px; height: 6px; background: #c9a96e; border-radius: 50%;
    display: inline-block; margin-right: 8px; animation: pDot 2s infinite;
  }
  @keyframes pDot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.6)} }

  /* ── Button shimmer ── */
  .btn-shimmer { position: relative; overflow: hidden; }
  .btn-shimmer::before {
    content: ''; position: absolute; inset: 0; background: #fff;
    transform: translateX(-100%); transition: transform 0.5s ease; opacity: 0.15;
  }
  .btn-shimmer:hover::before { transform: translateX(0); }

  /* ── Magnetic button ── */
  .btn-magnetic { transition: transform 0.3s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.3s ease; }

  /* ── Section label ── */
  .section-label::after {
    content: ''; display: inline-block; width: 36px; height: 1px;
    background: #c9a96e; opacity: 0.5; margin-left: 10px; vertical-align: middle;
  }

  /* ── Nav ── */
  .nav-line-short { width: 18px; transition: width 0.3s; }
  .nav-burger:hover .nav-line-short { width: 28px; }
  /* .cart-badge::after {
    content:'3'; position:absolute; top:-8px; right:-8px;
    width:16px; height:16px; background:#c9a96e; color:#000;
    font-size:9px; font-weight:600; border-radius:50%;
    display:flex; align-items:center; justify-content:center; line-height:16px;
  } */
  /* Mobile nav */
  #mobileMenu { transform: translateX(100%); transition: transform 0.5s cubic-bezier(0.76,0,0.24,1); }
  #mobileMenu.open { transform: translateX(0); }

  /* ── Oval outfit slider ── */
  .oval-frame { border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%; overflow: hidden; }
  .outfit-slide { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; transition: transform 0.9s cubic-bezier(0.76,0,0.24,1), opacity 0.9s ease; }
  .outfit-slide.active { transform: translateY(0); opacity: 1; z-index: 2; }
  .outfit-slide.enter  { transform: translateY(100%); opacity: 0; z-index: 1; }
  .outfit-slide.exit   { transform: translateY(-100%); opacity: 0; z-index: 1; }
  .outfit-dot { width:4px; height:4px; border-radius:50%; background:rgba(201,169,110,0.3); transition:all 0.3s; cursor:pointer; }
  .outfit-dot.active-dot { height:16px; border-radius:2px; background:#c9a96e; }

  /* ── Orbit ring dot ── */
  .orbit-ring::before {
    content:''; position:absolute; top:-3px; left:50%;
    width:6px; height:6px; background:#c9a96e; border-radius:50%;
    transform:translateX(-50%);
  }

  /* ── Particles ── */
  .particle {
    position: absolute; width: 2px; height: 2px;
    background: #c9a96e; border-radius: 50%;
    animation: particle 6s ease-in-out infinite;
    pointer-events: none;
  }

  /* ── Shimmer text ── */
  .shimmer-text {
    background: linear-gradient(90deg, #c9a96e 0%, #f5e6c5 40%, #c9a96e 60%, #e8d5b0 100%);
    background-size: 200% auto;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
  }

  /* ── Cat card ── */
 .cat-card { transition: transform 0.35s ease, opacity 0.35s ease, filter 0.35s ease; }
  .cat-card .cat-bg  { transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94), opacity 0.35s ease; }
  .cat-card:hover .cat-bg { transform: scale(1.06); }
  .cat-card .cat-arrow { transform: translateY(10px); opacity: 0; transition: all 0.35s ease; }
  .cat-card .cat-overlay { transition: background 0.4s ease, opacity 0.3s ease; }
  .cat-card .cat-overlay { transition: background 0.4s ease, opacity 0.3s ease; }
  .cat-card:hover .cat-overlay { background: linear-gradient(to top, rgba(10,8,6,0.93) 0%, rgba(10,8,6,0.15) 65%) !important; }

  .cat-card.category-switch-out { opacity: 0.4; transform: translateY(10px) scale(0.985); filter: saturate(0.8); }
  .cat-card.category-switch-in { opacity: 0; transform: translateY(12px) scale(0.985); }
  .cat-card.category-switch-in.category-switch-in-active { opacity: 1; transform: translateY(0) scale(1); }

  .category-toggle-btn { transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.25s ease, opacity 0.25s ease; }
  .category-toggle-btn:hover { transform: translateY(-1px); }
  .category-toggle-btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

  .cat-grid { transition: opacity 0.35s ease, transform 0.35s ease; }
  .cat-grid.cat-grid-switching { opacity: 0.82; transform: translateY(4px); }
  /* ── Product card ── */
  .product-card .prod-actions { transform: translateY(12px); opacity: 0; transition: all 0.35s cubic-bezier(0.16,1,0.3,1); }
  .product-card:hover .prod-actions { opacity: 1; transform: translateY(0); }
  .product-card .prod-img-bg { transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94); }
  .product-card:hover .prod-img-bg { transform: scale(1.05); }
  .product-card { transition: transform 0.3s ease; }
  .product-card:hover { transform: translateY(-4px); }

  /* ── Promo watermark ── */
  .promo-watermark::before {
    content:'SALE'; position:absolute; right:12rem; top:50%; transform:translateY(-50%);
    font-family:'Cormorant Garamond',serif; font-size:clamp(4rem,8vw,9rem); font-weight:300;
    opacity:0.09; color:#0f0e0c; letter-spacing:0.05em; line-height:1; pointer-events:none;
  }
  @media(max-width:768px) { .promo-watermark::before { right:2rem; font-size:4rem; } }

  /* ── Glow border ── */
  .glow-border { box-shadow: 0 0 0 1px rgba(201,169,110,0.15), 0 0 40px rgba(201,169,110,0.08); transition: box-shadow 0.4s ease; }
  .glow-border:hover { box-shadow: 0 0 0 1px rgba(201,169,110,0.4), 0 0 60px rgba(201,169,110,0.18); }

  /* ── Mobile menu toggle ── */
  .hamburger-line { display:block; height:1px; background:#c9a96e; transition:all 0.3s ease; }
  body.menu-open .hamburger-line:nth-child(1) { transform:translateY(7px) rotate(45deg); }
  body.menu-open .hamburger-line:nth-child(2) { opacity:0; }
  body.menu-open .hamburger-line:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

  /* ── Tilt card ── */
  .tilt-card { transform-style: preserve-3d; transition: transform 0.4s ease; }

  /* ── Scroll indicator ── */
  .scroll-indicator { animation: scrollLine 2s ease-in-out infinite; }

  /* ════════════════════════════════════════════════════
     LUXURY WARDROBE ARMOIRE
  ════════════════════════════════════════════════════ */

  /* Wrapper sets 3D perspective */
  .wardrobe-scene {
    perspective: 1400px;
    perspective-origin: 50% 38%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* The cabinet body */
  .wardrobe-cabinet {
    position: relative;
    width: clamp(280px, 44vw, 460px);
    aspect-ratio: 3/4.2;
    background: linear-gradient(165deg, #1e1610 0%, #2a1e12 35%, #1a1308 70%, #0f0c06 100%);
    border: 1px solid rgba(201,169,110,0.22);
    border-radius: 4px 4px 2px 2px;
    box-shadow:
      0 0 0 1px rgba(201,169,110,0.08),
      inset 0 0 80px rgba(0,0,0,0.7),
      0 50px 120px rgba(0,0,0,0.85),
      0 0 60px rgba(201,169,110,0.05);
    overflow: visible;
    transform-style: preserve-3d;
  }

  /* Wood grain texture */
  .wardrobe-cabinet::before {
    content: '';
    position: absolute; inset: 0;
    background:
      repeating-linear-gradient(91deg,
        transparent 0px, transparent 6px,
        rgba(201,169,110,0.018) 6px, rgba(201,169,110,0.018) 7px),
      repeating-linear-gradient(180deg,
        transparent 0px, transparent 40px,
        rgba(0,0,0,0.08) 40px, rgba(0,0,0,0.08) 41px);
    border-radius: 4px 4px 2px 2px;
    pointer-events: none; z-index: 0;
  }

  /* ── Cornice (ornate top rail) ── */
  .wardrobe-cornice {
    position: absolute;
    top: -28px; left: -14px; right: -14px; height: 28px;
    background: linear-gradient(180deg, #2e2014 0%, #1e1610 50%, #1a1208 100%);
    border: 1px solid rgba(201,169,110,0.28);
    border-bottom: none;
    clip-path: polygon(0 100%, 1.5% 55%, 4% 28%, 8% 12%, 50% 8%, 92% 12%, 96% 28%, 98.5% 55%, 100% 100%);
    box-shadow: 0 -6px 24px rgba(0,0,0,0.5);
  }
  .wardrobe-cornice::after {
    content: '— ATELIER —';
    position: absolute; top: 44%; left: 50%; transform: translate(-50%, -50%);
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.48rem; letter-spacing: 0.4em;
    color: rgba(201,169,110,0.55); text-transform: uppercase; white-space: nowrap;
  }

  /* ── Plinth (base) ── */
  .wardrobe-base {
    position: absolute;
    bottom: -22px; left: -10px; right: -10px; height: 22px;
    background: linear-gradient(180deg, #1a1208 0%, #120e06 100%);
    border: 1px solid rgba(201,169,110,0.2); border-top: none;
    border-radius: 0 0 3px 3px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.7);
  }
  /* base feet */
  .wardrobe-base::before, .wardrobe-base::after {
    content: '';
    position: absolute; bottom: -8px; width: 30px; height: 8px;
    background: #0e0a06;
    border: 1px solid rgba(201,169,110,0.18); border-top: none;
    border-radius: 0 0 3px 3px;
  }
  .wardrobe-base::before { left: 12%; }
  .wardrobe-base::after  { right: 12%; }

  /* ── Cabinet floor shadow ── */
  .wardrobe-floor-shadow {
    position: absolute; bottom: -38px; left: 5%; right: 5%; height: 18px;
    background: radial-gradient(ellipse, rgba(0,0,0,0.55), transparent 70%);
    filter: blur(8px);
  }

  /* ── Interior (shown when doors open) ── */
  .wardrobe-interior {
    position: absolute; inset: 0;
    border-radius: 2px;
    background: linear-gradient(180deg, #0c0906 0%, #121008 30%, #0e0c06 100%);
    overflow: hidden;
    z-index: 1;
  }

  /* interior ambient glow — fades in with door open */
  .wardrobe-interior-glow {
    position: absolute; inset: 0; z-index: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 20%, rgba(201,169,110,0.09), transparent 65%);
    opacity: 0;
    transition: opacity 1.2s ease 1s;
  }
  .wardrobe-open .wardrobe-interior-glow { opacity: 1; }

  /* hanging rail */
  .wardrobe-rail {
    position: absolute; top: 14px; left: 8%; right: 8%; height: 5px;
    background: linear-gradient(90deg,
      #1a1208, #c9a96e 15%, #f5e6c5 50%, #c9a96e 85%, #1a1208);
    border-radius: 3px; z-index: 6;
    box-shadow: 0 2px 14px rgba(201,169,110,0.35), 0 1px 0 rgba(255,255,255,0.1);
  }
  /* rail end caps */
  .wardrobe-rail::before, .wardrobe-rail::after {
    content: ''; position: absolute; top: -3px; width: 11px; height: 11px;
    background: radial-gradient(circle at 40% 35%, #f5e6c5, #c9a96e 50%, #8a6a30);
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.5);
  }
  .wardrobe-rail::before { left: -4px; }
  .wardrobe-rail::after  { right: -4px; }

  /* ── Outfit slides inside wardrobe ── */
  .outfit-slide {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: flex-end;
    padding-bottom: 52px;
    transition: transform 1.05s cubic-bezier(0.76,0,0.24,1), opacity 1.05s ease;
    overflow: hidden; z-index: 2;
  }
  .outfit-slide.active { transform: translateY(0); opacity: 1; z-index: 3; }
  .outfit-slide.enter  { transform: translateY(105%); opacity: 0; z-index: 2; }
  .outfit-slide.exit   { transform: translateY(-105%); opacity: 0; z-index: 2; }

  /* Ken Burns subtle zoom on active photo */
  @keyframes kenBurns {
    0%   { transform: scale(1)    translate(0,0); }
    100% { transform: scale(1.06) translate(-1%,-1%); }
  }
  .outfit-slide.active img {
    animation: kenBurns 8s ease-out forwards;
  }
  .outfit-slide.enter img,
  .outfit-slide.exit  img {
    animation: none;
  }

  /* floating garment animation */
  @keyframes garmentSway {
    0%,100% { transform: rotate(-0.6deg) translateX(-1px); }
    50%      { transform: rotate(0.6deg) translateX(1px); }
  }
  @keyframes garmentFloat {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
  }
  @keyframes moteFloat {
    0%   { transform: translateY(0) translateX(0); opacity: 0; }
    12%  { opacity: 0.7; }
    88%  { opacity: 0.25; }
    100% { transform: translateY(-90px) translateX(var(--mx,12px)); opacity: 0; }
  }
  .garment-svg {
    animation: garmentSway 6s ease-in-out infinite, garmentFloat 4.5s ease-in-out infinite;
    transform-origin: center top;
    filter: drop-shadow(0 12px 28px rgba(0,0,0,0.7));
  }

  /* ── Wardrobe floor strip (progress + dots) ── */
  .wardrobe-floor-strip {
    position: absolute; bottom: 0; left: 0; right: 0; height: 48px;
    background: linear-gradient(180deg, rgba(15,12,8,0) 0%, rgba(10,8,5,0.95) 40%);
    display: flex; align-items: center; justify-content: center; gap: 8px;
    z-index: 20;
  }
  .outfit-dot {
    width: 5px; height: 5px; border-radius: 50%;
    background: rgba(201,169,110,0.28); border: none; padding: 0;
    cursor: pointer; transition: all 0.35s ease;
  }
  .outfit-dot.active-dot { background: #c9a96e; transform: scale(1.5); }

  /* progress bar at very bottom */
  .outfit-progress { position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: rgba(201,169,110,0.15); }
  .outfit-progress-bar { height: 100%; background: linear-gradient(90deg, #c9a96e, #f5e6c5); width: 0%; transition: width 0.08s linear; }

  /* ════════════ DOORS ════════════ */
  .wardrobe-doors {
    position: absolute; inset: 0; z-index: 10;
    border-radius: 2px; overflow: visible;
  }

  /* Left door */
  .door-l {
    position: absolute; top: 0; left: 0; width: 50.5%; height: 100%;
    background: linear-gradient(160deg, #2a1e12 0%, #221810 40%, #1e1610 70%, #1a1208 100%);
    transform-origin: left center;
    transform: rotateY(0deg);
    transition: transform 1.7s cubic-bezier(0.7, 0, 0.2, 1);
    transform-style: preserve-3d;
    backface-visibility: hidden;
    border-right: 1px solid rgba(201,169,110,0.1);
    box-shadow: inset -5px 0 20px rgba(0,0,0,0.45);
    will-change: transform;
  }
  .wardrobe-open .door-l { transform: rotateY(-118deg); }

  /* Right door */
  .door-r {
    position: absolute; top: 0; right: 0; width: 50.5%; height: 100%;
    background: linear-gradient(200deg, #2a1e12 0%, #221810 40%, #1e1610 70%, #1a1208 100%);
    transform-origin: right center;
    transform: rotateY(0deg);
    transition: transform 1.7s cubic-bezier(0.7, 0, 0.2, 1);
    transform-style: preserve-3d;
    backface-visibility: hidden;
    border-left: 1px solid rgba(201,169,110,0.1);
    box-shadow: inset 5px 0 20px rgba(0,0,0,0.45);
    will-change: transform;
  }
  .wardrobe-open .door-r { transform: rotateY(118deg); }

  /* Door wood grain */
  .door-l::before, .door-r::before {
    content: '';
    position: absolute; inset: 0;
    background:
      repeating-linear-gradient(173deg,
        transparent 0px, transparent 10px,
        rgba(201,169,110,0.025) 10px, rgba(201,169,110,0.025) 11px);
    pointer-events: none;
  }

  /* Recessed panels on door */
  .door-panel {
    position: absolute;
    border: 1px solid rgba(201,169,110,0.18);
    background: rgba(0,0,0,0.18);
    box-shadow: inset 0 2px 6px rgba(0,0,0,0.5), 0 1px 0 rgba(201,169,110,0.08);
    border-radius: 1px;
  }
  .dp-top  { top: 10%; left: 12%; right: 12%; height: 32%; }
  .dp-mid  { top: 46%; left: 12%; right: 12%; height: 10%; }
  .dp-bot  { top: 60%; left: 12%; right: 12%; height: 32%; }

  /* Door handle — ornate brass knob */
  .door-handle {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 10px; height: 46px; border-radius: 5px;
    background: linear-gradient(180deg, #f0dda0 0%, #c9a96e 30%, #a07840 60%, #c9a96e 80%, #f0dda0 100%);
    box-shadow: 0 3px 12px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.25);
    cursor: pointer;
  }
  .door-l .door-handle { right: 10px; }
  .door-r .door-handle { left: 10px; }

  /* Keyhole detail */
  .door-keyhole {
    position: absolute; bottom: 46%; left: 50%; transform: translateX(-50%);
    width: 6px; height: 10px;
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(201,169,110,0.3);
    border-radius: 3px 3px 50% 50%;
  }

  /* Light leak when doors opening */
  .door-glow {
    position: absolute; top: 0; bottom: 0; width: 30px;
    opacity: 0;
    transition: opacity 0.9s ease 0.7s;
    pointer-events: none;
  }
  .door-l .door-glow { right: 0; background: linear-gradient(90deg, transparent, rgba(201,169,110,0.09)); }
  .door-r .door-glow { left: 0; background: linear-gradient(270deg, transparent, rgba(201,169,110,0.09)); }
  .wardrobe-open .door-glow { opacity: 1; }

  /* Cast shadow from open doors */
  .door-cast-shadow {
    position: absolute; top: 0; bottom: 0; width: 50px; pointer-events: none;
    opacity: 0; transition: opacity 0.7s ease 0.4s; z-index: 0;
  }
  .door-l .door-cast-shadow { right: -50px; background: linear-gradient(90deg, rgba(0,0,0,0.22), transparent); }
  .door-r .door-cast-shadow { left: -50px; background: linear-gradient(270deg, rgba(0,0,0,0.22), transparent); }
  .wardrobe-open .door-cast-shadow { opacity: 1; }

  /* Monogram engraving on door */
  .door-monogram {
    position: absolute;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem; font-weight: 300;
    color: rgba(201,169,110,0.1);
    letter-spacing: 0.15em;
    user-select: none; pointer-events: none;
  }
  .door-l .door-monogram { bottom: 22%; right: 50%; transform: translateX(50%); }
  .door-r .door-monogram { bottom: 22%; left: 50%; transform: translateX(-50%); }

  /* ── Floating tags ── */
  .floating-tag {
    display: flex;
    animation: float 5s ease-in-out infinite;
  }
  .floating-tag-delay { animation-delay: 2.2s; }
  @media (max-width: 480px) {
    .floating-tag { padding: 0.4rem 0.7rem !important; }
  }

  /* ── Dust motes inside wardrobe ── */
  @keyframes mote {
    0%   { transform: translateY(0) translateX(0); opacity: 0; }
    10%  { opacity: 0.6; }
    90%  { opacity: 0.15; }
    100% { transform: translateY(-100px) translateX(var(--mx,10px)); opacity: 0; }
  }
  .mote {
    position: absolute; border-radius: 50%; background: #c9a96e;
    pointer-events: none; animation: mote 8s ease-in-out infinite;
  }

  /* ── Orbit ring dot ── */
  .orbit-ring::before {
    content:''; position:absolute; top:-3px; left:50%;
    width:6px; height:6px; background:#c9a96e; border-radius:50%;
    transform:translateX(-50%);
  }

  /* ── Category grid responsive ── */
  @media (max-width: 1024px) {
    .cat-grid { grid-template-columns: 1fr 1fr !important; grid-template-rows: auto !important; }
    .cat-big  { grid-row: auto !important; height: 400px !important; grid-column: 1 / -1 !important; }
    .cat-small { height: 260px !important; }
  }
  @media (max-width: 640px) {
    .cat-grid { grid-template-columns: 1fr !important; }
    .cat-big  { height: 320px !important; }
    .cat-small { height: 220px !important; }
  }

  /* ── Products grid responsive ── */
  @media (max-width: 1024px) { .prod-grid { grid-template-columns: repeat(2,1fr) !important; } }
  @media (max-width: 640px)  { .prod-grid { grid-template-columns: repeat(2,1fr) !important; gap: 1rem !important; } }

  /* ── Footer grid ── */
  @media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 2.5rem !important; } }
  @media (max-width: 640px)  { .footer-grid { grid-template-columns: 1fr !important; gap: 2rem !important; } }

  /* ── Newsletter grid ── */
  @media (max-width: 768px) { .newsletter-grid { grid-template-columns: 1fr !important; gap: 2.5rem !important; } }

  /* ── Promo grid ── */
  @media (max-width: 768px) { .promo-grid { grid-template-columns: 1fr !important; } }

  /* ── Scroll indicator hide on mobile ── */
  @media (max-width: 768px) { .scroll-indicator-wrap { display: none !important; } }

  /* ── Stat divider ── */
  .stat-divider { border-top: 1px solid rgba(201,169,110,0.15); }
