/* ===================================================================
   Kairali Heritage Shop, dark luxury stylesheet
   Pages live on near-black; products live on ivory cards.
   Like End. Clothing × SSENSE × Net-a-Porter, with Indian-arts warmth.
   =================================================================== */

:root {
  /* Kairali Artisan Store, premium cultural commerce palette */
  --bg:           #0F0B08;       /* deep charcoal brown, page bg */
  --surface:      #1A120D;       /* dark roasted brown, section alt */
  --surface-2:    #221812;       /* card surface on dark */
  --card:         #F6EFE3;       /* ivory, product surface */
  --card-tint:    #EDE3D2;
  --card-deep:    #2A1E16;
  --ink:          #F8F1E7;       /* text primary */
  --ink-dim:      #BFAF9D;       /* text secondary */
  --ink-faint:    #6B5E50;
  --ink-card:     #1A120D;
  --ink-card-dim: #6B5E50;
  --gold:         #C89B3C;       /* antique gold */
  --gold-bright:  #E2C16B;       /* soft gold */
  --gold-dark:    #8E6A20;
  --sandalwood:   #D8B98A;       /* sandalwood beige */
  --maroon:       #7A1E1E;       /* muted maroon */
  --maroon-deep:  #4F1313;
  --bronze:       #8B6914;       /* antique bronze accent */
  --emerald:      #1E6048;
  --accent:       #B72C2C;
  --border:       rgba(226,193,107,0.25);
  --border-card:  rgba(20,17,11,.08);
  --glass:        rgba(15,11,8,0.72);
  --card-translucent: rgba(255,255,255,0.045);
  --shadow-1:     0 4px 14px rgba(0,0,0,.45);
  --shadow-2:     0 16px 36px rgba(0,0,0,.55);
  --shadow-3:     0 30px 60px rgba(0,0,0,.70);
  --font-sans:    'Manrope', 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif:   'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-italic:  'Cormorant Garamond', Georgia, serif;
}

/* ============ GLOBAL RESETS (mobile-first) ============
   - box-sizing: every element treats border+padding as part of its width.
   - overflow-x: hidden, kill horizontal scroll on phones from any rogue child.
   - Fluid images/video, never overflow their container.
   - min-width: 0 on flex children, lets long content shrink instead of pushing the row.
   - word-break + hyphens, prevent long words/URLs from breaking layout. */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { overflow-x: hidden; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg); color: var(--ink); font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased; line-height: 1.55;
  overflow-x: hidden;
  max-width: 100vw;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
a { color: inherit; text-decoration: none; transition: color .25s; }
img, video, picture, svg { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; max-width: 100%; }
input, select, textarea { font-family: inherit; max-width: 100%; }
table { max-width: 100%; }
/* Flex/grid children should be allowed to shrink, without this they can force a row wider than the viewport */
:where(.flex, [class*=" flex"], .product-card, .tile, .cat-pill, .product-grid > *, .tiles > *) { min-width: 0; }
::selection { background: var(--gold); color: var(--bg); }

/* ============ KAIRALI BRAND RIBBON (shared across the ecosystem) ============
   Same content + logo as kairaliartscentre.com. Theme tokens
   (--brand-bg, --brand-text, --brand-accent) are overridden per page.
*/
.kairali-ribbon {
  --brand-bg:     #050505;
  --brand-text:   #F8F1E7;
  --brand-muted:  #A09484;
  --brand-accent: var(--gold-bright);
  background: var(--brand-bg);
  color: var(--brand-text);
  border-bottom: 1px solid rgba(226,193,107,.18);
  position: relative; z-index: 60;
}
.kairali-ribbon-inner {
  max-width: 1320px; margin: 0 auto; padding: 8px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  min-height: 48px;
}
.kairali-ribbon-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; transition: transform .4s var(--ease-soft); }
.kairali-ribbon-logo:hover { transform: scale(1.02); }
.kairali-ribbon-logo img {
  height: 30px; width: auto; max-width: 160px; object-fit: contain;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,.45));
  display: block;
}
/* Store endorsement lockup beside the academy logo (SHOP-3) */
.ribbon-endorse { display: flex; flex-direction: column; line-height: 1.15; padding-left: 10px; border-left: 1px solid rgba(226,193,107,.28); }
.ribbon-endorse b { font-family: var(--font-serif, serif); font-style: italic; font-weight: 600; font-size: 13px; color: var(--gold, #E2C16B); letter-spacing: .02em; white-space: nowrap; }
.ribbon-endorse i { font-style: normal; font-size: 9px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--brand-text, #F8F1E7); opacity: .7; white-space: nowrap; }
@media (max-width: 1100px) { .ribbon-endorse { display: none; } }
.kairali-ribbon-nav { display: flex; align-items: center; gap: 30px; flex: 1; justify-content: center; }
.kairali-ribbon-nav a {
  font-family: var(--font-sans); font-size: 12px; font-weight: 500;
  letter-spacing: .04em; color: var(--brand-muted);
  position: relative; padding: 4px 0;
  transition: color .4s var(--ease-soft);
}
.kairali-ribbon-nav a:hover, .kairali-ribbon-nav a.is-active {
  color: var(--brand-text);
}
.kairali-ribbon-nav a::after {
  content: ""; position: absolute; left: 50%; bottom: -2px; width: 0; height: 1px;
  background: var(--brand-accent); transform: translateX(-50%);
  transition: width .5s var(--ease-out-quart);
}
.kairali-ribbon-nav a:hover::after, .kairali-ribbon-nav a.is-active::after { width: 100%; }

/* ----- Desktop dropdown / mega-menu (Apple/Stripe-style) ----- */
.kairali-ribbon-nav .nav-item { position: relative; display: inline-flex; align-items: center; }
.kairali-ribbon-nav .nav-trigger { display: inline-flex; align-items: center; gap: 5px; }
.kairali-ribbon-nav .dd-caret { width: 10px; height: 10px; opacity: .65; transition: transform .35s var(--ease-soft); }
.kairali-ribbon-nav .nav-item:hover .dd-caret,
.kairali-ribbon-nav .nav-item:focus-within .dd-caret { transform: rotate(180deg); }
.nav-dd {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 234px; margin-top: 14px; padding: 10px;
  background: #0B0A08;
  border: 1px solid rgba(226,193,107,.20);
  border-radius: 14px;
  box-shadow: 0 28px 64px -22px rgba(0,0,0,.85);
  display: grid; gap: 2px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .3s var(--ease-soft), transform .3s var(--ease-soft), visibility .3s;
  z-index: 80;
}
.nav-dd-wide { min-width: 304px; }
/* invisible hover-bridge so the menu does not close while the cursor travels down */
.nav-dd::before { content: ""; position: absolute; left: 0; right: 0; top: -16px; height: 18px; }
.kairali-ribbon-nav .nav-item:hover .nav-dd,
.kairali-ribbon-nav .nav-item:focus-within .nav-dd {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dd a {
  display: block; padding: 9px 14px; border-radius: 9px;
  color: var(--brand-muted); white-space: nowrap;
  transition: background .25s var(--ease-soft), color .25s var(--ease-soft);
}
.nav-dd a::after { display: none; }
.nav-dd a:hover { background: rgba(226,193,107,.10); color: var(--brand-text); }
.nav-dd a b { display: block; font-size: 12.5px; font-weight: 600; letter-spacing: .01em; color: var(--brand-text); }
.nav-dd a span { display: block; font-size: 10.5px; font-weight: 400; color: var(--brand-muted); margin-top: 2px; }

.kairali-ribbon-utility { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.kairali-ribbon-utility a {
  width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(226,193,107,.30);
  color: var(--brand-accent);
  transition: background .35s var(--ease-soft), color .35s var(--ease-soft), border-color .35s var(--ease-soft);
  flex-shrink: 0;
}
.kairali-ribbon-utility a:hover { background: var(--brand-accent); color: var(--brand-bg); border-color: var(--brand-accent); }
.kairali-ribbon-utility a.wa { color: #25D366; border-color: rgba(37,211,102,.4); }
.kairali-ribbon-utility a.wa:hover { background: #25D366; color: #fff; border-color: #25D366; }
.kairali-ribbon-utility a.map { color: #EF4444; border-color: rgba(239,68,68,.4); }
.kairali-ribbon-utility a.map:hover { background: #EF4444; color: #fff; border-color: #EF4444; }
.kairali-ribbon-utility a svg { width: 12px; height: 12px; }
.kairali-ribbon-utility .ribbon-cta {
  width: auto; padding: 0 14px; height: 28px; border-radius: 999px;
  font-family: var(--font-sans); font-size: 9px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  background: var(--brand-accent); color: var(--brand-bg);
  border: 1px solid var(--brand-accent);
}
.kairali-ribbon-utility .ribbon-cta:hover { background: transparent; color: var(--brand-accent); }

/* ----- Mobile-first ribbon: collapse to logo + AED/EUR + WA + cart + burger ----- */
.kairali-ribbon-burger { display: none; }
@media (max-width: 1000px) {
  .kairali-ribbon-nav { display: none; }
  .kairali-ribbon-utility .ribbon-cta,
  .kairali-ribbon-utility a.map { display: none; }
  .kairali-ribbon-burger {
    display: grid; place-items: center; width: 28px; height: 28px;
    border-radius: 50%; border: 1px solid rgba(226,193,107,.30);
    color: var(--brand-accent); background: transparent;
    transition: background .35s var(--ease-soft); flex-shrink: 0;
  }
  .kairali-ribbon-burger:hover { background: rgba(226,193,107,.12); }
  .kairali-ribbon-burger svg { width: 14px; height: 14px; }
}
@media (max-width: 600px) {
  /* Hide the call-icon pill on phones (it's in the burger drawer); the WhatsApp button stays */
  .kairali-ribbon-utility a[href^="tel:"] { display: none; }
}
@media (max-width: 540px) {
  .kairali-ribbon-inner { padding: 6px 12px; min-height: 42px; gap: 8px; }
  .kairali-ribbon-logo img { height: 26px; max-width: 130px; }
  .kairali-ribbon-utility { gap: 6px; }
  .kairali-ribbon-utility a, .kairali-ribbon-burger { width: 26px; height: 26px; }
  .kairali-ribbon-utility a svg { width: 11px; height: 11px; }
}
@media (max-width: 380px) {
  /* Tiny phones: hide the region pill from the ribbon, it's still available via the burger drawer */
  .kairali-ribbon-utility > span:first-child { display: none; }
  .kairali-ribbon-inner { padding: 6px 10px; }
}

/* Mobile ribbon-drawer that the burger reveals, single, grouped, scrollable nav */
.kairali-ribbon-drawer {
  position: fixed; inset: 0; z-index: 1210; /* above the shared shell header (1000) */
  background: #050505; color: var(--brand-text);
  display: none; opacity: 0; pointer-events: none;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  transition: opacity .35s var(--ease-soft);
}
.kairali-ribbon-drawer.open { display: block; opacity: 1; pointer-events: auto; }
.kairali-ribbon-drawer .drawer-scroll {
  max-width: 460px; margin: 0 auto;
  padding: 86px 32px 56px;
  display: flex; flex-direction: column; gap: 4px;
}
.kairali-ribbon-drawer .drawer-group {
  display: flex; flex-direction: column; gap: 2px;
  padding: 14px 0; margin: 2px 0;
  border-top: 1px solid rgba(226,193,107,.12);
}
.kairali-ribbon-drawer .drawer-h {
  font-family: var(--font-sans); font-size: 10px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--brand-accent); margin-bottom: 10px;
}
.kairali-ribbon-drawer .drawer-group a {
  font-family: var(--font-serif); font-size: 18px; color: var(--brand-text);
  padding: 6px 0; transition: color .3s var(--ease-soft);
}
.kairali-ribbon-drawer a.drawer-top {
  font-family: var(--font-serif); font-size: 21px; color: var(--brand-text);
  letter-spacing: .02em; padding: 10px 0;
  transition: color .3s var(--ease-soft);
}
.kairali-ribbon-drawer a:hover { color: var(--brand-accent); }
.kairali-ribbon-drawer .drawer-region { display: flex; gap: 10px; margin-top: 24px; }
.kairali-ribbon-drawer .drawer-region button {
  padding: 9px 16px; border: 1px solid var(--brand-accent); border-radius: 999px;
  background: transparent; color: var(--brand-text);
  font-size: 11px; letter-spacing: .16em; font-weight: 700; cursor: pointer;
}
.kairali-ribbon-drawer .close-x {
  position: fixed; top: 22px; right: 22px;
  font-size: 30px; line-height: 1; color: var(--brand-accent);
  background: none; border: none; cursor: pointer; z-index: 2;
}

/* ============ ANNOUNCEMENT BAR (mobile-first fluid) ============ */
.announcement {
  background: #050506; color: var(--gold-bright);
  font-family: var(--font-sans); font-weight:600;
  font-size: clamp(9px, 1.4vw, 10px);
  letter-spacing: clamp(.12em, .8vw, .32em);
  text-transform: uppercase;
  text-align: center;
  padding: clamp(8px, 1.4vw, 10px) clamp(12px, 3vw, 16px);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}
.announcement::-webkit-scrollbar { display: none; }
@media (max-width: 600px) {
  .announcement { white-space: normal; line-height: 1.6; }
}
.announcement b { color: var(--ink); font-weight: 600; }
.announcement a { transition: color .35s var(--ease-soft); }
.announcement a:hover { color: var(--gold-bright) !important; }

/* ============ REGION PILL (AED / EUR toggle in ribbon) ============ */
.region-pill { transition: background .35s var(--ease-soft), color .35s var(--ease-soft); }
.region-pill.on { background: rgba(226,193,107,.22) !important; color: #E2C16B !important; }
.region-pill:hover { color: #F8F1E7 !important; }

/* ============ ACOUSTIC PANELS, EDUCATION / BUYING GUIDE / FAQ ============ */
.sp-edu .sp-lead { margin-bottom: clamp(40px, 6vw, 64px); }
.sp-edu .eyebrow { font-family: var(--font-sans); font-size: 10px; font-weight: 600; letter-spacing: .36em; text-transform: uppercase; display: block; margin-bottom: 8px; }
.sp-edu .sp-doband {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 3vw, 32px);
  margin-bottom: clamp(48px, 7vw, 72px);
}
.sp-edu .sp-do, .sp-edu .sp-dont {
  background: rgba(15,11,8,.45);
  border: 1px solid var(--border); border-radius: 14px;
  padding: clamp(20px, 3vw, 28px);
}
.sp-edu .sp-tag {
  display: inline-block; padding: 4px 10px; border-radius: 999px;
  font-family: var(--font-sans); font-size: 9px; letter-spacing: .22em;
  text-transform: uppercase; font-weight: 700; margin-bottom: 16px;
}
.sp-edu .sp-tag-yes { background: rgba(34,197,94,.18); color: #4ADE80; border: 1px solid rgba(74,222,128,.3); }
.sp-edu .sp-tag-no  { background: rgba(239,68,68,.16); color: #F87171; border: 1px solid rgba(248,113,113,.3); }
.sp-edu .sp-do ul, .sp-edu .sp-dont ul { list-style: none; padding: 0; }
.sp-edu .sp-do li, .sp-edu .sp-dont li {
  font-size: 14px; color: var(--ink-dim); line-height: 1.7; padding: 6px 0 6px 22px; position: relative;
}
.sp-edu .sp-do li::before  { content: "✓"; position: absolute; left: 0; color: #4ADE80; font-weight: 700; }
.sp-edu .sp-dont li::before { content: "✕"; position: absolute; left: 0; color: #F87171; font-weight: 700; }

.sp-edu .sp-science { text-align: center; margin-bottom: clamp(48px, 7vw, 72px); }
.sp-edu .sp-science .gold-rule { margin-bottom: 22px; }

.sp-edu .sp-placement {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(20px, 4vw, 60px);
  align-items: center; margin-bottom: clamp(48px, 7vw, 72px);
}
.sp-edu .sp-steps { list-style: none; counter-reset: spstep; padding: 0; }
.sp-edu .sp-steps li {
  counter-increment: spstep; padding: 10px 0 10px 38px; position: relative;
  font-size: 14px; color: var(--ink-dim); line-height: 1.65;
  border-bottom: 1px solid var(--border);
}
.sp-edu .sp-steps li:last-child { border-bottom: 0; }
.sp-edu .sp-steps li::before {
  content: counter(spstep);
  position: absolute; left: 0; top: 11px;
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid var(--gold-dark); color: var(--gold-bright);
  font-family: var(--font-sans); font-size: 11px; font-weight: 700;
  display: grid; place-items: center;
}
.sp-edu .sp-steps li b { color: var(--ink); font-weight: 600; }
.sp-edu .sp-room-diagram { background: rgba(15,11,8,.35); border: 1px solid var(--border); border-radius: 14px; padding: clamp(18px, 3vw, 28px); display: flex; align-items: center; justify-content: center; }

.sp-edu .sp-packs { margin-bottom: clamp(48px, 7vw, 72px); }
.sp-edu .sp-packs .gold-rule { margin-bottom: 28px; }
.sp-edu .sp-packs-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: clamp(12px, 2vw, 18px);
}
.sp-edu .sp-pack {
  background: rgba(15,11,8,.45); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px;
  display: flex; flex-direction: column; gap: 6px;
  transition: border-color .4s var(--ease-soft), transform .4s var(--ease-soft);
}
.sp-edu .sp-pack:hover { border-color: var(--gold-dark); transform: translateY(-2px); }
.sp-edu .sp-pack b:first-child {
  font-family: var(--font-serif); font-size: 17px; color: var(--ink); font-weight: 500;
  letter-spacing: .005em; margin-bottom: 6px;
}
.sp-edu .sp-pack .starter { font-size: 12px; color: var(--gold-bright); font-weight: 500; letter-spacing: .04em; }
.sp-edu .sp-pack .better  { font-size: 12px; color: var(--ink-faint); font-weight: 400; letter-spacing: .04em; }
.sp-edu .sp-pack .starter b, .sp-edu .sp-pack .better b { color: var(--ink); font-weight: 600; }

.sp-edu .sp-cta {
  display: grid; grid-template-columns: 1.4fr auto; gap: clamp(18px, 3vw, 32px);
  align-items: center; padding: clamp(24px, 4vw, 36px);
  background: linear-gradient(120deg, rgba(122,30,30,.15), rgba(226,193,107,.10));
  border: 1px solid rgba(226,193,107,.28); border-radius: 16px;
}
@media (max-width: 760px) {
  .sp-edu .sp-doband, .sp-edu .sp-placement, .sp-edu .sp-cta { grid-template-columns: 1fr; }
  .sp-edu .sp-room-diagram { order: 2; }
}

/* FAQ details/summary, clean disclosure pattern */
.sp-faq details {
  border-top: 1px solid var(--border);
  padding: clamp(18px, 2.4vw, 24px) 0;
}
.sp-faq details:last-of-type { border-bottom: 1px solid var(--border); }
.sp-faq summary {
  cursor: pointer; list-style: none;
  font-family: var(--font-serif); font-size: clamp(17px, 2vw, 22px);
  color: var(--ink); font-weight: 500; line-height: 1.3;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  transition: color .35s var(--ease-soft);
}
.sp-faq summary::-webkit-details-marker { display: none; }
.sp-faq summary::after {
  content: "+"; font-family: var(--font-sans); font-size: 22px; color: var(--gold-bright);
  font-weight: 300; transition: transform .4s var(--ease-out-quart);
}
.sp-faq details[open] summary::after { transform: rotate(45deg); }
.sp-faq details[open] summary { color: var(--gold-bright); }
.sp-faq details p {
  font-size: 14px; color: var(--ink-dim); line-height: 1.75; font-weight: 300;
  margin-top: 12px; max-width: 760px;
}

/* ============ CREDIT BAND (under the home tiles grid) ============ */
.credit-band {
  margin: 56px auto 0; max-width: 1240px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  padding: 28px 24px;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, transparent, rgba(226,193,107,.04), transparent);
}
.credit-band .cb-item {
  display: grid; grid-template-columns: 28px 1fr; gap: 6px 14px;
  align-items: start;
}
.credit-band .cb-item svg { grid-row: span 2; width: 22px; height: 22px; color: var(--gold-bright); margin-top: 4px; }
.credit-band .cb-item b { font-family: var(--font-serif); font-size: 16px; font-weight: 600; color: var(--ink); display: block; }
.credit-band .cb-item span { font-size: 12px; color: var(--ink-dim); line-height: 1.5; display: block; font-weight: 300; }
@media (max-width: 820px) { .credit-band { grid-template-columns: 1fr; gap: 18px; } }

/* ============ ONAM SALE BAND (regional, sits below the announcement) ============ */
.onam-band {
  background: linear-gradient(90deg, rgba(122,30,30,.18), rgba(226,193,107,.12), rgba(122,30,30,.18));
  border-bottom: 1px solid rgba(226,193,107,.18);
  text-align: center; padding: 12px 18px;
  font-family: var(--font-sans); font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-bright); font-weight: 600;
}
.onam-band b { color: #F8F1E7; font-weight: 700; }
.onam-band .ona-price {
  display: inline-block; padding: 2px 10px; margin: 0 6px;
  border: 1px solid var(--gold-dark); border-radius: 999px;
  font-family: var(--font-serif); font-style: italic; font-size: 13px; letter-spacing: 0;
  color: var(--ink); text-transform: none;
}
@media (max-width: 600px) {
  .onam-band { font-size: 10px; letter-spacing: .14em; padding: 10px 14px; }
  .onam-band .ona-price { font-size: 12px; padding: 1px 8px; }
}

/* Quiet service disclosure near the footer, keeps commercial details away from the hero. */
.service-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(246,239,227,.035), rgba(15,11,8,.92));
  padding: clamp(22px, 4vw, 34px) clamp(16px, 4vw, 28px);
}
.service-strip-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 4vw, 48px);
}
.service-strip-inner > div {
  min-width: 0;
}
.service-strip span {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.service-strip b {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.8vw, 22px);
  line-height: 1.25;
  font-weight: 500;
  color: var(--ink);
}
@media (max-width: 760px) {
  .service-strip-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* ============ HEADER ============ */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,10,11,.92); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1320px; margin: 0 auto; padding: 18px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold-bright), var(--gold-dark));
  display: grid; place-items: center;
  color: #0A0A0B; font-family: var(--font-display); font-weight: 700; font-size: 14px;
  box-shadow: 0 4px 18px rgba(212,175,122,.35), inset 0 0 0 1px rgba(255,255,255,.1);
  transition: box-shadow .5s var(--ease-soft), transform .5s var(--ease-soft);
}
.brand:hover .brand-mark {
  box-shadow: 0 6px 22px rgba(212,175,122,.55), inset 0 0 0 1px rgba(255,255,255,.18);
  transform: scale(1.04);
}
.brand-text { line-height: 1.1; }
.brand-text small { display: block; font-family: var(--font-display); letter-spacing: .25em; font-size: 11px; color: var(--ink); font-weight: 600; }
.brand-text em { display: block; font-family: var(--font-serif); font-style: italic; font-size: 12px; color: var(--gold); letter-spacing: .15em; }

.nav-main { display: flex; gap: 28px; }
.nav-main a {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase; font-weight: 600;
  color: var(--ink-dim); position: relative; padding: 6px 0;
  transition: color .4s var(--ease-soft);
}
.nav-main a::after {
  content:""; position: absolute; left: 50%; bottom: 0; width: 0; height: 1px;
  background: var(--gold); transition: width .5s var(--ease-out-quart);
  transform: translateX(-50%);
}
.nav-main a:hover { color: var(--gold-bright); }
.nav-main a:hover::after, .nav-main a.active::after { width: 100%; }
.nav-main a.active { color: var(--gold-bright); }

.utility { display: flex; align-items: center; gap: 14px; }
.icon-btn { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; color: var(--ink); position: relative; transition: background .4s var(--ease-soft), color .4s var(--ease-soft), transform .4s var(--ease-out-quart); }
.icon-btn:hover { background: rgba(212,175,122,.14); color: var(--gold-bright); transform: translateY(-1px); }
.icon-btn:active { transform: translateY(0); }
.icon-btn svg { width: 19px; height: 19px; }
.badge {
  position: absolute; top: 2px; right: 0; min-width: 18px; height: 18px;
  background: var(--gold); color: var(--bg); border-radius: 999px;
  font-size: 10px; font-weight: 700; display: none; align-items: center; justify-content: center; padding: 0 5px;
  font-family: var(--font-sans);
}
.menu-toggle { display: none; }
@media (max-width: 1000px) {
  .nav-main { display: none; }
  .menu-toggle { display: grid; }
  .header-inner { padding: 14px 18px; }
}

/* ============ MOBILE MENU ============ */
.mobile-menu {
  position: fixed; inset: 0; z-index: 1210; /* above the shared shell header (1000) */
  background: #050506; color: var(--ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px;
  transform: translateY(-100%); transition: transform .35s;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { font-family: var(--font-serif); font-size: 22px; color: var(--ink); }
.mobile-menu a:hover { color: var(--gold-bright); }
.mobile-menu .close-x { position: absolute; top: 24px; right: 24px; color: var(--gold); font-size: 28px; }

/* ============ CATEGORY QUICK STRIP (Amazon-style nav) ============ */
/* Cat-strip: fluid padding; horizontal scroll on phones so all 7 pills stay reachable without 4-col cramping */
.cat-strip {
  background: var(--surface); border-bottom: 1px solid var(--border);
  padding: clamp(12px, 2.4vw, 18px) clamp(12px, 3vw, 28px);
}
.cat-strip-inner {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(10px, 1.6vw, 18px);
}
.cat-strip-inner.cat-strip-8 { grid-template-columns: repeat(7, 1fr); gap: clamp(10px, 1.4vw, 14px); }
@media (max-width: 1100px) {
  .cat-strip-inner.cat-strip-8 { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 760px) {
  /* On tablets/phones, switch to horizontal scroll-snap row so 7 pills always show, no overflow */
  .cat-strip-inner.cat-strip-8 {
    display: flex; grid-template-columns: none; overflow-x: auto;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 4px;
    scrollbar-width: none;
  }
  .cat-strip-inner.cat-strip-8::-webkit-scrollbar { display: none; }
  .cat-strip-inner.cat-strip-8 .cat-pill {
    flex: 0 0 calc((100vw - 64px) / 3.4); /* show ~3 1/3 pills at a time on a phone */
    scroll-snap-align: start;
  }
}
.cat-pill {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 14px 8px; border-radius: 14px; transition: background .25s, transform .25s;
  color: var(--ink-dim);
}
.cat-pill:hover { background: var(--surface-2); color: var(--gold-bright); transform: translateY(-2px); }
.cat-pill .cat-img {
  width: 72px; height: 72px; border-radius: 50%; overflow: hidden;
  border: 1.5px solid var(--gold-dark);
  background: var(--card);
  display: grid; place-items: center;
  transition: border-color .25s;
}
.cat-pill:hover .cat-img { border-color: var(--gold-bright); }
.cat-pill .cat-img img { width: 100%; height: 100%; object-fit: cover; }
.cat-pill span { font-family: var(--font-sans); font-weight:600; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; text-align: center; font-weight: 600; line-height: 1.3; }
@media (max-width: 900px) {
  .cat-strip-inner { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 540px) {
  .cat-strip { padding: 14px 12px; }
  .cat-pill .cat-img { width: 60px; height: 60px; }
  .cat-strip-inner { gap: 10px; }
}

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 86vh; padding: 80px 28px 80px;
  background: var(--bg);
  color: var(--ink); overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(800px 600px at 90% 20%, rgba(212,175,122,.18), transparent 60%),
    radial-gradient(700px 500px at 10% 80%, rgba(139,30,30,.22), transparent 60%);
  pointer-events: none;
}
.hero-wrap { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.05fr; gap: 70px; align-items: center; position: relative; z-index: 2; }
.eyebrow { font-family: var(--font-sans); font-weight:600; font-size: 11px; letter-spacing: .4em; text-transform: uppercase; color: var(--gold); display: inline-block; margin-bottom: 22px; font-weight: 600; }
.h1 { font-family: var(--font-serif); font-size: clamp(40px, 5.8vw, 80px); line-height: 1.02; font-weight: 700; margin-bottom: 28px; letter-spacing: -.012em; color: var(--ink); }
.h1 em { font-style: italic; color: var(--gold-bright); }
.hero-lead { font-size: 17px; color: var(--ink-dim); max-width: 540px; margin-bottom: 38px; font-weight: 300; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn { display: inline-flex; align-items: center; gap: 10px; padding: 15px 32px; border-radius: 999px; font-weight: 700; font-size: 11px; letter-spacing: .26em; text-transform: uppercase; transition: transform .4s var(--ease-out-quart), box-shadow .4s var(--ease-soft), background .4s var(--ease-soft), color .4s var(--ease-soft), border-color .4s var(--ease-soft); position: relative; overflow: hidden; }
.btn::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.18), transparent);
  transform: translateX(-100%); transition: transform .8s var(--ease-out-quart);
}
.btn:hover::after { transform: translateX(100%); }
.btn-gold { background: var(--gold); color: #0A0A0B; box-shadow: 0 12px 32px rgba(212,175,122,.30); }
.btn-gold:hover { transform: translateY(-2px); background: var(--gold-bright); box-shadow: 0 18px 40px rgba(212,175,122,.45); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid rgba(245,241,232,.30); }
.btn-ghost:hover { background: rgba(245,241,232,.05); border-color: var(--gold); color: var(--gold-bright); }
.btn-maroon { background: var(--maroon); color: var(--ink); }
.btn-maroon:hover { background: #A52525; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--gold); border: 1px solid var(--gold-dark); }
.btn-outline:hover { background: var(--gold); color: var(--bg); }

.hero-img-big {
  position: relative; aspect-ratio: 4/5; border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow-3); border: 1px solid var(--border);
}
.hero-img-big img {
  animation: kenBurnsSubtle 22s ease-in-out infinite;
}
/* Soft gold vignette around hero image for mood */
.hero-img-big::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 80px rgba(15,11,8,.4), inset 0 0 0 1px rgba(226,193,107,.08);
  border-radius: 18px;
}
/* Landscape variant, wide artisan photography banner.
   Simple: a 4:5 portrait container that fills with object-fit:cover.
   No rotation tricks, the image fills the frame cleanly regardless of orientation. */
.hero-img-big.hero-img-landscape {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
}
.hero-img-big.hero-img-landscape img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transform: scale(1.02);
  transition: transform 1.4s var(--ease-soft);
}
.hero-img-big.hero-img-landscape:hover img { transform: scale(1.06); }
.hero-img-big img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s ease; }
.hero-img-big:hover img { transform: scale(1.03); }
.hero-img-big::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,11,.30) 100%);
  pointer-events: none;
}
.hero-credit {
  position: absolute; left: 22px; bottom: 22px; color: var(--ink); z-index: 2;
  font-family: var(--font-italic); font-style: italic; font-size: 14px;
  letter-spacing: .06em;
}
.hero-credit small {
  display: block; font-family: var(--font-sans); font-weight:600; font-size: 10px;
  letter-spacing: .25em; text-transform: uppercase; color: var(--gold); font-style: normal; margin-bottom: 4px; font-weight: 600;
}

@media (max-width: 940px) {
  .hero-wrap { grid-template-columns: 1fr; gap: 40px; }
  .hero { min-height: auto; padding: 50px 18px 40px; }
}

/* ============ TRUST STRIP ============ */
.trust {
  background: var(--surface); border-bottom: 1px solid var(--border);
  padding: 24px 28px;
}
/* Trust row: 4 on desktop, 2 on tablet, 1 on phone, uses auto-fit instead of fixed 4 */
.trust-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr)); gap: clamp(14px, 2.4vw, 28px); max-width: 1320px; margin: 0 auto; }
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-item svg { width: 24px; height: 24px; color: var(--gold); flex-shrink: 0; }
.trust-item div { line-height: 1.3; }
.trust-item b { font-family: var(--font-sans); font-weight:600; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink); display: block; font-weight: 600; }
.trust-item span { font-size: 12px; color: var(--ink-dim); font-weight: 300; }
@media (max-width: 760px) { .trust-row { grid-template-columns: 1fr 1fr; } .trust-item span { display: none; } }

/* ============ SECTION + HEADINGS ============ */
/* Fluid section: padding scales with the viewport via clamp(), Google's responsive pattern */
.section { padding: clamp(48px, 7vw, 90px) clamp(16px, 4vw, 28px); background: var(--bg); position: relative; }
.section.alt { background: var(--surface); position: relative; }
/* Consecutive `.alt` sections share one background, so their two full-size paddings
   stack into a single ~125px empty band with no visual change to explain it. Halving
   the top padding of the follower keeps the page rhythm without the dead gap. */
.section.alt + .section.alt { padding-top: clamp(24px, 3.5vw, 45px); }
/* Mood: subtle warm gold glow that breathes slowly across dark sections */
.section.alt::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(800px 500px at 80% 20%, rgba(226,193,107,.06), transparent 60%),
              radial-gradient(700px 400px at 10% 90%, rgba(122,30,30,.06), transparent 60%);
  animation: moodBreath 18s ease-in-out infinite;
}
.section.alt > * { position: relative; z-index: 1; }
.section-wrap { max-width: 1320px; width: 100%; margin: 0 auto; }
.section-head { text-align: center; max-width: min(760px, 100%); margin: 0 auto clamp(28px, 5vw, 56px); padding: 0 clamp(8px, 3vw, 16px); }
.section-head .eyebrow { color: var(--gold); }
.section-head h2 { font-family: var(--font-serif); font-size: clamp(32px, 4.4vw, 54px); color: var(--ink); line-height: 1.08; margin: 8px 0 18px; font-weight: 700; letter-spacing: -.01em; }
.section-head h2 em { font-style: italic; color: var(--gold-bright); }
.section-head p { font-size: 16px; color: var(--ink-dim); font-weight: 300; line-height: 1.7; }
.section-head-split { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; gap: 24px; flex-wrap: wrap; }
.section-head-split h2 { font-family: var(--font-serif); font-size: clamp(28px, 4vw, 44px); color: var(--ink); font-weight: 700; }
.section-head-split a { font-size: 12px; letter-spacing: .22em; text-transform: uppercase; font-weight: 700; color: var(--gold); border-bottom: 1px solid var(--gold-dark); padding-bottom: 3px; }
.section-head-split a:hover { color: var(--gold-bright); border-color: var(--gold-bright); }
.featured-products-note {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--ink-dim);
  font-size: 13px;
  line-height: 1.7;
}

/* ============ BRAND PERSONA (top of home) ============ */
.persona {
  padding: 100px 28px; background: var(--bg);
  position: relative; border-bottom: 1px solid var(--border);
}
.persona-wrap { max-width: 1080px; margin: 0 auto; text-align: center; }
.persona-ornament {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  font-family: var(--font-sans); font-weight:600; font-size: 10px; letter-spacing: .4em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 28px; font-weight: 600;
}
.persona-ornament::before, .persona-ornament::after {
  content: ""; flex: 1; max-width: 100px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark));
}
.persona-ornament::after { background: linear-gradient(270deg, transparent, var(--gold-dark)); }
.persona blockquote {
  font-family: var(--font-italic); font-size: clamp(22px, 2.6vw, 34px); font-style: italic;
  color: var(--ink); line-height: 1.45; max-width: 880px; margin: 0 auto;
  position: relative; padding: 0 30px;
}
.persona blockquote em { color: var(--gold-bright); font-style: italic; }
.persona-pillars {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; margin-top: 72px;
  padding-top: 56px; border-top: 1px solid var(--border);
}
.persona-pillar svg { width: 32px; height: 32px; color: var(--gold); margin-bottom: 14px; }
.persona-pillar b {
  display: block; font-family: var(--font-sans); font-weight:600; font-size: 11px;
  letter-spacing: .22em; color: var(--ink); text-transform: uppercase;
  margin-bottom: 8px; font-weight: 600;
}
.persona-pillar p { font-size: 13px; color: var(--ink-dim); font-weight: 300; line-height: 1.7; }
@media (max-width: 760px) { .persona-pillars { grid-template-columns: 1fr 1fr; gap: 28px; } }

/* ============ COLLECTION TILES ============ */
/* Tiles: 4-col on desktop, 2 on tablet, 1 on phone, fluid via min() */
.tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: clamp(12px, 2vw, 20px); }
.tile {
  position: relative; aspect-ratio: 4/5; border-radius: 16px; overflow: hidden;
  background: var(--surface-2); border: 1px solid var(--border);
  transition: transform .35s, box-shadow .35s, border-color .35s;
}
.tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); border-color: var(--gold-dark); }
.tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease-out-quart), filter .6s var(--ease-soft);
  animation: kenBurnsSubtle 28s ease-in-out infinite;
}
.tile:nth-child(2) img { animation-delay: -7s; }
.tile:nth-child(3) img { animation-delay: -14s; }
.tile:nth-child(4) img { animation-delay: -21s; }
.tile:nth-child(5) img { animation-delay: -3s; }
.tile:nth-child(6) img { animation-delay: -10s; }
.tile:hover img { transform: scale(1.08); filter: saturate(1.1); animation-play-state: paused; }
.tile-shade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(10,10,11,.92) 100%); pointer-events: none; }
.tile-meta { position: absolute; left: 22px; right: 22px; bottom: 22px; color: var(--ink); }
.tile-meta .reg { font-family: var(--font-sans); font-weight:600; font-size: 10px; letter-spacing: .3em; color: var(--gold-bright); text-transform: uppercase; font-weight: 600; }
.tile-meta h3 { font-family: var(--font-serif); font-size: 24px; font-weight: 700; line-height: 1.15; margin: 6px 0; color: var(--ink); }
.tile-meta p { font-size: 13px; color: var(--ink-dim); font-weight: 300; }
.tile-go { position: absolute; top: 18px; right: 18px; width: 38px; height: 38px; border-radius: 50%; background: rgba(248,244,236,.92); color: #14110B; display: grid; place-items: center; transition: background .25s, color .25s; }
.tile:hover .tile-go { background: var(--gold-bright); color: var(--bg); }
.tile-go svg { width: 14px; height: 14px; }

/* ============ PRODUCT CARD (the critical UX fix) ============
   ONE image only. Hover = scale-up of the SAME image.
   No swap to alternate image (which used to show wrong products).
============================================ */
/* Premium grid breakpoints, luxe pacing, 4 columns on desktop, never 1-col stacked */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 22px;
}
/* `min()` keeps the minimum column width fluid, never wider than the viewport on tiny phones */
.product-grid.cols-2 { grid-template-columns: repeat(auto-fill, minmax(min(380px, 100%), 1fr)); }
@media (max-width: 1200px) { .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px 18px; } }
@media (max-width: 820px)  { .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 12px; } }
@media (max-width: 420px)  { .product-grid { gap: 14px 10px; } } /* keep 2 cols on phones, international brand standard */

.product-card {
  display: flex; flex-direction: column;
  background: transparent;  /* let the page bg show through; cleaner than a card chrome */
  border: 0;
  border-radius: 0;
  overflow: visible;
  transition: transform .5s var(--ease-soft);
  position: relative;
}
.product-card:hover { transform: translateY(-3px); }

.product-card .media {
  position: relative; aspect-ratio: 4/5;
  background: var(--card);
  overflow: hidden;
  display: block;
  border-radius: 4px;  /* refined, almost-square corners, Net-a-Porter style */
}
.product-card .media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out-quart), opacity .4s ease, filter .6s var(--ease-soft);
  will-change: transform, opacity;
}
.product-card .card-main-img { position: relative; z-index: 1; }
.product-card .card-hover-img { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 2; opacity: 0; pointer-events: none; }
.product-card:hover .card-hover-img { opacity: 1; transform: scale(1.04); }
.product-card .view-mode-badge { position: absolute; bottom: 8px; left: 8px; z-index: 4; font-size: 10px; font-weight: 600; padding: 3px 8px; background: rgba(11,25,44,0.85); color: #F3E5AB; border-radius: 3px; backdrop-filter: blur(4px); pointer-events: none; letter-spacing: 0.04em; }
.product-card:hover .media img.card-main-img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.02);
}
/* Soft gold glow on card image-frame on hover */
.product-card .media {
  position: relative; aspect-ratio: 4/5;
  background: var(--card); overflow: hidden; display: block;
  border-radius: 4px;
  box-shadow: 0 0 0 0 rgba(226,193,107,0);
  transition: box-shadow .5s var(--ease-soft);
}
.product-card:hover .media {
  box-shadow: 0 0 0 1px rgba(226,193,107,.28), 0 20px 60px -20px rgba(15,11,8,.9);
}

/* When the catalog mockup is wide and we need to focus on the model area */
.product-card .media img.focus-top { object-position: 50% 22%; }
.product-card .media img.focus-bottom { object-position: 50% 75%; }
.product-card .media img.contain { object-fit: contain; background: var(--card); padding: 14px; }

.product-card .media.is-design-sheet {
  background: radial-gradient(circle at 50% 20%, rgba(226,193,107,.16), transparent 42%), var(--surface-2);
  padding: 18px;
}
.product-card .media.is-design-sheet img {
  object-fit: contain;
  filter: drop-shadow(0 18px 32px rgba(0,0,0,.28));
}

/* Composite media (girls' top: print overlaid on a model photo) */
.product-card .media.composite { position: relative; }
.product-card .media.composite .kg-base {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%;
}
.product-card .media.composite .kg-print {
  position: absolute; height: auto; z-index: 2;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,.35)) saturate(1.1);
  transition: transform .8s cubic-bezier(.2,.6,.2,1);
  mix-blend-mode: normal;
  pointer-events: none;
}
.product-card:hover .media.composite .kg-base { transform: none; }
.product-card:hover .media.composite .kg-print { transform: translateX(-50%) scale(1.04); }

.product-card .ribbons {
  position: absolute; top: 12px; left: 12px;
  display: flex; flex-direction: column; gap: 6px; z-index: 3;
}
.ribbon {
  background: rgba(15,11,8,.85); color: var(--gold-bright);
  font-family: var(--font-sans); font-size: 9px; letter-spacing: .22em;
  padding: 4px 9px; border-radius: 0; text-transform: uppercase; font-weight: 600;
  backdrop-filter: blur(4px);
}
/* Hide the second ribbon (Full Sleeve etc.), keep only one badge per card for clean look */
.product-card .ribbons .ribbon + .ribbon { display: none; }
.ribbon.gold { background: var(--gold); color: #0A0A0B; }
.ribbon.red  { background: var(--accent); color: var(--ink); }
.ribbon.green { background: var(--emerald); color: var(--ink); }

/* Heritage-first discovery and controlled cultural metadata */
.arts-map { margin-top: 72px; padding: clamp(34px,5vw,64px); border: 1px solid var(--border); background: linear-gradient(135deg,rgba(200,155,60,.08),rgba(26,18,13,.88)); display:grid; grid-template-columns:minmax(240px,.7fr) minmax(0,1.3fr); gap:clamp(30px,6vw,80px); }
.arts-map-intro h2, .authority-panel h2 { font-family:var(--font-serif); font-size:clamp(32px,4vw,52px); line-height:1.08; margin:12px 0 18px; }
.arts-map-intro p, .authority-panel p { color:var(--ink-dim); line-height:1.75; }
.arts-map-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:1px; background:var(--border); border:1px solid var(--border); }
.arts-map-grid a { background:var(--surface); padding:24px; min-height:130px; transition:background .25s,transform .25s; }
.arts-map-grid a:hover { background:var(--surface-2); transform:translateY(-2px); }
.arts-map-grid b { display:block; color:var(--gold-bright); font-family:var(--font-serif); font-size:20px; margin-bottom:8px; }
.arts-map-grid span { display:block; color:var(--ink-dim); font-size:12px; line-height:1.55; }
.authority-panel { max-width:980px; margin:0 auto 80px; padding:clamp(34px,6vw,70px); border-left:2px solid var(--gold); background:var(--card-translucent); }
.authority-panel .btn { margin-top:26px; }
.journal-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:16px; }
.journal-grid a { min-height:220px; padding:28px; border:1px solid var(--border); background:var(--surface-2); display:flex; flex-direction:column; }
.journal-grid span { color:var(--gold); font-size:10px; letter-spacing:.18em; text-transform:uppercase; }
.journal-grid b { font-family:var(--font-serif); font-size:22px; line-height:1.25; margin:18px 0; }
.journal-grid em { color:var(--ink-dim); font-size:11px; font-style:normal; margin-top:auto; }
.documentary-credit { max-width:920px; margin:26px auto 0; color:var(--ink-faint); font-size:10px; line-height:1.65; text-align:center; }
.documentary-credit a { color:var(--gold-dark); text-decoration:underline; text-underline-offset:3px; }
.seasonal-banner { display:block; background:linear-gradient(90deg,#111,#39260e); border-block:1px solid var(--border); color:var(--gold-bright); text-align:center; padding:14px 20px; font-size:11px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; }
.cultural-passport { margin-top:34px; border:1px solid var(--border); background:rgba(200,155,60,.05); }
.passport-head { padding:24px 24px 18px; border-bottom:1px solid var(--border); }
.passport-head > span { color:var(--gold); font-size:9px; letter-spacing:.22em; text-transform:uppercase; }
.passport-head h2 { font-family:var(--font-serif); font-size:28px; margin:5px 0; }
.passport-head p,.passport-note { color:var(--ink-dim); font-size:12px; line-height:1.55; }
.passport-labels { display:flex; flex-wrap:wrap; gap:7px; padding:18px 24px 0; }
.passport-labels:empty { display:none; }
.passport-labels span { border:1px solid var(--gold-dark); color:var(--gold-bright); padding:5px 8px; font-size:9px; letter-spacing:.1em; text-transform:uppercase; }
.passport-grid { padding:18px 24px; display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:0 24px; }
.passport-grid > div { padding:12px 0; border-bottom:1px solid rgba(226,193,107,.12); }
.passport-grid dt { color:var(--ink-faint); font-size:9px; letter-spacing:.12em; text-transform:uppercase; }
.passport-grid dd { margin-top:4px; color:var(--ink); font-size:12px; line-height:1.5; }
.passport-note { padding:0 24px 24px; }
@media (max-width:900px) {
  .arts-map { grid-template-columns:1fr; }
  .journal-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width:600px) {
  .arts-map-grid,.passport-grid,.journal-grid { grid-template-columns:1fr; }
  .arts-map-grid a { min-height:auto; }
}

.wishlist-pip {
  position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; border-radius: 50%;
  background: rgba(248,241,231,.92); color: #1A120D; display: grid; place-items: center;
  z-index: 3; transition: color .25s, background .25s, transform .25s;
  opacity: 0;  /* reveal on hover for cleaner card */
}
.product-card:hover .wishlist-pip { opacity: 1; }
.wishlist-pip:hover { color: #C9302E; transform: scale(1.08); }
.wishlist-pip svg { width: 15px; height: 15px; }

.product-card .quickadd {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: rgba(15,11,8,.85); color: #F8F1E7;
  text-align: center; padding: 14px 0; border-radius: 0;
  font-size: 10px; letter-spacing: .26em; text-transform: uppercase; font-weight: 600;
  font-family: var(--font-sans);
  opacity: 0; transform: translateY(100%);
  transition: opacity .35s var(--ease-soft), transform .35s var(--ease-soft);
  z-index: 3; backdrop-filter: blur(6px); border: 0;
}
.product-card:hover .quickadd { opacity: 1; transform: translateY(0); }
.product-card .quickadd:hover { background: var(--gold); color: var(--bg); }

.product-card .body {
  padding: 14px 2px 8px; display: flex; flex-direction: column; gap: 4px;
  background: transparent;
  /* Absorb the spare height so the CTA row below can be pushed to the card floor. */
  flex: 1 1 auto;
}
.product-card .body .region {
  font-family: var(--font-sans); font-size: 9px; letter-spacing: .28em;
  color: var(--gold); text-transform: uppercase; font-weight: 600;
  margin-bottom: 4px;
}
.product-card .body h3 {
  font-family: var(--font-serif); font-size: 17px; color: var(--ink);
  font-weight: 500; line-height: 1.25; letter-spacing: .005em;
  /* Every card title occupies exactly two lines: shorter names are padded out, longer
     ones are clamped. Without this a three-line name pushed its price, stock line and
     button below the rest of the row. The full name is on the product page and in the
     link's aria-label, so nothing is lost to a reader or to a screen reader. */
  min-height: 2.5em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card .body .sub { font-size: 12px; color: var(--ink-dim); font-weight: 300; line-height: 1.4; margin-top: 2px; }
.product-card .rating { display: none; }  /* drop noisy stars, luxury brands skip them */
.product-card .pricing {
  margin-top: 8px; display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
}
.product-card .pricing .price { font-family: var(--font-sans); font-weight: 600; color: var(--ink); font-size: 15px; letter-spacing: .04em; }
.product-card .pricing .mrp   { font-size: 12px; color: var(--ink-faint); text-decoration: line-through; }
.product-card .pricing .off   { font-size: 10px; color: var(--gold); font-weight: 600; letter-spacing: .08em; text-transform: uppercase }
.product-card .pricing-eur    { font-size: 11px; color: var(--ink-dim); font-weight: 300; margin-top: 2px; letter-spacing: .06em; font-style: italic; font-family: var(--font-serif); }

/* Gift packing add-on in the cart drawer */
.gift-wrap-offer {
  border: 1px solid rgba(226,193,107,.28);
  background: rgba(226,193,107,.05);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 14px;
}
.gift-wrap-toggle { display: flex; align-items: flex-start; gap: 11px; cursor: pointer; }
.gift-wrap-toggle input { margin-top: 3px; accent-color: var(--gold); width: 16px; height: 16px; flex: 0 0 auto; }
.gift-wrap-copy { display: block; min-width: 0; }
.gift-wrap-copy b {
  display: flex; justify-content: space-between; gap: 10px; align-items: baseline;
  font-family: var(--font-sans); font-size: 13px; font-weight: 600; color: var(--ink);
}
.gift-wrap-copy b em { font-style: normal; color: var(--gold); white-space: nowrap; }
.gift-wrap-copy small {
  display: block; margin-top: 4px;
  font-size: 11px; line-height: 1.5; color: var(--ink-dim); font-weight: 300;
}
/* The kasavu mundu add-on reuses the frame above; only the cut selector is new. */
#gift-wrap-message,
#mundu-addon-size {
  width: 100%; margin-top: 10px; padding: 8px 10px;
  background: rgba(0,0,0,.25); color: var(--ink);
  border: 1px solid rgba(226,193,107,.22); border-radius: 7px;
  font-family: var(--font-sans); font-size: 12px;
}
#gift-wrap-message::placeholder { color: var(--ink-faint); }
#gift-wrap-message:focus,
#mundu-addon-size:focus { outline: none; border-color: var(--gold); }

/* Product card action row */
.card-cta-row {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  flex-wrap: wrap;
  padding: 10px 2px 4px;
  background: transparent;
  opacity: 1; transform: none;
  /* Pin to the bottom of the card so every button in a row shares one baseline,
     whatever the title above it does. */
  margin-top: auto;
}
.buy-btn,
.enquire-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  padding: 7px 14px; border-radius: 999px;
  font-family: var(--font-sans); font-size: 10px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  white-space: nowrap;
  transition: background .25s var(--ease-soft), color .25s var(--ease-soft), border-color .25s var(--ease-soft), filter .25s var(--ease-soft);
}
.card-cta-row .buy-btn,
.card-cta-row .enquire-btn { flex: 1 1 138px; min-width: 0; }
.buy-btn {
  background: var(--gold); color: var(--bg);
  border: 1px solid var(--gold);
}
.buy-btn:hover { filter: brightness(1.08); }
.enquire-btn {
  background: transparent; color: #25D366;
  border: 1px solid #25D366;
}
.enquire-btn:hover { background: #25D366; color: #fff; }
.buy-btn svg,
.enquire-btn svg { flex-shrink: 0; width: 12px; height: 12px; }
.view-link {
  flex: 0 0 auto;
  font-family: var(--font-sans); font-size: 10px; letter-spacing: .18em;
  text-transform: uppercase; font-weight: 600; color: var(--ink-dim);
  border-bottom: 1px solid var(--border); padding-bottom: 2px;
  transition: color .25s, border-color .25s;
}
.view-link:hover { color: var(--gold-bright); border-color: var(--gold-bright); }

.pdetails .p-eur { font-size: 14px; color: var(--ink-dim); font-style: italic; font-family: var(--font-serif); margin-left: 6px; }

/* Sticky mobile WhatsApp CTA */
.sticky-wa {
  display: none;
  position: fixed; bottom: 18px; left: 18px; right: 18px; z-index: 80;
  background: linear-gradient(180deg, #25D366, #128C7E); color: #fff;
  padding: 14px 22px; border-radius: 999px;
  align-items: center; justify-content: center; gap: 12px;
  font-family: var(--font-sans); font-size: 13px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.1);
}
@media (max-width: 760px) {
  .sticky-wa { display: flex; }
  body { padding-bottom: 90px; }
  /* Product pages already provide the exact product-specific WhatsApp action.
     Hiding the duplicate floating control keeps it from covering that button. */
  .shop-product-page .sticky-wa { display: none; }
  body.shop-product-page { padding-bottom: 24px; }
}

/* small-variant swatches on the card */
.card-swatches { display: flex; gap: 5px; margin-top: 10px; }
.card-swatches span {
  width: 18px; height: 18px; border-radius: 50%; border: 1.5px solid var(--border);
  display: block;
}
.card-swatches span.sw-black { background: #0A0A0B; }
.card-swatches span.sw-white { background: #ECE8DD; }
.card-swatches span.sw-cream { background: #C9B58A; }
.card-swatches span.sw-pink  { background: #E94B8B; }
.card-swatches span.sw-blue  { background: #1F3A52; }
.card-swatches span.sw-green { background: #5DAE3C; }
.card-swatches span.sw-yellow { background: #E4B83C; }
.card-swatches span.sw-maroon { background: #6E1E28; }
.card-swatches span.sw-purple { background: #4B2B7A; }

.design-board-section {
  padding: 84px 28px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at 18% 0%, rgba(226,193,107,.12), transparent 34%),
    linear-gradient(180deg, rgba(34,24,18,.92), rgba(15,11,8,.96));
}
.design-board {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}
.design-board-copy {
  position: sticky;
  top: 82px;
}
.design-board-copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 58px);
  line-height: .95;
  color: var(--ink);
  font-weight: 500;
  margin: 12px 0 18px;
}
.design-board-copy p {
  color: var(--ink-dim);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 300;
  max-width: 560px;
}
.design-board-copy .note {
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(226,193,107,.26);
  background: rgba(246,239,227,.05);
  color: var(--gold-bright);
  font-size: 12px;
  line-height: 1.7;
}
.design-board-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.design-tile {
  position: relative;
  display: block;
  min-height: 260px;
  border: 1px solid rgba(226,193,107,.22);
  background: #F6EFE3;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-2);
}
.design-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
}
.design-tile span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  background: rgba(15,11,8,.82);
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.25;
  backdrop-filter: blur(8px);
}
.design-tile small {
  display: block;
  margin-top: 3px;
  color: var(--gold-bright);
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
@media (max-width: 860px) {
  .design-board { grid-template-columns: 1fr; }
  .design-board-copy { position: static; }
}
@media (max-width: 560px) {
  .design-board-section { padding: 60px 16px; }
  .design-board-grid { grid-template-columns: 1fr; }
}

/* ============ ARTISAN BAND ============ */
.artisan-band {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 70px;
  align-items: center; padding: 90px 28px; max-width: 1320px; margin: 0 auto;
}
.artisan-band.reverse { grid-template-columns: 1fr 1.05fr; }
.artisan-band.reverse .ab-media { order: 2; }
.ab-media { position: relative; height: 580px; }
.ab-media .ab-img-main {
  position: absolute; top: 0; left: 0; width: 78%; height: 78%;
  border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-3); z-index: 2;
  border: 1px solid var(--border);
}
.ab-media .ab-img-secondary {
  position: absolute; bottom: 0; right: 0; width: 58%; height: 58%;
  border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-2);
  border: 5px solid var(--bg); z-index: 3;
}
.ab-media img {
  width: 100%; height: 100%; object-fit: cover;
  animation: kenBurnsSubtle 26s ease-in-out infinite;
  transition: filter .8s var(--ease-soft);
}
.ab-img-secondary img { animation-delay: -8s; }
.ab-img-main:hover img { filter: saturate(1.1); }
.artisan-band .lineage {
  font-family: var(--font-sans); font-weight:600; font-size: 10px; letter-spacing: .3em;
  color: var(--gold); text-transform: uppercase; font-weight: 600;
  margin-bottom: 14px; display: block;
}
.artisan-band h3 {
  font-family: var(--font-serif); font-size: clamp(30px, 4.2vw, 48px);
  color: var(--ink); line-height: 1.08; margin-bottom: 20px; font-weight: 700;
  letter-spacing: -.005em;
}
.artisan-band h3 em { font-style: italic; color: var(--gold-bright); }
.artisan-band p.lead {
  font-size: 16px; color: var(--ink-dim); font-weight: 300; margin-bottom: 22px;
  line-height: 1.75;
}
.artisan-band .signature {
  font-family: var(--font-italic); font-style: italic; font-size: 15px;
  color: var(--ink); padding: 16px 22px; border-left: 2px solid var(--gold);
  margin: 24px 0 28px; background: rgba(212,175,122,.07); border-radius: 0 8px 8px 0;
}
.artisan-band .stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 26px;
  padding: 22px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  margin-bottom: 26px;
}
.artisan-band .stat-row b {
  display: block; font-family: var(--font-sans); font-weight:600; font-size: 10px;
  letter-spacing: .22em; color: var(--gold); text-transform: uppercase;
  font-weight: 600; margin-bottom: 4px;
}
.artisan-band .stat-row span { font-family: var(--font-serif); color: var(--ink); font-weight: 600; font-size: 16px; }
.artisan-band .ab-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.artisan-band .ab-cta a.text-link {
  font-family: var(--font-sans); font-weight:600; font-size: 11px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold); font-weight: 700;
  border-bottom: 1px solid var(--gold-dark); padding-bottom: 3px;
}
.artisan-band .ab-cta a.text-link:hover { color: var(--gold-bright); border-color: var(--gold-bright); }

.artisan-band .preview-row {
  display: flex; gap: 12px; margin-top: 28px; overflow-x: auto;
  scrollbar-width: none;
}
.artisan-band .preview-row::-webkit-scrollbar { display: none; }
.artisan-band .preview-row a {
  flex-shrink: 0; width: 110px;
  display: flex; flex-direction: column; gap: 6px;
}
.artisan-band .preview-row a .pv-img {
  width: 110px; aspect-ratio: 3/4;
  background: var(--card); border-radius: 8px; overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,.4); transition: transform .25s;
  border: 1px solid var(--border);
}
.artisan-band .preview-row a .pv-img img { width: 100%; height: 100%; object-fit: cover; }
.artisan-band .preview-row a:hover .pv-img { transform: translateY(-3px); border-color: var(--gold-dark); }
.artisan-band .preview-row a small { font-size: 11px; color: var(--gold); letter-spacing: .04em; line-height: 1.2; font-family: var(--font-display); font-weight: 600; }
.artisan-band .preview-row a b { font-family: var(--font-serif); font-size: 13px; color: var(--ink); line-height: 1.25; }

@media (max-width: 940px) {
  .artisan-band, .artisan-band.reverse { grid-template-columns: 1fr; gap: 32px; padding: 60px 18px; }
  .artisan-band.reverse .ab-media { order: 0; }
  .ab-media { height: 420px; }
}

/* ============ COLLECTION PAGE HERO ============ */
.collection-hero {
  background: var(--bg); color: var(--ink); padding: 60px 28px 70px;
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.collection-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 500px at 80% 30%, rgba(212,175,122,.14), transparent 60%);
  pointer-events: none;
}
.collection-hero-wrap { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.collection-hero h1 { font-family: var(--font-serif); font-size: clamp(36px, 5vw, 64px); line-height: 1.05; margin: 8px 0 18px; font-weight: 700; letter-spacing: -.01em; }
.collection-hero h1 em { font-style: italic; color: var(--gold-bright); }
.collection-hero .tag { font-family: var(--font-italic); font-size: 18px; font-style: italic; color: var(--gold); margin-bottom: 14px; display: block; }
.collection-hero p { font-size: 16px; color: var(--ink-dim); max-width: 560px; font-weight: 300; line-height: 1.7; }
.collection-hero .meta { margin-top: 36px; display: flex; gap: 32px; flex-wrap: wrap; padding-top: 28px; border-top: 1px solid var(--border); }
.collection-hero .meta div b { font-family: var(--font-sans); font-weight:600; font-size: 10px; letter-spacing: .25em; color: var(--gold); text-transform: uppercase; display: block; font-weight: 600; }
.collection-hero .meta div span { font-family: var(--font-serif); font-size: 17px; color: var(--ink); font-weight: 600; }
.collection-hero-img { aspect-ratio: 4/5; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-3); border: 1px solid var(--border); position: relative; }
.collection-hero-img img {
  width: 100%; height: 100%; object-fit: cover;
  animation: kenBurnsSubtle 24s ease-in-out infinite;
}
.collection-hero-img::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 100px rgba(15,11,8,.45);
  border-radius: 14px;
}
@media (max-width: 940px) { .collection-hero-wrap { grid-template-columns: 1fr; } }

/* ============ FILTER BAR ============ */
.filter-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 26px 0 22px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 44px;
  flex-wrap: wrap;
  position: sticky; top: 48px; z-index: 9;
  background: var(--bg);
}
.filter-bar .count { color: var(--ink-dim); font-size: 13px; }
.filter-bar select, .filter-bar input[type=search] {
  font-size: 13px; padding: 10px 16px; border: 1px solid var(--border); border-radius: 999px;
  background: var(--surface-2); color: var(--ink); letter-spacing: .04em;
}
.filter-bar select:focus, .filter-bar input[type=search]:focus { outline: none; border-color: var(--gold-dark); }
.filter-bar input[type=search] { min-width: 220px; }
.chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase; font-weight: 600;
  padding: 8px 16px; border-radius: 999px;
  border: 1px solid var(--border); background: var(--surface-2); color: var(--ink-dim);
  transition: all .2s;
}
.chip:hover { border-color: var(--gold-dark); color: var(--gold-bright); }
.chip.active { background: var(--gold); color: var(--bg); border-color: var(--gold); }

/* ============ PRODUCT DETAIL PAGE ============ */
.product-page { max-width: 1320px; margin: 0 auto; padding: 48px 28px 80px; display: grid; grid-template-columns: 1.05fr 1fr; gap: 70px; color: var(--ink); }
.breadcrumb { font-size: 12px; color: var(--ink-dim); letter-spacing: .04em; margin-bottom: 24px; grid-column: 1/-1; }
.breadcrumb a:hover { color: var(--gold-bright); }
.breadcrumb b { color: var(--ink); font-weight: 500; }

.gallery { display: grid; grid-template-columns: 80px 1fr; gap: 18px; }
.thumbs { display: flex; flex-direction: column; gap: 12px; }
.thumb {
  width: 80px; aspect-ratio: 3/4; border-radius: 8px; overflow: hidden; cursor: pointer;
  border: 1.5px solid var(--border); background: var(--card); transition: border-color .25s;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb.active { border-color: var(--gold); }
.hero-img-main { aspect-ratio: 3/4; border-radius: 14px; overflow: hidden; background: var(--card); position: relative; }
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
.zoom-pip { position: absolute; bottom: 16px; right: 16px; background: rgba(10,10,11,.85); color: var(--gold-bright); padding: 8px 14px; border-radius: 999px; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; backdrop-filter: blur(6px); }

.pdetails { padding-top: 6px; }
.pdetails .region { font-family: var(--font-sans); font-weight:600; font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.pdetails h1 { font-family: var(--font-serif); font-size: clamp(28px, 3.5vw, 42px); color: var(--ink); line-height: 1.1; font-weight: 700; margin: 8px 0 6px; letter-spacing: -.005em; }
.pdetails .sub { font-size: 15px; color: var(--ink-dim); font-weight: 300; margin-bottom: 14px; }
.pdetails .rating-row { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; font-size: 12px; color: var(--ink-dim); }
.pdetails .rating-row .stars { color: var(--gold-bright); letter-spacing: 2px; font-size: 14px; }
.pdetails .price-row { display: flex; align-items: baseline; gap: 14px; margin-bottom: 30px; padding-bottom: 24px; border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.pdetails .p-price { font-family: var(--font-display); font-size: 32px; color: var(--gold-bright); font-weight: 700; letter-spacing: .04em; }
.pdetails .p-mrp { font-size: 17px; color: var(--ink-faint); text-decoration: line-through; }
.pdetails .p-off { font-size: 13px; color: #5ED28C; font-weight: 700; padding: 3px 10px; background: rgba(94,210,140,.10); border-radius: 4px; }
.pdetails .p-tax { font-size: 11px; color: var(--ink-faint); margin-left: auto; }

.swatch-block { margin-bottom: 26px; }
.swatch-block .label { font-family: var(--font-sans); font-weight:600; font-size: 10px; letter-spacing: .25em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 12px; }
.size-row { display: flex; gap: 10px; flex-wrap: wrap; }
.size-btn { padding: 11px 18px; border: 1.5px solid var(--border); border-radius: 8px; background: var(--surface-2); color: var(--ink); font-size: 13px; font-weight: 600; min-width: 56px; transition: all .2s; }
.size-btn:hover { border-color: var(--gold-dark); }
.size-btn.active { background: var(--gold); color: var(--bg); border-color: var(--gold); }
/* Size exists in the range but not in the colour the shopper picked. */
.size-btn.is-unavailable { opacity: .32; cursor: not-allowed; text-decoration: line-through; }
.size-btn.is-unavailable:hover { border-color: var(--border); }
.size-btn:focus-visible,
.size-guide-link:focus-visible,
.size-fit-dialog button:focus-visible,
.size-fit-dialog input:focus-visible,
.size-fit-dialog a:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}
.size-heading-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 12px; }
.size-heading-row .label { margin-bottom: 0; }
.size-guide-link {
  min-height: 44px; padding: 8px 2px; color: var(--gold-bright); border-bottom: 1px solid var(--gold-dark);
  font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
}
.size-guide-link:hover { color: var(--ink); border-color: var(--gold-bright); }
.size-fit-support { margin-top: 14px; display: grid; gap: 5px; color: var(--ink-dim); font-size: 12px; line-height: 1.55; }
.size-fit-support strong { color: var(--ink); font-weight: 600; }
.find-size-link { justify-self: start; min-height: 44px; color: var(--gold-bright); font-size: 12px; font-weight: 700; border-bottom: 1px solid var(--gold-dark); }
.selected-size-measurement { min-height: 22px; margin-top: 12px; color: var(--gold-bright); font-size: 12px; font-weight: 600; }
.size-validation { display: none; margin-top: 10px; padding: 10px 12px; border-left: 2px solid var(--gold); background: rgba(200,155,60,.09); color: var(--ink); font-size: 12px; }
.size-validation.show { display: block; }
.swatch-block.size-error { scroll-margin-top: 24px; }

body.size-fit-open { overflow: hidden; }
.size-fit-dialog {
  position: fixed; inset: 0 0 0 auto; width: min(680px, 100vw); max-width: none; height: 100dvh; max-height: none;
  margin: 0 0 0 auto; padding: 0; border: 0; border-left: 1px solid rgba(226,193,107,.32); border-radius: 0;
  background: #12100D; color: var(--ink); box-shadow: -30px 0 80px rgba(0,0,0,.58); overflow: hidden;
}
.size-fit-dialog[open] { animation: sizeSheetIn .35s var(--ease-out-quart) both; }
.size-fit-dialog::backdrop { background: rgba(4,3,2,.74); backdrop-filter: blur(4px); }
.size-fit-shell { height: 100%; display: flex; flex-direction: column; font-family: var(--font-sans); }
.size-fit-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 22px; padding: 30px 34px 22px; border-bottom: 1px solid var(--border); }
.size-fit-kicker { display: block; color: var(--gold); font-size: 9px; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; margin-bottom: 7px; }
.size-fit-head h2 { font-family: var(--font-serif); font-size: clamp(27px, 4vw, 38px); line-height: 1.08; font-weight: 600; }
.size-fit-close { flex: 0 0 44px; width: 44px; height: 44px; border: 1px solid var(--border); border-radius: 50%; font-size: 25px; line-height: 1; }
.size-fit-close:hover { color: var(--gold-bright); border-color: var(--gold-dark); }
.size-fit-tabs { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); padding: 0 34px; border-bottom: 1px solid var(--border); }
.size-fit-tab { min-height: 54px; padding: 10px 4px; color: var(--ink-dim); border-bottom: 2px solid transparent; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.size-fit-tab[aria-selected="true"] { color: var(--gold-bright); border-color: var(--gold); }
.size-fit-content { flex: 1; overflow-y: auto; overscroll-behavior: contain; padding: 30px 34px 44px; }
.size-fit-panel[hidden] { display: none; }
.size-fit-intro { color: var(--ink-dim); font-size: 14px; line-height: 1.7; margin-bottom: 24px; }
.size-fit-form { display: grid; gap: 22px; }
.size-fit-field { display: grid; gap: 9px; }
fieldset.size-fit-field { border: 0; min-width: 0; }
.size-fit-field > label, .size-fit-legend { color: var(--gold-bright); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.measurement-entry { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 10px; }
.measurement-entry input {
  width: 100%; min-height: 50px; padding: 11px 14px; border: 1px solid var(--border); border-radius: 7px;
  background: var(--surface-2); color: var(--ink); font-size: 18px;
}
.segmented { display: inline-flex; padding: 3px; border: 1px solid var(--border); border-radius: 8px; background: var(--surface-2); }
.segmented input { position: absolute; opacity: 0; pointer-events: none; }
.segmented label { min-width: 54px; min-height: 42px; padding: 9px 12px; display: grid; place-items: center; border-radius: 5px; color: var(--ink-dim); font-size: 11px; font-weight: 700; cursor: pointer; }
.segmented input:checked + label { background: var(--gold); color: #0A0A0B; }
.segmented input:focus-visible + label { outline: 2px solid var(--gold-bright); outline-offset: 2px; }
.fit-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.fit-choice { position: relative; }
.fit-choice input { position: absolute; opacity: 0; }
.fit-choice label { min-height: 58px; display: grid; align-content: center; padding: 10px 14px; border: 1px solid var(--border); border-radius: 8px; color: var(--ink-dim); cursor: pointer; }
.fit-choice label b { color: var(--ink); font-size: 13px; }
.fit-choice label small { font-size: 10px; }
.fit-choice input:checked + label { border-color: var(--gold); background: rgba(200,155,60,.09); }
.fit-choice input:focus-visible + label { outline: 2px solid var(--gold-bright); outline-offset: 3px; }
.size-fit-submit, .recommendation-select {
  min-height: 50px; padding: 12px 22px; border-radius: 999px; background: var(--gold); color: #0A0A0B;
  font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
}
.size-fit-submit:hover, .recommendation-select:hover { background: var(--gold-bright); }
.size-fit-form-error { color: #F0B4A9; font-size: 12px; min-height: 18px; }
.size-result { margin-top: 24px; padding: 24px; border: 1px solid var(--gold-dark); background: linear-gradient(145deg, rgba(200,155,60,.13), rgba(122,30,30,.10)); }
.size-result[hidden] { display: none; }
.size-result-label { color: var(--gold); font-size: 9px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.size-result h3 { margin: 6px 0 8px; font-family: var(--font-serif); font-size: 25px; font-weight: 600; }
.size-result p { color: var(--ink-dim); font-size: 13px; line-height: 1.65; }
.size-result .recommendation-select { margin-top: 18px; }
.size-result-note { margin-top: 12px; font-size: 11px !important; color: var(--ink-faint) !important; }
.size-result .size-help-link { display: inline-flex; margin-top: 16px; color: var(--gold-bright); border-bottom: 1px solid var(--gold-dark); min-height: 44px; align-items: center; }
.chart-toggle-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 20px; }
.chart-toggle-row h3 { font-family: var(--font-serif); font-size: 23px; font-weight: 600; }
.shirt-diagram { margin: 0 auto 24px; width: min(260px, 85%); color: var(--gold); }
.shirt-diagram text { fill: var(--gold-bright); font-family: var(--font-sans); font-size: 10px; letter-spacing: .08em; }
.size-chart-wrap { width: 100%; overflow: hidden; border: 1px solid var(--border); }
.size-chart { width: 100%; border-collapse: collapse; table-layout: fixed; }
.size-chart th, .size-chart td { padding: 13px 10px; border-bottom: 1px solid var(--border); text-align: left; font-size: 12px; }
.size-chart th { color: var(--gold-bright); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; background: rgba(200,155,60,.06); }
.size-chart th:first-child { width: 20%; }
.size-chart tbody tr:last-child td { border-bottom: 0; }
.size-chart td:first-child { color: var(--ink); font-weight: 700; }
.size-chart td:not(:first-child) { color: var(--ink-dim); }
.supplier-note { margin-top: 14px; padding: 12px 14px; border-left: 2px solid var(--gold-dark); color: var(--ink-dim); font-size: 11px; line-height: 1.6; }
.measure-list { counter-reset: measure; display: grid; gap: 18px; list-style: none; margin-bottom: 24px; }
.measure-list li { position: relative; padding-left: 42px; color: var(--ink-dim); font-size: 13px; line-height: 1.65; }
.measure-list li::before { counter-increment: measure; content: counter(measure); position: absolute; left: 0; top: 0; width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid var(--gold-dark); border-radius: 50%; color: var(--gold-bright); font-size: 11px; font-weight: 700; }
.measure-note { padding: 16px 18px; border: 1px solid var(--border); color: var(--ink); font-size: 12px; line-height: 1.65; }
.guidance-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0; }
.guidance-card { padding: 18px; background: var(--surface-2); border: 1px solid var(--border); }
.guidance-card h3 { margin-bottom: 6px; font-family: var(--font-serif); color: var(--gold-bright); font-size: 18px; }
.guidance-card p { color: var(--ink-dim); font-size: 12px; line-height: 1.6; }
.size-help-link { color: var(--gold-bright); font-size: 12px; font-weight: 700; }
@keyframes sizeSheetIn { from { transform: translateX(28px); opacity: .2; } to { transform: translateX(0); opacity: 1; } }

@media (max-width: 680px) {
  .size-fit-dialog { inset: auto 0 0; width: 100vw; height: min(92dvh, 780px); margin: auto 0 0; border: 0; border-top: 1px solid rgba(226,193,107,.32); border-radius: 18px 18px 0 0; }
  .size-fit-dialog[open] { animation-name: sizeSheetUp; }
  .size-fit-head { padding: 21px 18px 16px; }
  .size-fit-tabs { padding: 0 14px; }
  .size-fit-tab { font-size: 9px; letter-spacing: .08em; }
  .size-fit-content { padding: 22px 18px 36px; }
  .guidance-cards { grid-template-columns: 1fr; }
  .size-heading-row { align-items: flex-start; }
  .size-guide-link { margin-top: -7px; }
  @keyframes sizeSheetUp { from { transform: translateY(30px); opacity: .2; } to { transform: translateY(0); opacity: 1; } }
}
@media (max-width: 360px) {
  .size-fit-head { padding-inline: 14px; }
  .size-fit-content { padding-inline: 14px; }
  .size-fit-tabs { padding-inline: 8px; }
  .size-fit-tab { font-size: 8px; }
  .size-chart th, .size-chart td { padding: 11px 6px; font-size: 11px; }
  .size-chart th { font-size: 8px; letter-spacing: .04em; }
  .fit-options { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .size-fit-dialog[open] { animation: none; }
}

.variant-row { display: flex; gap: 10px; flex-wrap: wrap; }
.variant-btn {
  padding: 8px 18px; border: 1.5px solid var(--border); border-radius: 999px;
  background: var(--surface-2); color: var(--ink); font-size: 12px; font-weight: 600; letter-spacing: .04em; transition: all .2s;
}
.variant-btn:hover { border-color: var(--gold-dark); color: var(--gold-bright); }
.variant-btn.active { background: var(--gold); color: var(--bg); border-color: var(--gold); }

.pdetails .actions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
/* .btn sets overflow:hidden for the sheen sweep, which zeroes a flex item's automatic
   minimum size - without min-width the nowrap label shrinks past its text and gets clipped. */
.pdetails .actions .btn { flex: 1 1 auto; justify-content: center; padding: 17px 26px; white-space: nowrap; letter-spacing: .18em; min-width: max-content; }
/* The gold slot carries the long enquiry labels - let it wrap its text rather than
   force the row to wrap and drop the wishlist heart onto a line of its own. */
.pdetails .actions .btn-gold { flex-grow: 1.35; flex-basis: 190px; min-width: 190px; white-space: normal; }
.pdetails .wish-btn { width: 56px; padding: 0; border: 1px solid var(--border); border-radius: 999px; display: grid; place-items: center; color: var(--ink); background: var(--surface-2); transition: color .25s, border-color .25s; }
.pdetails .wish-btn:hover { color: var(--gold-bright); border-color: var(--gold-dark); }
.pdetails .wish-btn svg { width: 18px; height: 18px; }

.pdetails .story { padding: 22px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 26px; }
.pdetails .story p { font-family: var(--font-italic); font-size: 17px; line-height: 1.65; color: var(--ink); font-style: italic; }

.spec-rows { display: grid; gap: 12px; }
.spec-row { display: grid; grid-template-columns: 140px 1fr; gap: 18px; padding: 8px 0; border-bottom: 1px dashed var(--border); font-size: 13px; }
.spec-row b { font-family: var(--font-sans); font-weight:600; font-size: 10px; letter-spacing: .2em; color: var(--gold); text-transform: uppercase; font-weight: 600; }
.spec-row span { color: var(--ink-dim); font-weight: 400; }

.product-enrichment { padding:clamp(22px,3vw,34px); border:1px solid rgba(226,193,107,.22); background:linear-gradient(145deg,rgba(226,193,107,.08),rgba(255,255,255,.015)); }
.product-enrichment[hidden] { display:none; }
.product-enrichment-kicker { display:block; margin-bottom:8px; color:var(--gold); font:700 9px/1.4 var(--font-sans); letter-spacing:.24em; text-transform:uppercase; }
.product-enrichment h2 { margin:0; color:var(--ink); font-family:var(--subpage-serif,var(--font-serif)); font-size:clamp(28px,3vw,40px); line-height:1.05; }
.product-enrichment-summary { max-width:72ch; margin:14px 0 0; color:var(--ink-dim); font-size:14px; line-height:1.75; }
.product-enrichment-grid { display:grid; grid-template-columns:1fr; gap:12px; margin-top:24px; }
.product-enrichment-grid article { min-width:0; padding:18px; border:1px solid var(--border); background:rgba(8,6,4,.28); }
.product-enrichment-grid h3 { margin:0 0 12px; color:var(--gold-bright); font:700 10px/1.4 var(--font-sans); letter-spacing:.14em; text-transform:uppercase; }
.product-enrichment-grid ul { margin:0; padding:0; list-style:none; display:grid; gap:10px; }
.product-enrichment-grid li { position:relative; padding-left:15px; color:var(--ink-dim); font-size:12px; line-height:1.55; }
.product-enrichment-grid li::before { content:'•'; position:absolute; left:0; color:var(--gold); }

@media (max-width:760px) {
  .product-enrichment { padding:20px 16px; }
  .product-enrichment-grid { grid-template-columns:1fr; }
}

@media (max-width: 940px) {
  .product-page { grid-template-columns: 1fr; gap: 36px; }
  .gallery { grid-template-columns: 1fr; }
  .thumbs { flex-direction: row; overflow-x: auto; }
  .thumb { flex-shrink: 0; width: 72px; }
}

/* Composite gallery on the product detail page (girls top print overlay) */
.hero-img-main.composite { position: relative; }
.hero-img-main.composite .kg-base { width: 100%; height: 100%; object-fit: cover; object-position: 50% 14%; }
.hero-img-main.composite .kg-print { position: absolute; height: auto; z-index: 2; filter: drop-shadow(0 6px 20px rgba(0,0,0,.4)); pointer-events: none; }

/* ============ CART DRAWER ============ */
/* Layer scale: shared shell header sits at 1000 and the shell menu panel at 1100
   (assets/site-shell.css). Anything modal here has to clear both or the sticky
   masthead paints straight over the top of the drawer. */
.drawer-scrim { position: fixed; inset: 0; background: rgba(0,0,0,.7); z-index: 1200; opacity: 0; pointer-events: none; transition: opacity .3s; }
.drawer-scrim.open { opacity: 1; pointer-events: auto; }
.cart-drawer { position: fixed; top: 0; right: -460px; width: 440px; max-width: 100vw; height: 100vh; overflow-y: auto; -webkit-overflow-scrolling: touch; background: var(--surface); z-index: 1201; box-shadow: -30px 0 60px rgba(0,0,0,.6); transition: right .4s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column; border-left: 1px solid var(--border); }
.cart-drawer.open { right: 0; }
.cart-head { padding: 24px 28px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border); }
.cart-head h3 { font-family: var(--font-serif); font-size: 22px; color: var(--ink); }
.cart-close-x { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; color: var(--ink); transition: background .2s, color .2s; font-size: 18px; }
.cart-close-x:hover { background: var(--surface-2); color: var(--gold-bright); }
/* The bag, the totals and the checkout form scroll as one column. Splitting
   them made the flex children fight over one viewport height: the summary and
   form won, and the item list collapsed to a sliver that read as an empty bag
   even with items in it. */
.cart-body { flex: 0 0 auto; overflow: visible; padding: 18px 24px; }
.cart-foot { flex: 0 0 auto; }
.cart-empty { text-align: center; padding: 80px 18px; color: var(--ink-dim); }
.cart-empty-icon { font-size: 48px; color: var(--gold-dark); margin-bottom: 14px; opacity: .6; }
.cart-empty h4 { font-family: var(--font-serif); font-size: 20px; color: var(--ink); margin-bottom: 6px; font-weight: 600; }
.cart-empty p { font-size: 14px; }

.cart-row { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.cart-row img { width: 72px; height: 92px; object-fit: cover; border-radius: 8px; flex-shrink: 0; background: var(--card); }
.cart-row-meta { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.cart-row-name { font-family: var(--font-serif); font-size: 15px; color: var(--ink); font-weight: 600; }
.cart-row-size { font-size: 11px; color: var(--ink-dim); }
.cart-row-price { font-family: var(--font-display); font-size: 13px; color: var(--gold-bright); font-weight: 700; margin-top: 4px; }
.cart-row-qty { display: flex; align-items: center; gap: 6px; margin-top: 6px; }
.cart-row-qty button { width: 26px; height: 26px; border: 1px solid var(--border); border-radius: 50%; font-size: 14px; color: var(--ink); display: grid; place-items: center; }
.cart-row-qty button:hover { border-color: var(--gold-dark); color: var(--gold-bright); }
.cart-row-qty span { min-width: 24px; text-align: center; font-size: 13px; font-weight: 600; color: var(--ink); }
.cart-row-remove { font-size: 11px; color: var(--accent); cursor: pointer; margin-left: 10px; letter-spacing: .04em; }
.cart-row-remove:hover { text-decoration: underline; }

.cart-foot { padding: 22px 28px; border-top: 1px solid var(--border); background: var(--surface-2); }
.cart-line { display: flex; justify-content: space-between; font-size: 13px; color: var(--ink-dim); margin-bottom: 6px; letter-spacing: .04em; }
.cart-line b { font-family: var(--font-display); font-weight: 700; color: var(--ink); }
.cart-line.total { font-size: 16px; color: var(--ink); margin: 10px 0 18px; padding-top: 12px; border-top: 1px dashed var(--border); }
.cart-line.total b { color: var(--gold-bright); font-size: 18px; }
.cart-contact { display: grid; gap: 8px; margin: 16px 0 14px; }
.cart-contact label { display: block; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.cart-contact input, .cart-contact textarea, .cart-contact select { width: 100%; background: var(--surface); border: 1px solid var(--border); color: var(--ink); border-radius: 8px; padding: 10px 11px; font-size: 13px; }
.cart-contact textarea { min-height: 64px; resize: vertical; }
.cart-contact input:focus, .cart-contact textarea:focus, .cart-contact select:focus { outline: none; border-color: var(--gold-dark); }
.wallet-options { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 4px 0 8px; }
/* Wallet marks are drawn as inline SVG, never as glyphs - the Apple logo lives in a
   private-use codepoint that renders as an empty box on Windows and Android. */
.wallet-option { min-height: 44px; display: flex; align-items: center; justify-content: center; gap: 6px; border: 1px solid var(--border); border-radius: 9px; background: #fff; color: #111; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 16px; font-weight: 700; }
.wallet-option svg { flex: 0 0 auto; display: block; }
.wallet-apple svg { margin-top: -2px; }
.wallet-note { margin: 0 0 12px; text-align: center; color: var(--ink-dim); font-size: 11px; line-height: 1.45; }
.checkout-cta { width: 100%; background: var(--gold); color: var(--bg); padding: 17px 0; border-radius: 999px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; font-size: 12px; transition: background .25s; font-family: var(--font-display); }
.checkout-cta:hover { background: var(--gold-bright); }
.cart-foot small { display: block; text-align: center; margin-top: 12px; font-size: 11px; color: var(--ink-dim); }

/* ============ FOOTER ============ */
footer { background: #050506; color: var(--ink); padding: 84px 28px 32px; border-top: 1px solid var(--border); }
.foot-wrap { max-width: 1320px; margin: 0 auto; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 50px; padding-bottom: 50px; border-bottom: 1px solid var(--border); }
.foot-grid h4 { font-family: var(--font-sans); font-weight:600; font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; font-weight: 600; }
.footer-logo { width: 180px; height: auto; object-fit: contain; flex-shrink: 0; }
.foot-brand .brand { align-items: center; flex-wrap: wrap; }
.foot-grid p, .foot-grid a { font-size: 13px; color: var(--ink-dim); font-weight: 300; line-height: 1.7; }
.foot-grid a { display: block; padding: 4px 0; }
.foot-grid a:hover { color: var(--gold-bright); }
.foot-brand p { max-width: 420px; margin-top: 18px; }
.foot-newsletter { margin-top: 18px; display: flex; gap: 8px; max-width: 360px; }
.foot-newsletter input { flex: 1; padding: 13px 16px; background: var(--surface); border: 1px solid var(--border); color: var(--ink); border-radius: 8px; font-size: 13px; }
.foot-newsletter input::placeholder { color: var(--ink-faint); }
.foot-newsletter input:focus { outline: none; border-color: var(--gold-dark); }
.foot-newsletter button { background: var(--gold); color: var(--bg); padding: 13px 22px; border-radius: 8px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; font-size: 11px; font-family: var(--font-display); }
.foot-newsletter button:hover { background: var(--gold-bright); }
.foot-bottom { padding-top: 28px; display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); font-family: var(--font-display); font-weight: 600; }
.foot-bottom .pay-row { display: flex; gap: 8px; }
.foot-bottom .pay-row span { background: var(--surface); padding: 6px 12px; border-radius: 6px; letter-spacing: .04em; font-family: var(--font-sans); font-size: 10px; color: var(--ink-dim); border: 1px solid var(--border); }
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; } .foot-brand { grid-column: 1/-1; } }

/* ============ MISC ============ */
.center { text-align: center; }
.hidden { display: none !important; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ============ KACV-INSPIRED SMOOTH GALLERY MOTIFS ============ */
/* Slow cinematic ease, apply via cubic-bezier on hero/carousel transitions */
:root {
  --ease-soft: cubic-bezier(.25,.46,.45,.94);
  --ease-cinematic: cubic-bezier(.65,0,.35,1);
  --ease-out-quart: cubic-bezier(.165,.84,.44,1);
}

/* ============ MOTION LIBRARY ============ */

/* Ken Burns: slow continuous zoom + drift */
@keyframes kenBurns {
  0%   { transform: scale(1.02) translate(0, 0); }
  50%  { transform: scale(1.08) translate(-1.5%, -1%); }
  100% { transform: scale(1.02) translate(0, 0); }
}
@keyframes kenBurnsSubtle {
  0%   { transform: scale(1.01) translate(0, 0); }
  50%  { transform: scale(1.05) translate(-1%, -.6%); }
  100% { transform: scale(1.01) translate(0, 0); }
}

/* Soft float for accent images / curator photo */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* Gentle background mood gradient breathing */
@keyframes moodBreath {
  0%, 100% { opacity: .55; }
  50%      { opacity: .80; }
}

/* Slow shimmer on gold rules */
@keyframes shimmer {
  0%   { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

/* Page fade-in on load */
@keyframes pageIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
body { animation: pageIn 1s var(--ease-out-quart) both; }

/* Respect reduced-motion users */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Scroll-reveal: gentle fade-up triggered by IntersectionObserver */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s var(--ease-soft), transform 1.1s var(--ease-soft);
  will-change: opacity, transform;
}
[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal][data-delay="100"] { transition-delay: .10s; }
[data-reveal][data-delay="200"] { transition-delay: .20s; }
[data-reveal][data-delay="300"] { transition-delay: .30s; }
[data-reveal][data-delay="400"] { transition-delay: .40s; }
[data-reveal][data-delay="500"] { transition-delay: .50s; }

/* Hero carousel (kacvkovalam-style) */
.hero-carousel {
  position: relative; width: 100%; aspect-ratio: 4/5;
  border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow-3); border: 1px solid var(--border);
  background: var(--card);
}
.hero-carousel-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.6s var(--ease-cinematic);
  pointer-events: none;
}
.hero-carousel-slide.active {
  opacity: 1; pointer-events: auto;
}
.hero-carousel-slide img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
  transition: transform 8s linear;
}
.hero-carousel-slide.active img {
  transform: scale(1);
}
.hero-carousel-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(15,11,8,.55) 100%);
  pointer-events: none; z-index: 2;
}
.hero-carousel-indicator {
  position: absolute; bottom: 20px; left: 24px; z-index: 3;
  display: flex; align-items: center; gap: 14px;
  color: var(--ink); font-family: var(--font-display); font-size: 12px;
  letter-spacing: .2em; font-weight: 600;
}
.hero-carousel-indicator .hci-num { color: var(--gold-bright); font-size: 16px; }
.hero-carousel-indicator .hci-bar {
  width: 60px; height: 1px; background: rgba(248,241,231,.32); position: relative; overflow: hidden;
}
.hero-carousel-indicator .hci-bar::after {
  content: ""; position: absolute; left: 0; top: 0; height: 100%;
  width: 0; background: var(--gold-bright);
  transition: width 6s linear;
}
.hero-carousel.playing .hero-carousel-indicator .hci-bar::after { width: 100%; }
.hero-carousel-dots {
  position: absolute; bottom: 20px; right: 24px; z-index: 3;
  display: flex; gap: 8px;
}
.hero-carousel-dot {
  width: 26px; height: 2px; background: rgba(248,241,231,.32);
  cursor: pointer; transition: background .4s var(--ease-soft);
  border: 0;
}
.hero-carousel-dot.active { background: var(--gold-bright); }

/* Traditional gold-rule + center motif divider, with shimmer animation */
.gold-rule {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin: 0 auto 40px;
  font-family: var(--font-sans); font-size: 10px; letter-spacing: .42em;
  color: var(--gold); text-transform: uppercase; font-weight: 600;
  max-width: 760px; padding: 0 28px;
}
.gold-rule::before, .gold-rule::after {
  content: ""; flex: 1; max-width: 180px; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-dark) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: shimmer 5s linear infinite;
}
.gold-rule::after { animation-direction: reverse; }
.gold-rule .diamond {
  display: inline-block; width: 6px; height: 6px;
  background: var(--gold); transform: rotate(45deg);
  box-shadow: 0 0 0 3px rgba(200,155,60,.18);
  transition: box-shadow .5s var(--ease-soft);
}
.gold-rule:hover .diamond { box-shadow: 0 0 0 5px rgba(200,155,60,.28); }

/* Curator's note block, refined for clean alignment */
.curator-note {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px;
  align-items: center; max-width: 1240px; margin: 0 auto;
  padding: 64px 28px 96px;
}
.curator-note-img {
  aspect-ratio: 4/5; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-3);
  position: relative;
}
.curator-note-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 9s var(--ease-soft);
  animation: kenBurnsSubtle 24s ease-in-out infinite;
}
.curator-note-img:hover img { transform: scale(1.04); animation-play-state: paused; }
.curator-note-img::after {
  content: ""; position: absolute; inset: 14px;
  border: 1px solid rgba(226,193,107,.22); pointer-events: none; border-radius: 8px;
}

.curator-note-text { padding-left: 8px; }
.curator-note-text .label {
  font-family: var(--font-sans); font-size: 10px; letter-spacing: .36em;
  color: var(--gold); text-transform: uppercase; font-weight: 600;
  margin-bottom: 24px; display: block;
}
.curator-note-text h3 {
  font-family: var(--font-serif); font-size: clamp(28px, 3.8vw, 42px);
  color: var(--ink); line-height: 1.15; font-weight: 500; margin-bottom: 28px;
  letter-spacing: -.005em; max-width: 540px;
}
.curator-note-text h3 em { font-style: italic; color: var(--gold-bright); font-weight: 500; }
.curator-note-text p {
  font-family: var(--font-italic); font-style: italic; font-size: 17px; line-height: 1.75;
  color: var(--ink-dim); margin-bottom: 18px; font-weight: 400; max-width: 540px;
}
.curator-note-text .sign {
  display: block; margin-top: 36px; padding-top: 24px;
  border-top: 1px solid var(--border);
  font-family: var(--font-serif); font-style: italic; font-size: 17px;
  color: var(--gold-bright); font-weight: 500; letter-spacing: 0;
  line-height: 1.4;
}
.curator-note-text .sign small {
  display: block; color: var(--ink-faint);
  font-family: var(--font-sans); font-size: 10px;
  letter-spacing: .22em; text-transform: uppercase;
  margin-top: 6px; font-weight: 500; font-style: normal;
}
@media (max-width: 900px) {
  .curator-note { grid-template-columns: 1fr; gap: 36px; padding: 48px 18px 60px; }
  .curator-note-img { aspect-ratio: 3/4; max-height: 480px; }
  .curator-note-text { padding-left: 0; }
  .curator-note-text h3 { font-size: clamp(24px, 7vw, 32px); }
  .curator-note-text p { font-size: 15px; }
  .curator-note-text .sign { font-size: 15px; margin-top: 28px; padding-top: 20px; }
}

/* ============ MOBILE OPTIMISATIONS ============ */
@media (max-width: 760px) {
  .hero { padding: 40px 16px 30px; min-height: auto; }
  .hero-img-big { max-height: 60vh; }
  .h1 { font-size: clamp(34px, 9vw, 48px); margin-bottom: 18px; }
  .hero-lead { font-size: 15px; margin-bottom: 24px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .section { padding: 60px 16px; }
  .section-head { margin-bottom: 36px; }
  .section-head h2 { font-size: clamp(28px, 7vw, 38px); }
  .tiles { gap: 14px; }
  .tile { aspect-ratio: 1/1; }
  .tile-meta h3 { font-size: 18px; }
  .tile-meta p { font-size: 11px; }
  .header-inner { padding: 12px 14px; gap: 14px; }
  .brand-text { display: none; }
  .utility { gap: 6px; }
  .icon-btn { width: 36px; height: 36px; }
  .icon-btn svg { width: 18px; height: 18px; }
  .product-grid.cols-2 { grid-template-columns: 1fr; }
  .product-card .body { padding: 10px 2px 4px; }
  .product-card .body h3 { font-size: 14px; line-height: 1.3; }
  .product-card .body .sub { font-size: 11px; }
  .product-card .pricing .price { font-size: 13px; }
  .product-card .pricing .mrp, .product-card .pricing-eur { font-size: 10px; }
  /* On mobile, hover doesn't exist, surface the CTA row + wishlist instead */
  .card-cta-row { opacity: 1; transform: none; padding: 6px 2px 2px; gap: 6px; }
  .product-card .wishlist-pip { opacity: 1; }
  .enquire-btn { padding: 6px 10px; font-size: 9px; letter-spacing: .08em; }
  .view-link { font-size: 9px; letter-spacing: .12em; }
  .product-card .ribbons { top: 8px; left: 8px; }
  .ribbon { padding: 3px 7px; font-size: 8px; letter-spacing: .14em; }
  .wishlist-pip { top: 8px; right: 8px; width: 28px; height: 28px; }
  .wishlist-pip svg { width: 14px; height: 14px; }
  .product-card .quickadd { font-size: 9px; padding: 10px 0; letter-spacing: .18em; }
  .filter-bar { gap: 10px; padding: 16px 0; }
  .filter-bar select, .filter-bar input[type=search] { width: 100%; }
  .chips { width: 100%; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 6px; scrollbar-width: none; }
  .chips::-webkit-scrollbar { display: none; }
  .chip { flex-shrink: 0; }
  .collection-hero { padding: 50px 16px 60px; }
  .collection-hero h1 { font-size: clamp(28px, 8vw, 40px); }
  .collection-hero p { font-size: 14px; }
  .collection-hero .meta { gap: 18px; }
  .artisan-band, .artisan-band.reverse { padding: 50px 16px; gap: 28px; }
  .ab-media { height: 320px; }
  .artisan-band h3 { font-size: clamp(24px, 7vw, 36px); }
  .artisan-band .stats { grid-template-columns: 1fr; gap: 12px; }
  .artisan-band p.lead, .artisan-band .signature { font-size: 14px; }
  .persona { padding: 60px 16px; }
  .persona blockquote { font-size: clamp(20px, 5vw, 26px); padding: 0 16px; }
  .persona-pillars { gap: 22px; padding-top: 36px; margin-top: 50px; }
  .persona-pillar b { font-size: 10px; }
  .persona-pillar p { font-size: 12px; }
  .product-page { padding: 28px 16px 60px; gap: 28px; }
  .pdetails h1 { font-size: clamp(24px, 6.5vw, 34px); }
  .pdetails .p-price { font-size: 26px; }
  .pdetails .actions { flex-wrap: wrap; }
  .pdetails .actions .btn { flex: 1 1 100%; padding: 14px 20px; min-width: 0; white-space: normal; }
  .pdetails .actions .btn-gold { flex-basis: 100%; }
  .pdetails .wish-btn { flex: 0 0 56px; }
  .spec-row { grid-template-columns: 1fr; gap: 4px; padding: 10px 0; }
  footer { padding: 56px 16px 24px; }
  .foot-grid { padding-bottom: 32px; gap: 28px; }
  .foot-grid h4 { margin-bottom: 12px; font-size: 10px; }
  .foot-grid p, .foot-grid a { font-size: 12px; }
  .foot-bottom { padding-top: 20px; flex-direction: column; align-items: flex-start; }
  .cart-drawer { width: 100vw; right: -100vw; }
  .cart-head { padding: 18px 18px; }
  .cart-body { padding: 14px 18px; }
  .cart-foot { padding: 18px; }
  .nav-main { display: none; }
  /* Touch-friendly buttons - .buy-btn is the card CTA and is an <a>, so it needs
     naming here too or it lands at 32px on a phone. */
  button, .btn, a.btn, .chip, .buy-btn { min-height: 44px; }
  .buy-btn { display: inline-flex; align-items: center; justify-content: center; }
}
@media (max-width: 420px) {
  /* Keep 2-column grid at all phone widths, luxury brand standard */
  .product-card .pricing .price { font-size: 13px; }
  .product-card .body h3 { font-size: 13px; }
  .h1 { font-size: 30px; }
}

/* ============ KAIRALI EDITORIAL SHOP HOMEPAGE ============
   Cinematic, product-first treatment scoped to the shop landing page.
   The reference influence is structural; all branding, imagery and colour
   remain distinctly Kairali.
*/
.shop-editorial {
  --editorial-red: #b72a2e;
  --editorial-ivory: #f4efe6;
  --editorial-black: #070707;
  background: var(--editorial-black);
}

.shop-editorial .kairali-ribbon {
  position: absolute;
  inset: 0 0 auto;
  z-index: 80;
  background: linear-gradient(180deg, rgba(0,0,0,.72), rgba(0,0,0,0));
  border: 0;
}
.shop-editorial .kairali-ribbon-inner {
  position: relative;
  max-width: none;
  min-height: 84px;
  padding: 18px clamp(22px, 3vw, 54px);
}
.shop-editorial .kairali-ribbon-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
}
.shop-editorial .kairali-ribbon-logo:hover { transform: translate(-50%, -50%) scale(1.025); }
.shop-editorial .kairali-ribbon-logo img {
  height: clamp(34px, 3vw, 46px);
  max-width: 210px;
  filter: drop-shadow(0 3px 9px rgba(0,0,0,.72));
}
.shop-editorial .kairali-ribbon-nav {
  flex: 0 1 auto;
  justify-content: flex-start;
  gap: clamp(15px, 1.7vw, 28px);
  padding-right: 210px;
}
.shop-editorial .kairali-ribbon-nav > a,
.shop-editorial .kairali-ribbon-nav > .nav-item > a {
  color: rgba(255,255,255,.84);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.shop-editorial .kairali-ribbon-nav > a:nth-last-child(-n+3) { display: none; }
.shop-editorial .kairali-ribbon-utility { margin-left: auto; gap: 15px; }
.shop-editorial .kairali-ribbon-utility > a:not(.editorial-account),
.shop-editorial .kairali-ribbon-utility > .ribbon-cta,
.shop-editorial .kairali-ribbon-utility > .kairali-ribbon-burger { display: none; }
.shop-editorial .kairali-ribbon-utility > button[onclick="openCart()"],
.shop-editorial .kairali-ribbon-utility .editorial-account {
  width: 34px !important;
  height: 34px !important;
  display: grid;
  place-items: center;
  color: #fff !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
}
.shop-editorial .kairali-ribbon-utility > button[onclick="openCart()"] svg,
.shop-editorial .kairali-ribbon-utility .editorial-account svg { width: 23px; height: 23px; }
.editorial-header-left { display: none; }

.shop-editorial .editorial-hero {
  isolation: isolate;
  min-height: max(760px, 100svh);
  padding: 0;
  overflow: hidden;
  background: #090909;
}
.shop-editorial .editorial-hero::before { display: none; }
.editorial-hero-media,
.editorial-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.editorial-hero-media {
  left: auto;
  right: 0;
  width: 72%;
  z-index: -3;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(.78) contrast(1.12) brightness(.76);
  animation: editorialHeroReveal 1.35s cubic-bezier(.2,.75,.25,1) both;
}
.editorial-hero-video {
  left: 0;
  right: 0;
  width: 100%;
  object-position: 50% 50%;
  pointer-events: none;
}
.editorial-hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0,0,0,.91) 0%, rgba(0,0,0,.56) 38%, rgba(0,0,0,.13) 69%, rgba(0,0,0,.34) 100%),
    linear-gradient(0deg, rgba(0,0,0,.88) 0%, transparent 50%, rgba(0,0,0,.32) 100%);
}
.editorial-hero-copy {
  position: absolute;
  left: clamp(28px, 6vw, 96px);
  bottom: clamp(62px, 9vh, 112px);
  z-index: 2;
  width: min(630px, 46vw);
  animation: editorialCopyIn .9s .18s cubic-bezier(.2,.75,.25,1) both;
}
.editorial-kicker {
  display: block;
  margin-bottom: 15px;
  color: #ef3c40;
  font: 700 clamp(12px, 1.1vw, 16px)/1 'Manrope', sans-serif;
  letter-spacing: .22em;
}
.shop-editorial .editorial-hero .hero-title {
  margin: 0 0 18px;
  color: var(--editorial-ivory);
  font: 900 clamp(78px, 10vw, 156px)/.75 'Barlow Condensed', sans-serif;
  letter-spacing: -.045em;
  text-transform: uppercase;
  text-shadow: 0 4px 35px rgba(0,0,0,.34);
}
.shop-editorial .editorial-hero .hero-title span {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(244,239,230,.96);
  text-stroke: 1.5px rgba(244,239,230,.96);
}
.shop-editorial .editorial-hero .hero-lead {
  max-width: 460px;
  margin: 0 0 27px;
  color: rgba(255,255,255,.82);
  font: 400 clamp(13px, 1.1vw, 16px)/1.55 'Manrope', sans-serif;
}
.shop-editorial .editorial-hero .hero-actions { align-items: center; gap: 24px; }
.editorial-hero-cta {
  display: inline-flex;
  min-width: 174px;
  min-height: 54px;
  padding: 14px 24px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.82);
  color: #fff;
  font: 600 11px/1 'Manrope', sans-serif;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: background .3s ease, color .3s ease;
}
.editorial-hero-cta:hover { background: #fff; color: #070707; }
.editorial-story-link {
  color: rgba(255,255,255,.78);
  font: 600 10px/1 'Manrope', sans-serif;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.editorial-story-link span { color: #ef3c40; margin-left: 8px; }
.editorial-hero-note {
  position: absolute;
  top: 50%;
  right: clamp(22px, 3vw, 50px);
  color: rgba(255,255,255,.54);
  font: 600 9px/1 'Manrope', sans-serif;
  letter-spacing: .24em;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
}
.editorial-scroll {
  position: absolute;
  left: 50%;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.6);
  font: 600 9px/1 'Manrope', sans-serif;
  letter-spacing: .18em;
  text-transform: uppercase;
  transform: translateX(-50%);
}
.editorial-scroll span { width: 28px; height: 1px; background: #ef3c40; }

.shop-editorial .persona {
  overflow: hidden;
  padding: clamp(82px, 9vw, 138px) clamp(20px, 5vw, 72px);
  background:
    radial-gradient(circle at 82% 18%, rgba(183,42,46,.09), transparent 28%),
    radial-gradient(circle at 15% 75%, rgba(212,175,55,.06), transparent 30%),
    #090909 !important;
}
.shop-editorial .persona-wrap {
  max-width: 1320px;
  text-align: left;
}
.persona-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .72fr);
  align-items: center;
  gap: clamp(54px, 8vw, 126px);
}
.persona-editorial-copy { position: relative; z-index: 2; }
.shop-editorial .persona-ornament {
  justify-content: flex-start;
  color: #ef3c40 !important;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-family: 'Manrope', sans-serif !important;
  font-style: normal !important;
  font-size: 11px !important;
  text-shadow: none !important;
}
.shop-editorial .persona-ornament::before { display: none; }
.shop-editorial .persona-ornament::after {
  flex: 0 0 78px;
  background: linear-gradient(90deg, rgba(239,60,64,.7), transparent);
}
.persona-statement {
  margin: 0 0 28px;
  color: #f4efe6;
  font: 900 clamp(72px, 8.4vw, 132px)/.78 'Barlow Condensed', sans-serif;
  letter-spacing: -.045em;
  text-transform: uppercase;
}
.persona-statement span {
  color: transparent;
  -webkit-text-stroke: 1.25px rgba(244,239,230,.94);
  text-stroke: 1.25px rgba(244,239,230,.94);
}
.persona-intro {
  max-width: 620px;
  color: rgba(244,239,230,.7);
  font: 400 clamp(14px, 1.25vw, 17px)/1.75 'Manrope', sans-serif;
}
.persona-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(244,239,230,.35);
  color: #f4efe6;
  font: 700 10px/1 'Manrope', sans-serif;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.persona-link span { color: #ef3c40; font-size: 17px; }
.persona-visual {
  position: relative;
  min-height: 620px;
}
.persona-visual-main {
  position: absolute;
  inset: 0 0 58px 12%;
  width: 88%;
  height: calc(100% - 58px);
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 2px;
  filter: saturate(.82) contrast(1.08);
  box-shadow: 0 35px 80px rgba(0,0,0,.48);
}
.persona-visual::after {
  content: "";
  position: absolute;
  inset: 0 0 58px 12%;
  border: 1px solid rgba(228,201,119,.24);
  pointer-events: none;
}
.persona-visual-inset {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 46%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border: 8px solid #090909;
  box-shadow: 0 26px 55px rgba(0,0,0,.55);
}
.persona-visual-caption {
  position: absolute;
  right: 18px;
  bottom: 25px;
  color: rgba(244,239,230,.6);
  font: 700 9px/1 'Manrope', sans-serif;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.shop-editorial .persona-pillars {
  margin-top: clamp(72px, 9vw, 120px);
  padding-top: 46px;
  border-top-color: rgba(228,201,119,.17);
}
.shop-editorial .persona-pillar b { color: #f4efe6; }
.shop-editorial .persona-pillar p { color: rgba(244,239,230,.54); }

@media (max-width: 900px) {
  .persona-editorial { grid-template-columns: 1fr; }
  .persona-editorial-copy { max-width: 760px; }
  .persona-visual { width: min(620px, 100%); min-height: 600px; margin-left: auto; }
}

@media (max-width: 600px) {
  .shop-editorial .persona { padding: 74px 18px 68px; }
  .shop-editorial .persona-ornament { margin-bottom: 22px; font-size: 9px !important; letter-spacing: .17em; }
  .persona-statement { margin-bottom: 22px; font-size: clamp(61px, 20.5vw, 88px); line-height: .8; }
  .persona-statement span { -webkit-text-stroke-width: 1px; }
  .persona-intro { font-size: 13px; line-height: 1.68; }
  .persona-link { margin-top: 22px; }
  .persona-visual { min-height: 470px; }
  .persona-visual-main { inset: 0 0 48px 8%; width: 92%; height: calc(100% - 48px); }
  .persona-visual::after { inset: 0 0 48px 8%; }
  .persona-visual-inset { width: 43%; border-width: 6px; }
  .persona-visual-caption { right: 10px; bottom: 20px; font-size: 8px; }
  .shop-editorial .persona-pillars { margin-top: 72px; padding-top: 36px; }
}

/* Warm heritage-brown collection directory, bridging the black editorial hero
   with Kairali's established cream, gold and deep heritage colours. */
.shop-editorial #collections {
  background:
    radial-gradient(circle at 84% 10%, rgba(212,175,55,.10), transparent 34%),
    radial-gradient(circle at 8% 58%, rgba(177,59,16,.10), transparent 36%),
    linear-gradient(145deg, #21110d 0%, #321b14 48%, #25130e 100%);
  border-top: 1px solid rgba(212,175,55,.18);
  border-bottom: 1px solid rgba(212,175,55,.14);
}
.shop-editorial #collections::before {
  background:
    linear-gradient(115deg, transparent 0 56%, rgba(243,229,171,.025) 56% 57%, transparent 57%),
    radial-gradient(700px 420px at 76% 18%, rgba(212,175,55,.08), transparent 65%);
}
.shop-editorial #collections .section-head .eyebrow { color: #d8b85d; }
.shop-editorial #collections .section-head h2 { color: #f7efe4; }
.shop-editorial #collections .section-head h2 em { color: #e4c977; }
.shop-editorial #collections .section-head p { color: rgba(247,239,228,.68); }
.shop-editorial #collections .curated-item {
  border: 1px solid rgba(228,201,119,.14);
  box-shadow: 0 26px 58px rgba(8,3,1,.34);
}
.shop-editorial #collections .curated-overlay {
  background: linear-gradient(to top, rgba(28,13,8,.96) 0%, rgba(35,18,12,.48) 52%, transparent 100%);
}
.shop-editorial #collections .arts-map {
  border-color: rgba(228,201,119,.20);
  background: linear-gradient(135deg, rgba(64,35,24,.92), rgba(26,13,9,.94));
}
.shop-editorial #collections .arts-map-intro h2 { color: #f7efe4; }
.shop-editorial #collections .arts-map-intro p { color: rgba(247,239,228,.65); }
.shop-editorial #collections .arts-map-grid { background: rgba(228,201,119,.16); border-color: rgba(228,201,119,.16); }
.shop-editorial #collections .arts-map-grid a { background: #24130e; }
.shop-editorial #collections .arts-map-grid a:hover { background: #392018; }
.shop-editorial #collections .arts-map-grid span { color: rgba(247,239,228,.62); }

@keyframes editorialHeroReveal {
  from { opacity: 0; transform: scale(1.06); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes editorialCopyIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1000px) {
  .editorial-hero-media { left: 0; width: 100%; }
  .shop-editorial .kairali-ribbon-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    min-height: 72px;
    padding: 14px 18px;
  }
  .editorial-header-left { display: flex; align-items: center; gap: 13px; justify-self: start; }
  .editorial-menu, .editorial-search {
    width: 30px;
    height: 34px;
    display: grid;
    place-items: center;
    color: #fff;
  }
  .editorial-menu svg, .editorial-search svg { width: 22px; height: 22px; }
  .shop-editorial .kairali-ribbon-logo,
  .shop-editorial .kairali-ribbon-logo:hover {
    position: static;
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    transform: none;
  }
  .shop-editorial .kairali-ribbon-utility { grid-column: 3; justify-self: end; }
  .shop-editorial .editorial-hero-copy { width: min(650px, 72vw); }
}

@media (max-width: 600px) {
  body.shop-editorial { padding-bottom: 0; }
  .shop-editorial .sticky-wa {
    left: auto;
    right: 16px;
    bottom: 16px;
    width: auto;
    min-height: 50px;
    padding: 13px 18px;
    border: 1px solid rgba(0,0,0,.12);
    border-radius: 18px;
    background: rgba(248,248,248,.96);
    color: #111;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .02em;
    text-transform: none;
    box-shadow: 0 10px 28px rgba(0,0,0,.32);
    backdrop-filter: blur(12px);
  }
  .shop-editorial .sticky-wa svg { width: 18px; height: 18px; color: #128c7e; }
  .shop-editorial .kairali-ribbon-inner { min-height: 66px; padding: 12px 13px; }
  .shop-editorial .kairali-ribbon-logo img { height: 38px; max-width: 158px; }
  .shop-editorial .kairali-ribbon-utility { gap: 7px; }
  .shop-editorial .kairali-ribbon-utility .editorial-account,
  .shop-editorial .kairali-ribbon-utility > button[onclick="openCart()"] { width: 29px !important; height: 34px !important; }
  .shop-editorial .kairali-ribbon-utility .editorial-account svg,
  .shop-editorial .kairali-ribbon-utility > button[onclick="openCart()"] svg { width: 21px; height: 21px; }
  .editorial-header-left { gap: 6px; }
  .editorial-menu, .editorial-search { width: 27px; }
  .editorial-menu svg, .editorial-search svg { width: 20px; height: 20px; }
  .shop-editorial .editorial-hero { min-height: max(680px, 100svh); }
  .editorial-hero-media {
    object-position: 50% 50%;
    filter: saturate(.72) contrast(1.12) brightness(.69);
  }
  .editorial-hero-video { object-position: 50% 50%; }
  .editorial-hero-shade {
    background:
      linear-gradient(0deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.28) 47%, rgba(0,0,0,.31) 100%),
      linear-gradient(90deg, rgba(0,0,0,.15), transparent 45%, rgba(0,0,0,.12));
  }
  .editorial-hero-copy {
    left: 22px;
    right: 22px;
    bottom: 66px;
    width: auto !important;
    text-align: left;
  }
  .editorial-kicker { margin-bottom: 11px; font-size: 10px; letter-spacing: .2em; }
  .shop-editorial .editorial-hero .hero-title {
    margin-bottom: 15px;
    font-size: clamp(67px, 24vw, 104px);
    line-height: .78;
  }
  .shop-editorial .editorial-hero .hero-title span { -webkit-text-stroke-width: 1px; }
  .shop-editorial .editorial-hero .hero-lead { max-width: 340px; margin-bottom: 20px; font-size: 12px; }
  .shop-editorial .editorial-hero .hero-actions { flex-direction: row; align-items: center; gap: 15px; }
  .shop-editorial .editorial-hero .hero-actions .editorial-hero-cta { width: auto; min-width: 145px; min-height: 48px; padding: 12px 15px; font-size: 9px; }
  .editorial-story-link { font-size: 8px; letter-spacing: .1em; }
  .editorial-hero-note { display: none; }
  .editorial-scroll { display: none; }
}

@media (max-width: 390px) {
  .shop-editorial .kairali-ribbon-logo img { height: 35px; max-width: 145px; }
  .shop-editorial .editorial-hero .hero-title { font-size: clamp(62px, 23vw, 88px); }
  .editorial-story-link { max-width: 94px; line-height: 1.4; }
}

@media (prefers-reduced-motion: reduce) {
  .editorial-hero-media, .editorial-hero-copy { animation: none; }
}

/* ============ 2026 CREATIVE DIRECTION · UNIFIED TYPOGRAPHY ============
   One expressive display family, one calm reading family, and one consistent
   hierarchy across the complete shop landing page.
*/
.shop-editorial {
  --type-display: 'Barlow Condensed', sans-serif;
  --type-body: 'Manrope', sans-serif;
  --type-h1: clamp(78px, 10vw, 156px);
  --type-h2: clamp(54px, 6.6vw, 92px);
  --type-h3: clamp(27px, 3vw, 40px);
  --type-body-size: clamp(14px, 1.1vw, 16px);
  font-family: var(--type-body);
}
.shop-editorial :where(p, a, button, input, select, textarea, span) { font-family: var(--type-body); }

/* H1: reserved for the opening campaign statement. */
.shop-editorial .editorial-hero .hero-title {
  font-family: var(--type-display);
  font-size: var(--type-h1);
  font-weight: 900;
  line-height: .75;
}
.shop-editorial .persona-statement {
  font-family: var(--type-display);
  font-size: var(--type-h2);
  font-weight: 900;
  line-height: .82;
}

/* H2: every major chapter uses the same condensed editorial construction. */
.shop-editorial section h2:not(.persona-statement),
.shop-editorial .section-head h2,
.shop-editorial .section-head-split h2,
.shop-editorial .arts-map-intro h2,
.shop-editorial .authority-panel h2 {
  font-family: var(--type-display) !important;
  font-size: var(--type-h2) !important;
  font-style: normal !important;
  font-weight: 800 !important;
  line-height: .88 !important;
  letter-spacing: -.025em !important;
  text-transform: uppercase;
}
.shop-editorial section h2:not(.persona-statement) em,
.shop-editorial .section-head h2 em,
.shop-editorial .arts-map-intro h2 em,
.shop-editorial .authority-panel h2 em {
  color: transparent !important;
  font: inherit;
  font-style: normal;
  -webkit-text-stroke: 1px rgba(244,239,230,.92);
  text-stroke: 1px rgba(244,239,230,.92);
}
.shop-editorial #collections .section-head h2 em {
  -webkit-text-stroke-color: rgba(228,201,119,.95);
}

/* H3 and merchandise names: a quieter editorial serif beneath bold H1/H2. */
.shop-editorial section h3,
.shop-editorial .curated-content h3,
.shop-editorial .tile-meta h3,
.shop-editorial .product-card .body h3,
.shop-editorial .journal-grid b,
.shop-editorial .special-order-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-style: normal !important;
  font-weight: 600 !important;
  line-height: 1.08 !important;
  letter-spacing: -.01em !important;
  text-transform: none;
}
.shop-editorial .curated-content h3 { font-size: clamp(40px, 4vw, 56px) !important; }
.shop-editorial .tile-meta h3 { font-size: clamp(28px, 2.5vw, 36px) !important; }
.shop-editorial .product-card .body h3 { font-size: clamp(19px, 1.6vw, 22px) !important; line-height: 1.12 !important; }
.shop-editorial .journal-grid b { font-size: clamp(27px, 2.3vw, 33px) !important; }
.shop-editorial .special-order-title { font-size: 28px !important; color: #e4c977 !important; }
.shop-editorial .arts-map-grid b {
  font-family: var(--type-body) !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase;
  color: #e4c977 !important;
}

/* Eyebrows are the shared navigation markers between page chapters. */
.shop-editorial .eyebrow,
.shop-editorial .curated-tag,
.shop-editorial .tile-meta .reg,
.shop-editorial .product-card .body .region,
.shop-editorial .journal-grid span {
  color: #d8b85d;
  font-family: var(--type-body) !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  line-height: 1.35;
  letter-spacing: .24em !important;
  text-transform: uppercase;
}

/* Reading copy and spacing stay deliberately quiet beneath the display type. */
.shop-editorial .section-head { max-width: 920px; margin-bottom: clamp(48px, 6vw, 76px); }
.shop-editorial .section-head h2 { margin: 14px 0 24px; }
.shop-editorial .section-head p,
.shop-editorial .arts-map-intro p,
.shop-editorial .authority-panel p,
.shop-editorial .curated-content p,
.shop-editorial .tile-meta p,
.shop-editorial .special-order-copy {
  font-family: var(--type-body) !important;
  font-size: var(--type-body-size) !important;
  font-weight: 400 !important;
  line-height: 1.72 !important;
}
.shop-editorial .section { padding-top: clamp(80px, 9vw, 124px); padding-bottom: clamp(80px, 9vw, 124px); }
.shop-editorial .section-head-split { margin-bottom: clamp(42px, 6vw, 70px); }
.shop-editorial .section-head-split h2 { margin-top: 10px; }

/* One geometric card language throughout the page. */
.shop-editorial .curated-item,
.shop-editorial .tile,
.shop-editorial .featured-collection-frame,
.shop-editorial .journal-grid a,
.shop-editorial #special-orders button,
.shop-editorial #special-orders a[href="international.html"] {
  border-radius: 3px !important;
}
.shop-editorial .curated-content { padding: clamp(28px, 5vw, 58px); }
.shop-editorial .curated-btn,
.shop-editorial #special-orders button,
.shop-editorial #special-orders a[href="international.html"] { font-family: var(--type-body); }
.shop-editorial .featured-collection-title { max-width: 700px; }
.shop-editorial .featured-collection-frame { min-height: min(760px, 80vh) !important; }
.shop-editorial .journal-grid a { min-height: 260px; }
.shop-editorial .journal-grid em { font-family: var(--type-body); letter-spacing: .13em; text-transform: uppercase; }
.shop-editorial .foot-grid h4 {
  font-family: var(--type-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .16em;
}

@media (max-width: 760px) {
  .shop-editorial {
    --type-h1: clamp(67px, 24vw, 104px);
    --type-h2: clamp(48px, 15vw, 70px);
    --type-h3: clamp(25px, 8vw, 34px);
    --type-body-size: 13px;
  }
  .shop-editorial .section { padding-top: 76px; padding-bottom: 76px; }
  .shop-editorial .section-head { margin-bottom: 46px; }
  .shop-editorial .section-head h2 { margin: 12px 0 20px; }
  .shop-editorial section h2:not(.persona-statement),
  .shop-editorial .section-head h2,
  .shop-editorial .section-head-split h2,
  .shop-editorial .arts-map-intro h2,
  .shop-editorial .authority-panel h2 { line-height: .9 !important; }
  .shop-editorial .curated-content h3 { font-size: 40px !important; }
  .shop-editorial .product-card .body h3 { font-size: 19px !important; }
  .shop-editorial .journal-grid b { font-size: 28px !important; }
  .shop-editorial .special-order-title { font-size: 26px !important; }
  .shop-editorial .arts-map-grid b { font-size: 16px !important; }
  .shop-editorial .featured-collection-frame { min-height: 620px !important; }
  .shop-editorial .journal-grid a { min-height: 220px; }
}

/* ============ 2026 SHOP EDIT 3 · FOCUSED COMMERCE HOMEPAGE ============ */
.shop-editorial {
  --type-h2: clamp(46px, 5.2vw, 72px);
  --type-body-size: clamp(14px, 1vw, 16px);
}
.shop-editorial .section { padding-block: clamp(68px, 7vw, 96px); }
.shop-editorial .section-head { max-width: 720px; margin-bottom: clamp(34px, 4vw, 52px); }
.shop-editorial section h2:not(.persona-statement),
.shop-editorial .section-head h2,
.shop-editorial .section-head-split h2,
.shop-editorial .authority-panel h2 {
  line-height: .94 !important;
  letter-spacing: -.015em !important;
}

.shop-editorial .persona { padding-block: clamp(72px, 8vw, 108px); }
.shop-editorial .persona-editorial { grid-template-columns: minmax(0, 1fr) minmax(320px, .58fr); gap: clamp(42px, 6vw, 82px); }
.shop-editorial .persona-statement { font-size: clamp(64px, 7vw, 104px); line-height: .82; }
.shop-editorial .persona-visual { min-height: 500px; }
.shop-editorial .persona-visual-main,
.shop-editorial .persona-visual::after { inset: 0; width: 100%; height: 100%; }
.shop-editorial .persona-pillars { grid-template-columns: repeat(3, 1fr); margin-top: clamp(48px, 6vw, 72px); padding-top: 32px; }

.shop-editorial .curated-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  margin-top: 0;
}
.shop-editorial .curated-item {
  position: relative;
  grid-column: span 4;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #160d09;
  border: 1px solid rgba(228,201,119,.14);
  box-shadow: 0 20px 46px rgba(8,3,1,.28);
}
.shop-editorial .curated-item.curated-lead { grid-column: span 8; }
.shop-editorial .curated-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.75,.25,1), filter .4s ease;
}
.shop-editorial .curated-item:hover img { transform: scale(1.035); }
.shop-editorial .curated-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(20,9,6,.96), rgba(20,9,6,.18) 72%); }
.shop-editorial .curated-content { position: relative; z-index: 2; width: 100%; padding: clamp(24px, 3vw, 38px); }
.shop-editorial .curated-content h3 { margin: 8px 0 10px; font-size: clamp(31px, 3vw, 46px) !important; color: #f7efe4; }
.shop-editorial .curated-content p { max-width: 470px; margin-bottom: 18px; color: rgba(247,239,228,.72); }
.shop-editorial .curated-note {
  display: block;
  max-width: 36ch;
  margin: -7px 0 17px;
  color: rgba(247,239,228,.56);
  font-size: 9px;
  line-height: 1.5;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.shop-editorial .curated-btn { display: inline-flex; padding-bottom: 5px; border-bottom: 1px solid rgba(247,239,228,.55); color: #f7efe4; font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }

.shop-editorial .featured-products { background: #0b0907; }
.shop-editorial .section-head-split { align-items: flex-end; margin-bottom: clamp(32px, 4vw, 48px); }
.shop-editorial .section-head-split > a { font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.shop-editorial .card-availability { margin-top: 7px; color: var(--ink-dim); font-size: 11px; line-height: 1.45; }
.shop-editorial .card-cta-row { padding-top: 8px; }
.shop-editorial .buy-btn,
.shop-editorial .enquire-btn { min-height: 40px; border-radius: 2px; }

.shop-editorial #artisans .tiles { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.shop-editorial #artisans .tile { min-height: 500px; }
.shop-editorial #artisans .tile-meta p { max-width: 36ch; }
.shop-editorial .documentary-credit { max-width: 800px; }

.shop-editorial .authority-journal { background: #f0e7d8; color: #1b110c; }
.shop-editorial .authority-panel { max-width: 1040px; margin-bottom: 34px; background: rgba(255,255,255,.38); }
.shop-editorial .authority-panel h2 { color: #1b110c; }
.shop-editorial .authority-panel p { max-width: 720px; color: #66564a; }
.shop-editorial .authority-panel .btn { color: #1b110c; border-color: rgba(27,17,12,.35); }
.shop-editorial .journal-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.shop-editorial .journal-grid a { min-height: 190px; background: rgba(255,255,255,.42); border-color: rgba(27,17,12,.13); }
.shop-editorial .journal-grid b { color: #1b110c; font-size: clamp(24px, 2vw, 30px) !important; }
.shop-editorial .journal-grid em { color: #66564a; }

.shop-editorial .trust { background: #17100c; }
.shop-editorial .trust-item span { line-height: 1.45; }
.shop-editorial .special-orders-compact .section-head { margin-bottom: 30px; }
.shop-editorial .special-order-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; max-width: 980px; }
.shop-editorial .special-order-grid > * { min-height: 150px; padding: 28px; display: flex; flex-direction: column; justify-content: center; text-align: left; border: 1px solid var(--border); background: var(--surface-2); }
.shop-editorial .special-order-grid > a { background: linear-gradient(135deg, rgba(200,155,60,.16), rgba(200,155,60,.03)); }
.shop-editorial .special-order-title { display: block; margin-bottom: 7px; }
.shop-editorial .footer-shop-link { display: inline-block; margin-top: 20px; color: var(--gold-bright); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

@media (max-width: 820px) {
  .shop-editorial .persona-editorial { grid-template-columns: minmax(0, 1fr); }
  .shop-editorial .persona-editorial-copy { width: 100%; }
  .shop-editorial .persona-pillars { grid-template-columns: 1fr; gap: 24px; }
  .shop-editorial #artisans .tiles { grid-template-columns: 1fr; }
  .shop-editorial #artisans .tile { min-height: 460px; }
  .shop-editorial .journal-grid { grid-template-columns: 1fr; }
  .shop-editorial .special-order-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .shop-editorial {
    --type-h2: clamp(39px, 12.5vw, 54px);
    --type-body-size: 13px;
  }
  .shop-editorial .section { padding-block: 62px; }
  .shop-editorial .section-head { margin-bottom: 32px; }
  .shop-editorial .persona { padding-block: 64px; }
  .shop-editorial .persona-statement { font-size: clamp(58px, 19vw, 78px); }
  .shop-editorial .persona-visual { min-height: 400px; }
  .shop-editorial .curated-gallery {
    display: flex;
    gap: 14px;
    margin-inline: -18px;
    padding: 0 18px 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .shop-editorial .curated-gallery::-webkit-scrollbar { display: none; }
  .shop-editorial .curated-item,
  .shop-editorial .curated-item.curated-lead { flex: 0 0 82vw; min-height: 420px; scroll-snap-align: start; }
  .shop-editorial .curated-content h3 { font-size: 34px !important; }
  .shop-editorial .product-grid { gap: 24px 10px; }
  .shop-editorial .product-card .body { padding-top: 11px; }
  .shop-editorial .product-card .body h3 { font-size: 16px !important; line-height: 1.15 !important; }
  .shop-editorial .product-card .body .region { font-size: 8px !important; letter-spacing: .16em !important; }
  .shop-editorial .product-card .pricing-eur,
  .shop-editorial .card-availability { display: none; }
  .shop-editorial .buy-btn,
  .shop-editorial .enquire-btn { min-height: 38px; padding: 7px 8px; font-size: 9px; letter-spacing: .08em; }
  .shop-editorial #artisans .tile { min-height: 420px; }
  .shop-editorial .authority-panel { padding: 28px 24px; }
  .shop-editorial .journal-grid a { min-height: 165px; }
  .shop-editorial .trust-row { grid-template-columns: 1fr 1fr; }
  .shop-editorial .trust-item { align-items: flex-start; }
  .shop-editorial .trust-item span { font-size: 10px; }
  .shop-editorial .sticky-wa { width: 52px; height: 52px; min-height: 52px; padding: 0; border-radius: 50%; justify-content: center; }
  .shop-editorial .sticky-wa span { display: none; }
}

@media (max-width: 390px) {
  .shop-editorial .kairali-ribbon-logo img { max-width: 132px; }
  .shop-editorial .trust-row { grid-template-columns: 1fr; }
}

/* ============ 2026 COOL GALLERY · IMAGE-FIRST COLOUR SYSTEM ============
   Keep the monochrome opening intact. Past the hero, cool ink and mineral
   surfaces separate warm product photography from the page instead of
   repeating its brown/sepia tones. */
.shop-editorial {
  --bg: #080a0f;
  --surface: #0d1420;
  --surface-2: #141d2b;
  --card: #f3f5f7;
  --card-tint: #e8edf2;
  --card-deep: #101827;
  --ink: #f6f7f9;
  --ink-dim: #aeb9c8;
  --ink-faint: #748196;
  --ink-card: #10141b;
  --ink-card-dim: #586270;
  --border: rgba(170, 202, 236, .18);
  --border-card: rgba(9, 18, 30, .10);
  --glass: rgba(5, 10, 18, .78);
  --card-translucent: rgba(126, 174, 224, .055);
}

/* All later chapters use neutral/cool light, so photography supplies warmth. */
.shop-editorial .section.alt::before {
  background:
    radial-gradient(760px 500px at 84% 12%, rgba(40, 112, 190, .10), transparent 62%),
    radial-gradient(620px 420px at 7% 92%, rgba(239, 60, 64, .055), transparent 62%);
}

.shop-editorial #collections {
  overflow: hidden;
  background:
    linear-gradient(118deg, transparent 0 68%, rgba(71, 139, 213, .055) 68% 68.12%, transparent 68.12%),
    radial-gradient(circle at 88% 8%, rgba(39, 111, 190, .24), transparent 31%),
    radial-gradient(circle at 4% 64%, rgba(20, 175, 185, .08), transparent 29%),
    linear-gradient(145deg, #07101d 0%, #0b1a2d 50%, #080d16 100%);
  border-color: rgba(119, 177, 235, .18);
}
.shop-editorial #collections::before {
  opacity: 1;
  background:
    linear-gradient(90deg, rgba(239,60,64,.75), rgba(239,60,64,0)) 0 0 / min(34vw, 430px) 2px no-repeat,
    radial-gradient(700px 460px at 78% 18%, rgba(62, 137, 216, .13), transparent 65%);
}
.shop-editorial #collections .section-head .eyebrow,
.shop-editorial #collections .curated-tag { color: #7ed8e2 !important; }
.shop-editorial #collections .section-head h2,
.shop-editorial #collections .curated-content h3 { color: #f5f7fb; }
.shop-editorial #collections .section-head h2 em {
  -webkit-text-stroke-color: rgba(134, 196, 255, .95);
}
.shop-editorial #collections .section-head p,
.shop-editorial #collections .curated-content p { color: rgba(225, 234, 244, .72); }

.shop-editorial #collections .curated-item {
  background: #09111d;
  border-color: rgba(153, 196, 238, .22);
  box-shadow: 0 26px 62px rgba(1, 6, 14, .48);
}
.shop-editorial #collections .curated-item::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 3;
  width: 3px;
  background: #ef3c40;
  transform: scaleY(.18);
  transform-origin: bottom;
  transition: transform .45s cubic-bezier(.2,.75,.25,1);
  pointer-events: none;
}
.shop-editorial #collections .curated-item:nth-child(2)::after { background: #60d5c8; }
.shop-editorial #collections .curated-item:nth-child(3)::after { background: #8aa7ff; }
.shop-editorial #collections .curated-item:nth-child(4)::after { background: #ef3c40; }
.shop-editorial #collections .curated-item:nth-child(5)::after { background: #c7a2ff; }
.shop-editorial #collections .curated-item:nth-child(6)::after { background: #63c9ff; }
.shop-editorial #collections .curated-item:hover::after,
.shop-editorial #collections .curated-item:focus-visible::after { transform: scaleY(1); }
.shop-editorial #collections .curated-item img {
  filter: saturate(1.07) contrast(1.08) brightness(.96);
}
.shop-editorial #collections .curated-item:hover img {
  filter: saturate(1.16) contrast(1.08) brightness(1.01);
}
.shop-editorial #collections .curated-overlay {
  background: linear-gradient(0deg, rgba(3, 10, 20, .97), rgba(4, 12, 24, .32) 64%, rgba(4, 12, 24, .06));
}
.shop-editorial #collections .curated-btn {
  border-color: rgba(126, 216, 226, .65);
  color: #f5f7fb;
}

/* Product images sit on clean studio grey; remove inherited warm cast. */
.shop-editorial .featured-products { background: #080a0f; }
.shop-editorial .product-card .media,
.shop-editorial .product-card .media img.contain { background: #f2f4f6; }
.shop-editorial .product-card .media img { filter: none; }
.shop-editorial .product-card:hover .media img { filter: saturate(1.05) contrast(1.025); }
.shop-editorial .product-card:hover .media {
  box-shadow: 0 0 0 1px rgba(126, 216, 226, .34), 0 22px 60px -24px rgba(0, 0, 0, .95);
}

/* Replace the remaining cream/brown editorial chapter with cool porcelain. */
.shop-editorial .authority-journal {
  background: #eef2f6;
  color: #101824;
}
.shop-editorial .authority-panel,
.shop-editorial .journal-grid a {
  background: rgba(255,255,255,.64);
  border-color: rgba(25, 50, 78, .13);
}
.shop-editorial .authority-panel { border-left-color: #2b77b8; }
.shop-editorial .authority-panel h2,
.shop-editorial .journal-grid b { color: #101824; }
.shop-editorial .authority-panel p,
.shop-editorial .journal-grid em { color: #536274; }
.shop-editorial .authority-panel .btn { color: #101824; border-color: rgba(16,24,36,.34); }
.shop-editorial .trust { background: #0b121d; }
.shop-editorial .special-order-grid > a {
  background: linear-gradient(135deg, rgba(42, 111, 181, .18), rgba(21, 197, 188, .035));
}

@media (max-width: 760px) {
  .shop-editorial #collections::before {
    background:
      linear-gradient(90deg, rgba(239,60,64,.75), rgba(239,60,64,0)) 0 0 / 46vw 2px no-repeat,
      radial-gradient(520px 360px at 88% 10%, rgba(62,137,216,.14), transparent 66%);
  }
  .shop-editorial #collections .curated-item::after { transform: scaleY(.34); }
}

@media (prefers-reduced-motion: reduce) {
  .shop-editorial #collections .curated-item::after { transition: none; }
}

/* ============ DESKTOP SPACE EDIT · ACOUSTIC ART SHOWCASE ============
   The acoustic feature used to span 8 columns on the assumption that the
   four-column instruments card would sit beside it and complete the row. It
   never did. The gallery holds one eight-column lead plus nine four-column
   cards, so the cards tile 3 + 3 + 2 and the trailing pair pushes the acoustic
   feature onto a row of its own. That left TWO holes on desktop: four dead
   columns beside the trailing pair, and four more beside the acoustic feature.

   Fixed by making the last row a full-bleed feature and widening the trailing
   pair to half the grid each, so every row now sums to exactly 12:
       8 + 4  |  4 + 4 + 4  |  4 + 4 + 4  |  6 + 6  |  12
   The :nth-last-child hooks depend on the acoustic feature staying last in the
   gallery. tools/layout_audit.js re-checks every page and will fail if another
   card is appended and breaks the arithmetic again. */
.shop-editorial #collections .acoustic-showcase {
  grid-column: span 8;
  min-height: 420px;
}
.shop-editorial #collections .acoustic-showcase:last-child { grid-column: span 12; }
/* Scoped with :has() so a gallery that does not end in the acoustic feature,
   and may already tile perfectly, is left completely alone. */
.shop-editorial .curated-gallery:has(> .acoustic-showcase:last-child) > .curated-item:nth-last-child(2),
.shop-editorial .curated-gallery:has(> .acoustic-showcase:last-child) > .curated-item:nth-last-child(3) { grid-column: span 6; }
.acoustic-showcase-media {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.08fr 1.08fr .92fr .92fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  overflow: hidden;
  background: #07101d;
}
.acoustic-design { position: relative; min-width: 0; min-height: 0; overflow: hidden; }
.acoustic-design-main { grid-column: 1 / 3; grid-row: 1 / 3; }
.acoustic-design-arabic { grid-column: 3 / 5; grid-row: 1; }
.acoustic-design-modern { grid-column: 3; grid-row: 2; }
.acoustic-design-statement { grid-column: 4; grid-row: 2; }
.shop-editorial #collections .acoustic-showcase-media img {
  position: static;
  inset: auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.06) brightness(1.02);
}
.shop-editorial #collections .acoustic-showcase:hover .acoustic-showcase-media img {
  filter: saturate(1.12) contrast(1.08) brightness(.97);
}
.shop-editorial #collections .acoustic-showcase .curated-overlay {
  background:
    linear-gradient(90deg, rgba(2,8,17,.96) 0%, rgba(2,8,17,.78) 34%, rgba(2,8,17,.12) 58%, rgba(2,8,17,.03) 100%),
    linear-gradient(0deg, rgba(2,8,17,.56) 0%, transparent 48%);
}
.shop-editorial #collections .acoustic-showcase .curated-content {
  max-width: 640px;
  padding: clamp(34px, 5vw, 68px);
}
.shop-editorial #collections .acoustic-showcase .curated-content p { max-width: 540px; }
.acoustic-formats {
  display: block;
  margin: 0 0 22px;
  color: rgba(126,216,226,.88);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: .16em;
  text-transform: uppercase;
}

/* Use the complete desktop canvas for the two high-intent order paths. */
.shop-editorial .special-order-grid { width: 100%; max-width: none; }

@media (max-width: 760px) {
  .shop-editorial #collections .acoustic-showcase { min-height: 420px; }
  .acoustic-showcase-media { display: block; }
  .acoustic-design { display: none; width: 100%; height: 100%; }
  .acoustic-design-main { display: block; }
  .shop-editorial #collections .acoustic-showcase .curated-overlay {
    background: linear-gradient(0deg, rgba(3,10,20,.97), rgba(4,12,24,.34) 68%, rgba(4,12,24,.08));
  }
  .shop-editorial #collections .acoustic-showcase .curated-content { padding: 24px; }
  .acoustic-formats { margin-bottom: 16px; font-size: 8px; letter-spacing: .11em; }
}

/* ============ LIVING ARTS STORY · FOUR CLEAR TRADITIONS ============ */
.shop-editorial #artisans .tradition-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.shop-editorial #artisans .tradition-card {
  width: 100%;
  min-width: 0;
  min-height: 520px;
  aspect-ratio: auto;
}
.shop-editorial #artisans .tradition-card .tile-meta { left: 20px; right: 20px; bottom: 24px; }
.shop-editorial #artisans .tradition-card .tile-meta p { max-width: 29ch; }
.shop-editorial #artisans .tradition-card:nth-child(3) img { object-position: 50% 50%; }
.shop-editorial #artisans .tradition-card:nth-child(4) img { object-position: 50% 42%; }
.shop-editorial .special-order-grid > a { border-radius: 3px !important; }

@media (max-width: 1100px) {
  .shop-editorial #artisans .tradition-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .shop-editorial #artisans .tradition-grid {
    display: flex;
    gap: 14px;
    margin-inline: -18px;
    padding: 0 18px 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .shop-editorial #artisans .tradition-grid::-webkit-scrollbar { display: none; }
  .shop-editorial #artisans .tradition-card {
    flex: 0 0 82vw;
    min-height: 460px;
    scroll-snap-align: start;
  }
}
/* ============ SHOP SUBPAGES · LANDING-PAGE DESIGN LANGUAGE ============
   Collection, product and supporting story pages now share the landing page's
   dark editorial rhythm while keeping their existing commerce behaviour. */
.shop-editorial-subpage {
  --subpage-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --subpage-body: 'Manrope', sans-serif;
  --subpage-serif: 'Cormorant Garamond', 'Playfair Display', serif;
  background:
    radial-gradient(900px 520px at 88% 4%, rgba(183,42,46,.12), transparent 68%),
    #070707;
  color: #f4efe6;
  font-family: var(--subpage-body);
}
.shop-editorial-subpage :where(p,a,button,input,select,textarea,span) { font-family: var(--subpage-body); }

/* The same quiet, centred store masthead used by the landing page. */
.shop-editorial-subpage .kairali-ribbon {
  position: relative;
  background: #080706;
  border-bottom: 1px solid rgba(228,201,119,.14);
}
.shop-editorial-subpage .kairali-ribbon-inner {
  position: relative;
  min-height: 76px;
  max-width: none;
  padding: 14px clamp(18px,3vw,48px);
}
.shop-editorial-subpage .kairali-ribbon-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  z-index: 2;
}
.shop-editorial-subpage .kairali-ribbon-logo img { height: 42px; max-width: 190px; }
.shop-editorial-subpage .kairali-ribbon-nav {
  flex: 0 1 auto;
  gap: clamp(14px,1.7vw,27px);
  padding-right: 210px;
}
.shop-editorial-subpage .kairali-ribbon-nav > a,
.shop-editorial-subpage .kairali-ribbon-nav > .nav-item > a {
  color: rgba(244,239,230,.76);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.shop-editorial-subpage .kairali-ribbon-utility { margin-left: auto; }

/* Collection opener: campaign-scale type, image-first frame, no rounded app card. */
.shop-collection-page .collection-hero {
  min-height: min(760px, calc(100svh - 76px));
  display: grid;
  align-items: center;
  padding: clamp(64px,8vw,112px) clamp(18px,4vw,54px);
  background:
    linear-gradient(90deg, rgba(7,7,7,.96), rgba(7,7,7,.76) 48%, rgba(7,7,7,.2)),
    radial-gradient(760px 520px at 86% 36%, rgba(183,42,46,.16), transparent 72%),
    #0b0907;
}
.shop-collection-page .collection-hero::after {
  content: 'KAIRALI SHOP · CURATED COLLECTION';
  position: absolute;
  left: clamp(18px,4vw,54px);
  bottom: 22px;
  color: rgba(244,239,230,.46);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
}
.shop-collection-page .collection-hero-wrap {
  width: 100%;
  max-width: 1440px;
  grid-template-columns: minmax(0,1fr) minmax(360px,.72fr);
  gap: clamp(42px,7vw,110px);
}
.shop-collection-page .collection-hero h1 {
  max-width: 780px;
  margin: 10px 0 22px;
  font-family: var(--subpage-display);
  font-size: clamp(68px,8.5vw,128px);
  font-weight: 900;
  line-height: .82;
  letter-spacing: -.025em;
  text-transform: uppercase;
}
.shop-collection-page .collection-hero .tag {
  max-width: 38ch;
  color: #e4c977;
  font-family: var(--subpage-serif);
  font-size: clamp(20px,2vw,29px);
  line-height: 1.1;
}
.shop-collection-page .collection-hero p { max-width: 56ch; font-size: 14px; color: rgba(244,239,230,.64); }
.shop-collection-page .collection-hero .meta { max-width: 620px; border-color: rgba(228,201,119,.2); }
.shop-collection-page .collection-hero .meta div span { color: #f4efe6; font-family: var(--subpage-serif); }
.shop-collection-page .collection-hero-img,
.shop-collection-page .collection-hero-video {
  border-radius: 3px;
  border-color: rgba(228,201,119,.18);
  box-shadow: 0 32px 80px rgba(0,0,0,.42);
}

/* Products follow immediately and use the landing page's restrained editorial cards. */
.shop-collection-page .product-grid-section { padding-top: clamp(54px,6vw,80px); background: #0b0907; }
.shop-collection-page .filter-bar {
  top: 0;
  padding: 17px 0;
  margin-bottom: clamp(34px,5vw,58px);
  background: rgba(11,9,7,.94);
  backdrop-filter: blur(16px);
  border-color: rgba(228,201,119,.15);
}
.shop-collection-page .filter-bar select,
.shop-collection-page .filter-bar input[type=search],
.shop-collection-page .chip { border-radius: 2px; }
.shop-editorial-subpage .product-card { border-radius: 2px; border-color: rgba(228,201,119,.13); }
.shop-editorial-subpage .product-card .media { border-radius: 0; }
.shop-editorial-subpage .product-card .body h3 { font-family: var(--subpage-serif); font-size: clamp(18px,1.7vw,23px); line-height: 1.08; }
.shop-editorial-subpage .product-card .body .region,
.shop-editorial-subpage .eyebrow {
  color: #d8b85d;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.shop-editorial-subpage .section-head h2,
.shop-editorial-subpage .section-head-split h2 {
  font-family: var(--subpage-display);
  font-size: clamp(42px,5vw,72px);
  font-weight: 800;
  line-height: .92;
  letter-spacing: -.015em;
  text-transform: uppercase;
}
.shop-editorial-subpage .tile { border-radius: 3px; }

/* Product detail: art-book gallery on the left, compact commerce narrative on the right. */
.shop-product-page .product-page {
  max-width: 1440px;
  padding: clamp(32px,5vw,72px) clamp(18px,4vw,54px) clamp(72px,8vw,116px);
  grid-template-columns: minmax(0,1.08fr) minmax(390px,.78fr);
  gap: clamp(42px,7vw,108px);
}
.shop-product-page .breadcrumb {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(228,201,119,.13);
  color: rgba(244,239,230,.48);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.shop-product-page .hero-img-main { border-radius: 3px; box-shadow: 0 32px 80px rgba(0,0,0,.35); }
.shop-product-page .thumb { border-radius: 2px; }
.shop-product-page .pdetails { padding-top: clamp(8px,2vw,24px); }
.shop-product-page .pdetails h1 {
  margin: 12px 0 10px;
  font-family: var(--subpage-display);
  font-size: clamp(54px,6.2vw,92px);
  font-weight: 900;
  line-height: .84;
  letter-spacing: -.02em;
  text-transform: uppercase;
}
.shop-product-page .pdetails .sub { max-width: 50ch; color: rgba(244,239,230,.6); }
.shop-product-page .pdetails .story p { font-family: var(--subpage-serif); font-size: clamp(19px,1.8vw,25px); line-height: 1.45; }
.shop-product-page .pdetails .actions button,
.shop-product-page .pdetails .actions a { border-radius: 2px; }
.shop-product-page .cultural-passport { border-radius: 3px; }
.shop-product-page .cultural-passport h2 { font-family: var(--subpage-serif); }

/* Supporting store pages become concise editorial chapters, not disconnected templates. */
.shop-content-page .hero { background: radial-gradient(700px 420px at 78% 16%,rgba(183,42,46,.16),transparent 70%),#100b08; }
.shop-content-page .hero h1,
.shop-content-page .policy-wrap h1 {
  font-family: var(--subpage-display);
  font-size: clamp(54px,7vw,88px);
  font-weight: 900;
  line-height: .86;
  letter-spacing: -.02em;
  text-transform: uppercase;
}
.shop-content-page .section h2,
.shop-content-page .policy-wrap h2 { font-family: var(--subpage-serif); }
.shop-content-page .policy-wrap { max-width: 940px; padding-top: clamp(58px,7vw,92px); }
.shop-content-page .policy-wrap .contact-card { border-radius: 3px; }

@media (max-width: 1040px) {
  .shop-editorial-subpage .kairali-ribbon-nav { display: none; }
  .shop-editorial-subpage .kairali-ribbon-logo { position: static; transform: none; margin-right: auto; }
  .shop-collection-page .collection-hero-wrap,
  .shop-product-page .product-page { grid-template-columns: 1fr; }
  .shop-collection-page .collection-hero-wrap { gap: 40px; }
  .shop-collection-page .collection-hero-img,
  .shop-collection-page .collection-hero-video { max-height: 640px; }
}

@media (max-width: 760px) {
  .shop-editorial-subpage .kairali-ribbon-inner { min-height: 64px; padding: 10px 13px; }
  .shop-editorial-subpage .kairali-ribbon-logo img { height: 36px; max-width: 148px; }
  .shop-collection-page .collection-hero { min-height: auto; padding: 56px 18px 70px; }
  .shop-collection-page .collection-hero h1 { font-size: clamp(58px,19vw,82px); }
  .shop-collection-page .collection-hero .meta { margin-top: 26px; padding-top: 20px; gap: 18px; }
  .shop-collection-page .filter-bar { position: relative; top: auto; }
  .shop-product-page .product-page { padding: 26px 16px 68px; gap: 30px; }
  .shop-product-page .pdetails h1 { font-size: clamp(52px,16vw,72px); }
  .shop-editorial-subpage .section-head h2,
  .shop-editorial-subpage .section-head-split h2 { font-size: clamp(38px,12vw,52px); }
}

/* ============ SHOP SUBPAGES · DENSE DESKTOP COMPOSITION ============ */
@media (min-width: 1041px) {
  .shop-product-page .product-page { align-items: start; }
  .shop-product-page .gallery,
  .shop-product-page .pdetails { height: auto; align-self: start; }
  .shop-product-page .product-longform {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0,.82fr) minmax(0,1.18fr);
    column-gap: clamp(44px,7vw,110px);
    align-items: start;
    padding-top: clamp(38px,5vw,66px);
    border-top: 1px solid rgba(228,201,119,.14);
  }
  .shop-product-page .product-longform-main { min-width: 0; display: grid; align-content: start; gap: 22px; }
  .shop-product-page .product-longform-main > .story { margin: 0; }
  .shop-product-page .product-longform-main > .spec-rows:empty { display: none; }
  .shop-product-page .product-longform-main > .product-help { margin-top: 0; }
  .shop-product-page .product-longform > .cultural-passport { min-width: 0; margin: 0; }
  .shop-product-page .product-longform .story p {
    font-family: var(--subpage-serif);
    font-size: clamp(19px,1.7vw,24px);
    line-height: 1.42;
  }
  .shop-product-page .cultural-passport .passport-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }

  .shop-content-page .section { padding-block: clamp(58px,5vw,76px); }
  .shop-content-page .about-hero,
  .shop-content-page .international-hero {
    min-height: auto !important;
    padding: clamp(72px,7vw,104px) 28px !important;
  }
  .shop-content-page .about-hero .hero-wrap,
  .shop-content-page .international-hero .hero-wrap { min-height: 0; }
  .shop-content-page .about-hero .hero-wrap > div,
  .shop-content-page .international-hero .hero-wrap > div { max-width: 1180px !important; }
  .shop-content-page .about-story {
    display: grid;
    grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr);
    gap: clamp(42px,6vw,80px);
    align-items: center;
  }
  .shop-content-page .about-story > div:last-child {
    aspect-ratio: 16 / 10 !important;
    border-radius: 3px !important;
  }
  .shop-content-page .about-story h2 {
    margin: 8px 0 18px;
    color: var(--ink);
    font-size: clamp(34px,3.5vw,48px);
    line-height: 1.05;
  }
  .shop-content-page .about-story h2 em { color: var(--gold-bright); }
  .shop-content-page .about-story p { margin: 0 0 12px; color: var(--ink-dim); font-size: 15px; line-height: 1.65; }
  .shop-content-page .about-lines-grid {
    display: grid;
    grid-template-columns: repeat(5,minmax(0,1fr));
    gap: 12px;
    max-width: 1320px;
    margin: 0 auto;
  }
  .shop-content-page .about-lines-grid > div,
  .shop-content-page .international-options > div {
    min-width: 0;
    padding: 24px !important;
    border: 1px solid var(--border) !important;
    border-radius: 3px !important;
    background: var(--surface-2) !important;
  }
  .shop-content-page .about-lines-grid b,
  .shop-content-page .international-options b:first-child {
    display: block;
    margin-bottom: 8px;
    color: var(--gold-bright);
    font-family: var(--subpage-serif);
    font-size: 21px;
    font-weight: 600;
  }
  .shop-content-page .about-lines-grid span,
  .shop-content-page .international-options p { color: var(--ink-dim); font-size: 12px; line-height: 1.55; }
  .shop-content-page .international-options {
    display: grid !important;
    grid-template-columns: repeat(5,minmax(0,1fr)) !important;
    gap: 12px !important;
    max-width: 1320px !important;
    margin: 0 auto !important;
  }
  .shop-content-page .international-options .text-link { margin-top: 10px; }

  .shop-content-page .policy-wrap {
    max-width: 1320px;
    column-count: 2;
    column-gap: clamp(54px,6vw,96px);
    column-rule: 1px solid rgba(228,201,119,.13);
  }
  .shop-content-page .policy-wrap > h1,
  .shop-content-page .policy-wrap > .updated,
  .shop-content-page .policy-wrap > h1 + .updated + p,
  .shop-content-page .policy-wrap > h1 + .updated + p + p { column-span: all; }
  .shop-content-page .policy-wrap h2 { break-after: avoid; }
  .shop-content-page .policy-wrap :where(p,ul,.contact-card) { break-inside: avoid; }
}

.shop-product-page .product-help {
  margin-top: 24px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 3px;
}
.shop-content-page .about-lines-grid > div { padding: 22px; border: 1px solid var(--border); background: var(--surface-2); }
.shop-content-page .about-lines-grid b { display:block; margin-bottom:6px; color:var(--gold-bright); font-family:var(--subpage-serif); font-size:21px; }
.shop-content-page .about-lines-grid span { color:var(--ink-dim); font-size:13px; line-height:1.55; }

@media (max-width: 1040px) {
  .shop-product-page .product-longform { grid-column: 1; }
  .shop-content-page .about-story,
  .shop-content-page .about-lines-grid,
  .shop-content-page .international-options { display: grid !important; grid-template-columns: 1fr !important; gap: 14px !important; }
}

/* Keep the main shop wordmark on the true viewport centreline. The shared
   minimal shell uses flex by default, so the shop landing page restores a
   balanced three-column masthead: empty space, logo, menu. */
body.shop-editorial .ks-shop-editorial-inner {
  display: grid;
  grid-template-columns: minmax(42px, 1fr) auto minmax(42px, 1fr);
}
body.shop-editorial .ks-shop-editorial-brand {
  grid-column: 2;
  justify-self: center;
}
body.shop-editorial .ks-shop-editorial-inner > .ks-menu-button {
  grid-column: 3;
  justify-self: end;
}

/* Onam 2026 regional presale on the main Kairali Shop landing page. */
.shop-editorial .onam-presale {
  padding: clamp(72px, 8vw, 118px) clamp(20px, 5vw, 72px);
  color: #f4efe6;
  background:
    radial-gradient(circle at 8% 10%, rgba(212, 175, 55, .12), transparent 28%),
    linear-gradient(135deg, #11100d 0%, #080808 58%, #14090b 100%);
  border-top: 1px solid rgba(226, 193, 107, .18);
  border-bottom: 1px solid rgba(226, 193, 107, .18);
}
.onam-presale-wrap { width: min(1320px, 100%); margin: 0 auto; }
.onam-presale-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .66fr);
  align-items: end;
  gap: clamp(32px, 6vw, 96px);
  margin-bottom: clamp(34px, 5vw, 62px);
}
.onam-presale-kicker,
.onam-region-label {
  display: block;
  color: #e2c16b;
  font: 700 11px/1.3 'Manrope', sans-serif;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.onam-presale-heading h2 {
  max-width: 820px;
  margin: 14px 0 0;
  color: #f4efe6;
  font: 700 clamp(45px, 6vw, 82px)/.96 'Cormorant Garamond', serif;
  letter-spacing: -.025em;
}
.onam-presale-heading > p {
  margin: 0;
  color: rgba(244, 239, 230, .68);
  font: 400 15px/1.75 'Manrope', sans-serif;
}
.onam-region-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.13fr) minmax(0, .87fr);
  gap: clamp(18px, 2.5vw, 34px);
}
.onam-region-card {
  display: block;
  min-width: 0;
  overflow: hidden;
  background: #151412;
  border: 1px solid rgba(226, 193, 107, .24);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .3);
}
.onam-region-content { height: 100%; }
.onam-region-visual-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.13fr) minmax(0, .87fr);
  gap: clamp(18px, 2.5vw, 34px);
  margin-top: clamp(18px, 2.5vw, 34px);
}
.onam-region-visual {
  display: block;
  height: min(39vw, 515px);
  min-height: 280px;
  overflow: hidden;
  border: 1px solid rgba(226, 193, 107, .24);
  background: #151412;
}
.onam-region-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center 24%;
  filter: saturate(.88) contrast(1.04);
}
.onam-region-visual:last-child img { object-position: center 18%; }
.onam-region-content { padding: clamp(25px, 3.2vw, 44px); }
.onam-region-content h3 {
  margin: 12px 0 10px;
  color: #fff;
  font: 700 clamp(33px, 4vw, 53px)/1 'Cormorant Garamond', serif;
}
.onam-region-content > p:not(.onam-region-price) {
  margin: 0;
  color: rgba(244, 239, 230, .7);
  font: 400 14px/1.65 'Manrope', sans-serif;
}
.onam-region-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0 0 18px;
  color: rgba(244, 239, 230, .62);
  font-family: 'Manrope', sans-serif;
}
.onam-region-price s { font-size: 17px; }
.onam-region-price strong { color: #e2c16b; font-size: clamp(26px, 3vw, 38px); }
.onam-region-price span { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.onam-region-content ul {
  margin: 20px 0 26px;
  padding: 0;
  list-style: none;
  color: rgba(244, 239, 230, .82);
  font: 500 12px/1.6 'Manrope', sans-serif;
}
.onam-region-content li { position: relative; padding: 7px 0 7px 20px; border-top: 1px solid rgba(226, 193, 107, .12); }
.onam-region-content li:last-child { border-bottom: 1px solid rgba(226, 193, 107, .12); }
.onam-region-content li::before { content: '◆'; position: absolute; left: 0; top: 8px; color: #e2c16b; font-size: 8px; }
.onam-region-cta {
  display: inline-flex;
  min-height: 50px;
  padding: 14px 20px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #f4efe6;
  border: 1px solid rgba(226, 193, 107, .65);
  font: 700 10px/1 'Manrope', sans-serif;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: background .25s, color .25s, border-color .25s;
}
.onam-region-cta-primary,
.onam-region-cta:hover { color: #0b0b0a; background: #e2c16b; border-color: #e2c16b; }
.onam-region-cta-primary:hover { color: #fff; background: #b72a2e; border-color: #b72a2e; }
.onam-presale-note {
  margin: 20px 0 0;
  color: rgba(244, 239, 230, .52);
  font: 500 10px/1.6 'Manrope', sans-serif;
  letter-spacing: .1em;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 820px) {
  .onam-presale-heading,
  .onam-region-grid,
  .onam-region-visual-grid { grid-template-columns: 1fr; }
  .onam-presale-heading { align-items: start; gap: 20px; }
  .onam-presale-heading > p { max-width: 620px; }
  .onam-region-visual { height: min(78vw, 480px); min-height: 310px; }
}
@media (max-width: 520px) {
  .shop-editorial .onam-presale { padding-inline: 14px; }
  .onam-presale-heading { padding-inline: 8px; }
  .onam-presale-heading h2 { font-size: clamp(40px, 13vw, 58px); }
  .onam-region-visual { height: 270px; min-height: 270px; }
  .onam-region-content { padding: 24px 20px 28px; }
  .onam-region-price { flex-wrap: wrap; }
  .onam-region-cta { width: 100%; padding-inline: 12px; font-size: 9px; letter-spacing: .12em; }
}

/* ============ TWO SHELVES: UAE AND EUROPE (shop home) ============
   Replaces the old single grid of heritage shirts on /shop/. That grid showed
   one region's price and availability line at a time, chosen by geo detection,
   so a Dubai customer could be told a shirt was "In stock in Bonn" in euros.
   Two named cards let the customer choose the shelf they are buying from. */
.inventory-choice { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
@media (max-width: 820px) { .inventory-choice { grid-template-columns: 1fr; gap: 18px; } }
.inventory-card {
  position: relative; display: flex; flex-direction: column; overflow: hidden;
  border: 1px solid rgba(226,193,107,.26); background: #100c0a; color: inherit;
  text-decoration: none; transition: border-color .3s ease, transform .3s ease;
}
.inventory-card:hover, .inventory-card:focus-visible { border-color: var(--gold); transform: translateY(-3px); }
.inventory-media { display: block; position: relative; aspect-ratio: 16 / 11; overflow: hidden; }
.inventory-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; display: block; transition: transform .6s ease; }
.inventory-card:hover .inventory-media img { transform: scale(1.03); }
.inventory-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16,12,10,0) 45%, rgba(16,12,10,.85)); }
.inventory-body { display: flex; flex-direction: column; gap: 9px; padding: clamp(20px, 2.4vw, 30px); }
.inventory-flag { font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.inventory-card h3 { margin: 0; font-family: var(--font-serif); font-size: clamp(24px, 2.6vw, 34px); font-weight: 700; color: var(--ink); line-height: 1.1; }
.inventory-count { font-size: 13px; font-weight: 700; color: var(--gold-bright); }
.inventory-lines { display: flex; flex-direction: column; gap: 4px; font-size: 13px; font-weight: 300; line-height: 1.6; color: var(--ink-dim); }
.inventory-cta {
  margin-top: 8px; align-self: flex-start; padding-bottom: 5px; font-size: 10px; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; color: #f7efe4; border-bottom: 1px solid rgba(247,239,228,.55);
}
.inventory-card:hover .inventory-cta { color: var(--gold-bright); border-color: var(--gold-bright); }
@media (prefers-reduced-motion: reduce) {
  .inventory-card, .inventory-media img { transition: none; }
  .inventory-card:hover { transform: none; }
  .inventory-card:hover .inventory-media img { transform: none; }
}
