/* ============================================================
   NAGI POSTER — GS Nagi Art
   Nishan Sahib blue + kesari. One stylesheet, no framework.
   ============================================================ */

/* ---------- TOKENS ---------- */
:root{
  /* Surfaces: warm off-white, never pure #FFF beside a giclee print. */
  --bg:#FFFFFF;
  --bg-2:#F5F6F8;
  --surface:#FFFFFF;
  --surface-2:#F7F8FA;

  /* Ink: deep Nishan Sahib blue rather than black, so the whole page
     sits in the same family as the artwork's ground. */
  --fg:#111111;
  --fg-2:#4A4A4A;
  --fg-3:#6B6B6B;

  --border:#E5E5E5;
  --border-2:#CFCFCF;

  --accent:#111111;
  --on-accent:#FFFFFF;

  /* Kesari — the action colour. Used on buttons, price, active state.
     Never as body text on light ground: it measures under 3:1. */
  --kesari:#E8871E;
  --kesari-deep:#B8630C;   /* 4.7:1 on --bg, safe for text and borders */
  --kesari-wash:#FCEEDA;

  --gold:#9C7018;
  --blue-wash:#EFEFEF;
  --blue-soft:#F5F5F5;
  --blue-deep:#111111;

  --ok:#1F7A4C;
  --danger:#B4231B;
  --ring:#111111;

  --paper:#F5F5F5;

  --r-sm:10px; --r-md:18px; --r-lg:26px; --r-pill:999px;

  --shadow-sm:0 1px 2px rgba(17,17,17,.06);
  --shadow-md:0 2px 10px rgba(17,17,17,.09);
  --shadow-lg:0 10px 26px rgba(17,17,17,.13);
  --shadow-xl:0 20px 50px rgba(17,17,17,.18);

  --ease:cubic-bezier(.4,0,.2,1);
  --ease-out:cubic-bezier(.16,1,.3,1);

  --wrap:1180px;
  --nav-h:96px;
}

*,*::before,*::after{box-sizing:border-box}

html{
  scroll-behavior:smooth;
  scroll-padding-top:calc(var(--nav-h) + 20px);
  -webkit-text-size-adjust:100%;
}

body{
  margin:0;
  background:var(--bg);
  color:var(--fg);
  font-family:'Plus Jakarta Sans',system-ui,-apple-system,'Segoe UI',sans-serif;
  font-size:16px;line-height:1.65;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
body.is-locked{overflow:hidden}

h1,h2,h3,h4{
  font-family:'Plus Jakarta Sans',system-ui,sans-serif;
  font-weight:700;line-height:1.14;letter-spacing:-.02em;
  margin:0;color:var(--fg);
}
p{margin:0}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
button,input,select,textarea{font:inherit;color:inherit}
button{cursor:pointer;background:none;border:none;padding:0}

::selection{background:var(--kesari);color:#3A2205}

:focus-visible{outline:2.5px solid var(--ring);outline-offset:3px;border-radius:4px}

.screen-reader-text{
  position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;
}
.skip-link{
  position:fixed;top:-100px;left:16px;z-index:9999;
  background:var(--fg);color:#fff;padding:12px 20px;
  border-radius:var(--r-sm);font-weight:600;
  transition:top 200ms var(--ease);
}
.skip-link:focus{top:16px}

.wrap{
  width:100%;max-width:var(--wrap);
  margin-inline:auto;padding-inline:clamp(20px,5vw,48px);
}

/* Reveal-on-scroll.
   The hidden state is applied by JS (html.js), never by CSS alone — if the
   script fails or is blocked, the content must still be readable rather than
   sitting invisible at opacity:0. */
.js .reveal{
  opacity:0;transform:translateY(20px);
  transition:opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.js .reveal.in{opacity:1;transform:none}

@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{
    animation-duration:.01ms!important;animation-iteration-count:1!important;
    transition-duration:.01ms!important;scroll-behavior:auto!important;
  }
  .reveal{opacity:1;transform:none}
}

/* ---------- BUTTONS ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:9px;
  min-height:48px;padding:0 26px;
  border-radius:var(--r-pill);
  font-weight:600;font-size:.94rem;
  border:1.5px solid transparent;cursor:pointer;
  transition:transform 160ms var(--ease), background 200ms var(--ease),
             color 200ms var(--ease), border-color 200ms var(--ease),
             box-shadow 200ms var(--ease);
  white-space:nowrap;
}
.btn:active{transform:scale(.975)}
.btn-lg{min-height:56px;padding:0 32px;font-size:1rem}
.btn-block{display:flex;width:100%}

.btn-primary{background:var(--kesari);color:#3A2205;box-shadow:var(--shadow-sm)}
.btn-primary:hover{background:var(--kesari-deep);color:#fff;box-shadow:var(--shadow-lg);transform:translateY(-2px)}
.btn-primary:active{transform:translateY(0) scale(.975)}

.btn-ink{background:var(--accent);color:var(--on-accent)}
.btn-ink:hover{background:var(--blue-deep);box-shadow:var(--shadow-lg);transform:translateY(-2px)}

.btn-outline{background:var(--surface);color:var(--fg);border-color:var(--border-2)}
.btn-outline:hover{border-color:var(--fg)}

.btn[disabled]{opacity:.45;cursor:not-allowed;pointer-events:none}

.icon-btn{
  display:inline-grid;place-items:center;position:relative;
  width:46px;height:46px;border-radius:50%;color:var(--fg-2);
  transition:background 180ms var(--ease), color 180ms var(--ease);
}
.icon-btn:hover{background:var(--blue-wash);color:var(--fg)}

/* ---------- TOP BAR: continuous marquee ----------
   One strip of claims scrolling right to left. The strip is printed twice and
   the track travels exactly -50%, so it wraps with no visible seam. */
.topbar{
  background:var(--fg);
  color:#fff;
  overflow:hidden;
  position:relative;
  font-size:.76rem;
}
.topbar-run{
  /* fade the text into the bar rather than cutting it mid-letter. The mask
     belongs on the moving track: on .topbar it also erased the background and
     let the page behind show through at both edges. */
  -webkit-mask-image:linear-gradient(90deg,transparent 0,#000 3%,#000 97%,transparent 100%);
          mask-image:linear-gradient(90deg,transparent 0,#000 3%,#000 97%,transparent 100%);
}
.topbar-run{
  display:flex;align-items:center;
  width:max-content;
  min-height:42px;
  animation:tickroll 38s linear infinite;
  will-change:transform;
}
@keyframes tickroll{
  from{transform:translate3d(0,0,0)}
  to{transform:translate3d(-50%,0,0)}
}
.topbar:hover .topbar-run{animation-play-state:paused}

.tick{
  display:inline-flex;align-items:center;gap:9px;
  white-space:nowrap;font-weight:600;
  color:rgba(255,255,255,.92);
}
.tick .ico{width:15px;height:15px;color:var(--kesari);flex-shrink:0}

/* kesari diamond between claims */
.tick-dot{
  width:5px;height:5px;flex-shrink:0;
  margin-inline:clamp(20px,3vw,44px);
  background:var(--kesari);
  transform:rotate(45deg);
}

@media (prefers-reduced-motion:reduce){
  .topbar-run{-webkit-mask-image:none;mask-image:none}
  .topbar-run{
    animation:none;width:100%;
    justify-content:center;gap:14px;
    padding-inline:16px;
  }
  /* the duplicate pass has nothing to add when it is not moving */
  .topbar-run .tick[aria-hidden="true"],
  .topbar-run .tick[aria-hidden="true"] + .tick-dot{display:none}
  .tick{white-space:normal}
}

/* ---------- NAV: floating pill bar ----------
   The whole header is one white rounded bar sitting over the page, with the
   menu as icon pills and a kesari CTA paired with a round arrow button. */
.nav{
  position:sticky;top:0;z-index:500;
  padding-block:clamp(10px,1.4vw,18px);
  background:transparent;
}
.nav-bar{
  display:flex;align-items:center;gap:clamp(10px,1.6vw,22px);
  min-height:68px;
  padding:9px 9px 9px clamp(14px,1.8vw,22px);
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--r-pill);
  box-shadow:0 4px 20px rgba(17,17,17,.07);
  transition:box-shadow 260ms var(--ease);
}
.nav.stuck .nav-bar{box-shadow:0 10px 30px rgba(17,17,17,.13)}

/* ---- wordmark ---- */
.brand{
  display:flex;align-items:center;gap:9px;
  flex-shrink:0;margin-right:auto;
}
.brand img{
  height:40px;width:40px;
  object-fit:contain;
  border-radius:9px;
  flex-shrink:0;
}
.brand-text{
  display:flex;flex-direction:column;line-height:1;
  font-family:'Plus Jakarta Sans',sans-serif;font-weight:800;
  font-size:clamp(1rem,1.3vw,1.16rem);letter-spacing:-.025em;
  color:var(--fg);
  transition:color 200ms var(--ease);
}
.brand:hover .brand-text{color:var(--kesari-deep)}
.brand-text em{
  font-style:normal;font-size:.55rem;letter-spacing:.2em;text-transform:uppercase;
  color:var(--fg-3);font-weight:600;margin-top:4px;
}
.brand-title{
  font-family:'Plus Jakarta Sans',sans-serif;font-weight:800;
  font-size:clamp(1rem,1.3vw,1.16rem);letter-spacing:-.025em;
  color:var(--fg);white-space:nowrap;
}

/* ---- icon pills ---- */
.nav-pills{display:flex;align-items:center;gap:4px}
.nav-pill{
  display:inline-flex;align-items:center;gap:8px;
  min-height:44px;padding:0 15px 0 7px;
  border-radius:var(--r-pill);
  font-size:.88rem;font-weight:500;color:var(--fg-2);
  white-space:nowrap;
  transition:background 200ms var(--ease), color 200ms var(--ease);
}
.np-ico{
  display:grid;place-items:center;
  width:30px;height:30px;border-radius:50%;
  background:var(--surface-2);
  color:var(--fg);
  flex-shrink:0;
  transition:background 200ms var(--ease), color 200ms var(--ease);
}
.np-ico .ico{width:16px;height:16px}
.nav-pill:hover{background:var(--surface-2);color:var(--fg)}
.nav-pill:hover .np-ico{background:#fff}
.nav-pill.is-on{background:var(--surface-2);color:var(--fg);font-weight:600}
.nav-pill.is-on .np-ico{background:var(--kesari);color:#3A2205}

/* ---- right end ---- */
.nav-end{display:flex;align-items:center;gap:8px;margin-left:auto;flex-shrink:0}

.nav-cart{
  position:relative;
  display:grid;place-items:center;
  width:44px;height:44px;border-radius:50%;
  color:var(--fg);
  transition:background 190ms var(--ease);
}
.nav-cart:hover{background:var(--surface-2)}
.nav-cart .ico{width:20px;height:20px}

.cart-pip[hidden]{display:none}
.cart-pip{
  position:absolute;top:3px;right:2px;
  min-width:18px;height:18px;padding:0 5px;
  display:grid;place-items:center;
  background:var(--kesari);color:#3A2205;
  border-radius:999px;font-size:.64rem;font-weight:800;
  font-variant-numeric:tabular-nums;
  border:2px solid #fff;
}

.nav-cta{
  display:inline-flex;align-items:center;gap:9px;
  min-height:48px;padding:0 20px;
  border-radius:var(--r-pill);
  background:var(--kesari);color:#2A1904;
  font-size:.9rem;font-weight:700;letter-spacing:-.005em;
  white-space:nowrap;
  transition:background 200ms var(--ease), transform 180ms var(--ease);
}
.nav-cta:hover{background:var(--kesari-deep);color:#fff}
.nav-cta svg{transition:transform 260ms var(--ease-out)}
.nav-cta:hover svg{transform:translate(2px,-2px)}
.nav-cta:active{transform:scale(.98)}

.nav-cta-round{
  display:grid;place-items:center;
  width:48px;height:48px;border-radius:50%;
  background:var(--fg);color:#fff;
  flex-shrink:0;
  transition:transform 220ms var(--ease-out), background 200ms var(--ease);
}
.nav-cta-round:hover{transform:rotate(45deg);background:#000}

.menu-btn{display:none}

/* ---- mobile drawer ---- */
.mobile-menu{
  display:none;flex-direction:column;
  margin-top:10px;padding:8px 10px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--r-lg);
  box-shadow:0 10px 30px rgba(17,17,17,.12);
}
.mobile-menu a{
  padding:14px 12px;border-radius:var(--r-md);
  font-size:.95rem;font-weight:600;color:var(--fg);
}
.mobile-menu a:hover{background:var(--surface-2)}

/* ---- responsive ---- */
@media (max-width:1100px){
  .nav-pill{padding:0 11px 0 6px;font-size:.84rem}
  .nav-pill .np-ico{width:28px;height:28px}
}
@media (max-width:960px){
  .nav-pills{display:none}
  .menu-btn{display:inline-grid}
  .nav.menu-open .mobile-menu{display:flex}
  .nav-bar{min-height:62px}
}
@media (max-width:640px){
  .nav-cta{display:none}
  .nav-bar{padding:7px 7px 7px 16px;gap:8px}
  .brand-text,.brand-title{font-size:1rem}
  .nav-cta-round{width:44px;height:44px}
}
@media (max-width:400px){
  .nav-cta-round{display:none}
}

/* ---------- HERO: centred copy over a curved-card marquee ----------
   Each card rounds two diagonally opposite corners hard and leaves the other
   two nearly square; the diagonal flips on every other card, which is what
   gives the row its wave. The track holds the set twice so the loop wraps
   with no visible seam. */
.hero-band{
  position:relative;
  padding:clamp(18px,2.6vw,34px) 0 clamp(34px,4.6vw,60px);
  overflow:hidden;
}
/* ---- drifting background shapes ----
   Outlines and small marks that move on their own paths, so the hero has
   depth without a flat colour wash behind the artwork. All decorative. */
.band-bg{
  position:absolute;inset:0;z-index:0;
  pointer-events:none;overflow:hidden;
}
.band-bg span{position:absolute;display:block}

/* thin outline rings */
.bg-ring{
  border-radius:50%;
  border:1.6px solid var(--kesari);
  opacity:.34;
}
.bg-ring-1{
  width:clamp(200px,26vw,380px);aspect-ratio:1;
  left:-7%;bottom:4%;
  animation:drift-a 26s ease-in-out infinite;
}
.bg-ring-2{
  width:clamp(150px,18vw,260px);aspect-ratio:1;
  right:-4%;top:44%;
  border-color:var(--fg);opacity:.16;
  animation:drift-b 32s ease-in-out infinite;
}

/* solid dots */
.bg-dot{border-radius:50%}
.bg-dot-1{
  width:12px;height:12px;background:var(--kesari);opacity:.65;
  left:11%;top:62%;
  animation:drift-b 19s ease-in-out infinite;
}
.bg-dot-2{
  width:8px;height:8px;background:var(--fg);opacity:.3;
  right:16%;top:66%;
  animation:drift-a 23s ease-in-out infinite;
}
.bg-dot-3{
  width:14px;height:14px;
  background:none;border:2.2px solid var(--kesari);opacity:.55;
  left:78%;bottom:14%;
  animation:drift-c 29s ease-in-out infinite;
}

/* small plus marks */
.bg-cross{color:var(--kesari);opacity:.5}
.bg-cross svg{width:100%;height:100%;display:block}
.bg-cross-1{
  width:20px;height:20px;left:6%;top:34%;
  animation:spin-slow 34s linear infinite;
}
.bg-cross-2{
  width:15px;height:15px;right:9%;top:22%;
  color:var(--fg);opacity:.28;
  animation:spin-slow 44s linear infinite reverse;
}

/* long thin strokes, like a brush rule */
.bg-blade{
  height:2px;border-radius:2px;
  background:linear-gradient(90deg,transparent,var(--kesari),transparent);
  opacity:.45;
}
.bg-blade-1{
  width:clamp(90px,12vw,180px);
  left:4%;top:75%;transform:rotate(-16deg);
  animation:drift-c 24s ease-in-out infinite;
}
.bg-blade-2{
  width:clamp(70px,9vw,130px);
  right:5%;bottom:26%;transform:rotate(12deg);
  animation:drift-a 30s ease-in-out infinite;
}

@keyframes drift-a{
  0%,100%{transform:translate(0,0)}
  50%    {transform:translate(22px,-26px)}
}
@keyframes drift-b{
  0%,100%{transform:translate(0,0)}
  50%    {transform:translate(-26px,20px)}
}
@keyframes drift-c{
  0%,100%{transform:translate(0,0) rotate(-16deg)}
  50%    {transform:translate(16px,-18px) rotate(-11deg)}
}
@keyframes spin-slow{
  from{transform:rotate(0deg)}
  to{transform:rotate(360deg)}
}

@media (prefers-reduced-motion:reduce){
  .band-bg span{animation:none!important}
}
/* the shapes read as clutter beside the copy on a narrow screen */
@media (max-width:760px){
  .bg-ring-2,.bg-cross-2,.bg-blade-2,.bg-dot-3{display:none}
  .bg-ring-1{opacity:.14}
}

/* ---- centred copy ---- */
.band-head{
  position:relative;z-index:1;
  text-align:center;
  display:flex;flex-direction:column;align-items:center;
  margin-top:clamp(30px,4vw,52px);
}
.band-pill{
  display:inline-block;
  background:var(--kesari-wash);
  color:#8A4A08;
  border-radius:var(--r-pill);
  padding:9px 20px;margin-bottom:22px;
  font-size:.76rem;font-weight:700;letter-spacing:.02em;
}
.band-title{
  font-size:clamp(2.15rem,5.6vw,4.5rem);
  font-weight:700;line-height:1.04;letter-spacing:-.035em;
  margin-bottom:20px;text-wrap:balance;
}
.band-lede{
  font-size:clamp(.98rem,1.2vw,1.1rem);
  line-height:1.68;color:var(--fg-2);
  max-width:56ch;
}

/* ---- marquee ---- */
.band-marquee{
  position:relative;z-index:1;
  overflow:hidden;
  padding-block:10px;
  /* fade the row into the page at both ends */
  -webkit-mask-image:linear-gradient(90deg,transparent 0,#000 7%,#000 93%,transparent 100%);
          mask-image:linear-gradient(90deg,transparent 0,#000 7%,#000 93%,transparent 100%);
}
.band-track{
  display:flex;
  gap:clamp(14px,1.6vw,24px);
  width:max-content;
  animation:bandroll 46s linear infinite;
  will-change:transform;
}
/* the set is printed twice, so travelling exactly -50% lands on the copy */
@keyframes bandroll{
  from{transform:translate3d(0,0,0)}
  to{transform:translate3d(-50%,0,0)}
}
.band-marquee:hover .band-track{animation-play-state:paused}

.band-card{
  position:relative;flex:0 0 auto;
  width:clamp(150px,15vw,215px);
  aspect-ratio:3/4;
  overflow:hidden;
  background:var(--blue-soft);
  box-shadow:0 10px 26px rgba(17,17,17,.14);
  /* the leaf: top-left and bottom-right hard-rounded */
  border-radius:44px 10px 44px 10px;
  transition:transform 380ms var(--ease-out), box-shadow 380ms var(--ease-out);
}
/* every other card flips the diagonal, which makes the wave */
.band-card:nth-child(even){
  border-radius:10px 44px 10px 44px;
  transform:translateY(clamp(10px,1.5vw,22px));
}
.band-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 44px rgba(17,17,17,.22);
}
.band-card:nth-child(even):hover{
  transform:translateY(calc(clamp(10px,1.5vw,22px) - 6px));
}
.band-card img{
  width:100%;height:100%;
  /* contain, not cover: the whole photo has to be visible, never cropped */
  object-fit:contain;
  display:block;
  background:var(--surface-2);
}

/* caption appears on hover, so the row stays clean while it scrolls */
.bc-cap{
  position:absolute;left:0;right:0;bottom:0;z-index:2;
  display:flex;flex-direction:column;gap:1px;
  padding:34px 14px 13px;
  background:linear-gradient(180deg,rgba(17,17,17,0) 0%,rgba(17,17,17,.88) 62%);
  color:#fff;
  opacity:0;transform:translateY(8px);
  transition:opacity 300ms var(--ease), transform 300ms var(--ease-out);
}
.band-card:hover .bc-cap,
.band-card:focus-visible .bc-cap{opacity:1;transform:none}
.bc-title{
  font-family:'Plus Jakarta Sans',sans-serif;font-weight:600;
  font-size:.78rem;line-height:1.28;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}
.bc-price{font-size:.74rem;color:rgba(255,255,255,.9)}

/* ---- footer actions ---- */
.band-foot{
  position:relative;z-index:1;
  display:flex;align-items:center;justify-content:center;
  flex-wrap:wrap;gap:20px;
  margin-top:clamp(22px,2.8vw,32px);
}
.hero-link{
  font-size:.88rem;font-weight:600;color:var(--fg-2);
  border-bottom:1.5px solid var(--kesari);padding-bottom:2px;
  transition:color 190ms var(--ease);
}
.hero-link:hover{color:var(--fg)}

@media (prefers-reduced-motion:reduce){
  .band-track{animation:none;transform:none}
  .band-marquee{
    overflow-x:auto;
    -webkit-mask-image:none;mask-image:none;
    scrollbar-width:thin;
  }
  .bc-cap{opacity:1;transform:none}
}

/* ---- responsive ---- */
@media (max-width:900px){
  .band-card{width:clamp(140px,26vw,185px);border-radius:36px 8px 36px 8px}
  .band-card:nth-child(even){border-radius:8px 36px 8px 36px}
}
@media (max-width:640px){
  .band-title{font-size:clamp(1.95rem,8.4vw,2.6rem)}
  .band-card{width:clamp(132px,42vw,164px);border-radius:30px 8px 30px 8px}
  .band-card:nth-child(even){border-radius:8px 30px 8px 30px}
  .band-track{animation-duration:34s}
  .band-foot{flex-direction:column;gap:14px}
  .band-foot .btn{width:100%}
  .bc-cap{opacity:1;transform:none;padding:26px 11px 11px}
}

/* ---------- TRUST ---------- */
.trust{padding:clamp(28px,4vw,44px) 0}
.trust-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:clamp(12px,1.6vw,18px)}
.trust-item{
  display:flex;flex-direction:column;gap:3px;
  background:var(--surface);border-radius:var(--r-md);
  padding:22px;box-shadow:var(--shadow-sm);
}
.trust-item svg{color:var(--kesari-deep);margin-bottom:10px;width:22px;height:22px}
.trust-item b{font-size:.94rem;font-weight:600}
.trust-item span{font-size:.83rem;color:var(--fg-3)}

/* ---------- SECTION SHELL ---------- */
.section{padding:clamp(48px,6.5vw,96px) 0}
.sec-kicker{
  display:block;font-size:.72rem;letter-spacing:.22em;text-transform:uppercase;
  font-weight:700;color:var(--fg-2);margin-bottom:16px;
}
.sec-head{max-width:640px;margin-bottom:clamp(32px,4vw,52px)}
.sec-head h2{font-size:clamp(1.75rem,3.4vw,2.6rem);letter-spacing:-.025em;line-height:1.15}
.sec-head > p{margin-top:18px;font-size:1rem;color:var(--fg-2);line-height:1.68;max-width:56ch}
.sec-head-row{
  display:flex;justify-content:space-between;align-items:flex-end;
  gap:36px;max-width:none;
}
.sec-side{font-size:.94rem;color:var(--fg-2);max-width:36ch;line-height:1.62}

/* ---------- PRODUCT GRID ----------
   Same language as the hero marquee: the artwork fills a curved card with two
   diagonally opposite corners hard-rounded, and the diagonal flips on every
   other card so a row reads as a wave rather than a row of identical boxes. */
.grid{
  display:grid;grid-template-columns:repeat(auto-fill,minmax(230px,1fr));
  gap:clamp(26px,3vw,42px) clamp(16px,2vw,26px);
}
.card{display:flex;flex-direction:column}
.card-link{display:flex;flex-direction:column;height:100%}

/* the card itself is the artwork — no mat, no padding */
.card-frame{
  position:relative;
  aspect-ratio:3/4;
  overflow:hidden;
  background:var(--surface-2);
  border-radius:44px 10px 44px 10px;
  box-shadow:0 8px 22px rgba(17,17,17,.10);
  transition:transform 380ms var(--ease-out), box-shadow 380ms var(--ease-out);
}
.card:nth-child(even) .card-frame{border-radius:10px 44px 10px 44px}

.card-art{position:absolute;inset:0}
.card-art img{
  width:100%;height:100%;
  /* contain, not cover: the whole photo has to be visible, never cropped */
  object-fit:contain;
  display:block;
  background:var(--surface-2);
  transition:transform 700ms var(--ease-out);
}
.card-link:hover .card-frame{
  transform:translateY(-6px);
  box-shadow:0 20px 44px rgba(17,17,17,.18);
}
.card-link:hover .card-art img{transform:scale(1.03)}

/* corner tag */
.card-badges{
  position:absolute;top:14px;left:14px;z-index:6;
  display:flex;flex-direction:column;gap:6px;align-items:flex-start;
}
.card:nth-child(even) .card-badges{left:auto;right:14px;align-items:flex-end}
.pill{
  border-radius:var(--r-pill);padding:5px 11px;
  font-size:.62rem;font-weight:800;letter-spacing:.1em;text-transform:uppercase;
  background:#fff;color:var(--fg);
  box-shadow:0 2px 8px rgba(17,17,17,.14);
}
.pill-new{background:var(--fg);color:#fff}
.pill-sale{background:var(--kesari);color:#2A1904}

/* format hint, revealed on hover */
.card-fmt{
  position:absolute;right:14px;bottom:14px;z-index:6;
  display:inline-flex;align-items:center;gap:6px;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);
  border-radius:var(--r-pill);
  padding:7px 13px;
  font-size:.64rem;font-weight:700;letter-spacing:.05em;text-transform:uppercase;
  color:var(--fg);
  box-shadow:0 2px 10px rgba(17,17,17,.16);
  opacity:0;transform:translateY(6px);
  transition:opacity 280ms var(--ease), transform 280ms var(--ease-out);
}
.card:nth-child(even) .card-fmt{right:auto;left:14px}
.card-link:hover .card-fmt{opacity:1;transform:none}
@media (hover:none){.card-fmt{opacity:1;transform:none}}

/* info sits under the card, on the page */
.card-body{
  padding-top:15px;
  display:flex;flex-direction:column;gap:4px;
  flex:1;
}
.card-title-row{
  display:flex;justify-content:space-between;align-items:baseline;gap:12px;
}
.card-title{
  font-family:'Plus Jakarta Sans',sans-serif;font-size:.98rem;font-weight:700;
  letter-spacing:-.018em;line-height:1.3;
  transition:color 200ms var(--ease);
}
.card-link:hover .card-title{color:var(--kesari-deep)}
.card-cat{
  font-size:.62rem;letter-spacing:.16em;text-transform:uppercase;
  color:var(--fg-3);font-weight:700;flex-shrink:0;
}
.card-price{display:flex;flex-direction:column;gap:1px;margin-top:2px}
.card-price b,.card-price .amount{
  font-family:'Plus Jakarta Sans',sans-serif;font-size:1rem;font-weight:800;
  font-variant-numeric:tabular-nums;letter-spacing:-.02em;color:var(--fg);
}
.card-price small,.card-price .fmt-note{font-size:.73rem;color:var(--fg-3);font-weight:400}
.card-price del{opacity:.5;font-size:.85rem;font-weight:400;margin-right:6px}
.card-price ins{text-decoration:none}

.grid-foot{
  display:flex;flex-direction:column;align-items:center;gap:14px;
  margin-top:clamp(40px,5vw,60px);
}
.grid-note{font-size:.83rem;color:var(--fg-3);font-variant-numeric:tabular-nums}

@media (max-width:900px){
  .card-frame{border-radius:36px 8px 36px 8px}
  .card:nth-child(even) .card-frame{border-radius:8px 36px 8px 36px}
}
@media (max-width:640px){
  .grid{grid-template-columns:repeat(auto-fill,minmax(150px,1fr));gap:20px 12px}
  .card-frame{border-radius:28px 8px 28px 8px}
  .card:nth-child(even) .card-frame{border-radius:8px 28px 8px 28px}
  .card-title{font-size:.88rem}
  .card-cat{display:none}
}

/* ---------- FOOTER ---------- */
.footer{background:var(--blue-deep);color:#fff;padding-top:clamp(44px,6vw,72px)}
.foot-grid{
  display:grid;grid-template-columns:2fr 1fr 1fr 1fr;
  gap:clamp(26px,4vw,52px);padding-bottom:clamp(36px,5vw,56px);
}
.footer .brand-text{color:#fff;align-items:flex-start}
.footer .brand-text em{color:rgba(255,255,255,.6);border-top-color:rgba(255,255,255,.24)}
.foot-brand p{
  font-size:.92rem;color:rgba(255,255,255,.74);line-height:1.65;
  max-width:38ch;margin:16px 0 20px;
}
.socials{display:flex;gap:8px}
.socials a{
  display:grid;place-items:center;width:42px;height:42px;border-radius:50%;
  border:1px solid rgba(255,255,255,.24);color:rgba(255,255,255,.85);
  transition:all 190ms var(--ease);
}
.socials a svg{width:19px;height:19px}
.socials a:hover{background:#fff;color:var(--blue-deep);border-color:#fff}

.foot-col{display:flex;flex-direction:column;gap:0}
.foot-col h2{
  font-family:'Plus Jakarta Sans',sans-serif;font-size:.72rem;letter-spacing:.2em;
  text-transform:uppercase;font-weight:700;color:rgba(255,255,255,.56);
  margin:0 0 5px;
}
.foot-col a{
  display:inline-flex;align-items:center;
  min-height:44px;
  font-size:.92rem;color:rgba(255,255,255,.76);width:fit-content;
  transition:color 170ms var(--ease);
}
.foot-col a:hover{color:#fff}
.foot-col ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:11px}

.foot-base{
  display:flex;justify-content:space-between;align-items:center;
  gap:20px;flex-wrap:wrap;padding-block:22px;
  border-top:1px solid rgba(255,255,255,.16);
}
.foot-base small{font-size:.8rem;color:rgba(255,255,255,.62)}
.foot-legal{display:flex;gap:20px}
.foot-legal a:hover{color:#fff}

/* ---------- RESPONSIVE ---------- */
@media (max-width:1080px){
  .hero-rail{grid-template-columns:repeat(3,minmax(0,1fr))}
  .rail-note{grid-column:1/-1;margin-top:8px}
  .foot-grid{grid-template-columns:1fr 1fr 1fr}
  .foot-brand{grid-column:1/-1}
}
@media (max-width:900px){
  .nav-side{display:none}
  .menu-btn{display:inline-grid;justify-self:end}
  .nav-inner{grid-template-columns:1fr auto;gap:12px;min-height:74px}
  .brand{align-items:flex-start;text-align:left;padding-inline:0}
  .brand-text{align-items:flex-start}
  .brand-text em{width:auto;border-top:none;padding-top:0;margin-top:4px;letter-spacing:.2em}
  .nav.menu-open .mobile-menu{display:flex}
  .trust-grid{grid-template-columns:1fr 1fr}
  .sec-head-row{flex-direction:column;align-items:flex-start;gap:18px}
}
@media (max-width:760px){
  .hero-band{grid-template-columns:minmax(0,1fr);gap:20px}
  .hero-actions{flex-direction:row;align-items:center;flex-wrap:wrap;gap:16px}
  .hero-rail{grid-template-columns:1fr 1fr;gap:14px}
  .rail-item:nth-child(3){display:none}
  .ht-indent{padding-left:clamp(0px,6vw,60px)}
  .rail-lift .rail-art{margin-bottom:0}
  .topbar-links{display:none}
  .topbar-in{justify-content:center}
  .topbar-rotator{flex:0 1 auto;text-align:center}
  .topbar-rotator li{justify-content:center}
}
@media (max-width:640px){
  .card-cat{display:none}
  .foot-grid{grid-template-columns:1fr 1fr}
  .foot-base{flex-direction:column;align-items:flex-start;gap:12px}
}
@media (max-width:420px){
  .hero-title{letter-spacing:-.03em}
  .hero-actions .btn{width:100%}
}

/* ---------- ICONS ----------
   Every inline icon carries width/height, plus this floor so an SVG can
   never stretch to fill a flex parent when a context rule is missing. */
.ico{width:20px;height:20px;flex:0 0 auto;display:inline-block;vertical-align:middle}
.incl .ico{width:16px;height:16px;color:var(--ok);margin-top:2px}
.assure .ico{width:17px;height:17px;color:var(--fg-3)}
.trust-item .ico{width:22px;height:22px;color:var(--kesari-deep);margin-bottom:10px}
.topbar-msg .ico{width:15px;height:15px;opacity:.9}
.socials a .ico{width:19px;height:19px}
.btn .ico,.hero-actions .ico{width:18px;height:18px}
.card-fmt .ico{width:12px;height:12px}
.icon-btn .ico{width:21px;height:21px}

/* ---------- WOOCOMMERCE PRODUCT LISTS ----------
   Woo prints related/upsell products into its own `ul.products`, which the
   theme's `.grid` class never reaches. Without a grid here the cards fall
   back to display:block and each one stretches to the full column width. */
ul.products{
  list-style:none;margin:0;padding:0;
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(248px,1fr));
  gap:clamp(20px,2.6vw,36px) clamp(16px,2vw,26px);
}
ul.products::before,
ul.products::after{content:none!important;display:none!important}
ul.products li.product{margin:0;width:auto;float:none;clear:none}

/* Woo's own section heading above related products */
.related > h2,
.upsells > h2{
  font-size:clamp(1.5rem,2.6vw,2rem);
  letter-spacing:-.02em;margin-bottom:clamp(20px,2.6vw,32px);
}
.related,.upsells{padding-block:clamp(36px,5vw,64px)}

/* ============================================================
   HOMEPAGE CONTENT SECTIONS
   ============================================================ */
.prose{max-width:66ch;font-size:1.02rem;line-height:1.75;color:var(--fg-2)}
.prose + .prose{margin-top:14px}
.prose strong{color:var(--fg);font-weight:700}

.home-intro{background:var(--bg)}
.home-collections{background:var(--bg-2)}
.home-process{background:var(--bg-2)}
.home-spec{background:var(--bg)}
.home-choosing{background:var(--bg-2)}
.home-faq{background:var(--bg)}

/* three format cards */
.format-cards{
  display:grid;grid-template-columns:repeat(3,minmax(0,1fr));
  gap:clamp(14px,1.8vw,22px);
  margin:clamp(24px,3vw,36px) 0;
}
.fmt-card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--r-md);
  padding:clamp(20px,2.4vw,28px);
  display:flex;flex-direction:column;gap:8px;
}
.fmt-card.is-featured{border-color:var(--fg);box-shadow:0 0 0 1px var(--fg)}
.fc-ico{
  display:grid;place-items:center;
  width:42px;height:42px;border-radius:50%;
  background:var(--surface-2);color:var(--kesari-deep);
  margin-bottom:4px;
}
.fc-ico .ico{width:20px;height:20px}
.fmt-card h3{font-size:1.06rem;letter-spacing:-.015em}
.fc-price{
  font-family:'Plus Jakarta Sans',sans-serif;font-weight:800;
  font-size:.92rem;color:var(--kesari-deep);letter-spacing:-.01em;
}
.fmt-card p:last-child{font-size:.92rem;line-height:1.6;color:var(--fg-2)}

/* collections */
.coll-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:clamp(16px,2.2vw,26px)}
.coll-card{
  background:var(--surface);border-radius:var(--r-lg);
  padding:clamp(24px,3vw,36px);box-shadow:var(--shadow-sm);
}
.coll-card h3{font-size:1.2rem;margin-bottom:12px;letter-spacing:-.018em}
.coll-card p{font-size:.96rem;line-height:1.7;color:var(--fg-2)}

/* process */
.steps{
  list-style:none;padding:0;margin:0 0 clamp(32px,4vw,52px);
  display:grid;grid-template-columns:repeat(4,minmax(0,1fr));
  gap:clamp(16px,2.2vw,26px);
}
.step{
  background:var(--surface);border-radius:var(--r-md);
  padding:24px 22px 26px;box-shadow:var(--shadow-sm);
}
.step-no{
  display:inline-grid;place-items:center;
  width:36px;height:36px;border-radius:50%;
  background:var(--kesari-wash);color:#8A4A08;
  font-family:'Plus Jakarta Sans',sans-serif;font-size:.8rem;font-weight:800;
  margin-bottom:14px;
}
.step h3{font-size:1.04rem;margin-bottom:9px;letter-spacing:-.015em}
.step p{font-size:.92rem;line-height:1.62;color:var(--fg-2)}

.studio-quote{
  margin:0;background:var(--surface);border-radius:var(--r-lg);
  padding:clamp(26px,3.4vw,42px);box-shadow:var(--shadow-sm);
  border-left:4px solid var(--kesari);
}
.studio-quote blockquote{margin:0 0 16px}
.studio-quote blockquote p{
  font-size:clamp(1.05rem,1.8vw,1.35rem);line-height:1.55;
  font-weight:500;letter-spacing:-.015em;color:var(--fg);
}
.studio-quote figcaption{display:flex;flex-direction:column;gap:2px}
.studio-quote figcaption b{font-size:.94rem;font-weight:700}
.studio-quote figcaption span{font-size:.82rem;color:var(--fg-3)}

/* spec table */
.spec-wrap{overflow-x:auto;-webkit-overflow-scrolling:touch}
.spec-table{
  width:100%;border-collapse:collapse;
  background:var(--surface);border-radius:var(--r-md);overflow:hidden;
  box-shadow:var(--shadow-sm);
}
.spec-table th,.spec-table td{
  text-align:left;padding:15px 20px;
  border-bottom:1px solid var(--border);
  font-size:.94rem;
}
.spec-table tr:last-child th,.spec-table tr:last-child td{border-bottom:none}
.spec-table th{
  font-weight:700;color:var(--fg);width:32%;white-space:nowrap;
  background:var(--surface-2);
}
.spec-table td{color:var(--fg-2)}

/* choosing */
.choose-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:clamp(14px,2vw,22px)}
.choose-card{
  background:var(--surface);border:1px solid var(--border);
  border-radius:var(--r-md);padding:clamp(20px,2.4vw,28px);
}
.choose-card h3{font-size:1.02rem;margin-bottom:10px;letter-spacing:-.015em}
.choose-card p{font-size:.94rem;line-height:1.68;color:var(--fg-2)}

/* faq */
.faq-wrap{display:grid;grid-template-columns:.8fr 1.2fr;gap:clamp(28px,4vw,60px);align-items:start}
.home-faq .sec-head{margin-bottom:0;position:sticky;top:calc(var(--nav-h) + 24px)}
.acc{display:flex;flex-direction:column;gap:10px}
.acc-item{
  background:var(--surface);border-radius:var(--r-md);
  padding:0 clamp(18px,2.2vw,26px);box-shadow:var(--shadow-sm);
}
.acc-item summary{
  list-style:none;cursor:pointer;
  display:flex;justify-content:space-between;align-items:center;gap:20px;
  padding:20px 2px;font-size:1rem;font-weight:700;
  transition:color 180ms var(--ease);
}
.acc-item summary::-webkit-details-marker{display:none}
.acc-item summary:hover{color:var(--kesari-deep)}
.acc-ico{position:relative;width:17px;height:17px;flex-shrink:0}
.acc-ico::before,.acc-ico::after{
  content:"";position:absolute;background:currentColor;border-radius:2px;
  transition:transform 280ms var(--ease-out), opacity 240ms var(--ease);
}
.acc-ico::before{left:0;right:0;top:7.5px;height:2px}
.acc-ico::after{top:0;bottom:0;left:7.5px;width:2px}
.acc-item[open] .acc-ico::after{transform:rotate(90deg);opacity:0}
.acc-body{padding:0 2px 22px;animation:accIn 320ms var(--ease-out)}
@keyframes accIn{from{opacity:0;transform:translateY(-6px)}}
.acc-body p{color:var(--fg-2);font-size:.95rem;line-height:1.72;max-width:64ch}

@media (max-width:1080px){
  .steps{grid-template-columns:repeat(2,minmax(0,1fr))}
  .faq-wrap{grid-template-columns:minmax(0,1fr);gap:26px}
  .home-faq .sec-head{position:static}
}
@media (max-width:900px){
  .format-cards{grid-template-columns:minmax(0,1fr)}
  .coll-grid,.choose-grid{grid-template-columns:minmax(0,1fr)}
}
@media (max-width:640px){
  .steps{grid-template-columns:minmax(0,1fr)}
  .spec-table th{width:auto}
  .spec-table th,.spec-table td{padding:13px 15px;font-size:.9rem}
}

/* ============================================================
   SECTION TREATMENT
   The hero earns attention with drifting shapes and staggered
   entrances; the rest of the page was flat by comparison. These
   rules give every section the same vocabulary — a quiet
   background mark, a staggered reveal, and a hover that responds.
   ============================================================ */

/* ---- backgrounds: quiet marks, not gradients ---- */
.home-intro,
.home-collections,
.home-process,
.home-spec,
.home-choosing,
.home-faq,
.collection{position:relative;overflow:hidden}

.pdp-wrap > .wrap,
.pdp-details > .wrap,
.home-intro > .wrap,
.home-collections > .wrap,
.home-process > .wrap,
.home-spec > .wrap,
.home-choosing > .wrap,
.home-faq > .wrap,
.collection > .wrap{position:relative;z-index:1}

/* a large outline ring drifting behind alternating sections */
.pdp-wrap::before,
.home-intro::before,
.home-process::before,
.home-choosing::before{
  content:"";position:absolute;z-index:0;pointer-events:none;
  width:clamp(240px,30vw,460px);aspect-ratio:1;border-radius:50%;
  border:1.6px solid var(--kesari);opacity:.16;
  right:-9%;top:8%;
  animation:sec-drift-a 30s ease-in-out infinite;
}
.pdp-details::before,
.home-collections::before,
.home-spec::before,
.home-faq::before{
  content:"";position:absolute;z-index:0;pointer-events:none;
  width:clamp(200px,24vw,380px);aspect-ratio:1;border-radius:50%;
  border:1.6px solid var(--fg);opacity:.07;
  left:-7%;bottom:6%;
  animation:sec-drift-b 36s ease-in-out infinite;
}

/* a small kesari diamond, the same mark the top bar uses */
.pdp-details::after,
.home-process::after,
.home-spec::after{
  content:"";position:absolute;z-index:0;pointer-events:none;
  width:12px;height:12px;background:var(--kesari);opacity:.34;
  transform:rotate(45deg);
  left:6%;top:16%;
  animation:sec-drift-b 22s ease-in-out infinite;
}
.home-choosing::after{
  content:"";position:absolute;z-index:0;pointer-events:none;
  width:clamp(80px,10vw,150px);height:2px;border-radius:2px;
  background:linear-gradient(90deg,transparent,var(--kesari),transparent);
  opacity:.4;left:4%;bottom:14%;transform:rotate(-14deg);
  animation:sec-drift-a 26s ease-in-out infinite;
}

@keyframes sec-drift-a{
  0%,100%{transform:translate(0,0)}
  50%    {transform:translate(-20px,24px)}
}
@keyframes sec-drift-b{
  0%,100%{transform:translate(0,0) rotate(45deg)}
  50%    {transform:translate(18px,-20px) rotate(45deg)}
}
/* the ring variants must not inherit the diamond's rotation */
.home-collections::before,
.home-spec::before,
.home-faq::before{animation-name:sec-drift-a}

/* ---- staggered entrance ----
   Children of a revealed group come in one after another rather
   than all at once, which is what makes the hero feel deliberate. */
.format-cards .fmt-card,
.coll-grid .coll-card,
.choose-grid .choose-card,
.steps .step,
.trust-grid .trust-item,
.acc .acc-item{
  --d:0ms;
}
.js .reveal .fmt-card,
.js .reveal .coll-card,
.js .reveal .choose-card,
.js .reveal .acc-item{
  opacity:0;transform:translateY(16px);
  transition:opacity 620ms var(--ease-out) var(--d),
             transform 620ms var(--ease-out) var(--d);
}
.js .reveal.in .fmt-card,
.js .reveal.in .coll-card,
.js .reveal.in .choose-card,
.js .reveal.in .acc-item{opacity:1;transform:none}

.format-cards .fmt-card:nth-child(2),
.coll-grid .coll-card:nth-child(2),
.choose-grid .choose-card:nth-child(2){--d:90ms}

/* the FAQ is a longer list, so it wants a shorter step or the last row
   arrives well after the reader has got there */
.acc .acc-item:nth-child(2){--d:55ms}
.acc .acc-item:nth-child(3){--d:110ms}
.acc .acc-item:nth-child(4){--d:165ms}
.acc .acc-item:nth-child(5){--d:220ms}
.acc .acc-item:nth-child(6){--d:275ms}
.acc .acc-item:nth-child(7){--d:330ms}
.acc .acc-item:nth-child(8){--d:385ms}
.format-cards .fmt-card:nth-child(3),
.choose-grid .choose-card:nth-child(3){--d:180ms}
.choose-grid .choose-card:nth-child(4){--d:270ms}

/* steps and trust items reveal individually, so stagger by position */
.js .step:nth-child(2){transition-delay:80ms}
.js .step:nth-child(3){transition-delay:160ms}
.js .step:nth-child(4){transition-delay:240ms}

/* ---- hover responses ---- */
.fmt-card,
.coll-card,
.choose-card,
.step,
.trust-item{
  transition:transform 320ms var(--ease-out),
             box-shadow 320ms var(--ease-out),
             border-color 260ms var(--ease);
}
.fmt-card:hover,
.choose-card:hover,
.trust-item:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-lg);
  border-color:var(--border-2);
}
.coll-card:hover,
.step:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-lg);
}

/* the icon in a format card picks up the accent on hover */
.fmt-card .fc-ico{transition:background 280ms var(--ease), color 280ms var(--ease)}
.fmt-card:hover .fc-ico{background:var(--kesari);color:#2A1904}

/* the step number fills in on hover */
.step .step-no{transition:background 280ms var(--ease), color 280ms var(--ease)}
.step:hover .step-no{background:var(--kesari);color:#2A1904}

/* collection cards get a kesari edge that grows from the left */
.coll-card{position:relative;overflow:hidden}
.coll-card::before{
  content:"";position:absolute;left:0;top:0;bottom:0;width:3px;
  background:var(--kesari);
  transform:scaleY(0);transform-origin:50% 0;
  transition:transform 420ms var(--ease-out);
}
.coll-card:hover::before{transform:scaleY(1)}

/* spec table rows respond to the cursor */
.spec-table tbody tr{transition:background 200ms var(--ease)}
.spec-table tbody tr:hover{background:var(--surface-2)}

/* section headings get a short kesari rule that draws in */
.sec-kicker{position:relative;display:inline-block;padding-left:0}
.sec-head .sec-kicker::after{
  content:"";display:block;height:2px;width:34px;
  background:var(--kesari);margin-top:10px;
  transform:scaleX(0);transform-origin:0 50%;
  transition:transform 620ms var(--ease-out) 120ms;
}
.js .reveal.in .sec-kicker::after,
.js .sec-head.in .sec-kicker::after{transform:scaleX(1)}
.sec-head:not(.reveal) .sec-kicker::after{transform:scaleX(1)}

@media (prefers-reduced-motion:reduce){
  .home-intro::before,.home-process::before,.home-choosing::before,
  .home-collections::before,.home-spec::before,.home-faq::before,
  .home-process::after,.home-spec::after,.home-choosing::after{animation:none}
  .fmt-card:hover,.coll-card:hover,.choose-card:hover,
  .step:hover,.trust-item:hover{transform:none}
  .sec-head .sec-kicker::after{transform:scaleX(1)}
}

/* the marks read as clutter on a narrow screen */
@media (max-width:760px){
  .home-intro::before,.home-process::before,.home-choosing::before,
  .home-collections::before,.home-spec::before,.home-faq::before{
    opacity:.09;
  }
  .home-process::after,.home-spec::after,.home-choosing::after{display:none}
}

/* ============================================================
   SECTION ANIMATIONS
   Motion that carries real catalogue content, so the page moves
   for a reason rather than for decoration.
   ============================================================ */

/* ---- collection card: live 2x2 mosaic of that category's work ---- */
.coll-card{
  display:grid;grid-template-columns:auto 1fr;
  gap:clamp(18px,2.4vw,30px);align-items:center;
  padding:clamp(20px,2.4vw,30px);
}
.coll-body{min-width:0}

.coll-mosaic{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:6px;
  width:clamp(132px,15vw,180px);
  flex-shrink:0;
}
.cm-tile{
  display:block;overflow:hidden;
  border-radius:14px 4px 14px 4px;
  aspect-ratio:3/4;
  background:var(--surface-2);
  /* each tile breathes on its own offset, so the block never pulses as one */
  animation:tile-breathe 9s ease-in-out infinite;
  animation-delay:calc(var(--i,1) * -1.6s);
}
.cm-tile:nth-child(even){border-radius:4px 14px 4px 14px}
.cm-tile img{
  width:100%;height:100%;object-fit:cover;display:block;
  transition:transform 700ms var(--ease-out);
}
.coll-card:hover .cm-tile img{transform:scale(1.06)}

@keyframes tile-breathe{
  0%,100%{transform:translateY(0) scale(1)}
  50%    {transform:translateY(-5px) scale(1.015)}
}

.coll-link{
  display:inline-flex;align-items:center;gap:7px;
  margin-top:14px;
  font-size:.86rem;font-weight:700;color:var(--fg);
  border-bottom:1.5px solid var(--kesari);padding-bottom:2px;
  transition:gap 220ms var(--ease), color 200ms var(--ease);
}
.coll-link .ico{width:15px;height:15px}
.coll-link:hover{gap:11px;color:var(--kesari-deep)}

/* ---- spec: counters that run once on scroll ---- */
.spec-stats{
  display:grid;grid-template-columns:repeat(4,minmax(0,1fr));
  gap:clamp(12px,1.8vw,22px);
  margin-bottom:clamp(20px,2.6vw,30px);
}
.ss-item{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--r-md);
  padding:20px 18px;
  display:flex;flex-direction:column;gap:4px;
  transition:transform 320ms var(--ease-out), box-shadow 320ms var(--ease-out), border-color 260ms var(--ease);
}
.ss-item:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg);border-color:var(--border-2)}
.ss-item dt{
  font-family:'Plus Jakarta Sans',sans-serif;
  font-size:clamp(1.5rem,2.4vw,2.1rem);font-weight:800;
  line-height:1;letter-spacing:-.03em;
  font-variant-numeric:tabular-nums;
  color:var(--fg);
}
.ss-item dd{margin:0;font-size:.78rem;color:var(--fg-3);line-height:1.35}

@media (prefers-reduced-motion:reduce){
  .cm-tile{animation:none}
  .coll-card:hover .cm-tile img{transform:none}
  .ss-item:hover{transform:none}
}

@media (max-width:900px){
  .spec-stats{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width:640px){
  .coll-card{grid-template-columns:minmax(0,1fr);gap:16px}
  .coll-mosaic{width:100%;max-width:220px}
}

/* The product grid now sits between the collections and the process story.
   It needs the same alternating ground and background mark as its neighbours,
   otherwise it reads as a gap in the page rather than a section of it. */
#collection{background:var(--bg);position:relative;overflow:hidden}
#collection > .wrap{position:relative;z-index:1}
#collection::before{
  content:"";position:absolute;z-index:0;pointer-events:none;
  width:clamp(240px,28vw,420px);aspect-ratio:1;border-radius:50%;
  border:1.6px solid var(--kesari);opacity:.14;
  right:-8%;top:12%;
  animation:sec-drift-a 32s ease-in-out infinite;
}
#collection::after{
  content:"";position:absolute;z-index:0;pointer-events:none;
  width:12px;height:12px;background:var(--kesari);opacity:.3;
  transform:rotate(45deg);left:5%;bottom:18%;
  animation:sec-drift-b 24s ease-in-out infinite;
}
@media (prefers-reduced-motion:reduce){
  #collection::before,#collection::after{animation:none}
}
@media (max-width:760px){
  #collection::before{opacity:.08}
  #collection::after{display:none}
}

/* ============================================================
   SHOP ARCHIVE
   ============================================================ */
.shop-head{
  position:relative;overflow:hidden;
  background:var(--bg);
  padding:clamp(20px,3vw,34px) 0 clamp(22px,3vw,34px);
}
.shop-head::before{
  content:"";position:absolute;z-index:0;pointer-events:none;
  width:clamp(220px,26vw,400px);aspect-ratio:1;border-radius:50%;
  border:1.6px solid var(--kesari);opacity:.14;
  right:-7%;top:-40%;
  animation:sec-drift-a 30s ease-in-out infinite;
}
.shop-head > .wrap{position:relative;z-index:1}
.shop-head h1{
  font-size:clamp(1.9rem,3.8vw,2.9rem);
  letter-spacing:-.03em;line-height:1.1;margin-bottom:14px;
}
.shop-lede{
  font-size:clamp(.96rem,1.15vw,1.05rem);
  line-height:1.7;color:var(--fg-2);max-width:62ch;
}

.shop-body{background:var(--bg);padding-bottom:clamp(46px,6vw,80px)}
.shop-layout{
  display:grid;
  grid-template-columns:250px minmax(0,1fr);
  gap:clamp(24px,3.4vw,52px);
  align-items:start;
}

/* ---------- sidebar ---------- */
.shop-side{position:sticky;top:calc(var(--nav-h) + 16px)}
.side-head{display:none;align-items:center;justify-content:space-between;margin-bottom:14px}
.side-head h2{font-size:1.1rem}
.side-close{
  display:grid;place-items:center;width:44px;height:44px;border-radius:50%;
  color:var(--fg-2);
}
.side-close:hover{background:var(--surface-2);color:var(--fg)}

.side-clear{
  display:inline-block;margin-bottom:18px;
  font-size:.82rem;font-weight:700;color:var(--kesari-deep);
  border-bottom:1.5px solid var(--kesari);padding-bottom:2px;
}
.side-clear:hover{color:var(--fg)}

.side-group{margin-bottom:26px}
.side-group h3{
  font-size:.7rem;letter-spacing:.18em;text-transform:uppercase;
  font-weight:800;color:var(--fg-3);margin-bottom:11px;
}
.side-list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:2px}
.side-link{
  display:flex;align-items:center;justify-content:space-between;gap:10px;
  min-height:44px;padding:0 13px;
  border-radius:var(--r-sm);
  font-size:.92rem;font-weight:500;color:var(--fg-2);
  transition:background 190ms var(--ease), color 190ms var(--ease);
}
.side-link b{
  font-size:.76rem;font-weight:700;color:var(--fg-3);
  font-variant-numeric:tabular-nums;
}
.side-link:hover{background:var(--surface-2);color:var(--fg)}
.side-link.is-on{background:var(--fg);color:#fff;font-weight:700}
.side-link.is-on b{color:rgba(255,255,255,.7)}

.side-facts{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:11px}
.side-facts li{
  display:flex;gap:10px;align-items:flex-start;
  font-size:.85rem;line-height:1.5;color:var(--fg-2);
}
.side-facts .ico{width:16px;height:16px;color:var(--kesari-deep);flex-shrink:0;margin-top:2px}

/* ---------- results bar ---------- */
.shop-bar{
  display:flex;align-items:center;justify-content:space-between;
  gap:16px;flex-wrap:wrap;
  padding-bottom:16px;margin-bottom:22px;
  border-bottom:1px solid var(--border);
}
.shop-count{font-size:.9rem;color:var(--fg-2)}
.shop-count b{color:var(--fg);font-weight:800}
.shop-tools{display:flex;align-items:center;gap:10px}

.filter-btn{
  display:none;align-items:center;gap:8px;
  min-height:44px;padding:0 16px;
  border-radius:var(--r-pill);
  border:1.5px solid var(--border);background:var(--surface);
  font-size:.86rem;font-weight:700;color:var(--fg);
}
.filter-btn .ico{width:16px;height:16px}
.filter-btn:hover{border-color:var(--fg)}

/* Woo's ordering select */
.woocommerce-ordering select,
.shop-tools select{
  appearance:none;-webkit-appearance:none;
  min-height:44px;padding:0 40px 0 15px;
  border:1.5px solid var(--border);border-radius:var(--r-pill);
  background:var(--surface);color:var(--fg);
  font-size:.86rem;font-weight:600;cursor:pointer;
  background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111111' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right 14px center;background-size:16px;
  transition:border-color 190ms var(--ease);
}
.woocommerce-ordering select:hover{border-color:var(--fg)}
.woocommerce-ordering{margin:0}

/* active filter chips */
.shop-chips{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:20px}
.shop-chip{
  display:inline-flex;align-items:center;gap:7px;
  min-height:38px;padding:0 14px;
  border-radius:var(--r-pill);
  background:var(--kesari-wash);color:#8A4A08;
  font-size:.82rem;font-weight:700;
  transition:background 190ms var(--ease);
}
.shop-chip .ico{width:13px;height:13px}
.shop-chip:hover{background:var(--kesari);color:#2A1904}



/* ---------- empty state ---------- */
.shop-empty{
  text-align:center;padding:clamp(40px,7vw,80px) 20px;
  background:var(--surface);border-radius:var(--r-lg);
  box-shadow:var(--shadow-sm);
}
.shop-empty .ico{width:36px;height:36px;color:var(--fg-3);margin-bottom:16px}
.shop-empty h2{font-size:1.3rem;margin-bottom:10px}
.shop-empty p{color:var(--fg-2);margin-bottom:22px}

/* ---------- mobile drawer ---------- */
.shop-scrim{
  position:fixed;inset:0;z-index:900;
  background:rgba(17,17,17,.5);
  opacity:0;transition:opacity 280ms var(--ease);
}
.shop-scrim.show{opacity:1}
.shop-scrim[hidden]{display:none}

@media (max-width:1024px){
  .shop-layout{grid-template-columns:210px minmax(0,1fr);gap:26px}
}
@media (max-width:860px){
  .shop-layout{grid-template-columns:minmax(0,1fr)}
  .filter-btn{display:inline-flex}
  .side-head{display:flex}

  .shop-side{
    position:fixed;z-index:950;
    top:0;bottom:0;left:0;
    width:min(320px,86vw);
    background:var(--bg);
    padding:18px 18px calc(18px + env(safe-area-inset-bottom));
    overflow-y:auto;
    transform:translateX(-100%);
    transition:transform 340ms var(--ease-out);
    box-shadow:var(--shadow-xl);
  }
  .shop-side.open{transform:none}
}
@media (max-width:640px){
  .shop-bar{gap:12px}
  .shop-tools{width:100%;justify-content:space-between}
  .woocommerce-ordering select{width:100%}
}

/* Breadcrumb. These rules were in product.css, which only loads on a product
   page, so the shop archive rendered a default numbered list. */
.crumbs{padding:20px 0 4px}
.crumbs ol{
  display:flex;flex-wrap:wrap;align-items:center;gap:8px;
  list-style:none;margin:0;padding:0;
  font-size:.78rem;color:var(--fg-3);
}
.crumbs li{display:flex;align-items:center;gap:8px}
.crumbs li:not(:last-child)::after{
  content:"";width:4px;height:4px;border-radius:50%;background:var(--border-2);
}
.crumbs a{color:var(--fg-3);transition:color 170ms var(--ease)}
.crumbs a:hover{color:var(--fg)}
.crumbs li[aria-current]{color:var(--fg);font-weight:600}

/* ============================================================
   SHOP: background marks and entrance
   The archive was a flat ground with no motion, so it read as a
   different site from the homepage. Same vocabulary applied here:
   drifting outline shapes behind the content, and a grid that
   arrives in sequence rather than all at once.
   ============================================================ */
.shop-body{position:relative;overflow:hidden}
.shop-body > .wrap{position:relative;z-index:1}

/* large ring low on the left, behind the sidebar */
.shop-body::before{
  content:"";position:absolute;z-index:0;pointer-events:none;
  width:clamp(240px,30vw,460px);aspect-ratio:1;border-radius:50%;
  border:1.6px solid var(--fg);opacity:.07;
  left:-9%;top:22%;
  animation:sec-drift-b 34s ease-in-out infinite;
}
/* kesari stroke low on the right */
.shop-body::after{
  content:"";position:absolute;z-index:0;pointer-events:none;
  width:clamp(90px,12vw,180px);height:2px;border-radius:2px;
  background:linear-gradient(90deg,transparent,var(--kesari),transparent);
  opacity:.4;right:3%;bottom:12%;transform:rotate(-14deg);
  animation:sec-drift-a 28s ease-in-out infinite;
}

/* a second mark on the header band, opposite the existing ring */
.shop-head::after{
  content:"";position:absolute;z-index:0;pointer-events:none;
  width:12px;height:12px;background:var(--kesari);opacity:.34;
  transform:rotate(45deg);
  left:4%;bottom:22%;
  animation:sec-drift-b 24s ease-in-out infinite;
}

/* ---- grid entrance ----
   Cards fade up in sequence. The delay is capped so a full page of
   results never leaves the last row waiting on a long queue. */
.js .shop-main .card{
  opacity:0;transform:translateY(18px);
  animation:shop-in 560ms var(--ease-out) forwards;
  animation-delay:calc(var(--n,0) * 45ms);
}
@keyframes shop-in{to{opacity:1;transform:none}}

/* sidebar arrives just ahead of the grid */
.js .shop-side .side-group,
.js .shop-side .side-clear{
  opacity:0;transform:translateY(12px);
  animation:shop-in 520ms var(--ease-out) forwards;
}
.js .shop-side .side-group:nth-of-type(1){animation-delay:40ms}
.js .shop-side .side-group:nth-of-type(2){animation-delay:110ms}
.js .shop-side .side-group:nth-of-type(3){animation-delay:180ms}

/* the results bar and chips settle first */
.js .shop-bar,
.js .shop-chips{
  opacity:0;transform:translateY(10px);
  animation:shop-in 460ms var(--ease-out) forwards;
}
.js .shop-chips{animation-delay:60ms}

/* filter links get the same edge treatment as the collection cards */
.side-link{position:relative;overflow:hidden}
.side-link::before{
  content:"";position:absolute;left:0;top:0;bottom:0;width:3px;
  background:var(--kesari);
  transform:scaleY(0);transform-origin:50% 0;
  transition:transform 320ms var(--ease-out);
}
.side-link:hover::before{transform:scaleY(1)}
.side-link.is-on::before{transform:scaleY(1);background:var(--kesari)}

/* the count number counts up, like the homepage stats */
.shop-count b{display:inline-block;font-variant-numeric:tabular-nums}

@media (prefers-reduced-motion:reduce){
  .shop-body::before,.shop-body::after,.shop-head::after{animation:none}
  .js .shop-main .card,
  .js .shop-side .side-group,
  .js .shop-side .side-clear,
  .js .shop-bar,
  .js .shop-chips{
    opacity:1;transform:none;animation:none;
  }
}

@media (max-width:860px){
  /* the sidebar becomes a drawer, so its entrance would fight the slide-in */
  .js .shop-side .side-group,
  .js .shop-side .side-clear{opacity:1;transform:none;animation:none}
}
@media (max-width:760px){
  .shop-body::before{opacity:.05}
  .shop-body::after,.shop-head::after{display:none}
}

/* ============================================================
   PAGINATION
   WooCommerce prints its own markup here, so it is styled rather
   than rebuilt. Every number stays a real link, which keeps the
   deeper pages crawlable.
   ============================================================ */
.shop-pager{
  margin-top:clamp(32px,4vw,52px);
  padding-top:clamp(24px,3vw,34px);
  border-top:1px solid var(--border);
  display:flex;flex-direction:column;align-items:center;gap:14px;
}

.woocommerce-pagination{width:100%}
.woocommerce-pagination ul.page-numbers{
  list-style:none;margin:0;padding:0;
  display:flex;flex-wrap:wrap;justify-content:center;align-items:center;gap:8px;
  border:0;
}
.woocommerce-pagination ul.page-numbers li{margin:0;border:0}

.woocommerce-pagination ul.page-numbers li .page-numbers,
.woocommerce-pagination ul.page-numbers li a,
.woocommerce-pagination ul.page-numbers li span{
  display:grid;place-items:center;
  min-width:46px;width:auto;height:46px;padding:0 14px;
  box-sizing:border-box;
  border-radius:var(--r-pill);
  border:1.5px solid var(--border);
  background:var(--surface);
  color:var(--fg-2);
  font-size:.92rem;font-weight:700;
  font-variant-numeric:tabular-nums;
  transition:border-color 190ms var(--ease), color 190ms var(--ease),
             background 190ms var(--ease), transform 160ms var(--ease);
}
.woocommerce-pagination ul.page-numbers li a.page-numbers:hover{
  border-color:var(--fg);color:var(--fg);
  transform:translateY(-2px);
}
.woocommerce-pagination ul.page-numbers li span.page-numbers.current,
.woocommerce-pagination ul.page-numbers li .page-numbers.current{
  background:var(--fg);border-color:var(--fg);color:#fff;
}
.woocommerce-pagination ul.page-numbers li .page-numbers.dots{
  border-color:transparent;background:none;min-width:44px;padding:0;
}

/* prev / next carry the kesari accent so direction reads at a glance */
.woocommerce-pagination ul.page-numbers li a.prev.page-numbers,
.woocommerce-pagination ul.page-numbers li a.next.page-numbers{
  background:var(--kesari-wash);
  border-color:transparent;
  color:#8A4A08;
  font-size:1.05rem;
}
.woocommerce-pagination ul.page-numbers li a.prev.page-numbers:hover,
.woocommerce-pagination ul.page-numbers li a.next.page-numbers:hover{
  background:var(--kesari);color:#2A1904;border-color:transparent;
}

.pager-note{
  font-size:.82rem;color:var(--fg-3);
  font-variant-numeric:tabular-nums;
}

@media (prefers-reduced-motion:reduce){
  .woocommerce-pagination a.page-numbers:hover{transform:none}
}
@media (max-width:640px){
  .woocommerce-pagination ul.page-numbers li .page-numbers{min-width:44px;height:44px;padding:0 11px;font-size:.86rem}
  .woocommerce-pagination ul.page-numbers{gap:6px}
}

/* ============================================================
   SHOP: load more
   ============================================================ */
.shop-more{
  margin-top:clamp(32px,4vw,52px);
  padding-top:clamp(24px,3vw,34px);
  border-top:1px solid var(--border);
  display:flex;flex-direction:column;align-items:center;gap:16px;
}
.more-note{
  font-size:.84rem;color:var(--fg-3);
  font-variant-numeric:tabular-nums;
}
.more-btn{min-width:220px}
.more-done{font-size:.86rem;font-weight:600;color:var(--fg-2)}
.more-done[hidden],.more-btn[hidden],.more-spin[hidden]{display:none}

.more-spin{
  width:26px;height:26px;border-radius:50%;
  border:2.5px solid var(--border-2);
  border-top-color:var(--kesari);
  animation:more-spin 720ms linear infinite;
}
@keyframes more-spin{to{transform:rotate(360deg)}}

/* cards appended by the script animate in like the first page did */
.js .shop-main .grid .card{
  opacity:0;transform:translateY(18px);
  animation:shop-in 560ms var(--ease-out) forwards;
  animation-delay:calc(var(--n,0) * 45ms);
}

@media (prefers-reduced-motion:reduce){
  .more-spin{animation:none;border-top-color:var(--border-2)}
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-head{
  position:relative;overflow:hidden;
  background:var(--bg);
  padding:clamp(20px,3vw,34px) 0 clamp(36px,4.6vw,64px);
}
.about-head::before{
  content:"";position:absolute;z-index:0;pointer-events:none;
  width:clamp(240px,28vw,420px);aspect-ratio:1;border-radius:50%;
  border:1.6px solid var(--kesari);opacity:.14;
  right:-8%;top:-24%;
  animation:sec-drift-a 30s ease-in-out infinite;
}
.about-head > .wrap{position:relative;z-index:1}

.about-head-grid{
  display:grid;grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr);
  gap:clamp(28px,4vw,60px);align-items:center;
}
.about-head h1{
  font-size:clamp(2rem,4.2vw,3.2rem);
  letter-spacing:-.032em;line-height:1.08;margin-bottom:18px;
}
.about-lede{
  font-size:clamp(.98rem,1.2vw,1.08rem);
  line-height:1.72;color:var(--fg-2);max-width:56ch;
}
.about-lede + .about-lede{margin-top:14px}
.about-cta{
  display:flex;align-items:center;flex-wrap:wrap;gap:18px;
  margin-top:clamp(22px,2.8vw,32px);
}

/* wall of recent work */
.about-wall{
  display:grid;grid-template-columns:repeat(2,1fr);
  gap:clamp(8px,1vw,14px);
}
.aw-tile{
  display:block;overflow:hidden;
  border-radius:26px 6px 26px 6px;
  aspect-ratio:3/4;background:var(--surface-2);
  box-shadow:0 8px 22px rgba(17,17,17,.12);
  animation:tile-breathe 10s ease-in-out infinite;
  animation-delay:calc(var(--i,1) * -1.9s);
}
.aw-tile:nth-child(even){border-radius:6px 26px 6px 26px}
.aw-tile img{width:100%;height:100%;object-fit:contain;display:block;background:var(--surface-2)}

.about-stats{background:var(--bg-2);padding-block:clamp(30px,4vw,50px)}
.about-work{background:var(--bg)}
.about-process{background:var(--bg-2)}
.about-promise{background:var(--bg)}
.about-body{background:var(--bg-2)}

.about-work,.about-process,.about-promise{position:relative;overflow:hidden}
.about-work > .wrap,.about-process > .wrap,.about-promise > .wrap{position:relative;z-index:1}
.about-work::before,.about-promise::before{
  content:"";position:absolute;z-index:0;pointer-events:none;
  width:clamp(200px,24vw,360px);aspect-ratio:1;border-radius:50%;
  border:1.6px solid var(--fg);opacity:.07;
  left:-7%;bottom:8%;
  animation:sec-drift-b 34s ease-in-out infinite;
}
.about-process::after{
  content:"";position:absolute;z-index:0;pointer-events:none;
  width:12px;height:12px;background:var(--kesari);opacity:.34;
  transform:rotate(45deg);right:7%;top:18%;
  animation:sec-drift-b 24s ease-in-out infinite;
}

/* about uses the collection cards without a mosaic, so it needs one column */
.about-work .coll-card{grid-template-columns:minmax(0,1fr)}

.about-close{background:var(--bg-2)}
.about-close-in{text-align:center;display:flex;flex-direction:column;align-items:center;gap:14px}
.about-close-in h2{font-size:clamp(1.6rem,3vw,2.3rem);letter-spacing:-.028em}
.about-close-in p{color:var(--fg-2);max-width:48ch}
.about-close-in .btn{margin-top:8px}

@media (prefers-reduced-motion:reduce){
  .about-head::before,.about-work::before,.about-promise::before,
  .about-process::after,.aw-tile{animation:none}
}
@media (max-width:900px){
  .about-head-grid{grid-template-columns:minmax(0,1fr);gap:30px}
  .about-wall{max-width:420px;margin-inline:auto;width:100%}
}
@media (max-width:640px){
  .about-cta{flex-direction:column;align-items:stretch}
  .about-cta .btn{width:100%}
  .about-cta .hero-link{text-align:center}
  .aw-tile{border-radius:18px 5px 18px 5px}
  .aw-tile:nth-child(even){border-radius:5px 18px 5px 18px}
}

/* ============================================================
   FOOTER
   ============================================================ */
.foot-logo{
  display:inline-flex;align-items:center;gap:11px;
  margin-bottom:16px;
}
.foot-logo img{
  height:46px;width:46px;object-fit:contain;
  padding:0;background:none;border-radius:0;
  flex-shrink:0;
  /* the mark is dark ink on transparent; the footer is near-black */
  filter:invert(1) brightness(1.9);
}
.foot-name{
  font-family:'Plus Jakarta Sans',sans-serif;font-weight:800;
  font-size:1.1rem;letter-spacing:-.02em;color:#fff;
}
.foot-blurb{
  font-size:.9rem;color:rgba(255,255,255,.72);line-height:1.65;
  max-width:40ch;margin-bottom:20px;
}

/* the reassurance strip between the columns and the legal line */
.foot-strip{
  display:flex;flex-wrap:wrap;gap:clamp(14px,2.6vw,36px);
  padding-block:20px;
  border-top:1px solid rgba(255,255,255,.14);
}
.foot-strip span{
  display:inline-flex;align-items:center;gap:9px;
  font-size:.82rem;color:rgba(255,255,255,.78);
}
.foot-strip .ico{width:16px;height:16px;color:var(--kesari);flex-shrink:0}

@media (max-width:640px){
  .foot-strip{gap:12px}
  .foot-strip span{width:100%}
}

/* ============================================================
   CART DRAWER
   ============================================================ */
body.is-locked{overflow:hidden}

.cart-scrim{
  position:fixed;inset:0;z-index:960;
  background:rgba(17,17,17,.55);
  backdrop-filter:blur(3px);-webkit-backdrop-filter:blur(3px);
  opacity:0;transition:opacity 320ms var(--ease);
}
.cart-scrim.show{opacity:1}
.cart-scrim[hidden]{display:none}

.cart-drawer{
  position:fixed;z-index:970;
  top:0;right:0;bottom:0;
  width:min(430px,100%);
  max-width:100vw;
  display:flex;flex-direction:column;
  background:var(--bg);
  box-shadow:-18px 0 60px rgba(17,17,17,.22);
  transform:translateX(100%);
  transition:transform 460ms cubic-bezier(.16,1,.3,1);
}
.cart-drawer.open{transform:none}
.cart-drawer.is-busy{pointer-events:none}
.cart-drawer.is-busy .cd-items{opacity:.55;transition:opacity 160ms var(--ease)}

.cd-head{
  display:flex;align-items:center;justify-content:space-between;
  padding:20px 22px;flex-shrink:0;
  border-bottom:1px solid var(--border);
}
.cd-head h2{display:flex;align-items:center;gap:10px;font-size:1.22rem;letter-spacing:-.02em}
.cd-count{
  display:grid;place-items:center;
  min-width:24px;height:24px;padding:0 7px;
  border-radius:999px;background:var(--kesari);color:#2A1904;
  font-size:.72rem;font-weight:800;font-variant-numeric:tabular-nums;
}
.cd-count[hidden]{display:none}
.cd-close{
  display:grid;place-items:center;width:44px;height:44px;border-radius:50%;
  color:var(--fg-2);transition:background 180ms var(--ease), color 180ms var(--ease);
}
.cd-close:hover{background:var(--surface-2);color:var(--fg)}

.cd-body{flex:1;overflow-y:auto;padding:8px 22px;-webkit-overflow-scrolling:touch}

/* loading skeleton */
.cd-loading{display:flex;flex-direction:column;gap:14px;padding-top:14px}
.cd-loading[hidden]{display:none}
.cd-skel{
  display:block;height:88px;border-radius:var(--r-md);
  background:linear-gradient(90deg,var(--surface-2) 25%,var(--bg-2) 50%,var(--surface-2) 75%);
  background-size:200% 100%;
  animation:cd-shimmer 1.3s ease-in-out infinite;
}
@keyframes cd-shimmer{to{background-position:-200% 0}}

/* items */
.cd-items{list-style:none;margin:0;padding:0}
.cd-items[hidden]{display:none}
.cd-item{
  display:grid;grid-template-columns:64px 1fr auto;gap:14px;align-items:start;
  padding:16px 0;border-bottom:1px solid var(--border);
  opacity:0;transform:translateY(12px);
  animation:cd-in 420ms var(--ease-out) forwards;
  animation-delay:calc(var(--i,0) * 60ms);
}
@keyframes cd-in{to{opacity:1;transform:none}}

.cd-thumb{
  display:block;width:64px;aspect-ratio:3/4;overflow:hidden;
  border-radius:14px 4px 14px 4px;background:var(--surface-2);
}
.cd-thumb img{width:100%;height:100%;object-fit:cover;display:block}

.cd-info{display:flex;flex-direction:column;gap:4px;min-width:0}
.cd-name{
  font-family:'Plus Jakarta Sans',sans-serif;font-weight:700;
  font-size:.92rem;line-height:1.3;color:var(--fg);
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}
.cd-name:hover{color:var(--kesari-deep)}
@media (pointer:coarse){
  .cd-name{display:flex;align-items:center;min-height:44px}
}
.cd-var{font-size:.76rem;color:var(--fg-3)}

.cd-qty{
  display:inline-flex;align-items:center;gap:2px;margin-top:6px;
  border:1.5px solid var(--border);border-radius:var(--r-pill);
  padding:2px;width:fit-content;background:var(--surface);
}
.cd-qty button{
  position:relative;
  width:36px;height:36px;border-radius:50%;
  display:grid;place-items:center;
  font-size:1rem;line-height:1;color:var(--fg-2);
  transition:background 170ms var(--ease), color 170ms var(--ease);
}
/* the visible circle stays small, the thumb target does not */
.cd-qty button::before{
  content:"";position:absolute;left:50%;top:50%;
  width:44px;height:44px;transform:translate(-50%,-50%);
}
.cd-qty button:hover{background:var(--blue-wash);color:var(--fg)}
.cd-qty b{
  min-width:26px;text-align:center;
  font-size:.86rem;font-weight:800;font-variant-numeric:tabular-nums;
}

.cd-right{display:flex;flex-direction:column;align-items:flex-end;gap:8px}
.cd-right b{
  font-family:'Plus Jakarta Sans',sans-serif;font-weight:800;
  font-size:.95rem;font-variant-numeric:tabular-nums;
}
.cd-remove{
  display:inline-flex;align-items:center;
  min-height:44px;padding-inline:2px;
  font-size:.75rem;color:var(--fg-3);
  text-decoration:underline;text-underline-offset:2px;
  transition:color 170ms var(--ease);
}
.cd-remove:hover{color:var(--danger)}

/* empty */
.cd-empty{
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:10px;text-align:center;padding:56px 20px;
}
.cd-empty[hidden]{display:none}
.cd-empty .ico{width:34px;height:34px;color:var(--fg-3)}
.cd-empty b{font-size:1.02rem;font-weight:800}
.cd-empty span{font-size:.88rem;color:var(--fg-2);max-width:30ch;line-height:1.55}
.cd-empty .btn{margin-top:8px}

/* footer */
.cd-foot{
  flex-shrink:0;padding:20px 22px calc(20px + env(safe-area-inset-bottom));
  border-top:1px solid var(--border);background:var(--surface-2);
}
.cd-foot[hidden]{display:none}
.cd-row{display:flex;justify-content:space-between;align-items:baseline;margin-bottom:6px}
.cd-row span{font-size:.92rem;color:var(--fg-2)}
.cd-row b{
  font-family:'Plus Jakarta Sans',sans-serif;font-size:1.35rem;font-weight:800;
  font-variant-numeric:tabular-nums;letter-spacing:-.02em;
}
.cd-note{font-size:.78rem;color:var(--fg-3);margin-bottom:14px}
.cd-view{
  display:flex;align-items:center;justify-content:center;
  min-height:44px;margin-top:6px;
  font-size:.84rem;font-weight:600;color:var(--fg-2);
  text-decoration:underline;text-underline-offset:3px;
}
.cd-view:hover{color:var(--fg)}

/* ---------- add-to-cart animation ---------- */
.cart-fly{
  position:fixed;z-index:980;pointer-events:none;
  border-radius:12px;overflow:hidden;
  box-shadow:0 18px 44px rgba(17,17,17,.3);
}
.cart-fly[hidden]{display:none}
.cart-fly img{width:100%;height:100%;object-fit:cover;display:block}

/* the cart icon reacts when the flight lands */
.nav-cart.bump{animation:cart-bump 480ms var(--ease-out)}
@keyframes cart-bump{
  0%{transform:scale(1)}
  35%{transform:scale(1.26)}
  60%{transform:scale(.94)}
  100%{transform:scale(1)}
}

/* the button itself, while the request is in flight */
.single_add_to_cart_button{position:relative;overflow:hidden}
.single_add_to_cart_button.is-adding{color:transparent!important}
.single_add_to_cart_button.is-adding::after{
  content:"";position:absolute;left:50%;top:50%;
  width:20px;height:20px;margin:-10px 0 0 -10px;
  border:2.5px solid rgba(58,34,5,.35);
  border-top-color:#2A1904;border-radius:50%;
  animation:more-spin 640ms linear infinite;
}
.single_add_to_cart_button.is-added{
  background:var(--ok)!important;color:#fff!important;
}

@media (prefers-reduced-motion:reduce){
  .cart-drawer{transition:none}
  .cd-item{animation:none;opacity:1;transform:none}
  .cd-skel{animation:none}
  .nav-cart.bump{animation:none}
  .single_add_to_cart_button.is-adding::after{animation:none}
}

@media (max-width:520px){
  .cart-drawer{width:100vw}
  .cd-body{padding-inline:18px}
  .cd-head,.cd-foot{padding-inline:18px}
}

/* ---- product page: joins the section background system ---- */
.pdp-wrap,
.pdp-details{position:relative}

/* `overflow:hidden` here would make this the sticky gallery's scroll
   container and the gallery would stop sticking. `clip` contains the
   drifting background marks without that side effect. */
.pdp-wrap{overflow:clip}
.pdp-details{overflow:hidden}

/* detail cards animate in with the same stagger the rest of the site uses */
.js .detail-card{transition-delay:var(--d,0ms)}

/* ---- touch targets ----
   Inline text links sit in flowing copy, so they cannot simply be made 44px
   tall without pushing the lines apart. They get a transparent hit area
   instead, which leaves the text where the layout wants it. */
@media (pointer:coarse){
  .hero-link,
  .coll-link,
  .foot-legal a{position:relative}
  .hero-link::after,
  .coll-link::after,
  .foot-legal a::after{
    content:"";position:absolute;left:0;right:0;top:50%;
    height:44px;transform:translateY(-50%);
  }
  /* the brand and footer logo are links wrapping a mark plus a word */
  .brand,
  .foot-logo{min-height:44px}
  /* social icon buttons */
  .socials a{width:44px;height:44px;display:grid;place-items:center}
}

/* ============================================================
   CART + CHECKOUT (WooCommerce Blocks)
   These pages are block-rendered, not the classic shortcode forms,
   so everything is targeted through the wc-block-* class names.
   ============================================================ */

.woocommerce-cart .entry-content,
.woocommerce-checkout .entry-content,
.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout{
  max-width:var(--wrap,1180px);
  margin-inline:auto;
  padding-inline:clamp(20px,5vw,48px);
}

/* page heading, matching the rest of the site */
.woocommerce-cart .entry-title,
.woocommerce-checkout .entry-title{
  font-size:clamp(2rem,4vw,2.8rem);
  letter-spacing:-.03em;margin-bottom:6px;
}
.woocommerce-cart .entry-header,
.woocommerce-checkout .entry-header{
  padding-top:clamp(24px,4vw,44px);
  margin-bottom:clamp(20px,3vw,34px);
}

/* ---------- shared surfaces ---------- */
.wc-block-cart,
.wc-block-checkout{color:var(--fg)}

.wc-block-components-panel,
.wc-block-components-totals-wrapper,
.wc-block-cart__totals-title{font-family:'Plus Jakarta Sans',sans-serif}

/* ---------- cart items ---------- */
.wc-block-cart-items{border:0}
.wc-block-cart-items__header{
  font-size:.74rem;letter-spacing:.14em;text-transform:uppercase;
  color:var(--fg-3);border-bottom:1px solid var(--border);
}
.wc-block-cart-items__row{
  border-bottom:1px solid var(--border);
  padding-block:clamp(16px,2vw,22px);
}
.wc-block-cart-items__row .wc-block-cart-item__image img{
  width:96px;height:auto;border-radius:14px 4px 14px 4px;
  border:1px solid var(--border);
}
.wc-block-components-product-name{
  font-family:'Plus Jakarta Sans',sans-serif;font-weight:700;
  font-size:1rem;color:var(--fg);text-decoration:none;
}
.wc-block-components-product-name:hover{color:var(--kesari-deep)}
.wc-block-cart-item__product .wc-block-components-product-metadata{
  font-size:.82rem;color:var(--fg-3);
}

/* quantity stepper */
.wc-block-components-quantity-selector{
  border:1.5px solid var(--border);border-radius:var(--r-pill);
  background:var(--surface);max-width:118px;
}
.wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input{
  font-weight:800;font-variant-numeric:tabular-nums;color:var(--fg);
}
.wc-block-components-quantity-selector__button{
  color:var(--fg-2);font-size:1.05rem;min-height:40px;
  transition:background 170ms var(--ease), color 170ms var(--ease);
}
.wc-block-components-quantity-selector__button:hover{background:var(--blue-wash);color:var(--fg)}

/* prices */
.wc-block-components-product-price__value,
.wc-block-components-totals-item__value{
  font-family:'Plus Jakarta Sans',sans-serif;font-weight:800;
  font-variant-numeric:tabular-nums;color:var(--fg);
}
.wc-block-components-totals-item__label{color:var(--fg-2)}

/* the grand total line */
.wc-block-components-totals-footer-item{
  border-top:1px solid var(--border);padding-top:14px;
}
.wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.wc-block-cart__totals-footer .wc-block-components-totals-item__label{
  font-size:1.05rem;font-weight:700;color:var(--fg);
}
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value,
.wc-block-cart__totals-footer .wc-block-components-totals-item__value{
  font-size:1.5rem;letter-spacing:-.02em;
}

/* ---------- buttons: kesari, not Woo grey ---------- */
.wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button,
.wc-block-components-button:not(.is-link){
  background:var(--kesari)!important;color:#2A1904!important;
  border:0;border-radius:var(--r-pill)!important;
  font-family:'Plus Jakarta Sans',sans-serif;
  font-weight:700;font-size:.98rem;
  min-height:56px;padding-inline:28px;
  box-shadow:0 10px 26px rgba(232,135,30,.28);
  transition:transform 200ms var(--ease), box-shadow 200ms var(--ease), background 200ms var(--ease);
}
.wc-block-cart__submit-button:hover,
.wc-block-components-checkout-place-order-button:hover,
.wc-block-components-button:not(.is-link):hover{
  background:var(--kesari-deep)!important;
  transform:translateY(-2px);
  box-shadow:0 16px 34px rgba(232,135,30,.34);
}
.wc-block-components-button:not(.is-link):active{transform:translateY(0)}

/* text/link buttons stay quiet */
.wc-block-components-button.is-link{
  color:var(--fg-2);text-underline-offset:3px;
}
.wc-block-components-button.is-link:hover{color:var(--fg)}

/* ---------- form fields ---------- */
.wc-block-components-text-input input,
.wc-block-components-select select,
.wc-block-components-textarea,
.wc-block-components-combobox input{
  border:1.5px solid var(--border)!important;
  border-radius:var(--r-md)!important;
  min-height:54px;
  font-family:'Plus Jakarta Sans',sans-serif;font-size:.95rem;
  background:var(--surface);color:var(--fg);
  transition:border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}
.wc-block-components-text-input input:focus,
.wc-block-components-select select:focus,
.wc-block-components-combobox input:focus{
  border-color:var(--kesari)!important;
  box-shadow:0 0 0 4px rgba(232,135,30,.14)!important;
  outline:none;
}
.wc-block-components-text-input label,
.wc-block-components-select label{color:var(--fg-3)}

/* ---------- panels and the order summary card ---------- */
.wc-block-components-panel{
  border:1px solid var(--border);border-radius:var(--r-md);
  padding:4px 16px;background:var(--surface);
}
.wc-block-components-order-summary,
.wc-block-components-sidebar .wc-block-components-panel{
  background:var(--surface-2);
}
.wc-block-components-order-summary-item__image img{
  border-radius:10px 3px 10px 3px;border:1px solid var(--border);
}

/* section headings inside checkout */
.wc-block-components-checkout-step__title,
.wc-block-components-title{
  font-family:'Plus Jakarta Sans',sans-serif;
  font-weight:700;letter-spacing:-.02em;color:var(--fg);
}
.wc-block-components-checkout-step__description{color:var(--fg-2)}

/* ---------- notices ---------- */
.wc-block-components-notice-banner{
  border-radius:var(--r-md);border-width:1.5px;
  font-size:.9rem;
}

/* ---------- empty cart ---------- */
.wp-block-woocommerce-empty-cart-block{
  text-align:center;padding-block:clamp(30px,5vw,60px);
}

/* ---------- desktop: give checkout two columns ---------- */
@media (min-width:900px){
  .wc-block-checkout__main{padding-right:clamp(24px,3vw,48px)}
  .wc-block-checkout__sidebar{
    position:sticky;top:calc(var(--nav-h) + 20px);
    align-self:start;
  }
  /* the cart totals sit beside the items rather than under them */
  .wc-block-cart .wc-block-cart__sidebar{
    position:sticky;top:calc(var(--nav-h) + 20px);align-self:start;
  }
}

@media (prefers-reduced-motion:reduce){
  .wc-block-cart__submit-button,
  .wc-block-components-checkout-place-order-button,
  .wc-block-components-button:not(.is-link){transition:none}
  .wc-block-cart__submit-button:hover,
  .wc-block-components-checkout-place-order-button:hover,
  .wc-block-components-button:not(.is-link):hover{transform:none}
}

/* ---- single page template ----
   Ordinary pages keep a narrow prose measure; cart and checkout carry
   .page-wide because Woo lays them out in two columns and they need the
   full site width. (This used to be an inline max-width in page.php, which
   no stylesheet could override.) */
.page-single .page-shell{max-width:760px}
.page-single.page-wide .page-shell{max-width:var(--wrap,1180px)}

.page-head{margin-bottom:28px}
.page-head h1{font-size:clamp(1.9rem,3.6vw,2.8rem);letter-spacing:-.025em}
.page-single .entry-content{font-size:1rem;line-height:1.75;color:var(--fg-2)}

/* Woo's sidebar layout needs to actually be a two-column grid on desktop.
   Left as-is it stacked, so the totals sat under the items in a narrow column. */
@media (min-width:900px){
  .wc-block-components-sidebar-layout{
    display:flex;
    flex-wrap:wrap;
    align-items:flex-start;
    gap:clamp(28px,4vw,56px);
  }
  .wc-block-components-main{
    flex:1 1 0;min-width:0;
  }
  .wc-block-components-sidebar{
    flex:0 0 clamp(360px,34%,440px);
    min-width:0;
    background:var(--surface-2);
    border:1px solid var(--border);
    border-radius:var(--r-lg);
    padding:clamp(20px,2.4vw,28px);
  }
  /* anything else Woo drops in here (notices) spans the full row */
  .wc-block-components-sidebar-layout > .wc-block-components-notices{
    flex:1 0 100%;
  }
}

/* the cart's own totals card on smaller screens */
@media (max-width:899px){
  .wc-block-components-sidebar{
    background:var(--surface-2);
    border:1px solid var(--border);
    border-radius:var(--r-lg);
    padding:20px;margin-top:24px;
  }
}

/* ---- checkout summary card ----
   The sidebar is already a card, so the order-summary panel inside it must not
   draw a second border. The item row also needs the name to have room instead
   of wrapping one word per line. */
.wc-block-components-sidebar .wc-block-components-panel,
.wc-block-components-sidebar .wc-block-components-order-summary{
  border:0;background:transparent;padding-inline:0;
}
.wc-block-components-sidebar .wc-block-components-totals-wrapper{
  border-top:1px solid var(--border);
}

.wc-block-components-order-summary-item{
  display:grid;
  grid-template-columns:56px minmax(0,1fr) auto;
  gap:12px;align-items:start;
}
.wc-block-components-order-summary-item__image{width:56px}
.wc-block-components-order-summary-item__description{min-width:0}
.wc-block-components-order-summary-item__description .wc-block-components-product-name{
  font-size:.9rem;line-height:1.35;display:block;
}
.wc-block-components-order-summary-item__total-price{
  white-space:nowrap;font-weight:800;font-variant-numeric:tabular-nums;
}

/* the payment-unavailable notice reads as an error; keep it legible */
.wc-block-components-notice-banner.is-error{
  background:#FDF2F2;border-color:#E6B4B4;color:#7A2E2E;
}

/* ---- cart + checkout touch targets ---- */
.wc-block-components-quantity-selector__button{min-height:44px;min-width:44px}
.wc-block-cart-item__remove-link{
  display:inline-flex;align-items:center;min-height:44px;
}
.wc-block-cart-item__product .wc-block-components-product-name{
  display:inline-flex;align-items:center;min-height:44px;
}
.wc-block-components-checkbox__input[type="checkbox"]{
  width:22px;height:22px;
}
/* Woo's stacked layout on small screens: make sure the sidebar comes last */
@media (max-width:899px){
  .wc-block-components-sidebar-layout{display:block}
}

/* The order-note checkbox is a real tap target and was 20px. The visible box
   stays small; a transparent hit area gives the thumb 44px. */
.wc-block-components-checkbox__input[type="checkbox"]{position:relative}
.wc-block-components-checkbox__input[type="checkbox"]::before{
  content:"";position:absolute;left:50%;top:50%;
  width:44px;height:44px;transform:translate(-50%,-50%);
}

/* ---- one order summary, not two ----
   Woo renders the summary twice: once as a step in the main column (which it
   shows on small screens) and once in the sidebar (its desktop position).
   Styling the sidebar as a card made both visible on mobile, so each breakpoint
   now shows exactly one. */
@media (max-width:899px){
  .wc-block-components-sidebar .wp-block-woocommerce-checkout-order-summary-block{
    display:none;
  }
  .wc-block-components-sidebar:empty{display:none}
}
@media (min-width:900px){
  .wc-block-components-main .wp-block-woocommerce-checkout-order-summary-block{
    display:none;
  }
}

/* the order-summary item had ~150px for the name, which wrapped it one word
   per line; the sidebar is the card, so the inner panel gives its width back */
.wc-block-components-sidebar .wc-block-components-order-summary__content{padding:0}
.wc-block-components-order-summary-item{grid-template-columns:52px minmax(0,1fr) auto}
.wc-block-components-order-summary-item__image{width:52px}

/* the touch-target rule on product names used inline-flex, which shrink-wraps.
   In the order summary the name must take the whole column instead. */
.wc-block-components-order-summary-item .wc-block-components-product-name{
  display:block;width:100%;min-height:0;
}
.wc-block-components-order-summary-item__description{width:100%}

/* Woo lays the summary row out with flex and wraps it in a display:table
   element, which shrink-to-fit at 270px inside a 330px sidebar and left the
   product name ~117px wide. Force the wrapper to fill and let the description
   column take the remaining space. */
.wc-block-components-sidebar .wc-block-components-order-summary__content{
  display:block;width:100%;
}
.wc-block-components-order-summary-item{
  display:flex;align-items:flex-start;gap:12px;width:100%;
}
.wc-block-components-order-summary-item__image{flex:0 0 52px}
.wc-block-components-order-summary-item__description{
  flex:1 1 auto;min-width:0;display:block;
}
.wc-block-components-order-summary-item__total-price{flex:0 0 auto;margin-left:auto}

/* the description column is a flex row in Woo's CSS, so the name and the
   metadata sat side by side and each got half. Stack them instead. */
.wc-block-components-order-summary-item__description{
  display:flex;flex-direction:column;align-items:flex-start;gap:2px;
}
.wc-block-components-order-summary-item__description .wc-block-components-product-name{
  width:100%;
}

/* Two measured causes of the cramped summary row: the product name carries
   max-width:max-content, and the description column carries a 24px left pad. */
.wc-block-components-order-summary .wc-block-components-order-summary-item__description{
  padding-left:0;padding-right:0;
  flex:1 1 auto;min-width:0;width:auto;
}
.wc-block-components-order-summary-item .wc-block-components-product-name{
  max-width:none;
}

/* the sidebar is already the card, so the summary block inside it must not
   draw a second border and rounded corner */
.wc-block-components-sidebar .wp-block-woocommerce-checkout-order-summary-block{
  border:0;border-radius:0;background:transparent;
}

/* archive and search heading, matching the page template's scale */
.page-head-title{font-size:clamp(1.75rem,3.4vw,2.6rem);letter-spacing:-.025em}

/* ---- prose pages (policies, and anything written in the editor) ----
   Editor content arrives as bare h2/p, so the rhythm has to come from here.
   Headings need more space above than below so each section reads as a unit
   rather than the heading floating between two paragraphs. */
.page-single .entry-content > h2{
  font-size:clamp(1.15rem,1.9vw,1.4rem);
  line-height:1.3;letter-spacing:-.015em;color:var(--fg);
  margin-top:2.1em;margin-bottom:.55em;
}
.page-single .entry-content > h2:first-child{margin-top:0}
.page-single .entry-content > h3{
  font-size:1.02rem;color:var(--fg);
  margin-top:1.6em;margin-bottom:.4em;
}
.page-single .entry-content > p{margin-bottom:1.05em}
.page-single .entry-content > p:last-child{margin-bottom:0}
.page-single .entry-content strong{color:var(--fg);font-weight:700}
.page-single .entry-content a{
  color:var(--kesari-deep);
  text-decoration:underline;text-underline-offset:2px;
}
.page-single .entry-content a:hover{color:var(--fg)}
.page-single .entry-content ul,
.page-single .entry-content ol{margin:0 0 1.05em 1.2em}
.page-single .entry-content li{margin-bottom:.4em}

/* ============================================================
   MY ACCOUNT
   Two states: the signed-out auth screen, and the signed-in
   dashboard. Both use the theme's own tokens and curved-card
   language rather than WooCommerce defaults.
   ============================================================ */

/* Account pages are an application layout, not prose. The reading measure the
   policy pages rely on was capping this at 772px and squeezing both columns. */
.woocommerce-account .page-single .page-shell{max-width:var(--wrap,1180px)}
.woocommerce-account .page-single .entry-content,
.woocommerce-account .page-single .entry-content.prose{max-width:none}
.woocommerce-account .page-head{display:none}

/* Woo wraps everything in .woocommerce; clear its inherited spacing */
.woocommerce-account .woocommerce{max-width:none}

/* ---------- signed out: split screen ---------- */
.acct-auth{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(380px,.95fr);
  gap:clamp(32px,5vw,72px);
  align-items:start;
  padding-block:clamp(8px,2vw,24px);
}

.auth-aside{position:relative}
.auth-aside h2{
  font-size:clamp(1.7rem,3.2vw,2.4rem);
  letter-spacing:-.03em;line-height:1.12;
  margin:8px 0 14px;
}
.auth-lede{
  font-size:1.02rem;line-height:1.7;color:var(--fg-2);
  max-width:46ch;margin-bottom:26px;
}

.auth-points{list-style:none;margin:0 0 30px;padding:0;display:flex;flex-direction:column;gap:13px}
.auth-points li{
  display:flex;align-items:center;gap:12px;
  font-size:.94rem;color:var(--fg);
}
.auth-points .ico{
  width:20px;height:20px;flex:0 0 auto;color:var(--kesari-deep);
}

/* a live wall of real work, mirroring the About page treatment */
.auth-wall{
  display:grid;grid-template-columns:repeat(4,1fr);gap:10px;
  margin-bottom:24px;
}
.auth-wall .aw-tile{
  display:block;overflow:hidden;background:var(--surface-2);
  border-radius:20px 5px 20px 5px;
  opacity:0;transform:translateY(14px);
  animation:aw-in 560ms var(--ease-out) forwards;
  animation-delay:calc(var(--i,1) * 80ms);
}
.auth-wall .aw-tile:nth-child(even){border-radius:5px 20px 5px 20px}
.auth-wall .aw-tile img{
  width:100%;height:100%;aspect-ratio:3/4;object-fit:cover;display:block;
  transition:transform 620ms var(--ease);
}
.auth-wall .aw-tile:hover img{transform:scale(1.05)}
@keyframes aw-in{to{opacity:1;transform:none}}

.auth-note{font-size:.88rem;color:var(--fg-3)}
.auth-note a{
  color:var(--kesari-deep);text-decoration:underline;text-underline-offset:3px;
}
.auth-note a:hover{color:var(--fg)}

/* ---------- the form card ---------- */
.auth-forms{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--r-lg);
  padding:clamp(22px,3vw,34px);
  box-shadow:0 18px 50px rgba(17,17,17,.07);
  position:sticky;top:calc(var(--nav-h) + 20px);
}

.auth-tabs{
  display:grid;grid-template-columns:1fr 1fr;gap:4px;
  background:var(--surface-2);
  border-radius:var(--r-pill);
  padding:4px;margin-bottom:26px;
}
.auth-tab{
  min-height:44px;border-radius:var(--r-pill);
  font-family:'Plus Jakarta Sans',sans-serif;
  font-size:.9rem;font-weight:700;color:var(--fg-2);
  transition:background 200ms var(--ease), color 200ms var(--ease), box-shadow 200ms var(--ease);
}
.auth-tab:hover{color:var(--fg)}
.auth-tab.is-on{
  background:var(--surface);color:var(--fg);
  box-shadow:0 2px 8px rgba(17,17,17,.08);
}

.auth-panel[hidden]{display:none}
.auth-panel{
  animation:auth-in 320ms var(--ease-out);
}
@keyframes auth-in{from{opacity:0;transform:translateY(6px)}to{opacity:1;transform:none}}

.auth-title{
  font-size:1.3rem;letter-spacing:-.02em;margin-bottom:20px;
}

.auth-form{margin:0}
.auth-field{display:block;margin-bottom:16px}
.auth-field label{
  display:block;margin-bottom:7px;
  font-size:.78rem;font-weight:700;letter-spacing:.06em;
  text-transform:uppercase;color:var(--fg-3);
}
.auth-field input[type="text"],
.auth-field input[type="email"],
.auth-field input[type="password"]{
  width:100%;min-height:54px;
  padding:0 16px;
  border:1.5px solid var(--border);
  border-radius:var(--r-md);
  background:var(--bg);color:var(--fg);
  font-family:'Plus Jakarta Sans',sans-serif;font-size:.98rem;
  transition:border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}
.auth-field input:focus{
  outline:none;border-color:var(--kesari);
  box-shadow:0 0 0 4px rgba(232,135,30,.14);
}
.auth-field input::placeholder{color:var(--fg-3)}

.auth-hint{
  display:block;margin-top:7px;
  font-size:.78rem;color:var(--fg-3);line-height:1.5;
}
.auth-hint-block{
  padding:12px 14px;background:var(--blue-soft);
  border-radius:var(--r-md);margin-bottom:16px;
}

.auth-row{
  display:flex;align-items:center;justify-content:space-between;
  gap:14px;flex-wrap:wrap;margin:4px 0 22px;
}
.auth-check{
  display:inline-flex;align-items:center;gap:9px;
  min-height:44px;cursor:pointer;
  font-size:.88rem;color:var(--fg-2);
}
.auth-check input[type="checkbox"]{
  width:19px;height:19px;accent-color:var(--kesari);cursor:pointer;
}
.auth-forgot{
  display:inline-flex;align-items:center;min-height:44px;
  font-size:.86rem;color:var(--fg-2);
  text-decoration:underline;text-underline-offset:3px;
}
.auth-forgot:hover{color:var(--kesari-deep)}

.auth-legal{
  margin-top:16px;font-size:.78rem;color:var(--fg-3);line-height:1.6;
}
.auth-legal a{color:var(--fg-2);text-decoration:underline;text-underline-offset:2px}
.auth-legal a:hover{color:var(--kesari-deep)}

/* Woo prints its own notices above the form */
.woocommerce-account .woocommerce-notices-wrapper .woocommerce-error,
.woocommerce-account .woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-account .woocommerce-notices-wrapper .woocommerce-info{
  border-radius:var(--r-md);
  border-left:3px solid var(--kesari);
  background:var(--surface-2);
  font-size:.92rem;
}

/* ============================================================
   SIGNED IN
   ============================================================ */
.acct-shell{padding-block:clamp(8px,2vw,20px)}

.acct-head{margin-bottom:clamp(22px,3vw,34px)}
.acct-head h1{
  font-size:clamp(1.9rem,3.6vw,2.7rem);
  letter-spacing:-.03em;line-height:1.1;margin:6px 0 4px;
}
.acct-sub{font-size:.92rem;color:var(--fg-3)}

.acct-layout{
  display:grid;
  grid-template-columns:minmax(0,232px) minmax(0,1fr);
  gap:clamp(24px,3.4vw,48px);
  align-items:start;
}

/* ---------- navigation ---------- */
.acct-nav ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:3px}
.acct-nav a{
  display:flex;align-items:center;gap:11px;
  min-height:46px;padding:0 14px;
  border-radius:var(--r-md);
  font-size:.92rem;font-weight:600;color:var(--fg-2);
  transition:background 180ms var(--ease), color 180ms var(--ease);
}
.acct-nav .ico{width:18px;height:18px;flex:0 0 auto;opacity:.75}
.acct-nav a:hover{background:var(--surface-2);color:var(--fg)}
.acct-nav a:hover .ico{opacity:1}
.acct-nav li.is-active > a,
.acct-nav a[aria-current="page"]{
  background:var(--fg);color:var(--bg);
}
.acct-nav li.is-active > a .ico,
.acct-nav a[aria-current="page"] .ico{opacity:1;color:var(--kesari)}

/* logout sits apart from the destinations */
.acct-nav li.is-logout{margin-top:8px;padding-top:8px;border-top:1px solid var(--border)}
.acct-nav li.is-logout a{color:var(--fg-3)}
.acct-nav li.is-logout a:hover{color:var(--danger);background:transparent}
.acct-nav li.is-logout .ico{transform:rotate(0)}

/* ---------- dashboard ---------- */
.dash-hello h2{font-size:1.45rem;letter-spacing:-.02em;margin-bottom:4px}
.dash-hello p{font-size:.94rem;color:var(--fg-2);margin-bottom:22px}

/* the one order that is actually moving */
.dash-live{
  display:flex;align-items:center;gap:16px;flex-wrap:wrap;
  padding:18px 20px;margin-bottom:22px;
  background:var(--blue-soft);
  border:1px solid var(--border);
  border-radius:var(--r-lg);
}
.dash-live-pip{
  width:10px;height:10px;border-radius:50%;
  background:var(--kesari);flex:0 0 auto;
  box-shadow:0 0 0 0 rgba(232,135,30,.55);
  animation:live-pulse 2.4s ease-out infinite;
}
@keyframes live-pulse{
  0%  {box-shadow:0 0 0 0 rgba(232,135,30,.5)}
  70% {box-shadow:0 0 0 12px rgba(232,135,30,0)}
  100%{box-shadow:0 0 0 0 rgba(232,135,30,0)}
}
.dash-live-body{display:flex;flex-direction:column;gap:2px;min-width:0;flex:1 1 220px}
.dash-live-label{
  font-size:.7rem;font-weight:800;letter-spacing:.12em;
  text-transform:uppercase;color:var(--kesari-deep);
}
.dash-live-body b{font-size:1rem;letter-spacing:-.01em}
.dash-live-meta{font-size:.82rem;color:var(--fg-3)}

/* at a glance */
.dash-stats{
  display:grid;grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;margin-bottom:26px;
}
.ds-item{
  padding:18px 20px;
  background:var(--surface-2);
  border:1px solid var(--border);
  border-radius:var(--r-md);
}
.ds-item dt{
  font-family:'Plus Jakarta Sans',sans-serif;
  font-size:1.5rem;font-weight:800;letter-spacing:-.025em;
  color:var(--fg);margin-bottom:3px;
  font-variant-numeric:tabular-nums;
}
.ds-item dt .woocommerce-Price-amount{font-size:inherit;font-weight:inherit}
.ds-item dd{margin:0;font-size:.8rem;color:var(--fg-3)}

/* blocks */
.dash-block{margin-bottom:26px}
.dash-block-head{
  display:flex;align-items:baseline;justify-content:space-between;
  gap:16px;margin-bottom:14px;
}
.dash-block-head h3{font-size:1.06rem;letter-spacing:-.015em}
.dash-more{
  font-size:.84rem;font-weight:600;color:var(--fg-2);
  text-decoration:underline;text-underline-offset:3px;
  display:inline-flex;align-items:center;min-height:44px;
}
.dash-more:hover{color:var(--kesari-deep)}

.dash-orders{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:2px}
.dash-order{
  display:grid;grid-template-columns:56px minmax(0,1fr) auto;
  gap:14px;align-items:center;
  padding:14px;border-radius:var(--r-md);
  transition:background 180ms var(--ease);
}
.dash-order:hover{background:var(--surface-2)}
.do-thumb{
  display:block;width:56px;overflow:hidden;
  border-radius:14px 4px 14px 4px;background:var(--surface-2);
}
.do-thumb img{width:100%;aspect-ratio:3/4;object-fit:cover;display:block}
.do-body{display:flex;flex-direction:column;gap:3px;min-width:0}
.do-body b{
  font-size:.94rem;line-height:1.3;
  display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical;overflow:hidden;
}
.do-meta{font-size:.8rem;color:var(--fg-3)}
.do-right{display:flex;align-items:center;gap:14px;flex:0 0 auto}
.do-status{
  padding:5px 11px;border-radius:var(--r-pill);
  font-size:.72rem;font-weight:700;letter-spacing:.02em;
  background:var(--surface-2);color:var(--fg-2);
  white-space:nowrap;
}
.do-status.status-processing{background:rgba(232,135,30,.14);color:var(--kesari-deep)}
.do-status.status-completed {background:rgba(31,138,79,.12);color:var(--ok)}
.do-status.status-cancelled,
.do-status.status-failed    {background:rgba(190,60,60,.10);color:var(--danger)}
.do-link{
  font-size:.84rem;font-weight:600;color:var(--fg-2);
  text-decoration:underline;text-underline-offset:3px;
  display:inline-flex;align-items:center;min-height:44px;
}
.do-link:hover{color:var(--kesari-deep)}

/* empty state */
.dash-empty{
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:9px;text-align:center;padding:44px 20px;
  background:var(--surface-2);border-radius:var(--r-lg);
}
.dash-empty .ico{width:30px;height:30px;color:var(--fg-3)}
.dash-empty b{font-size:1rem}
.dash-empty span{font-size:.88rem;color:var(--fg-2);max-width:36ch;line-height:1.6}
.dash-empty .btn{margin-top:8px}

/* detail cards */
.dash-cols{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:14px;
}
.dash-card{
  padding:20px;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--r-lg);
  display:flex;flex-direction:column;
}
.dash-card h3{font-size:.95rem;letter-spacing:-.01em;margin-bottom:10px}
.dash-card address{
  font-style:normal;font-size:.9rem;line-height:1.65;color:var(--fg-2);
  margin-bottom:12px;
}
.dash-muted{font-size:.88rem;color:var(--fg-2);line-height:1.6;margin-bottom:6px}
.dash-card .dash-more{margin-top:auto;align-self:flex-start}

/* ---------- Woo's own account tables and forms ---------- */
.acct-content .woocommerce-orders-table,
.acct-content table.shop_table{
  width:100%;border-collapse:collapse;border:0;
  font-size:.92rem;
}
.acct-content table.shop_table th{
  text-align:left;padding:0 12px 12px 0;
  font-size:.72rem;letter-spacing:.12em;text-transform:uppercase;
  color:var(--fg-3);font-weight:700;
  border-bottom:1px solid var(--border);
}
.acct-content table.shop_table td{
  padding:16px 12px 16px 0;
  border-bottom:1px solid var(--border);
  color:var(--fg-2);
}
.acct-content table.shop_table td a{color:var(--fg);font-weight:600}
.acct-content table.shop_table td a:hover{color:var(--kesari-deep)}

.acct-content .woocommerce-Address{
  padding:20px;background:var(--surface-2);
  border-radius:var(--r-lg);margin-bottom:16px;
}
.acct-content .woocommerce-Address-title h2,
.acct-content h2,
.acct-content h3{font-size:1.05rem;letter-spacing:-.015em;margin-bottom:12px}
.acct-content address{font-style:normal;line-height:1.7;color:var(--fg-2)}

/* edit-account / edit-address forms */
.acct-content .woocommerce-form-row,
.acct-content .form-row{display:block;margin-bottom:16px;padding:0}
.acct-content .form-row label{
  display:block;margin-bottom:7px;
  font-size:.78rem;font-weight:700;letter-spacing:.06em;
  text-transform:uppercase;color:var(--fg-3);
}
.acct-content .form-row input[type="text"],
.acct-content .form-row input[type="email"],
.acct-content .form-row input[type="tel"],
.acct-content .form-row input[type="password"],
.acct-content .form-row select,
.acct-content .select2-selection{
  width:100%;min-height:54px;padding:0 16px;
  border:1.5px solid var(--border);border-radius:var(--r-md);
  background:var(--bg);color:var(--fg);
  font-family:'Plus Jakarta Sans',sans-serif;font-size:.98rem;
}
.acct-content .form-row input:focus,
.acct-content .form-row select:focus{
  outline:none;border-color:var(--kesari);
  box-shadow:0 0 0 4px rgba(232,135,30,.14);
}
.acct-content fieldset{
  border:1px solid var(--border);border-radius:var(--r-lg);
  padding:20px;margin:22px 0;
}
.acct-content fieldset legend{
  padding:0 8px;font-size:.9rem;font-weight:700;color:var(--fg);
}

/* Woo's buttons inside the account area */
.acct-content .woocommerce-Button,
.acct-content button.button,
.acct-content a.button{
  display:inline-flex;align-items:center;gap:8px;
  min-height:52px;padding:0 24px;
  border:0;border-radius:var(--r-pill);
  background:var(--kesari);color:#2A1904;
  font-family:'Plus Jakarta Sans',sans-serif;
  font-weight:700;font-size:.94rem;
  box-shadow:0 10px 24px rgba(232,135,30,.26);
  transition:transform 200ms var(--ease), box-shadow 200ms var(--ease), background 200ms var(--ease);
}
.acct-content .woocommerce-Button:hover,
.acct-content button.button:hover,
.acct-content a.button:hover{
  background:var(--kesari-deep);transform:translateY(-2px);
  box-shadow:0 16px 32px rgba(232,135,30,.32);
}

/* ---------- responsive ---------- */
@media (max-width:1000px){
  .acct-auth{grid-template-columns:1fr;gap:32px}
  .auth-forms{position:static;order:-1}
  .auth-wall{grid-template-columns:repeat(4,1fr)}
}

@media (max-width:860px){
  .acct-layout{grid-template-columns:1fr;gap:20px}

  /* the nav becomes a scrolling row so it does not push content down */
  .acct-nav ul{
    flex-direction:row;overflow-x:auto;gap:6px;
    padding-bottom:6px;
    scrollbar-width:none;-ms-overflow-style:none;
  }
  .acct-nav ul::-webkit-scrollbar{display:none}
  .acct-nav li{flex:0 0 auto}
  .acct-nav li.is-logout{
    margin-top:0;padding-top:0;border-top:0;
    border-left:1px solid var(--border);padding-left:6px;margin-left:2px;
  }
  .acct-nav a{
    white-space:nowrap;
    border:1px solid var(--border);
    padding-inline:15px;
  }
  .acct-nav li.is-active > a,
  .acct-nav a[aria-current="page"]{border-color:var(--fg)}

  .dash-stats{grid-template-columns:1fr;gap:10px}
  .ds-item{display:flex;align-items:baseline;justify-content:space-between;gap:14px}
  .ds-item dt{margin-bottom:0}
}

@media (max-width:560px){
  .auth-wall{grid-template-columns:repeat(2,1fr)}
  .dash-order{grid-template-columns:48px minmax(0,1fr);row-gap:10px}
  .do-thumb{width:48px}
  .do-right{grid-column:1 / -1;justify-content:space-between}
  .dash-live{flex-direction:column;align-items:flex-start}
  .dash-live .btn{width:100%;justify-content:center}
}

@media (prefers-reduced-motion:reduce){
  .auth-wall .aw-tile{animation:none;opacity:1;transform:none}
  .auth-panel{animation:none}
  .dash-live-pip{animation:none}
  .acct-content .woocommerce-Button:hover,
  .acct-content button.button:hover,
  .acct-content a.button:hover{transform:none}
}

/* ---- account: beat WooCommerce's own button and form styling ----
   woocommerce.css styles its buttons through a :where(body:not(...)) selector
   that outranks a plain .btn-primary, so the theme's buttons inside the
   account area were rendering in Woo's grey. Matching that specificity is the
   only way to win without !important on every property. */
.woocommerce-account .woocommerce .btn-primary,
.woocommerce-account .woocommerce button.btn-primary,
.woocommerce-account .woocommerce .woocommerce-form-login__submit,
.woocommerce-account .woocommerce .woocommerce-form-register__submit{
  background:var(--kesari);
  color:#2A1904;
  border:0;
  border-radius:var(--r-pill);
  box-shadow:0 10px 26px rgba(232,135,30,.28);
}
.woocommerce-account .woocommerce .btn-primary:hover,
.woocommerce-account .woocommerce button.btn-primary:hover,
.woocommerce-account .woocommerce .woocommerce-form-login__submit:hover,
.woocommerce-account .woocommerce .woocommerce-form-register__submit:hover{
  background:var(--kesari-deep);
  color:#2A1904;
}

/* Woo draws a border and padding around .woocommerce-form; the card around it
   already provides both, so the inner box was a frame inside a frame. */
.woocommerce-account .woocommerce form.auth-form,
.woocommerce-account .woocommerce .woocommerce-form.auth-form{
  border:0;padding:0;margin:0;border-radius:0;background:transparent;
}

/* the artwork wall was rendering at thumbnail scale */
.auth-wall{gap:12px;margin-bottom:26px}
.auth-wall .aw-tile{border-radius:24px 6px 24px 6px}
.auth-wall .aw-tile:nth-child(even){border-radius:6px 24px 6px 24px}

/* ---- readable floor for small text ----
   Several labels had shrunk below 10px through stacked relative sizing, which
   is under the point where most people can read a tracked uppercase label.
   These raise the floor without changing the visual hierarchy. */
.card-cat{font-size:.72rem}
.bc-price{font-size:.8rem}
.card-price small{font-size:.76rem}
.sec-kicker{font-size:.74rem}
.pdp-cat{font-size:.74rem}
.pdp-info table.variations th label{font-size:.76rem}

/* empty archive / no search results */
.empty-state{
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:12px;text-align:center;padding:clamp(40px,7vw,80px) 20px;
  background:var(--surface-2);border-radius:var(--r-lg);
}
.empty-state .ico{width:32px;height:32px;color:var(--fg-3)}
.empty-state p{font-size:.95rem;color:var(--fg-2);max-width:44ch;line-height:1.65;margin:0}
.empty-state .btn{margin-top:6px}

.archive-pagination{margin-top:40px}
.err-title{font-size:clamp(1.9rem,4vw,3rem);letter-spacing:-.03em;margin-bottom:16px}

/* single-column account screens (lost password, reset) */
.acct-narrow{max-width:480px;margin-inline:auto;padding-block:clamp(8px,2vw,24px)}
.acct-narrow .auth-forms{position:static}
.auth-sub{font-size:.92rem;color:var(--fg-2);line-height:1.6;margin:-8px 0 22px}
.auth-back{margin-top:16px;text-align:center;font-size:.86rem}
.auth-back a{
  color:var(--fg-2);text-decoration:underline;text-underline-offset:3px;
  display:inline-flex;align-items:center;min-height:44px;
}
.auth-back a:hover{color:var(--kesari-deep)}

/* the reset form's own button must beat Woo's grey too */
.woocommerce-account .woocommerce .lost_reset_password .woocommerce-Button,
.woocommerce-account .woocommerce .lost_reset_password button.button{
  background:var(--kesari);color:#2A1904;border:0;
  border-radius:var(--r-pill);
  box-shadow:0 10px 26px rgba(232,135,30,.28);
  width:100%;justify-content:center;
}
.woocommerce-account .woocommerce .lost_reset_password .woocommerce-Button:hover{
  background:var(--kesari-deep);color:#2A1904;
}

/* ---- account polish ----
   Woo's stylesheet underlines account nav links, which made a styled sidebar
   read like a raw list. And the content column was left-hugging on wide
   screens, so it gets a comfortable measure instead of a 400px gutter. */
.woocommerce-account .woocommerce .acct-nav a,
.acct-nav a{text-decoration:none}

.acct-layout{grid-template-columns:minmax(0,236px) minmax(0,1fr)}
.acct-content{max-width:760px}

/* the dashboard cards should fill the column rather than wrapping short */
.dash-cols{grid-template-columns:repeat(auto-fit,minmax(236px,1fr))}

/* status pill contrast */
.do-status.status-on-hold{background:rgba(120,110,90,.14);color:#6B5B3E}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-head{padding:clamp(20px,3vw,40px) 0 0}
.contact-head-in h1{
  font-size:clamp(2rem,4.2vw,3rem);letter-spacing:-.03em;
  line-height:1.08;margin:8px 0 14px;
}
.contact-lede{
  font-size:1.05rem;line-height:1.7;color:var(--fg-2);max-width:58ch;
}

.contact-grid{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(248px,1fr));
  gap:14px;margin-bottom:clamp(40px,6vw,76px);
}
.contact-card{
  display:flex;flex-direction:column;gap:6px;
  padding:24px;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:34px 8px 34px 8px;
  transition:transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
  transition-delay:var(--d,0ms);
}
.contact-card:nth-child(even){border-radius:8px 34px 8px 34px}
a.contact-card:hover{
  transform:translateY(-3px);
  border-color:var(--kesari);
  box-shadow:0 18px 40px rgba(17,17,17,.10);
}
.cc-icon{
  display:grid;place-items:center;
  width:44px;height:44px;border-radius:50%;
  background:var(--blue-soft);margin-bottom:6px;
}
.cc-icon .ico{width:20px;height:20px;color:var(--kesari-deep)}
.contact-card h2{font-size:.98rem;letter-spacing:-.01em;margin:0}
.cc-value{
  font-family:'Plus Jakarta Sans',sans-serif;
  font-weight:700;font-size:1rem;color:var(--fg);
  font-style:normal;line-height:1.45;word-break:break-word;
}
a.cc-tel{
  display:inline-flex;align-items:center;min-height:40px;
  text-decoration:underline;text-underline-offset:3px;
}
a.cc-tel:hover{color:var(--kesari-deep)}
.cc-note{font-size:.84rem;color:var(--fg-3);line-height:1.55;margin-top:4px}

/* the pre-emptive answers */
.contact-faq .sec-head{margin-bottom:22px}
.cf-grid{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:22px 34px;
}
.cf-item h3{font-size:1rem;letter-spacing:-.01em;margin-bottom:7px}
.cf-item p{font-size:.93rem;line-height:1.7;color:var(--fg-2)}
.cf-item a{
  color:var(--kesari-deep);
  text-decoration:underline;text-underline-offset:3px;
  white-space:nowrap;
}
.cf-item a:hover{color:var(--fg)}

.contact-extra{margin-top:clamp(30px,4vw,54px)}

/* product page: attribution line under the buy panel */
.pdp-by{
  font-size:.86rem;color:var(--fg-3);line-height:1.6;
  margin-top:14px;
}
.pdp-by a{
  color:var(--fg-2);text-decoration:underline;text-underline-offset:3px;
}
.pdp-by a:hover{color:var(--kesari-deep)}

/* inline links inside prose copy */
.prose-link{
  color:inherit;text-decoration:underline;text-underline-offset:3px;
  text-decoration-color:var(--kesari);
}
.prose-link:hover{color:var(--kesari-deep)}

.detail-note a{
  color:var(--kesari-deep);text-decoration:underline;text-underline-offset:3px;
}
.detail-note a:hover{color:var(--fg)}

@media (prefers-reduced-motion:reduce){
  a.contact-card:hover{transform:none}
}

/* ---- currency switcher ---- */
.cur-switch{
  display:inline-flex;align-items:center;gap:2px;
  background:var(--surface-2);
  border-radius:var(--r-pill);
  padding:3px;flex:0 0 auto;
}
.cur-opt{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:34px;padding:0 11px;
  border-radius:var(--r-pill);
  font-size:.76rem;font-weight:700;color:var(--fg-3);
  white-space:nowrap;letter-spacing:.01em;
  transition:background 180ms var(--ease), color 180ms var(--ease);
}
.cur-opt:hover{color:var(--fg)}
.cur-opt.is-on{background:var(--fg);color:var(--bg)}

/* the touch target stays 44px without making the pill bulky */
@media (pointer:coarse){
  .cur-opt{position:relative}
  .cur-opt::after{
    content:'';position:absolute;left:0;right:0;top:50%;
    height:44px;transform:translateY(-50%);
  }
}

/* conversion note on cart and checkout */
.fx-note{
  font-size:.82rem;line-height:1.6;color:var(--fg-3);
  background:var(--surface-2);
  border-left:3px solid var(--kesari);
  border-radius:var(--r-md);
  padding:12px 15px;margin-bottom:20px;
  max-width:62ch;
}

@media (max-width:900px){
  .cur-switch{display:none}
}
