  :root{
    --cream:#F7F1E6;
    --cream-deep:#EDE2CB;
    --paper:#FBF8F2;
    --ink:#211C15;
    --ink-soft:#5C5346;
    --ink-faint:#8A8071;
    --gold:#AD8A52;
    --gold-deep:#8B6B3B;
    --gold-pale:#E6D6B3;
    --terracotta:#A6603F;
    --sage:#6E7050;
    --rose:#9C7C7C;
    --line: rgba(33,28,21,.16);
    --line-soft: rgba(33,28,21,.09);
    --radius: 3px;
    --radius-card: 30px 8px 30px 8px;
    --radius-card-sm: 20px 6px 20px 6px;
    --maxw: 1200px;
  }

  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  @media (prefers-reduced-motion: reduce){
    html{scroll-behavior:auto;}
    *{animation-duration:0.001ms !important; transition-duration:0.001ms !important;}
  }

  body{
    margin:0;
    background:var(--cream);
    color:var(--ink);
    font-family:'Jost', sans-serif;
    font-weight:400;
    line-height:1.7;
    -webkit-font-smoothing:antialiased;
  }

  img,svg{display:block; max-width:100%;}
  a{color:inherit; text-decoration:none;}
  ul{margin:0; padding:0; list-style:none;}
  button{font-family:inherit; cursor:pointer;}

  ::selection{background:var(--gold-pale); color:var(--ink);}

  :focus-visible{
    outline:2px solid var(--gold-deep);
    outline-offset:3px;
  }

  .wrap{
    max-width:var(--maxw);
    margin:0 auto;
    padding:0 clamp(20px, 5vw, 56px);
  }

  h1,h2,h3{
    font-family:'Cormorant Garamond', serif;
    font-weight:500;
    line-height:1.08;
    margin:0;
    color:var(--ink);
  }

  .section-head{
    margin-bottom:clamp(32px,5vw,56px);
  }
  .section-head h2{
    font-size:clamp(2rem, 3.4vw, 3rem);
    font-style:italic;
  }
  .section-head p{
    margin:14px 0 0;
    color:var(--ink-soft);
    font-size:1rem;
  }
  .section-head.center{
    margin-left:auto;
    margin-right:auto;
    text-align:center;
  }

  /* ---------- thread / stitch ornament ---------- */
  .flourish{
    display:block;
    width:64px; height:22px;
    margin-bottom:18px;
    color:var(--gold);
  }
  .section-head.center .flourish{ margin-left:auto; margin-right:auto; }
  .flourish path{ fill:none; stroke:currentColor; stroke-width:1.4; stroke-linecap:round; }
  .flourish circle{ fill:currentColor; }

  .seam{
    display:flex; align-items:center; gap:16px;
    margin:0 0 clamp(30px,5vw,52px);
    color:var(--gold);
  }
  .seam::before, .seam::after{
    content:"";
    flex:1; height:1px;
    background-image:repeating-linear-gradient(90deg, currentColor 0 7px, transparent 7px 15px);
  }
  .seam svg{ width:20px; height:20px; flex:none; }

  section{
    padding:clamp(20px,9vw,20px) 0;
  }

  /* ---------- grain texture swatch (stand-in for product photography) ---------- */
  .swatch{
    position:relative;
    overflow:hidden;
    background:var(--ink);
    isolation:isolate;
  }
  .swatch::before{
    content:"";
    position:absolute; inset:0;
    background-image:
      radial-gradient(120% 140% at 15% 10%, rgba(255,255,255,.16), transparent 55%),
      var(--tone-grad);
  }
  .swatch::after{
    content:"";
    position:absolute; inset:0;
    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");
    mix-blend-mode:overlay;
    opacity:.28;
  }
  .swatch[data-tone="gold"]{--tone-grad: linear-gradient(150deg,#c7a568,#8b6b3b 62%,#5f472a);}
  .swatch[data-tone="terracotta"]{--tone-grad: linear-gradient(150deg,#c07c56,#9c5735 60%,#6b3c25);}
  .swatch[data-tone="sage"]{--tone-grad: linear-gradient(150deg,#8b8d63,#5f6242 60%,#40422c);}
  .swatch[data-tone="rose"]{--tone-grad: linear-gradient(150deg,#b99998,#8a6968 60%,#5e4645);}
  .swatch[data-tone="ink"]{--tone-grad: linear-gradient(150deg,#3c352a,#211c15 60%,#100d09);}
  .swatch[data-tone="cream"]{--tone-grad: linear-gradient(150deg,#efe2c7,#d9c69a 60%,#b89f6d);}

  /* ---------- real photo tiles (uploaded product/lifestyle shots) ---------- */
  .photo{
    position:relative;
    overflow:hidden;
    background:var(--ink);
  }
  .photo img{
    position:absolute; inset:0;
    width:100%; height:100%;
    object-fit:cover;
  }

  .swatch-tag{
    position:absolute;
    left:16px; bottom:16px;
    z-index:2;
    background:rgba(251,248,242,.92);
    color:var(--ink);
    font-size:.78rem;
    letter-spacing:.02em;
    padding:6px 12px;
    border-radius:1px;
  }

  /* ---------- nav ---------- */
  header{
    position:sticky; top:0; z-index:50;
    background:rgba(247,241,230,.88);
    backdrop-filter:blur(10px);
    border-bottom:1px solid var(--line-soft);
    transition:box-shadow .3s ease;
  }
  header.scrolled{
    box-shadow:0 6px 24px rgba(33,28,21,.06);
  }
  .nav{
    display:flex; align-items:center; justify-content:space-between;
    padding:18px clamp(20px,5vw,56px);
  }
  .logo{
    display:flex; align-items:center; gap:10px;
    font-family:'Cormorant Garamond', serif;
    font-size:1.5rem;
    letter-spacing:.03em;
    color:var(--ink);
  }
  .logo svg{width:30px;height:30px;flex:none;}
  .logo img{
    width:38px; height:38px;
    object-fit:contain;
    mix-blend-mode:multiply;
    flex:none;
  }
  .nav-links{
    display:flex; gap:clamp(18px,2.6vw,36px);
    font-size:.95rem;
    color:var(--ink-soft);
  }
  .nav-links a{
    position:relative;
    padding-bottom:3px;
  }
  .nav-links a::after{
    content:"";
    position:absolute; left:0; right:100%; bottom:0;
    height:1px; background:var(--gold-deep);
    transition:right .28s ease;
  }
  .nav-links a:hover::after, .nav-links a:focus-visible::after{ right:0; }
  .nav-links a:hover, .nav-links a:focus-visible{ color:var(--ink); }

  .btn{
    display:inline-flex; align-items:center; gap:8px;
    border:1px solid var(--ink);
    border-radius:999px;
    padding:12px 26px;
    font-size:.9rem;
    letter-spacing:.02em;
    background:transparent;
    color:var(--ink);
    transition:background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
  }
  .btn:hover, .btn:focus-visible{ background:var(--ink); color:var(--cream); transform:translateY(-1px); }
  .btn.solid{ background:var(--ink); color:var(--cream); }
  .btn.solid:hover, .btn.solid:focus-visible{ background:var(--gold-deep); border-color:var(--gold-deep); color:#fff; }
  .btn.gold{ border-color:var(--gold-pale); color:var(--paper); }
  .btn.gold:hover, .btn.gold:focus-visible{ background:var(--paper); color:var(--gold-deep); }

  .nav-cta-group{ display:none; gap:10px; }
  @media (min-width:860px){ .nav-cta-group{ display:inline-flex; } }

  .burger{
    display:flex; flex-direction:column; gap:5px;
    background:none; border:none; padding:6px;
  }
  .burger span{ width:22px; height:1px; background:var(--ink); }
  @media (min-width:860px){ .burger{display:none;} }
  @media (max-width:859px){ .nav-links{display:none;} }

  /* ---------- hero (full-bleed widescreen image, text layered on top) ---------- */
  .hero{
    position:relative;
    width:100%;
    min-height:clamp(460px, 78vh, 740px);
    display:flex;
    align-items:flex-end;
    overflow:hidden;
    isolation:isolate;
  }
  .hero-media{
    position:absolute; inset:0;
    z-index:-2;
  }
  .hero-slide{
    position:absolute; inset:0;
    width:100%; height:100%;
    object-fit:cover;
    object-position:center 22%;
    opacity:0;
    transition:opacity 1.8s ease;
  }
  .hero-slide.active{ opacity:1; }
  .hero-media::after{
    content:"";
    position:absolute; inset:0;
    background:
      linear-gradient(0deg, rgba(16,13,9,.72) 0%, rgba(16,13,9,.28) 46%, rgba(16,13,9,.05) 70%),
      linear-gradient(100deg, rgba(16,13,9,.55) 0%, rgba(16,13,9,0) 52%);
  }
  .hero-content{
    position:relative;
    z-index:1;
    width:100%;
    padding-top:clamp(120px,20vh,220px);
    padding-bottom:clamp(40px,6vw,64px);
  }
  .hero-copy{ max-width:640px; }
  .hero-copy h1{
    font-size:clamp(2.5rem, 5.6vw, 4.4rem);
    font-style:italic;
    color:#fff;
    max-width:12ch;
    opacity:0; transform:translateY(14px);
    animation:rise .8s ease forwards .1s;
  }
  .hero-copy p.lede{
    margin:20px 0 0;
    font-size:1.05rem;
    color:rgba(251,248,242,.88);
    max-width:44ch;
    opacity:0; transform:translateY(14px);
    animation:rise .8s ease forwards .28s;
  }
  .hero-actions{
    display:flex; flex-wrap:wrap; gap:14px;
    margin-top:30px;
    opacity:0; transform:translateY(14px);
    animation:rise .8s ease forwards .42s;
  }
  .hero-actions .btn{ border-color:rgba(251,248,242,.65); color:#fff; }
  .hero-actions .btn:hover, .hero-actions .btn:focus-visible{ background:#fff; color:var(--ink); }
  .hero-actions .btn.solid{ background:#fff; color:var(--ink); border-color:#fff; }
  .hero-actions .btn.solid:hover, .hero-actions .btn.solid:focus-visible{ background:var(--gold-deep); color:#fff; }
  .hero-trust{
    margin-top:24px;
    font-size:.86rem;
    color:rgba(251,248,242,.78);
    display:flex; align-items:center; gap:10px; flex-wrap:wrap;
    opacity:0; transform:translateY(14px);
    animation:rise .8s ease forwards .56s;
  }
  .hero-trust .dot{ width:3px; height:3px; background:rgba(251,248,242,.6); border-radius:50%; }
  @keyframes rise{ to{ opacity:1; transform:translateY(0); } }
  @media (max-width:600px){
    .hero{ min-height:clamp(520px, 92vh, 640px); align-items:flex-end; }
    .hero-slide{ object-position:center 14%; }
  }

  /* ---------- stats strip ---------- */
  .stats{
    border-top:1px dashed var(--gold);
    border-bottom:1px dashed var(--gold);
  }
  .stats .wrap{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    padding:clamp(28px,4vw,40px) clamp(20px,5vw,56px);
  }
  .stat{
    text-align:center;
    padding:0 12px;
    border-left:1px solid var(--line);
  }
  .stat:first-child{ border-left:none; }
  .stat .num{
    font-family:'Cormorant Garamond', serif;
    font-size:clamp(1.8rem,2.6vw,2.5rem);
    color:var(--gold-deep);
  }
  .stat .label{
    font-size:.82rem;
    color:var(--ink-soft);
    margin-top:4px;
  }
  @media (max-width:700px){
    .stats .wrap{ grid-template-columns:repeat(2,1fr); row-gap:24px; }
    .stat:nth-child(odd){ border-left:none; }
  }

  /* ---------- categories bento ---------- */
  .bento{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    grid-auto-rows:170px;
    gap:14px;
  }
  .bento a{
    position:relative;
    grid-column:span 2;
    grid-row:span 1;
    overflow:hidden;
    border-radius:var(--radius-card-sm);
  }
  .bento a:first-child{ grid-row:span 2; border-radius:var(--radius-card); }
  .bento .swatch, .bento .photo{ position:absolute; inset:0; transition:transform .5s ease; }
  .bento a:hover .swatch, .bento a:hover .photo{ transform:scale(1.04); }
  .cat-info{
    position:absolute; left:0; right:0; bottom:0; z-index:2;
    padding:18px 20px;
    background:linear-gradient(to top, rgba(16,13,9,.72), transparent);
  }
  .cat-info h3{
    color:#fff; font-size:1.5rem; font-style:italic;
  }
  .cat-info p{
    color:rgba(255,255,255,.82);
    font-size:.85rem;
    margin:6px 0 0;
    max-width:32ch;
  }
  @media (max-width:760px){
    .bento{ grid-template-columns:repeat(2,1fr); grid-auto-rows:150px; }
    .bento a{ grid-column:span 1; }
    .bento a:first-child{ grid-column:span 2; grid-row:span 1; }
  }

  /* ---------- product grid ---------- */
  .products{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:clamp(18px,2vw,28px);
  }
  @media (max-width:960px){ .products{ grid-template-columns:repeat(2,1fr); } }
  @media (max-width:520px){ .products{ grid-template-columns:1fr 1fr; gap:14px; } }

  .product{
    border:1px solid var(--line);
    background:var(--paper);
    border-radius:var(--radius-card-sm);
    overflow:hidden;
    transition:border-color .25s ease, transform .25s ease, box-shadow .25s ease;
  }
  .product:hover{
    border-color:var(--gold);
    transform:translateY(-4px);
    box-shadow:0 18px 34px -18px rgba(139,107,59,.45);
  }
  .product .swatch{ aspect-ratio:3/4; }
  .product .photo{ aspect-ratio:3/4; }
  .product-body{ padding:16px 16px 18px; }
  .product-cat{
    font-size:.72rem;
    letter-spacing:.03em;
    color:var(--gold-deep);
  }
  .product-name{
    font-family:'Cormorant Garamond', serif;
    font-size:1.18rem;
    margin-top:4px;
    line-height:1.25;
  }
  .product-meta{
    display:flex; align-items:center; justify-content:space-between;
    margin-top:12px;
    font-size:.86rem;
    color:var(--ink-soft);
  }
  .product-price{ color:var(--ink); font-weight:500; }
  .product-rating{ display:flex; align-items:center; gap:4px; }

  .catalog-cta{ text-align:center; margin-top:clamp(36px,5vw,52px); }

  /* ---------- lookbook ---------- */
  .lookbook-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:12px;
  }
  .lookbook-grid a{ position:relative; aspect-ratio:4/5; overflow:hidden; border-radius:var(--radius-card-sm); }
  .lookbook-grid .swatch, .lookbook-grid .photo{ position:absolute; inset:0; transition:transform .5s ease, filter .4s ease; filter:grayscale(.15); }
  .lookbook-grid a:hover .swatch, .lookbook-grid a:hover .photo{ transform:scale(1.05); filter:grayscale(0); }
  @media (max-width:900px){ .lookbook-grid{ grid-template-columns:repeat(3,1fr);} .lookbook-grid a:nth-child(n+4){display:none;} }
  @media (max-width:560px){ .lookbook-grid{ grid-template-columns:repeat(2,1fr);} .lookbook-grid a:nth-child(n+3){display:none;} }

  .lookbook-foot{
    display:flex; align-items:center; justify-content:space-between; gap:20px;
    margin-top:28px;
    flex-wrap:wrap;
  }
  .ig-handle{
    font-family:'Cormorant Garamond', serif;
    font-style:italic;
    font-size:1.3rem;
  }

  /* ---------- affiliate banner ---------- */
  .affiliate{
    background:var(--ink);
    padding:clamp(56px,8vw,90px) 0;
  }
  .affiliate-frame{
    overflow:hidden;
    border:1px solid rgba(230,214,179,.35);
    border-radius:var(--radius-card);
  }
  .affiliate-frame img{ width:100%; height:auto; display:block; }
  .affiliate-foot{
    text-align:center;
    margin-top:28px;
  }
  .affiliate-foot p{
    color:rgba(251,248,242,.72);
    margin:0 0 18px;
    font-size:.95rem;
  }

  /* ---------- about ---------- */
  .about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:clamp(32px,5vw,72px);
    align-items:center;
  }
  @media (max-width:860px){ .about-grid{ grid-template-columns:1fr; } .about-grid .swatch-col{ order:-1; } }
  .about-grid .swatch{ aspect-ratio:4/5; }
  .about-grid .photo{ aspect-ratio:4/5; border-radius:var(--radius-card); overflow:hidden; }
  .about-copy h2{ font-size:clamp(1.9rem,3vw,2.6rem); font-style:italic; }
  .about-copy p{ color:var(--ink-soft); margin-top:18px; max-width:52ch; }

  .hours-card{
    margin-top:28px;
    border:1px solid var(--line);
    background:var(--paper);
    padding:22px 24px;
    max-width:420px;
  }
  .hours-card h4{
    font-family:'Cormorant Garamond', serif;
    font-size:1.15rem;
    font-weight:500;
    margin:0 0 12px;
  }
  .hours-row{
    display:flex; justify-content:space-between;
    font-size:.9rem;
    padding:6px 0;
    border-top:1px solid var(--line-soft);
    color:var(--ink-soft);
  }
  .hours-row:first-of-type{ border-top:none; }
  .hours-note{
    margin-top:12px;
    font-size:.82rem;
    color:var(--ink-faint);
  }

  /* ---------- footer ---------- */
  footer{
    background:var(--ink);
    color:rgba(251,248,242,.75);
    padding:clamp(48px,7vw,72px) 0 24px;
  }
  .footer-grid{
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr 1fr;
    gap:36px;
    padding-bottom:36px;
    border-bottom:1px solid rgba(251,248,242,.14);
  }
  @media (max-width:760px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
  .footer-logo{
    display:flex; align-items:center; gap:10px;
    font-family:'Cormorant Garamond', serif;
    font-size:1.4rem; color:#fff;
  }
  .footer-logo svg{ width:26px; height:26px; }
  .footer-tag{ margin-top:12px; font-size:.88rem; max-width:30ch; }
  .footer-social{ display:flex; gap:12px; margin-top:18px; }
  .footer-social a{
    width:34px; height:34px;
    border:1px solid rgba(251,248,242,.3);
    display:flex; align-items:center; justify-content:center;
    transition:border-color .25s ease, color .25s ease;
  }
  .footer-social a:hover{ border-color:var(--gold-pale); color:var(--gold-pale); }
  .footer-col h5{
    font-size:.82rem; letter-spacing:.02em;
    color:#fff; margin:0 0 14px; font-weight:500;
  }
  .footer-col ul li{ margin-bottom:9px; font-size:.88rem; }
  .footer-col ul li a:hover{ color:var(--gold-pale); }
  .footer-bottom{
    display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
    padding-top:22px; font-size:.8rem; color:rgba(251,248,242,.5);
  }

/* ================= Multi-page additions ================= */

/* mobile nav open state */
@media (max-width:859px){
  .nav-links{
    display:none;
    position:absolute; top:100%; left:0; right:0;
    background:var(--paper);
    border-bottom:1px solid var(--line);
    flex-direction:column;
    padding:8px clamp(20px,5vw,56px) 20px;
    gap:4px;
  }
  .nav-links.open{ display:flex; }
  .nav-links a{ padding:12px 0; border-bottom:1px solid var(--line-soft); }
  .nav-links a::after{ display:none; }
}

/* breadcrumb */
.breadcrumb{
  display:flex; align-items:center; flex-wrap:wrap; gap:8px;
  font-size:.85rem;
  color:var(--ink-faint);
  margin-bottom:22px;
}
.breadcrumb a:hover{ color:var(--gold-deep); }
.breadcrumb .sep{ opacity:.5; }
.breadcrumb .current{ color:var(--ink); }

/* inner page header (non full-bleed) */
.page-head{
  position:relative;
  overflow:hidden;
  isolation:isolate;
  padding:clamp(140px,20vh,190px) 0 clamp(50px,7vw,72px);
  border-bottom:1px dashed var(--gold);
}
.page-head-media{
  position:absolute; inset:0;
  z-index:-2;
}
.page-head-media img{
  width:100%; height:100%;
  object-fit:cover;
  object-position:center 30%;
}
.page-head-media::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(16,13,9,.45) 0%, rgba(16,13,9,.68) 100%);
}
.page-head .wrap{ position:relative; z-index:1; }
.page-head-panel{
  display:inline-block;
  background:rgba(16,13,9,.4);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  border:1px solid rgba(251,248,242,.2);
  border-radius:var(--radius-card-sm);
  padding:clamp(20px,3vw,30px) clamp(22px,3.4vw,34px);
}
.page-head-panel .breadcrumb{ color:rgba(251,248,242,.72); margin-bottom:16px; }
.page-head-panel .breadcrumb a{ color:rgba(251,248,242,.92); }
.page-head-panel .breadcrumb a:hover{ color:var(--gold-pale); }
.page-head-panel .breadcrumb .current{ color:#fff; }
.page-head h1{
  font-size:clamp(2.2rem,4vw,3.2rem);
  font-style:italic;
  color:#fff;
}
.page-head p{
  margin:14px 0 0;
  color:rgba(251,248,242,.85);
  max-width:56ch;
}

/* filter tabs */
.filter-bar{
  display:flex; align-items:center; justify-content:space-between;
  flex-wrap:wrap; gap:16px;
  margin:clamp(28px,4vw,40px) 0 clamp(24px,3vw,32px);
}
.filter-tabs{
  display:flex; flex-wrap:wrap; gap:10px;
}
.filter-tab{
  border:1px solid var(--line);
  border-radius:999px;
  padding:9px 18px;
  font-size:.85rem;
  background:var(--paper);
  color:var(--ink-soft);
  transition:all .2s ease;
}
.filter-tab:hover{ border-color:var(--gold); color:var(--ink); }
.filter-tab.active{ background:var(--ink); border-color:var(--ink); color:var(--cream); }
.filter-count{ font-size:.85rem; color:var(--ink-faint); }

/* product-detail */
.pd-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:clamp(32px,5vw,64px);
  align-items:flex-start;
}
@media (max-width:860px){ .pd-grid{ grid-template-columns:1fr; } }
.pd-gallery .photo{ aspect-ratio:3/4; border-radius:var(--radius-card); overflow:hidden; }
.pd-thumbs{ display:flex; gap:10px; margin-top:12px; }
.pd-thumbs .photo{ width:72px; height:72px; aspect-ratio:1/1; border-radius:14px 4px 14px 4px; border:1px solid var(--line); cursor:pointer; }
.pd-info .product-cat{ font-size:.8rem; }
.pd-info h1{
  font-family:'Cormorant Garamond', serif;
  font-style:italic;
  font-size:clamp(2rem,3.4vw,2.8rem);
  margin-top:6px;
}
.pd-rating{ display:flex; align-items:center; gap:10px; margin-top:10px; color:var(--ink-soft); font-size:.92rem; }
.pd-price{ font-family:'Cormorant Garamond', serif; font-size:2.2rem; color:var(--gold-deep); margin-top:18px; }
.pd-desc{ margin-top:18px; color:var(--ink-soft); max-width:52ch; }

.variant-block{ margin-top:26px; }
.variant-block h4{ font-size:.85rem; font-weight:500; margin:0 0 10px; color:var(--ink-soft); }
.variant-dots{ display:flex; gap:10px; }
.variant-dot{
  width:34px; height:34px; border-radius:50%;
  border:2px solid transparent;
  outline:1px solid var(--line);
  outline-offset:2px;
  cursor:pointer;
  transition:outline-color .2s ease, transform .2s ease;
}
.variant-dot:hover{ transform:translateY(-2px); }
.variant-dot.active{ outline-color:var(--gold-deep); }
.variant-label{ margin-top:10px; font-size:.85rem; color:var(--ink-soft); }

.pd-actions{ display:flex; gap:14px; margin-top:16px; flex-wrap:wrap; }
.pd-note{ margin-top:16px; font-size:.82rem; color:var(--ink-faint); }

/* ---------- shop-links: 3-column marketplace picker (Shopee / TikTok / Lazada) ---------- */
.shop-links{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}
.shop-links a{
  display:flex; align-items:center;
  gap:12px;
  border:1px solid var(--line);
  border-radius:var(--radius-card-sm);
  padding:13px 16px;
  font-size:.9rem;
  font-weight:500;
  color:var(--ink);
  background:var(--paper);
  transition:border-color .25s ease, transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.shop-links a:hover{
  border-color:var(--gold);
  transform:translateY(-3px);
  box-shadow:0 16px 28px -18px rgba(139,107,59,.5);
}
.shop-links a .arrow{
  margin-left:auto;
  flex:none;
  width:14px; height:14px;
  color:var(--ink-faint);
  transition:transform .25s ease, color .25s ease;
}
.shop-links a:hover .arrow{ transform:translateX(3px); color:var(--gold-deep); }
.shop-links .platform-icon{
  width:38px; height:38px;
  flex:none;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-family:'Cormorant Garamond',serif;
  font-weight:600;
  font-size:1rem;
  color:#fff;
}
.shop-links a[data-platform="shopee"] .platform-icon{ background:#EE4D2D; }
.shop-links a[data-platform="tiktok"] .platform-icon{ background:#111214; }
.shop-links a[data-platform="lazada"] .platform-icon{ background:#1B2A8C; }
.shop-links-label{
  font-size:.85rem;
  color:var(--ink-soft);
  margin:0 0 10px;
}
/* dark variant for use over the hero image */
.shop-links.on-dark a{
  background:rgba(255,255,255,.08);
  border-color:rgba(251,248,242,.3);
  color:#fff;
}
.shop-links.on-dark a:hover{
  background:rgba(255,255,255,.16);
  border-color:var(--gold-pale);
  box-shadow:0 16px 28px -18px rgba(0,0,0,.5);
}
.shop-links.on-dark a .arrow{ color:rgba(251,248,242,.6); }
.shop-links.on-dark a:hover .arrow{ color:var(--gold-pale); }
.shop-links.on-dark + .shop-links-label,
.shop-links-label.on-dark{ color:rgba(251,248,242,.75); }
@media (max-width:480px){
  .shop-links{ grid-template-columns:1fr; }
}

.related-head{ margin:clamp(64px,8vw,100px) 0 24px; }
.related-head h3{ font-family:'Cormorant Garamond',serif; font-style:italic; font-size:1.6rem; }

/* about page extras */
.value-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:24px;
  margin-top:clamp(32px,4vw,48px);
}
@media (max-width:760px){ .value-grid{ grid-template-columns:1fr; } }
.value-card{
  border:1px solid var(--line);
  border-radius:var(--radius-card-sm);
  padding:26px 22px;
  background:var(--paper);
}
.value-card h4{ font-family:'Cormorant Garamond',serif; font-style:italic; font-size:1.3rem; margin:0 0 10px; }
.value-card p{ color:var(--ink-soft); font-size:.92rem; margin:0; }

/* affiliate page steps */
.step-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:20px;
  margin-top:clamp(32px,4vw,48px);
}
@media (max-width:860px){ .step-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:520px){ .step-grid{ grid-template-columns:1fr; } }
.step-card{ position:relative; padding-top:8px; }
.step-num{
  font-family:'Cormorant Garamond',serif; font-style:italic;
  font-size:2.2rem; color:var(--gold-pale);
}
.step-card h4{ font-family:'Cormorant Garamond',serif; font-size:1.15rem; margin:6px 0 8px; }
.step-card p{ color:rgba(251,248,242,.75); font-size:.88rem; margin:0; }
.faq{ margin-top:clamp(40px,5vw,60px); max-width:760px; }
.faq-item{ border-bottom:1px solid var(--line); padding:18px 0; }
.faq-item h4{ font-family:'Cormorant Garamond',serif; font-size:1.15rem; font-weight:500; margin:0 0 8px; }
.faq-item p{ color:var(--ink-soft); font-size:.92rem; margin:0; }

/* contact page */
.contact-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:clamp(32px,5vw,64px);
  align-items:flex-start;
}
@media (max-width:860px){ .contact-grid{ grid-template-columns:1fr; } }
.contact-cards{ display:flex; flex-direction:column; gap:14px; }
.contact-card{
  display:flex; align-items:center; gap:14px;
  border:1px solid var(--line);
  border-radius:var(--radius-card-sm);
  padding:18px 20px;
  background:var(--paper);
}
.contact-card .icon{
  width:40px; height:40px; flex:none;
  border-radius:50%;
  background:var(--cream-deep);
  display:flex; align-items:center; justify-content:center;
  color:var(--gold-deep);
  font-family:'Cormorant Garamond',serif; font-size:1.1rem;
}
.contact-card h4{ font-size:.95rem; margin:0 0 3px; font-weight:500; }
.contact-card p{ margin:0; font-size:.85rem; color:var(--ink-soft); }

.contact-form{
  border:1px solid var(--line);
  border-radius:var(--radius-card-sm);
  padding:clamp(24px,3vw,32px);
  background:var(--paper);
}
.form-row{ margin-bottom:16px; }
.form-row label{ display:block; font-size:.85rem; color:var(--ink-soft); margin-bottom:6px; }
.form-row input, .form-row textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:10px;
  padding:11px 14px;
  font-family:inherit;
  font-size:.92rem;
  background:var(--cream);
  color:var(--ink);
}
.form-row input:focus, .form-row textarea:focus{ outline:none; border-color:var(--gold); }
.form-row textarea{ resize:vertical; min-height:110px; }
.form-note{ margin-top:6px; font-size:.8rem; color:var(--gold-deep); min-height:1.2em; }

/* empty state */
.empty-state{
  text-align:center;
  padding:60px 20px;
  color:var(--ink-faint);
  display:none;
}
