/* =========================================================
   THE SHEF MADE — Design System
   Signature device: a single hand-tied gold thread that
   runs through the page — hero display line, stitched
   underlines, and the connecting line on the process steps.
   ========================================================= */

:root{
  /* --- Color: named after the materials of the craft --- */
  --maroon:        #6B1220;   /* Tilak Maroon — primary */
  --maroon-dark:   #4A0C16;
  --maroon-soft:   #8A2233;
  --gold:          #A6772A;   /* Zari Gold — thread / line color */
  --gold-bright:   #D9A94B;
  --gold-pale:     #EFE0BE;
  --silk:          #FBF3E7;   /* Raw Silk — page background */
  --ivory:         #FFFCF6;   /* Card Ivory — surfaces */
  --ink:           #2A1B17;   /* Charcoal Thread — body text */
  --ink-soft:      #6E5B50;
  --marigold:      #DD7A2C;   /* Marigold — accent pops */
  --line-soft:     rgba(166,119,42,0.25);
  --shadow-card:   0 18px 40px -22px rgba(42,27,23,0.35);
  --shadow-lift:   0 26px 50px -20px rgba(74,12,22,0.30);

  --font-display: 'Fraunces', serif;
  --font-body:    'Karla', sans-serif;
  --font-mono:    'Space Mono', monospace;

  --section-pad: clamp(4rem, 8vw, 6.5rem);
  --container-w: 1180px;
  --radius: 14px;
  --radius-sm: 8px;
}

*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important; }
}

body{
  font-family: var(--font-body);
  background: var(--silk);
  color: var(--ink);
  line-height: 1.7;
  font-size: 16.5px;
  overflow-x: hidden;
  position: relative;
}

/* subtle woven-paper texture so backgrounds don't read as flat digital gradient */
body::before{
  content:"";
  position:fixed; inset:0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(107,18,32,0.045) 1px, transparent 0);
  background-size: 22px 22px;
  pointer-events:none;
  z-index:0;
}

img,svg{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }
button{ font-family:inherit; cursor:pointer; border:none; background:none; font-size:inherit; }
input,textarea{ font-family:inherit; font-size:inherit; }

.container{ max-width:var(--container-w); margin:0 auto; padding:0 1.5rem; position:relative; z-index:1; }

h1,h2,h3,h4{ font-family:var(--font-display); color:var(--maroon-dark); font-weight:600; line-height:1.15; letter-spacing:-0.01em; }
h1{ font-size:clamp(2.6rem,5.5vw,4.4rem); font-weight:600; }
h2{ font-size:clamp(2rem,4vw,2.85rem); }
h3{ font-size:1.25rem; font-weight:600; }
p{ color:var(--ink-soft); }
em{ font-style:italic; color:var(--maroon); }

.visually-hidden{ position:absolute !important; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; }

/* Focus states — always visible, never suppressed */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{
  outline: 2px solid var(--marigold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Eyebrow + stitched underline (signature mark) ---------- */
.eyebrow{
  font-family:var(--font-mono);
  font-size:0.74rem;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--gold);
  display:inline-flex;
  align-items:center;
  gap:0.55rem;
  margin-bottom:1.1rem;
}
.eyebrow svg{ width:16px; height:16px; flex-shrink:0; }

.stitch{ display:block; width:84px; height:10px; margin-top:0.85rem; }
.section-head{ max-width:640px; margin-bottom:3rem; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head.center .stitch{ margin-left:auto; margin-right:auto; }
.section-sub{ margin-top:1rem; font-size:1.05rem; max-width:46ch; }
.section-head.center .section-sub{ margin-left:auto; margin-right:auto; }

/* ---------- Layout rhythm ---------- */
.section{ padding: var(--section-pad) 0; position:relative; }
.section--tight{ padding: calc(var(--section-pad) * 0.6) 0; }
.section--ivory{ background: var(--ivory); }
.section--maroon{ background: var(--maroon-dark); }
.section--maroon h2, .section--maroon h3{ color:var(--ivory); }
.section--maroon p{ color: rgba(255,252,246,0.78); }
.section--maroon .eyebrow{ color: var(--gold-bright); }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:0.55rem;
  font-family:var(--font-body); font-weight:700; font-size:0.95rem;
  padding:0.95rem 1.7rem; border-radius:var(--radius-sm);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space:nowrap;
}
.btn svg{ width:18px; height:18px; }
.btn-primary{ background:var(--maroon); color:var(--ivory); box-shadow: var(--shadow-card); }
.btn-primary:hover{ background:var(--maroon-dark); transform:translateY(-2px); box-shadow: var(--shadow-lift); }
.btn-secondary{ background:transparent; color:var(--maroon-dark); border:1.5px solid var(--maroon-dark); }
.btn-secondary:hover{ background:var(--maroon-dark); color:var(--ivory); transform:translateY(-2px); }
.btn-whatsapp{ background:#3F7D52; color:#fff; }
.btn-whatsapp:hover{ background:#356a45; transform:translateY(-2px); box-shadow: var(--shadow-lift); }
.btn-on-dark{ background:var(--gold-bright); color:var(--maroon-dark); }
.btn-on-dark:hover{ background:var(--ivory); transform:translateY(-2px); }
.btn-block{ width:100%; }
.btn-small{ padding:0.6rem 1.05rem; font-size:0.82rem; border-radius:7px; }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header{
  position:sticky; top:0; z-index:100;
  background: rgba(251,243,231,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .3s ease;
}
.site-header.is-scrolled{ box-shadow: 0 8px 24px -16px rgba(42,27,23,0.25); }
.nav-inner{ display:flex; align-items:center; justify-content:space-between; gap:1.5rem; padding-top:1.05rem; padding-bottom:1.05rem; }
.logo{ display:flex; align-items:center; gap:0.65rem; flex-shrink:0; }
.logo-mark{ width:30px; height:30px; flex-shrink:0; }
.logo-text{ font-family:var(--font-display); font-weight:600; font-size:1.32rem; color:var(--maroon-dark); letter-spacing:-0.01em; }
.main-nav{ display:flex; align-items:center; gap:2.1rem; margin-left:auto; }
.nav-link{ font-size:0.95rem; font-weight:600; color:var(--ink); position:relative; padding:0.3rem 0; transition:color .2s ease; }
.nav-link::after{ content:""; position:absolute; left:0; bottom:-2px; width:0; height:2px; background:var(--gold); transition:width .25s ease; }
.nav-link:hover{ color:var(--maroon); }
.nav-link:hover::after{ width:100%; }
.nav-link.active{ color:var(--maroon); }
.nav-link.active::after{ width:100%; background:var(--maroon); }
.nav-cta{ flex-shrink:0; }
.nav-toggle{ display:none; flex-direction:column; gap:5px; padding:6px; flex-shrink:0; }
.nav-toggle span{ width:24px; height:2px; background:var(--ink); border-radius:2px; transition: transform .3s ease, opacity .3s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{ background:var(--maroon-dark); color:rgba(255,252,246,0.82); padding-top:4.5rem; }
.footer-grid{ display:grid; grid-template-columns:1.5fr 1fr 1fr; gap:3rem; padding-bottom:3rem; border-bottom:1px solid rgba(255,252,246,0.14); }
.footer-brand .logo-text{ color:var(--ivory); }
.footer-brand p{ margin-top:1rem; max-width:32ch; color:rgba(255,252,246,0.7); font-size:0.95rem; }
.footer-col h4{ color:var(--gold-bright); font-size:0.85rem; letter-spacing:0.1em; text-transform:uppercase; font-family:var(--font-mono); font-weight:700; margin-bottom:1.1rem; }
.footer-col a{ display:block; color:rgba(255,252,246,0.78); font-size:0.95rem; padding:0.32rem 0; transition:color .2s ease, transform .2s ease; }
.footer-col a:hover{ color:var(--gold-bright); transform:translateX(3px); }
.social-row{ display:flex; gap:0.85rem; margin-top:1.4rem; }
.social-row a{ width:38px; height:38px; border-radius:50%; border:1px solid rgba(255,252,246,0.3); display:flex; align-items:center; justify-content:center; transition: background .2s ease, border-color .2s ease, transform .2s ease; }
.social-row a:hover{ background:var(--gold-bright); border-color:var(--gold-bright); transform:translateY(-2px); }
.social-row svg{ width:17px; height:17px; }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding:1.6rem 1.5rem; font-size:0.85rem; color:rgba(255,252,246,0.55); flex-wrap:wrap; gap:0.6rem; }
.footer-bottom a{ color:rgba(255,252,246,0.55); }
.footer-bottom a:hover{ color:var(--gold-bright); }

/* WhatsApp floating button */
.wa-float{
  position:fixed; right:1.4rem; bottom:1.4rem; z-index:90;
  width:58px; height:58px; border-radius:50%;
  background:#3F7D52; box-shadow:0 14px 30px -10px rgba(0,0,0,0.45);
  display:flex; align-items:center; justify-content:center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.wa-float:hover{ transform:scale(1.08); box-shadow:0 18px 36px -10px rgba(0,0,0,0.5); }
.wa-float svg{ width:28px; height:28px; }

/* =========================================================
   REVEAL ON SCROLL
   ========================================================= */
.reveal{ opacity:0; transform:translateY(26px); transition:opacity .7s ease, transform .7s ease; }
.reveal.is-visible{ opacity:1; transform:none; }
.reveal-stagger > *{ opacity:0; transform:translateY(26px); transition:opacity .6s ease, transform .6s ease; }
.reveal-stagger.is-visible > *{ opacity:1; transform:none; }
.reveal-stagger.is-visible > *:nth-child(1){ transition-delay:0s; }
.reveal-stagger.is-visible > *:nth-child(2){ transition-delay:.08s; }
.reveal-stagger.is-visible > *:nth-child(3){ transition-delay:.16s; }
.reveal-stagger.is-visible > *:nth-child(4){ transition-delay:.24s; }
.reveal-stagger.is-visible > *:nth-child(5){ transition-delay:.32s; }
.reveal-stagger.is-visible > *:nth-child(6){ transition-delay:.4s; }
.reveal-stagger.is-visible > *:nth-child(7){ transition-delay:.48s; }
.reveal-stagger.is-visible > *:nth-child(8){ transition-delay:.56s; }

/* =========================================================
   HERO — rakhis hanging on a display thread, like a stall
   ========================================================= */
.hero{ padding-top: clamp(2.5rem,5vw,4rem); padding-bottom: clamp(3rem,6vw,5rem); overflow:hidden; }
.hero-grid{ display:grid; grid-template-columns: 1.05fr 0.95fr; gap:3rem; align-items:center; }
.hero-copy h1{ margin-bottom:1.4rem; }
.hero-copy .section-sub{ font-size:1.15rem; max-width:46ch; }
.hero-actions{ display:flex; gap:1rem; margin-top:2.2rem; flex-wrap:wrap; }
.hero-trust{ display:flex; gap:1.8rem; margin-top:2.6rem; flex-wrap:wrap; }
.hero-trust div{ font-family:var(--font-mono); }
.hero-trust strong{ display:block; font-size:1.5rem; color:var(--maroon); }
.hero-trust span{ font-size:0.74rem; color:var(--ink-soft); letter-spacing:0.05em; }

.hero-display{ position:relative; padding-top:2.5rem; }
.hero-rod-wrap{ position:relative; }
.hero-rod{ width:100%; height:auto; overflow:visible; }
.thread-draw{ stroke-dasharray:900; stroke-dashoffset:900; animation:drawThread 1.6s cubic-bezier(.4,0,.2,1) forwards .2s; }
@keyframes drawThread{ to{ stroke-dashoffset:0; } }

.hang-row{ display:flex; justify-content:space-between; padding:0 6%; margin-top:-6px; }
.hang-item{ display:flex; flex-direction:column; align-items:center; transform-origin: top center; animation: swing 5s ease-in-out infinite; opacity:0; animation: swing 5s ease-in-out infinite, fadeIn .6s ease forwards; }
.hang-item:nth-child(1){ animation-delay:0s, .9s; }
.hang-item:nth-child(2){ animation-delay:.3s, 1.1s; }
.hang-item:nth-child(3){ animation-delay:.6s, 1.3s; }
.hang-item:nth-child(4){ animation-delay:.15s, 1.5s; }
.hang-string{ width:1.5px; height:22px; background:var(--gold); }
.hang-medal{ width: clamp(64px,9vw,92px); height: clamp(64px,9vw,92px); border-radius:50%; background:var(--ivory); box-shadow:var(--shadow-card); border:1px solid var(--line-soft); display:flex; align-items:center; justify-content:center; padding:10%; }
@keyframes swing{ 0%,100%{ transform:rotate(-3deg); } 50%{ transform:rotate(3deg); } }
@keyframes fadeIn{ from{ opacity:0; } to{ opacity:1; } }

/* =========================================================
   PAGE BANNER (Shop / About / Contact)
   ========================================================= */
.page-banner{ padding: clamp(3.5rem,7vw,5.5rem) 0 clamp(2.5rem,5vw,3.5rem); text-align:center; }
.page-banner .eyebrow{ justify-content:center; }
.page-banner .stitch{ margin-left:auto; margin-right:auto; }
.page-banner p{ max-width:50ch; margin:1rem auto 0; font-size:1.08rem; }

/* =========================================================
   COUNTDOWN STRIP
   ========================================================= */
.countdown-strip{ background:var(--maroon-dark); color:var(--ivory); }
.countdown-inner{ display:flex; align-items:center; justify-content:center; gap:0.7rem; padding:0.7rem 1.5rem; font-family:var(--font-mono); font-size:0.82rem; letter-spacing:0.04em; text-align:center; flex-wrap:wrap; }
.countdown-inner strong{ color:var(--gold-bright); font-weight:700; }
.countdown-inner svg{ width:14px; height:14px; flex-shrink:0; }

/* =========================================================
   VALUE PROPS
   ========================================================= */
.value-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:1.75rem; }
.value-card{ background:var(--ivory); border:1px solid var(--line-soft); border-radius:var(--radius); padding:2rem 1.6rem; transition:transform .3s ease, box-shadow .3s ease; }
.value-card:hover{ transform:translateY(-5px); box-shadow:var(--shadow-card); }
.value-icon{ width:42px; height:42px; margin-bottom:1.2rem; color:var(--maroon); }
.value-card h3{ font-size:1.05rem; margin-bottom:0.55rem; }
.value-card p{ font-size:0.92rem; }

/* =========================================================
   PRODUCT CARDS
   ========================================================= */
.product-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:1.8rem; }
.product-card{
  background:var(--ivory); border-radius:var(--radius); overflow:hidden;
  border:1px solid var(--line-soft); box-shadow:var(--shadow-card);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease;
  display:flex; flex-direction:column;
}
.product-card:hover{ transform:translateY(-7px) rotate(-0.4deg); box-shadow:var(--shadow-lift); }
.product-visual{ aspect-ratio:1/1; background: radial-gradient(circle at 50% 35%, var(--gold-pale) 0%, var(--silk) 72%); padding:12%; position:relative; }
.product-card:hover .product-visual svg .rk-medal{ transform: scale(1.04); }
.product-visual svg{ width:100%; height:100%; }
.product-visual svg .rk-medal{ transform-origin:center; transition:transform .35s ease; }
.product-info{ padding:1.35rem 1.4rem 1.5rem; display:flex; flex-direction:column; gap:0.6rem; flex:1; }
.product-tag{ font-family:var(--font-mono); font-size:0.68rem; letter-spacing:0.12em; text-transform:uppercase; color:var(--gold); }
.product-info h3{ font-size:1.12rem; }
.product-footer{ margin-top:auto; padding-top:0.7rem; display:flex; align-items:center; justify-content:space-between; gap:0.75rem; }
.price-tag{ font-family:var(--font-mono); font-weight:700; font-size:1.02rem; color:var(--maroon-dark); display:inline-flex; align-items:center; gap:0.35rem; }
.price-tag svg{ width:11px; height:11px; }

/* category filter pills */
.filter-row{ display:flex; gap:0.7rem; flex-wrap:wrap; margin-bottom:2.6rem; }
.filter-pill{
  font-family:var(--font-mono); font-size:0.78rem; letter-spacing:0.04em; text-transform:uppercase;
  padding:0.55rem 1.15rem; border-radius:999px; border:1px solid var(--line-soft); color:var(--ink-soft);
  transition: all .22s ease;
}
.filter-pill:hover{ border-color:var(--gold); color:var(--maroon); }
.filter-pill.active{ background:var(--maroon); border-color:var(--maroon); color:var(--ivory); }

/* custom-order CTA card */
.custom-cta{ margin-top:4.5rem; background:var(--maroon-dark); border-radius:20px; padding:clamp(2.2rem,5vw,3.5rem); display:flex; align-items:center; justify-content:space-between; gap:2rem; flex-wrap:wrap; }
.custom-cta h3{ color:var(--ivory); font-size:1.7rem; max-width:26ch; }
.custom-cta p{ color:rgba(255,252,246,0.75); margin-top:0.6rem; max-width:42ch; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testi-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1.8rem; }
.testi-card{ background:var(--ivory); border-radius:var(--radius); padding:2rem; border:1px solid var(--line-soft); }
.testi-stars{ display:flex; gap:0.25rem; color:var(--gold); margin-bottom:1rem; }
.testi-stars svg{ width:16px; height:16px; }
.testi-card p{ font-family:var(--font-display); font-style:italic; font-size:1.08rem; color:var(--ink); line-height:1.6; }
.testi-name{ display:block; margin-top:1.2rem; font-family:var(--font-mono); font-size:0.78rem; color:var(--ink-soft); font-style:normal; }

/* =========================================================
   CTA BANNER (reusable, sits before footer)
   ========================================================= */
.cta-banner{ text-align:center; }
.cta-banner h2{ color:var(--ivory); }
.cta-banner .section-sub{ color:rgba(255,252,246,0.78); margin-left:auto; margin-right:auto; }
.cta-banner .hero-actions{ justify-content:center; }

/* =========================================================
   ABOUT — story + process
   ========================================================= */
.story-grid{ display:grid; grid-template-columns:0.85fr 1.15fr; gap:3.5rem; align-items:start; }
.story-visual{ position:sticky; top:6.5rem; }
.story-copy p{ margin-bottom:1.2rem; font-size:1.04rem; max-width:56ch; }
.story-copy p:last-child{ margin-bottom:0; }

.process-line-wrap{ position:relative; }
.process-list{ display:flex; flex-direction:column; gap:0; position:relative; }
.process-item{ display:grid; grid-template-columns:64px 1fr; gap:1.6rem; padding:1.9rem 0; position:relative; }
.process-num{ font-family:var(--font-mono); font-size:1.5rem; color:var(--gold); position:relative; text-align:center; }
.process-num::before{ content:""; position:absolute; left:50%; top:42px; bottom:-50px; width:1.5px; background:var(--line-soft); transform:translateX(-50%); }
.process-item:last-child .process-num::before{ display:none; }
.process-dot{ width:10px; height:10px; border-radius:50%; background:var(--gold); display:inline-block; margin-top:6px; }
.process-body h3{ margin-bottom:0.4rem; }
.process-body p{ max-width:52ch; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1.6rem; margin-bottom: var(--section-pad); }
.contact-card{ background:var(--ivory); border:1px solid var(--line-soft); border-radius:var(--radius); padding:2.1rem 1.8rem; text-align:center; transition:transform .3s ease, box-shadow .3s ease; }
.contact-card:hover{ transform:translateY(-5px); box-shadow:var(--shadow-card); }
.contact-card.featured{ background:var(--maroon-dark); border-color:var(--maroon-dark); }
.contact-card.featured h3, .contact-card.featured p{ color:var(--ivory); }
.contact-card.featured p{ color:rgba(255,252,246,0.75); }
.contact-icon{ width:46px; height:46px; margin:0 auto 1.2rem; }
.contact-card h3{ font-size:1.15rem; margin-bottom:0.5rem; }
.contact-card p{ font-size:0.92rem; margin-bottom:1.4rem; }

.faq-list{ max-width:760px; margin:0 auto; }
.faq-item{ border-bottom:1px solid var(--line-soft); }
.faq-q{ width:100%; display:flex; align-items:center; justify-content:space-between; gap:1.5rem; padding:1.5rem 0; text-align:left; font-family:var(--font-display); font-size:1.1rem; font-weight:600; color:var(--maroon-dark); }
.faq-q svg{ width:20px; height:20px; flex-shrink:0; transition:transform .3s ease; color:var(--gold); }
.faq-item.open .faq-q svg{ transform:rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .35s ease; }
.faq-a p{ padding-bottom:1.5rem; max-width:62ch; }
.faq-item.open .faq-a{ max-height:240px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width:980px){
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .footer-brand{ grid-column:1/-1; }
  .value-grid{ grid-template-columns:repeat(2,1fr); }
  .product-grid{ grid-template-columns:repeat(3,1fr); }
  .testi-grid{ grid-template-columns:1fr; }
  .contact-grid{ grid-template-columns:1fr; }
  .story-grid{ grid-template-columns:1fr; }
  .story-visual{ position:static; max-width:340px; margin:0 auto; }
}

@media (max-width:840px){
  .main-nav{ position:fixed; top:71px; left:0; right:0; bottom:0; background:var(--silk); flex-direction:column; align-items:flex-start; padding:2rem 1.5rem; gap:0.4rem; transform:translateX(100%); transition:transform .35s ease; overflow-y:auto; }
  .main-nav.is-open{ transform:translateX(0); }
  .main-nav .nav-link{ width:100%; padding:0.85rem 0; font-size:1.1rem; border-bottom:1px solid var(--line-soft); }
  .nav-cta{ display:none; }
  .main-nav .nav-cta{ display:inline-flex; margin-top:1.2rem; }
  .nav-toggle{ display:flex; }
  .hero-grid{ grid-template-columns:1fr; }
  .hero-display{ order:-1; max-width:420px; margin:0 auto; }
  .product-grid{ grid-template-columns:repeat(2,1fr); }
  .value-grid{ grid-template-columns:1fr 1fr; }
  .custom-cta{ flex-direction:column; text-align:center; justify-content:center; }
}

@media (max-width:560px){
  .product-grid{ grid-template-columns:1fr 1fr; gap:1.1rem; }
  .value-grid{ grid-template-columns:1fr; }
  .hero-trust{ gap:1.3rem; }
  .footer-grid{ grid-template-columns:1fr; gap:2.2rem; }
  .footer-bottom{ flex-direction:column; text-align:center; }
  .process-item{ grid-template-columns:44px 1fr; gap:1rem; }
  .hang-medal{ width:58px; height:58px; }
}

/* =========================================================
   REAL PRODUCT PHOTOS support
   ========================================================= */
.product-visual--photo{
  aspect-ratio: 1/1;
  background: var(--gold-pale);
  padding: 0;
  overflow: hidden;
  position: relative;
}
.product-visual--photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s cubic-bezier(.2,.8,.2,1);
  display: block;
}
.product-card:hover .product-visual--photo img{
  transform: scale(1.06);
}
.sold-out-badge{
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(42,27,23,0.82);
  color: #FFFCF6;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 99px;
  z-index: 2;
  pointer-events: none;
}
.product-card{ position: relative; }
