  :root{
    --black:#fbf8f2;
    --charcoal:#f3ecdf;
    --panel:#ffffff;
    --gold:#a97c37;
    --gold-bright:#c9a24a;
    --gold-dim:#8a7042;
    --ivory:#2b2620;
    --ivory-dim:#6f6558;
    --hair: rgba(169,124,55,0.22);
    --font-heading:var(--font-heading);
    --font-body:var(--font-body);
  }
  *{margin:0;padding:0;box-sizing:border-box;}
  html{scroll-behavior:smooth;}

  /* ---------- PAGE LOADER ---------- */
  .page-loader{
    position:fixed; inset:0; z-index:9999;
    display:flex; align-items:center; justify-content:center;
    background:var(--black);
    transition:opacity .5s ease, visibility .5s ease;
  }
  .page-loader.is-hidden{ opacity:0; visibility:hidden; pointer-events:none; }
  .page-loader-inner{ display:flex; flex-direction:column; align-items:center; gap:16px; }
  .page-loader-mark{
    width:52px; height:auto;
    animation:loaderFloat 1.5s ease-in-out infinite;
    filter:drop-shadow(0 8px 16px rgba(169,124,55,0.3));
  }
  .page-loader-word{
    font-family:var(--font-heading); font-size:19px; letter-spacing:.4em;
    text-transform:uppercase; color:var(--ivory); padding-left:.4em;
  }
  @keyframes loaderFloat{
    0%,100%{ transform:translateY(0) scale(1); }
    50%{ transform:translateY(-8px) scale(1.06); }
  }
  @media (prefers-reduced-motion: reduce){
    .page-loader-mark{ animation:none; }
  }

  body{
    background:var(--black);
    color:var(--ivory);
    font-family:var(--font-body);
    font-weight:300;
    overflow-x:hidden;
    position:relative;
    transition:background .4s ease, color .4s ease;
  }
  body::before{
    content:'';
    position:fixed; inset:0; z-index:1; pointer-events:none;
    opacity:.035; mix-blend-mode:multiply;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }
  .reveal{opacity:0; transform:translateY(26px); transition:opacity .9s ease, transform .9s ease;}
  .reveal.in-view{opacity:1; transform:translateY(0);}
  a{color:inherit;text-decoration:none;}
  .eyebrow{
    font-size:11px;
    letter-spacing:0.35em;
    text-transform:uppercase;
    color:var(--gold);
    font-weight:500;
  }
  .serif{font-family:var(--font-heading);}

  /* ---------- NAV ---------- */
  header{
    position:fixed; top:0; left:0; right:0; z-index:100;
    display:flex; align-items:center; justify-content:space-between;
    padding:22px 5vw;
    background:linear-gradient(to bottom,
      color-mix(in srgb, var(--black) 88%, transparent),
      color-mix(in srgb, var(--black) 58%, transparent));
    backdrop-filter:blur(14px) saturate(140%);
    -webkit-backdrop-filter:blur(14px) saturate(140%);
    transition:background .4s ease, padding .4s ease, backdrop-filter .4s ease;
  }
  header.scrolled{
    background:color-mix(in srgb, var(--black) 94%, transparent);
    padding:14px 5vw;
    border-bottom:1px solid var(--hair);
    box-shadow:0 6px 24px rgba(169,124,55,0.08);
  }
  .brand{display:flex; align-items:center; gap:10px;}
  .brand img{
    height:34px; width:auto; display:block;
    filter:drop-shadow(0 0 6px rgba(201,162,74,0.25));
    animation:brandFloat 3.6s ease-in-out infinite;
    transform-origin:center;
  }
  .brand span{font-family:var(--font-heading); font-size:22px; letter-spacing:0.18em; color:var(--ivory);}
  @keyframes brandFloat{
    0%,100%{transform:translateY(0) rotate(0deg);}
    50%{transform:translateY(-4px) rotate(3deg);}
  }
  @media (prefers-reduced-motion: reduce){
    .brand img{animation:none;}
  }
  nav.links{display:flex; gap:40px;}
  nav.links a{
    font-size:12px; letter-spacing:0.12em; text-transform:uppercase;
    color:var(--ivory-dim); position:relative; padding-bottom:4px;
  }
  nav.links a::after{
    content:''; position:absolute; left:0; bottom:0; width:0; height:1px;
    background:var(--gold); transition:width .3s ease;
  }
  nav.links a:hover{color:var(--ivory);}
  nav.links a:hover::after{width:100%;}
  .nav-icons{display:flex; gap:22px; align-items:center;}
  .nav-icons a{font-size:11px; letter-spacing:0.1em; text-transform:uppercase; color:var(--ivory-dim);}
  .nav-icons a:hover{color:var(--gold);}

  /* ---------- HERO ---------- */
  .hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
    perspective:1400px;
  }
  .hero-bg{
    transition:transform .25s ease-out;
    will-change:transform;
    position:absolute; inset:0;
  /* [hero background image omitted] */
    background-size:cover;
    background-position:center 20%;
    transform:scale(1.06);
    animation:heroZoom 18s ease-out forwards;
  }
  @keyframes heroZoom{ to{ transform:scale(1); } }
  .hero-scrim{
    position:absolute; inset:0;
    background:linear-gradient(90deg,
      rgba(20,16,10,0.94) 0%,
      rgba(20,16,10,0.78) 28%,
      rgba(20,16,10,0.32) 55%,
      rgba(20,16,10,0.04) 72%,
      rgba(20,16,10,0.22) 100%),
      linear-gradient(to top, rgba(20,16,10,0.7) 0%, rgba(20,16,10,0) 30%);
  }
  .hero-inner{
    position:relative; z-index:2;
    padding:0 5vw;
    max-width:640px;
    opacity:0;
    animation:riseIn 1.1s .4s ease forwards;
    transition:transform .25s ease-out;
    will-change:transform;
    transform-style:preserve-3d;
  }
  @keyframes riseIn{
    from{opacity:0; transform:translateY(28px);}
    to{opacity:1; transform:translateY(0);}
  }
  .hero-mark{
    width:56px; height:auto; margin-bottom:26px; opacity:.95;
    filter:drop-shadow(0 10px 18px rgba(20,16,10,0.35));
    animation:coinTurn 7s linear infinite;
    transform-style:preserve-3d;
  }
  @keyframes coinTurn{
    0%,8%{transform:rotateY(0deg);}
    50%{transform:rotateY(360deg);}
    100%{transform:rotateY(360deg);}
  }
  .hero .eyebrow{margin-bottom:20px; display:block; color:var(--gold-bright);}
  .hero h1{
    font-family:var(--font-heading);
    font-weight:400;
    font-size:clamp(48px, 6.4vw, 92px);
    line-height:1.02;
    letter-spacing:0.01em;
    color:#f8f1e2;
    margin-bottom:22px;
  }
  .hero h1 em{
    font-style:italic;
    color:var(--gold-bright);
  }
  .hero p{
    font-size:clamp(19px, 2.1vw, 24px);
    line-height:1.65;
    color:#e3d8c3;
    max-width:540px;
    margin-bottom:38px;
    font-weight:300;
  }
  .cta-row{display:flex; gap:18px; flex-wrap:wrap; align-items:center;}
  .btn-gold{
    padding:16px 34px;
    background:linear-gradient(120deg, var(--gold-dim), var(--gold-bright), var(--gold-dim));
    background-size:200% auto;
    color:#0a0908;
    font-size:12px; letter-spacing:0.15em; text-transform:uppercase; font-weight:600;
    border-radius:2px;
    transition:background-position .6s ease, transform .3s ease;
    display:inline-block;
  }
  .btn-gold:hover{background-position:right center; transform:translateY(-2px);}
  .btn-outline{
    padding:16px 30px;
    border:1px solid var(--hair);
    color:var(--ivory);
    font-size:12px; letter-spacing:0.15em; text-transform:uppercase; font-weight:500;
    display:inline-flex; align-items:center; gap:10px;
    transition:border-color .3s ease, color .3s ease;
  }
  .btn-outline:hover{border-color:var(--gold); color:var(--gold);}
  .hero .btn-outline{
    border:1px solid rgba(232,200,119,0.55);
    color:#f3ecdd;
  }
  .hero .btn-outline:hover{border-color:var(--gold-bright); color:var(--gold-bright);}

  .hero-foot{
    position:absolute; bottom:34px; left:0; right:0; z-index:2;
    display:flex; align-items:center; justify-content:space-between;
    padding:0 5vw;
    font-size:11px; letter-spacing:0.12em; text-transform:uppercase; color:#e3d8c3;
  }
  .scroll-cue{display:flex; align-items:center; gap:10px;}
  .scroll-line{width:1px; height:34px; background:linear-gradient(to bottom, var(--gold), transparent); animation:pulseLine 2s ease-in-out infinite;}
  @keyframes pulseLine{0%,100%{opacity:.3;}50%{opacity:1;}}
  .hero-foot .stats{display:flex; gap:34px;}
  .hero-foot .stats div{text-align:right;}
  .hero-foot .stats b{display:block; font-family:var(--font-heading); font-size:20px; color:var(--gold-bright); font-weight:500; letter-spacing:0;}

  /* ---------- STRIP BELOW HERO ---------- */
  .trust-strip{
    background:var(--charcoal);
    border-top:1px solid var(--hair);
    border-bottom:1px solid var(--hair);
    padding:22px 5vw;
    display:flex; justify-content:center; gap:64px; flex-wrap:wrap;
  }
  .trust-strip div{
    font-size:11px; letter-spacing:0.14em; text-transform:uppercase; color:var(--ivory-dim);
    display:flex; align-items:center; gap:10px;
  }
  .trust-strip div::before{content:'◆'; color:var(--gold); font-size:8px;}

  section{padding:110px 5vw;}
  .section-head{text-align:center; max-width:620px; margin:0 auto 60px;}
  .section-head .eyebrow{display:block; margin-bottom:14px;}
  .section-head h2{font-family:var(--font-heading); font-weight:400; font-size:clamp(30px,3.4vw,46px); color:var(--ivory);}

  .collections{display:grid; grid-template-columns:repeat(4,1fr); gap:2px; background:var(--hair);}
  .collections a{
    position:relative; aspect-ratio:3/4; overflow:hidden; background:var(--panel);
    display:flex; align-items:flex-end; padding:24px;
  }
  .collections a::after{
    content:''; position:absolute; inset:0;
    background:linear-gradient(to top, rgba(20,16,10,.72) 0%, rgba(20,16,10,.08) 55%, rgba(20,16,10,0) 75%);
  }
  .collections img{position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:.92; transition:transform .6s ease, opacity .4s ease;}
  .collections a:hover img{transform:scale(1.08); opacity:1;}
  .collections span{position:relative; z-index:2; font-family:var(--font-heading); font-size:22px; color:#f8f1e2;}

  /* ---------- STORY / ATELIER ---------- */
  .story{
    display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:center;
  }
  .story img{width:100%; height:520px; object-fit:cover; filter:saturate(.9) contrast(1.05);}
  .story .eyebrow{display:block; margin-bottom:16px;}
  .story h2{font-family:var(--font-heading); font-weight:400; font-size:clamp(28px,3vw,42px); margin-bottom:22px; color:var(--ivory);}
  .story p{color:var(--ivory-dim); line-height:1.8; font-size:15.5px; max-width:460px;}

  /* ---------- BRIDAL BANNER ---------- */
  .bridal-banner{
    position:relative; min-height:60vh; display:flex; align-items:center; justify-content:center; text-align:center;
    background-image:linear-gradient(rgba(20,16,10,.5), rgba(20,16,10,.72)), url('https://images.unsplash.com/photo-1583937443566-6fb9066f5471?q=80&w=1800&auto=format&fit=crop');
    background-size:cover; background-position:center;
  }
  .bridal-banner .inner{max-width:560px;}
  .bridal-banner .eyebrow{display:block; margin-bottom:16px; color:var(--gold-bright);}
  .bridal-banner h2{font-family:var(--font-heading); font-weight:400; font-size:clamp(30px,3.6vw,48px); margin-bottom:18px; color:#f8f1e2;}
  .bridal-banner p{color:#e3d8c3; line-height:1.8; margin-bottom:32px; font-size:15.5px;}

  /* ---------- WHY VENAYA ---------- */
  .why-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:40px;}
  .why-grid .card{border-top:1px solid var(--hair); padding-top:22px;}
  .why-grid .card .icon{width:40px; height:40px; margin-bottom:16px; color:var(--gold);}
  .why-grid .card .icon svg{width:100%; height:100%; stroke:currentColor; fill:none; stroke-width:1.4;}
  .why-grid .card b{font-family:var(--font-heading); font-size:22px; font-weight:500; color:var(--gold-bright); display:block; margin-bottom:12px;}
  .why-grid .card p{color:var(--ivory-dim); font-size:14px; line-height:1.7;}

  /* ---------- CRAFT PROCESS ---------- */
  .craft{display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:center;}
  .craft img{width:100%; height:480px; object-fit:cover;}
  .craft-steps .step{display:flex; gap:22px; padding:22px 0; border-bottom:1px solid var(--hair);}
  .craft-steps .step:first-child{padding-top:0;}
  .craft-steps .num{font-family:var(--font-heading); font-size:26px; color:var(--gold); font-weight:500; width:36px;}
  .craft-steps h4{font-size:15px; letter-spacing:.05em; text-transform:uppercase; margin-bottom:8px; color:var(--ivory);}
  .craft-steps p{color:var(--ivory-dim); font-size:14px; line-height:1.7;}

  /* ---------- TESTIMONIALS ---------- */
  .testimonials{display:grid; grid-template-columns:repeat(3,1fr); gap:36px;}
  .testimonials .card{background:var(--panel); border:1px solid var(--hair); padding:34px 28px;}
  .testimonials p{font-family:var(--font-heading); font-style:italic; font-size:19px; line-height:1.6; color:var(--ivory); margin-bottom:20px;}
  .testimonials span{font-size:12px; letter-spacing:.08em; color:var(--gold); text-transform:uppercase;}

  /* ---------- VISIT ---------- */
  .visit{display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:center;}
  .visit .eyebrow{display:block; margin-bottom:16px;}
  .visit h2{font-family:var(--font-heading); font-weight:400; font-size:clamp(28px,3vw,42px); margin-bottom:22px;}
  .visit p{color:var(--ivory-dim); line-height:1.9; font-size:15px; margin-bottom:10px;}
  .visit .actions{display:flex; gap:16px; margin-top:26px;}
  .visit iframe{width:100%; height:340px; border:1px solid var(--hair); filter:grayscale(.25) sepia(.12) saturate(1.1);}

  /* ---------- STYLE GALLERY ---------- */
  .style-gallery{display:grid; grid-template-columns:repeat(4,1fr); gap:16px;}
  .style-gallery figure{position:relative; overflow:hidden; margin:0; border:1px solid var(--hair); aspect-ratio:3/4;}
  .style-gallery img{width:100%; height:100%; object-fit:cover; display:block; transition:transform .6s ease;}
  .style-gallery figure:hover img{transform:scale(1.06);}
  .style-gallery figcaption{
    position:absolute; left:0; right:0; bottom:0; padding:18px 20px;
    background:linear-gradient(to top, rgba(20,16,10,.85), rgba(20,16,10,0));
    font-family:var(--font-heading); font-size:18px; color:#f8f1e2;
  }
  @media (max-width:860px){
    .style-gallery{grid-template-columns:1fr 1fr;}
  }

  /* ---------- WORN BY YOU (customer gallery) ---------- */
  .worn-by-you{background:var(--charcoal); padding:100px 5vw;}
  .worn-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    grid-auto-rows:140px;
    gap:14px;
  }
  .worn-grid a{
    position:relative; display:block; overflow:hidden; border-radius:2px;
    border:1px solid var(--hair);
  }
  .worn-grid img{width:100%; height:100%; object-fit:cover; display:block; transition:transform .6s ease, filter .4s ease;}
  .worn-grid a:hover img{transform:scale(1.07);}
  .worn-grid a::after{
    content:'♥ Venaya';
    position:absolute; left:12px; bottom:10px;
    font-size:12px; letter-spacing:.06em; color:#f8f1e2;
    opacity:0; transition:opacity .35s ease;
    font-family:var(--font-body);
  }
  .worn-grid a:hover::after{opacity:1;}
  .worn-grid a:nth-child(1){grid-column:span 2; grid-row:span 2;}
  .worn-grid a:nth-child(5){grid-column:span 2; grid-row:span 2;}
  .worn-grid a:nth-child(3){grid-row:span 2;}
  .worn-grid a:nth-child(8){grid-row:span 2;}
  @media (max-width:860px){
    .worn-grid{grid-template-columns:repeat(2,1fr); grid-auto-rows:150px;}
    .worn-grid a:nth-child(1),.worn-grid a:nth-child(5){grid-column:span 2; grid-row:span 1;}
  }

  /* ---------- WHY CHOOSE US ---------- */
  .why-choose{padding:100px 5vw;}
  .why-choose-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:26px;}
  .why-choose-card{
    background:var(--panel); border:1px solid var(--hair); padding:0;
    overflow:hidden; display:flex; flex-direction:column;
  }
  .why-choose-card img{width:100%; height:260px; object-fit:cover; display:block;}
  .why-choose-card .body{padding:26px 26px 30px;}
  .why-choose-card .num{color:var(--gold); font-family:var(--font-heading); font-size:15px; letter-spacing:.1em; margin-bottom:10px; display:block;}
  .why-choose-card h4{font-family:var(--font-heading); font-size:22px; font-weight:500; color:var(--ivory); margin-bottom:12px;}
  .why-choose-card p{font-size:15px; line-height:1.85; color:var(--ivory-dim);}
  @media (max-width:860px){
    .why-choose-grid{grid-template-columns:1fr;}
  }

  /* ---------- THEME SELECTOR ---------- */
  .theme-fab{
    position:fixed; right:26px; bottom:26px; z-index:300;
    width:56px; height:56px; border-radius:50%;
    background:var(--gold); color:#fff; border:none; cursor:pointer;
    font-size:22px; display:flex; align-items:center; justify-content:center;
    box-shadow:0 8px 24px rgba(0,0,0,0.25);
    transition:transform .3s ease, background .3s ease;
  }
  .theme-fab:hover{transform:scale(1.08); background:var(--gold-bright);}
  .theme-panel{
    position:fixed; right:26px; bottom:96px; z-index:300;
    width:290px; max-height:70vh; overflow-y:auto;
    background:var(--panel); border:1px solid var(--hair);
    box-shadow:0 20px 50px rgba(0,0,0,0.28);
    border-radius:10px;
    padding:20px;
    transform:translateY(16px) scale(.96); opacity:0; pointer-events:none;
    transition:transform .3s ease, opacity .3s ease;
  }
  .theme-panel.open{transform:translateY(0) scale(1); opacity:1; pointer-events:auto;}
  .theme-panel-head{
    display:flex; align-items:center; justify-content:space-between;
    margin-bottom:6px;
  }
  .theme-panel-head b{font-family:var(--font-heading); font-size:19px; color:var(--ivory); font-weight:600;}
  .theme-panel-head button{
    background:none; border:none; font-size:16px; color:var(--ivory-dim); cursor:pointer; line-height:1;
  }
  .theme-panel-sub{font-size:12px; color:var(--ivory-dim); margin-bottom:16px; line-height:1.5;}
  .theme-options{display:flex; flex-direction:column; gap:10px;}
  .theme-opt{
    display:flex; align-items:center; gap:12px;
    width:100%; text-align:left; cursor:pointer;
    border:1px solid var(--hair); background:transparent;
    border-radius:8px; padding:10px 12px;
    transition:border-color .25s ease, background .25s ease;
    font-family:var(--font-body);
  }
  .theme-opt:hover{border-color:var(--gold);}
  .theme-opt.active{border-color:var(--gold); background:rgba(169,124,55,0.08);}
  .theme-opt .swatches{display:flex; flex-shrink:0;}
  .theme-opt .swatches span{
    width:16px; height:16px; border-radius:50%;
    display:block; margin-left:-6px; border:1.5px solid rgba(255,255,255,0.6);
  }
  .theme-opt .swatches span:first-child{margin-left:0;}
  .theme-opt .label{display:flex; flex-direction:column; gap:2px;}
  .theme-opt .label b{font-size:13.5px; color:var(--ivory); font-weight:500;}
  .theme-opt .label span{font-size:11px; color:var(--ivory-dim);}
  @media (max-width:480px){
    .theme-panel{width:calc(100vw - 40px); right:20px;}
    .theme-fab{right:20px; bottom:20px;}
  }

  footer{
    padding:70px 5vw 30px; border-top:1px solid var(--hair); background:var(--charcoal);
  }
  .footer-grid{
    display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:50px; padding-bottom:50px; border-bottom:1px solid var(--hair); margin-bottom:26px;
  }
  .footer-grid .brand{margin-bottom:16px;}
  .footer-grid p{color:var(--ivory-dim); font-size:13px; line-height:1.7; max-width:280px;}
  .footer-grid h5{font-size:12px; letter-spacing:.12em; text-transform:uppercase; color:var(--gold); margin-bottom:18px;}
  .footer-grid ul{list-style:none;}
  .footer-grid li{margin-bottom:10px;}
  .footer-grid a{color:var(--ivory-dim); font-size:13.5px; transition:color .3s ease;}
  .footer-grid a:hover{color:var(--gold-bright);}
  footer .bottom{display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px;}
  footer .bottom p{color:var(--ivory-dim); font-size:12px; letter-spacing:.05em;}

  @media (max-width:860px){
    nav.links, .hero-foot .stats{display:none;}
    .collections{grid-template-columns:repeat(2,1fr);}
    .story, .craft, .visit{grid-template-columns:1fr;}
    .why-grid, .testimonials{grid-template-columns:1fr;}
    .footer-grid{grid-template-columns:1fr 1fr; gap:34px;}
  }

/* ===================================================================
   SHOP / PRODUCT / CART — added for category & product pages
   =================================================================== */
.page-hero{
  padding:150px 5vw 50px; text-align:center; border-bottom:1px solid var(--hair);
}
.page-hero h1{font-family:var(--font-heading); font-weight:400; font-size:clamp(34px,4.2vw,54px); color:var(--ivory); margin-bottom:14px;}
.page-hero p{color:var(--ivory-dim); font-size:15px; max-width:640px; margin:0 auto; line-height:1.8;}
.cat-tabs{display:flex; justify-content:center; gap:10px; flex-wrap:wrap; padding:26px 5vw 0;}
.cat-tabs a{
  font-size:11px; letter-spacing:.12em; text-transform:uppercase; padding:10px 20px;
  border:1px solid var(--hair); color:var(--ivory-dim); border-radius:30px; transition:all .25s ease;
}
.cat-tabs a:hover{border-color:var(--gold); color:var(--gold);}
.cat-tabs a.active{background:var(--gold); border-color:var(--gold); color:#fff;}

.shop-wrap{padding:60px 5vw 120px;}
.shop-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:28px;}
@media (max-width:1100px){ .shop-grid{grid-template-columns:repeat(3,1fr);} }
@media (max-width:760px){ .shop-grid{grid-template-columns:repeat(2,1fr);} .cat-tabs{padding:20px 5vw 0;} }
@media (max-width:480px){ .shop-grid{grid-template-columns:1fr;} }

/* ---- Stock states (shop/category grids + product detail page) ---- */
.thumb.is-oos img{ filter:grayscale(55%); opacity:.6; }
.product-card .actions .btn-gold.is-disabled,
.product-card .actions button.is-disabled{
  opacity:.5; cursor:not-allowed; background:var(--ivory-dim);
}
.product-detail .oos-note{
  display:inline-block; margin:2px 0 18px; padding:9px 16px;
  background:var(--charcoal); border:1px solid var(--hair);
  color:var(--ivory-dim); font-size:12px; letter-spacing:.06em; text-transform:uppercase;
}
.product-detail .actions .btn-gold.is-disabled,
.product-detail .actions button.is-disabled{
  opacity:.45; cursor:not-allowed; pointer-events:none;
}

.product-card{background:var(--panel); border:1px solid var(--hair); display:flex; flex-direction:column;}
.product-card .thumb{position:relative; aspect-ratio:1/1; overflow:hidden; display:block;}
.product-card .thumb img{width:100%; height:100%; object-fit:cover; display:block; transition:transform .5s ease;}
.product-card:hover .thumb img{transform:scale(1.06);}
.product-card .badge{
  position:absolute; top:12px; left:12px; background:var(--gold); color:#fff;
  font-size:10px; letter-spacing:.08em; text-transform:uppercase; padding:5px 10px; border-radius:20px;
}
.product-card .badge.oos-badge{ left:auto; right:12px; background:#3a352c; }
.product-card .info{padding:18px 18px 20px; display:flex; flex-direction:column; gap:8px; flex:1;}
.product-card h3{font-family:var(--font-heading); font-weight:500; font-size:18px; color:var(--ivory); line-height:1.3;}
.product-card .desc{font-size:12.5px; color:var(--ivory-dim); line-height:1.6; flex:1;}
.product-card .price-row{display:flex; align-items:baseline; gap:8px;}
.product-card .price{font-size:17px; color:var(--gold); font-weight:600;}
.product-card .mrp{font-size:13px; color:var(--ivory-dim); text-decoration:line-through;}
.product-card .price-note{font-size:12.5px; color:var(--ivory-dim); font-style:italic;}
.product-card .actions{display:flex; gap:10px; margin-top:6px;}
.product-card .actions .btn-gold, .product-card .actions .btn-outline{
  padding:10px 14px; font-size:10.5px; flex:1; text-align:center; cursor:pointer; border-radius:2px;
}
.product-card .actions button{font-family:var(--font-body); border:none; cursor:pointer;}
.product-card .actions a{flex:1;}

.empty-note{
  grid-column:1/-1; text-align:center; padding:60px 20px; color:var(--ivory-dim);
  border:1px dashed var(--hair);
}
.empty-note a{color:var(--gold); text-decoration:underline;}

/* ---- Product detail page ---- */
.product-detail{display:grid; grid-template-columns:1fr 1fr; gap:70px; padding:150px 5vw 100px; align-items:flex-start; max-width:1280px; margin:0 auto;}
@media (max-width:860px){ .product-detail{grid-template-columns:1fr; padding-top:120px; gap:36px;} }
.product-detail .gallery img#mainGalleryImg{width:100%; height:auto; display:block; border:1px solid var(--hair);}
.product-detail .info .eyebrow{margin-bottom:14px; display:block;}
.product-detail h1{font-family:var(--font-heading); font-weight:400; font-size:clamp(28px,3vw,40px); color:var(--ivory); margin-bottom:16px;}
.product-detail .price-row{display:flex; align-items:baseline; gap:14px; margin-bottom:22px;}
.product-detail .price{font-size:28px; color:var(--gold); font-weight:600;}
.product-detail .mrp{font-size:17px; color:var(--ivory-dim); text-decoration:line-through;}
.product-detail .save{font-size:12px; color:var(--gold-bright); letter-spacing:.05em; text-transform:uppercase;}
.product-detail p.desc{color:var(--ivory-dim); line-height:1.85; font-size:15px; margin-bottom:26px; max-width:480px;}
.product-detail .sku{font-size:12px; color:var(--ivory-dim); margin-bottom:30px; letter-spacing:.05em;}
.qty-row{display:flex; align-items:center; gap:18px; margin-bottom:24px;}
.qty-stepper{display:flex; align-items:center; border:1px solid var(--hair);}
.qty-stepper button{width:38px; height:44px; background:none; border:none; font-size:16px; color:var(--ivory); cursor:pointer;}
.qty-stepper button:disabled{opacity:.35; cursor:not-allowed;}
.qty-stepper span{width:40px; text-align:center; font-size:14px;}
.product-detail .actions{display:flex; gap:16px; flex-wrap:wrap; margin-bottom:20px;}
.product-detail .actions button, .product-detail .actions a{cursor:pointer; font-family:var(--font-body);}
.matching-note{
  font-size:13px; color:var(--ivory-dim); border-top:1px solid var(--hair); padding-top:20px; line-height:1.7;
}
.matching-note b{color:var(--ivory);}
.add-msg{font-size:13px; color:var(--gold); margin-top:4px; display:none;}
.add-msg.show{display:block;}
.related-heading{padding:0 5vw; max-width:1400px; margin:0 auto; font-family:var(--font-heading); font-size:22px; color:var(--ivory); margin-bottom:24px;}
.related-wrap{padding:0 5vw 100px;}
.related-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:24px;}
@media (max-width:860px){ .related-grid{grid-template-columns:repeat(2,1fr);} }

/* ---- Earrings bundled note page ---- */
.bundle-banner{
  margin:0 5vw 40px; padding:22px 26px; border:1px solid var(--hair); background:var(--charcoal);
  font-size:14px; color:var(--ivory-dim); line-height:1.7;
}
.bundle-banner b{color:var(--ivory);}

/* ===================================================================
   CATEGORY PAGE FILTER TOOLBAR (bracelets.html and future category pages)
   =================================================================== */
.filter-bar{
  display:flex; align-items:flex-start; justify-content:space-between; gap:24px;
  flex-wrap:wrap; padding:0 5vw 30px; border-bottom:1px solid var(--hair); margin-bottom:40px;
}
.filter-groups{display:flex; gap:36px; flex-wrap:wrap;}
.filter-group{display:flex; flex-direction:column; gap:10px;}
.filter-group .label{font-size:11px; letter-spacing:.12em; text-transform:uppercase; color:var(--ivory-dim);}
.filter-chips{display:flex; gap:8px; flex-wrap:wrap;}
.filter-chip{
  font-size:11.5px; letter-spacing:.04em; padding:8px 16px; border:1px solid var(--hair);
  border-radius:30px; color:var(--ivory-dim); cursor:pointer; background:transparent; transition:all .2s ease;
  font-family:var(--font-body);
}
.filter-chip:hover{border-color:var(--gold);}
.filter-chip.active{background:var(--gold); border-color:var(--gold); color:#fff;}
.filter-side{display:flex; flex-direction:column; gap:10px; align-items:flex-end;}
.sort-select{
  font-size:12px; padding:10px 16px; border:1px solid var(--hair); background:var(--panel); color:var(--ivory);
  font-family:var(--font-body); border-radius:2px; cursor:pointer; min-width:200px;
}
.result-count{font-size:12px; color:var(--ivory-dim);}
.clear-filters{font-size:11.5px; color:var(--gold); text-decoration:underline; cursor:pointer; background:none; border:none; font-family:var(--font-body);}
@media (max-width:860px){
  .filter-bar{flex-direction:column;}
  .filter-side{align-items:flex-start; width:100%;}
  .sort-select{width:100%;}
}
.tbd-badge{
  position:absolute; top:12px; right:12px; background:var(--charcoal); color:var(--ivory-dim);
  font-size:9.5px; letter-spacing:.06em; text-transform:uppercase; padding:5px 9px; border-radius:20px;
  border:1px solid var(--hair);
}
.thumb-strip{display:flex; gap:10px; margin-top:14px;}
.thumb-strip img{
  width:70px; height:70px; object-fit:cover; border:1px solid var(--hair); cursor:pointer; opacity:.7; transition:opacity .2s ease, border-color .2s ease;
}
.thumb-strip img:hover, .thumb-strip img.active{opacity:1; border-color:var(--gold);}
nav.links a.active-nav{color:var(--gold);}
nav.links a.active-nav::after{width:100%;}
