/* ============================================================
   DIWALI EDITION v2 — Jewel-tone colour-blocked sections
   Plum · Marigold · Teal · Terracotta · Cream
   Inspired directly by the Subko Diwali sleeve design language
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body.diwali-v2 {
  font-family: 'Sora', system-ui, sans-serif;
  background: #1E0430;
  color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --plum:          #3D0A5C;
  --plum-deep:     #1E0430;
  --plum-mid:      #5C1A72;
  --plum-lt:       #7A2890;
  --marigold:      #F5A020;
  --marigold-lt:   #F8C560;
  --marigold-dk:   #C87010;
  --marigold-red:  #E05C20;
  --teal:          #0D5858;
  --teal-mid:      #1A7878;
  --teal-lt:       #3AACAC;
  --cream:         #FFF8E0;
  --cream-warm:    #FDF0C0;
  --cream-card:    #FFFBF0;
  --terra:         #B83C18;
  --terra-dk:      #8C2C0E;
  --terra-lt:      #D04E22;
  --gold:          #D4A820;
  --gold-lt:       #E8CC70;
  --ink:           #1A0830;
  --ink-soft:      #4A2060;
  --f-display:     'Cormorant Garamond', Georgia, serif;
  --f-body:        'Sora', system-ui, sans-serif;
  --f-dev:         'Noto Serif Devanagari', serif;
  --f-ar:          'Noto Naskh Arabic', serif;
  --gutter:        clamp(24px, 6vw, 88px);
  --maxw:          1360px;
  --ease:          cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

/* ── Eyebrow ─────────────────────────────────────────────── */
.eyebrow {
  display: block;
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.ey-gold   { color: var(--marigold-lt); }
.ey-teal   { color: var(--teal-lt); }
.ey-cream  { color: rgba(255,248,224,.5); }
.ey-plum   { color: var(--plum-mid); }
.ey-terra  { color: rgba(255,210,150,.7); }

/* ── NAV ─────────────────────────────────────────────────── */
header.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 20px var(--gutter);
  transition: background .5s var(--ease), padding .5s var(--ease), border-color .5s;
  border-bottom: 1px solid transparent;
}
header.nav.scrolled {
  background: rgba(20, 3, 36, 0.94);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border-bottom: 1px solid rgba(245,160,32,.14);
  padding-block: 14px;
}
.nav-logo-triscript {
  height: 66px; width: 118px; flex-shrink: 0; display: block;
  background: linear-gradient(108deg,
    #a8b4d4 0%, #d4daf0 14%, #f8fbff 26%,
    #ffffff 38%, #d0d8ec 50%, #f4f8ff 62%,
    #ffffff 74%, #c4cce8 86%, #eef2ff 100%);
  background-size: 280% 100%;
  animation: foilShimmerDw 9s ease-in-out infinite 2s;
  -webkit-mask-image: url('taufah-lockup.png');
          mask-image: url('taufah-lockup.png');
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center center; mask-position: center center;
}
@keyframes foilShimmerDw {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 11px; letter-spacing: .12em; color: rgba(255,220,180,.6);
  position: relative; padding: 6px 0; text-transform: uppercase; font-weight: 500;
  font-family: var(--f-body); transition: color .4s var(--ease);
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  height: 1px; width: 0; background: var(--marigold-lt);
  transition: width .45s var(--ease);
}
.nav-links a:hover { color: var(--marigold-lt); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.nav-link-active { color: var(--marigold-lt); }
.nav-links a.nav-link-active::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 16px; }

/* Drop badge */
.drop-badge { position: relative; }
.drop-badge .badge {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--f-body); font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--marigold-lt);
  background: rgba(245,160,32,.08);
  border: 1px solid rgba(245,160,32,.32);
  padding: 8px 14px; border-radius: 100px; cursor: pointer;
  transition: border-color .4s, background .4s, box-shadow .4s;
}
.drop-badge .badge:hover {
  background: rgba(245,160,32,.16);
  box-shadow: 0 0 22px rgba(245,160,32,.2);
}
.drop-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--marigold-lt); flex-shrink: 0;
  animation: dw2Pulse 2.6s ease-in-out infinite;
}
@keyframes dw2Pulse {
  0%   { box-shadow: 0 0 0 0 rgba(245,160,32,.55); }
  70%  { box-shadow: 0 0 0 8px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}
.drop-menu {
  position: absolute; top: calc(100% + 12px); right: 0; width: 248px;
  background: rgba(20,3,36,.97); backdrop-filter: blur(20px);
  border: 1px solid rgba(245,160,32,.18); border-radius: 16px; padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .4s var(--ease), transform .4s var(--ease), visibility .4s;
  box-shadow: 0 28px 60px -16px rgba(0,0,0,.8);
}
.drop-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.drop-menu .mlabel {
  font-family: var(--f-body); font-size: 9px; letter-spacing: .3em;
  color: rgba(255,220,180,.35); padding: 10px 12px 6px; text-transform: uppercase;
}
.drop-opt {
  display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 10px;
  cursor: pointer; transition: background .3s; width: 100%; text-align: left;
  background: none; border: none; color: rgba(255,248,224,.85); font-family: var(--f-body);
}
.drop-opt:hover { background: rgba(245,160,32,.08); }
.drop-opt .sw { width: 12px; height: 12px; border-radius: 3px; flex: none; border: 1px solid rgba(255,255,255,.18); }
.drop-opt .nm { font-size: 13px; font-weight: 600; }
.drop-opt .st { font-size: 10px; color: rgba(255,220,180,.4); letter-spacing: .05em; margin-left: auto; text-transform: uppercase; }
.drop-opt[disabled] { opacity: .4; cursor: not-allowed; }
.drop-opt.active .nm { color: var(--marigold-lt); }
.nav-burger { display: none; }

.dw2-nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-body); font-size: 10.5px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  background: linear-gradient(120deg, var(--marigold-lt), var(--marigold));
  color: var(--plum-deep); padding: 9px 22px; border-radius: 100px;
  transition: transform .3s, box-shadow .3s;
}
.dw2-nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px -4px rgba(245,160,32,.5); }

/* ═══════════════════════════════════════════════════════════
   HERO  — full-bleed box photo
   ═══════════════════════════════════════════════════════════ */
.dw2-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

/* Full-bleed background image */
.dw2-hero-fullbg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 1;
}

/* Hero video — plays once, fades to still image */
.dw2-hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 2;
  opacity: 1;
  transition: opacity 1.4s ease;
}
.dw2-hero-video.ended {
  opacity: 0;
  pointer-events: none;
}
  object-fit: cover;
  object-position: center center;
  display: block;
  z-index: 1;
}

/* Radial edge vignette — darkens edges for legibility */
.dw2-hero-vignette {
  position: absolute; inset: 0; z-index: 3;
  background:
    radial-gradient(ellipse 90% 80% at 50% 50%, transparent 40%, rgba(10,0,20,.72) 100%),
    linear-gradient(to top, rgba(10,0,20,.88) 0%, rgba(10,0,20,.2) 35%, transparent 60%),
    linear-gradient(to bottom, rgba(10,0,20,.55) 0%, transparent 20%);
}

/* Top-left nav strip */
.dw2-hero-topleft {
  position: relative; z-index: 6;
  display: flex; flex-direction: column; gap: 10px;
  padding: clamp(28px,5vh,52px) clamp(24px,5vw,72px);
}

/* Bottom frosted text pill */
.dw2-hero-bottom {
  position: relative; z-index: 6;
  padding: 0 clamp(24px,5vw,72px) clamp(48px,7vh,88px);
  display: flex; justify-content: center;
}
.dw2-hero-glass {
  display: flex; flex-direction: column; align-items: center; gap: 28px;
  max-width: 620px;
  text-align: center;
  background: rgba(10, 2, 20, 0.52);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border: 1px solid rgba(255,248,224,.08);
  border-radius: 20px;
  padding: 32px 40px 36px;
}

.dw2-hero-backlink {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--f-body); font-size: 10px; font-weight: 400;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,200,160,.5);
  transition: color .3s, gap .3s;
}
.dw2-hero-backlink:hover { color: var(--marigold-lt); gap: 13px; }
.dw2-hero-season {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--f-body); font-size: 10px; font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--marigold-lt);
}
.dw2-hero-season::before {
  content: ''; width: 30px; height: 1px; background: var(--marigold); opacity: .6;
}
.dw2-hero-body {
  font-size: clamp(13px, 1.2vw, 15px); font-weight: 300;
  line-height: 1.82; color: rgba(255,230,200,.85);
  max-width: none; margin: 0; text-wrap: pretty;
  text-shadow: 0 1px 18px rgba(0,0,0,.7), 0 2px 40px rgba(0,0,0,.5);
}
.dw2-hero-ctas { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* Old elements — hide safely */
.dw2-hero-bg, .dw2-mg-tr, .dw2-mg-bl,
.dw2-hero-text, .dw2-hero-product,
.dw2-hero-title { display: none; }

/* ── Shared buttons ──────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--f-body); font-size: 11px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  background: transparent;
  color: rgba(255,248,224,.9);
  border: 1.5px solid rgba(255,248,224,.5);
  padding: 13px 30px; border-radius: 100px;
  transition: background .35s var(--ease), border-color .35s, color .35s, transform .4s var(--ease), box-shadow .4s;
}
.btn-primary:hover {
  background: linear-gradient(118deg, var(--marigold-lt) 0%, var(--marigold) 55%, var(--marigold-dk) 100%);
  border-color: var(--marigold);
  color: var(--plum-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -8px rgba(245,160,32,.55);
}

/* Hero CTA — ghost by default, fills on hover */
.btn-hero {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--f-body); font-size: 11px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,248,224,.9);
  background: transparent;
  border: 1.5px solid rgba(255,248,224,.45);
  border-radius: 100px; padding: 14px 32px;
  cursor: pointer; text-decoration: none;
  transition: background .35s var(--ease), border-color .35s, color .35s, transform .35s, box-shadow .35s;
}
.btn-hero:hover {
  background: var(--marigold);
  border-color: var(--marigold);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -8px rgba(245,160,32,.55);
}

.btn-ghost-light {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--f-body); font-size: 11px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  border: 1px solid rgba(245,160,32,.35); color: rgba(255,230,200,.72);
  padding: 12px 26px; border-radius: 100px;
  transition: border-color .3s, color .3s;
}
.btn-ghost-light:hover { border-color: var(--marigold-lt); color: var(--marigold-lt); }

.btn-ghost-dark {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--f-body); font-size: 11px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  border: 1px solid rgba(26,8,48,.25); color: rgba(26,8,48,.65);
  padding: 12px 26px; border-radius: 100px;
  transition: border-color .3s, color .3s;
}
.btn-ghost-dark:hover { border-color: var(--plum-mid); color: var(--plum-mid); }

/* ═══════════════════════════════════════════════════════════
   SECTION BLOCKS — colour-keyed per sleeve
   ═══════════════════════════════════════════════════════════ */
/* ── Shubh Labh marquee ──────────────────────────────────── */
.shubh-marquee {
  background: var(--marigold);
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  position: relative;
  z-index: 10;
}
.shubh-track {
  display: inline-flex; gap: 28px; align-items: center;
  animation: marquee-scroll 22s linear infinite;
}
.shubh-track span {
  font-family: var(--f-body); font-size: 11px;
  font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--plum-deep);
  flex-shrink: 0;
}
.shubh-track span:nth-child(2n) {
  font-size: 6px; opacity: .6;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.s-cream {
  background: var(--cream); color: var(--ink);
  position: relative; overflow: clip;
}
.s-teal {
  background: var(--teal); color: var(--cream);
  position: relative; overflow: clip;
}
.s-terra {
  background: var(--terra); color: var(--cream);
  position: relative; overflow: clip;
}
.s-plum {
  background: var(--plum); color: var(--cream);
  position: relative; overflow: clip;
}
.s-ink {
  background: var(--plum-deep); color: var(--cream);
  position: relative; overflow: clip;
}

/* Section padding */
.sec { padding: clamp(80px, 11vh, 140px) 0; position: relative; z-index: 1; }

/* ── Marigold section decorators ─────────────────────────── */
.mg-deco {
  position: absolute; pointer-events: none; z-index: 0;
  filter: drop-shadow(0 8px 24px rgba(200,112,16,.2));
}
.mg-deco.tr { top: -60px;  right: -80px;  width: clamp(200px,22vw,360px); transform: scaleX(-1) rotate(202deg);  opacity: .22; }
.mg-deco.bl { bottom: -60px; left: -80px; width: clamp(160px,18vw,280px); transform: scaleX(-1) rotate(340deg); opacity: .18; }
.mg-deco.br { bottom: -50px; right: -60px; width: clamp(180px,20vw,300px); transform: rotate(208deg); opacity: .20; }
.mg-deco.tc { top: -40px; left: 50%; transform: translateX(-50%) rotate(190deg); width: clamp(160px,18vw,260px); opacity: .15; }

/* ── Side stem/vine embellishments ───────────────────── */
.mg-stem {
  position: absolute; pointer-events: none; z-index: 0;
  width: clamp(220px, 26vw, 400px);
  opacity: 0.16;
  filter: drop-shadow(0 4px 16px rgba(200,112,16,.1));
}
.mg-stem.sl {
  left: -140px;
  transform: rotate(15deg);
}
.mg-stem.sr {
  right: -140px;
  transform: scaleX(-1) rotate(15deg);
}
.s-cream .mg-stem { opacity: 0.22; }

/* On cream bg, make more opaque */
.s-cream .mg-deco.tr { opacity: .28; }
.s-cream .mg-deco.bl { opacity: .22; }

/* ── Section heads ───────────────────────────────────────── */
.sec-head { margin-bottom: clamp(52px, 7vh, 90px); }
.sec-title {
  font-family: var(--f-display); font-weight: 300;
  font-size: clamp(44px, 6.5vw, 96px);
  line-height: .96; letter-spacing: -.015em;
  margin-bottom: 22px;
}
.sec-title em { font-style: italic; }
.sec-title.ink  { color: var(--ink); }
.sec-title.cream{ color: var(--cream); }
.sec-title em.gold    { color: var(--gold); }
.sec-title em.marigold{ color: var(--marigold); }
.sec-title em.teal    { color: var(--teal-lt); }
.sec-title em.plum    { color: var(--plum-mid); }
.sec-title em.terra   { color: var(--terra-lt); }

.sec-lede {
  font-size: clamp(14px, 1.3vw, 17px); font-weight: 300;
  line-height: 1.78; max-width: 54ch; text-wrap: pretty;
}
.sec-lede.ink-soft { color: rgba(26,8,48,.58); }
.sec-lede.cream-soft { color: rgba(255,248,224,.62); }

/* ═══════════════════════════════════════════════════════════
   SECTION 01 — THE RANGE  (cream bg)
   ═══════════════════════════════════════════════════════════ */
.range-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.range-card {
  border-radius: 18px; overflow: hidden;
  position: relative; cursor: default;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.range-card:hover { transform: translateY(-6px); }

.range-card-bg {
  aspect-ratio: 3/4;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
}
/* Each card reflects its sleeve colourway */
.rc-plum  .range-card-bg { background: var(--plum); }
.rc-cream .range-card-bg { background: #FFF8E0; }
.rc-terra .range-card-bg { background: var(--terra); }
.rc-teal  .range-card-bg { background: var(--teal); }

/* Marigold watermark inside terra/teal cards */
.rc-terra .range-card-bg::before,
.rc-teal  .range-card-bg::before {
  content: '';
  position: absolute; top: -20%; right: -20%;
  width: 130%; aspect-ratio: 1;
  background: url('marigold-nobg.png') no-repeat center/contain;
  opacity: .22;
}
.rc-cream .range-card-bg::before {
  content: '';
  position: absolute; top: -20%; right: -20%;
  width: 130%; aspect-ratio: 1;
  background: url('marigold-nobg.png') no-repeat center/contain;
  opacity: .14;
}

/* Placeholder inner */
.range-ph {
  position: absolute; inset: 20px;
  border: 1px dashed rgba(255,255,255,.2); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.rc-cream .range-ph { border-color: rgba(0,0,0,.12); }
.range-ph span {
  font-family: ui-monospace, monospace; font-size: 10px;
  letter-spacing: .06em; line-height: 1.65; padding: 12px;
  color: rgba(255,255,255,.35);
}
.rc-cream .range-ph span { color: rgba(0,0,0,.3); }

/* Card info strip */
.range-info {
  position: relative; z-index: 2;
  padding: 20px 22px 24px;
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.2) 60%, transparent 100%);
}
.rc-cream .range-info {
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, rgba(0,0,0,.08) 70%, transparent 100%);
}
.range-tag {
  font-family: var(--f-body); font-size: 9px; font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--marigold-lt); display: block; margin-bottom: 7px;
}
.range-name {
  font-family: var(--f-display); font-weight: 400;
  font-size: 28px; line-height: 1.1; color: #fff; margin-bottom: 8px;
}
.range-desc {
  font-size: 12px; font-weight: 300; color: rgba(255,248,224,.72);
  line-height: 1.65; margin-bottom: 14px;
}
.range-link {
  font-family: var(--f-body); font-size: 10px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--marigold-lt); display: inline-flex; align-items: center; gap: 8px;
  transition: gap .3s;
}
.range-link:hover { gap: 14px; }

/* Sleeve section divider title */
.sleeve-section-head {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 36px;
}
.sleeve-section-rule {
  flex: 1; height: 1px;
  background: rgba(245,160,32,.25);
}
.sleeve-section-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(11px, 1vw, 13px);
  letter-spacing: .32em; text-transform: uppercase;
  color: rgba(248,197,96,.7);
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 02 — CUSTOMISE  (teal bg)
   ═══════════════════════════════════════════════════════════ */
.sleeve-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}

/* ── Sleeve image slider ────────────────────────────────── */
.sleeve-slider {
  position: relative; width: 100%; height: 100%; overflow: hidden;
}
.sleeve-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain; object-position: center;
  opacity: 0;
  transition: opacity .6s var(--ease);
  pointer-events: none;
}
.sleeve-slide.active { opacity: 1; }

/* Arrow buttons */
.sleeve-arr {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 4; width: 34px; height: 34px; border-radius: 50%;
  background: rgba(30,4,48,.55); backdrop-filter: blur(6px);
  border: 1px solid rgba(245,160,32,.3); color: var(--marigold-lt);
  font-size: 18px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s, background .3s;
}
.sleeve-card:hover .sleeve-arr { opacity: 1; }
.sleeve-arr:hover { background: rgba(61,10,92,.75); }
.sleeve-arr-prev { left: 10px; }
.sleeve-arr-next { right: 10px; }

/* Colour swatch dots */
.sleeve-swatches {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 4;
}
.sleeve-swatch {
  width: 14px; height: 14px; border-radius: 50%; cursor: pointer;
  border: 2px solid rgba(255,255,255,.25);
  transition: border-color .3s, transform .25s;
  padding: 0; appearance: none; -webkit-appearance: none;
}
.sleeve-swatch.active {
  border-color: rgba(255,255,255,.95);
  transform: scale(1.25);
}

/* Slide counter badge */
.sleeve-count {
  position: absolute; top: 12px; right: 12px; z-index: 4;
  font-family: var(--f-body); font-size: 9px; font-weight: 500;
  letter-spacing: .16em; color: rgba(255,248,224,.7);
  background: rgba(30,4,48,.5); backdrop-filter: blur(6px);
  border: 1px solid rgba(245,160,32,.2);
  padding: 5px 10px; border-radius: 100px;
}
.sleeve-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,248,224,.15);
  border-radius: 18px; overflow: hidden;
  transition: transform .5s var(--ease);
}
.sleeve-card:hover { transform: translateY(-5px); }

/* Hero colourway — center card, slightly elevated */
.sleeve-card--hero {
  transform: scale(1.06);
  transform-origin: center center;
  z-index: 2;
  border-color: rgba(245,180,60,.35);
  box-shadow: 0 24px 64px rgba(0,0,0,.45), 0 0 0 1px rgba(245,180,60,.15);
}
.sleeve-card--hero:hover { transform: scale(1.06) translateY(-5px); }
.sleeve-img {
  aspect-ratio: 1/1; position: relative;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,248,224,.1);
  display: flex; align-items: center; justify-content: center; text-align: center;
  overflow: hidden;
}
.sleeve-img::before {
  content: '';
  position: absolute; top: -30%; right: -30%;
  width: 120%; aspect-ratio: 1;
  background: url('marigold-nobg.png') no-repeat center/contain;
  opacity: .18;
}
.sleeve-ph {
  position: relative; z-index: 1;
  font-family: ui-monospace, monospace; font-size: 11px;
  color: rgba(255,248,224,.38); letter-spacing: .06em;
  line-height: 1.65; padding: 24px;
}
.sleeve-info { padding: 26px 28px; }
.sleeve-label {
  font-family: var(--f-body); font-size: 9px; font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--teal-lt); display: block; margin-bottom: 10px;
}
.sleeve-name {
  font-family: var(--f-display); font-weight: 400;
  font-size: 34px; color: var(--cream); margin-bottom: 10px; line-height: 1.1;
}
.sleeve-desc {
  font-size: 13.5px; font-weight: 300; color: rgba(255,248,224,.62);
  line-height: 1.75; text-wrap: pretty;
}
.sleeve-detail {
  margin-top: 14px;
  font-size: 11px; font-weight: 400;
  color: rgba(255,248,224,.42);
  letter-spacing: .04em;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 03 — INSIDE THE BOX  (terracotta bg)
   ═══════════════════════════════════════════════════════════ */
.inside-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px); align-items: center;
}
.inside-items { display: flex; flex-direction: column; gap: 16px; margin-top: 40px; }
.inside-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 20px 22px;
  background: rgba(255,248,224,.1);
  border: 1px solid rgba(255,248,224,.18);
  border-radius: 14px;
  transition: background .35s, transform .35s;
}
.inside-item:hover { background: rgba(255,248,224,.17); transform: translateX(4px); }
.inside-num {
  font-family: var(--f-display); font-size: 30px; font-weight: 300;
  font-style: italic; color: var(--marigold-lt); flex-shrink: 0; line-height: 1;
  margin-top: -2px;
}
.inside-item h4 {
  font-family: var(--f-display); font-size: 22px; font-weight: 500;
  color: var(--cream); margin-bottom: 6px; line-height: 1.2;
}
.inside-item p {
  font-size: 13px; font-weight: 300; color: rgba(255,248,224,.62);
  line-height: 1.7;
}
.inside-visual {
  aspect-ratio: 4/5; border-radius: 16px;
  background: rgba(255,255,255,.06);
  border: 1px dashed rgba(255,248,224,.22);
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-family: ui-monospace, monospace; font-size: 11px;
  color: rgba(255,248,224,.3); padding: 24px; line-height: 1.65;
  position: relative; overflow: hidden;
}
.inside-visual::before {
  content: '';
  position: absolute; inset: -10%;
  background: url('marigold-nobg.png') no-repeat center/contain;
  opacity: .12;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 04 — GALLERY  (plum bg)
   ═══════════════════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gal-item { aspect-ratio: 1; }
.gal-item.span2 { grid-column: span 2; aspect-ratio: 2; }
.gal-ph {
  width: 100%; height: 100%;
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  border: 1px dashed rgba(245,160,32,.2);
  display: flex; align-items: center; justify-content: center;
  font-family: ui-monospace, monospace; font-size: 10px;
  color: rgba(255,248,224,.28); letter-spacing: .06em;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 05 — ENQUIRE  (cream bg)
   ═══════════════════════════════════════════════════════════ */
.enquire-form {
  background: #fff;
  border: 1px solid rgba(245,160,32,.18);
  border-radius: 20px; padding: 44px 40px;
  box-shadow: 0 24px 60px -20px rgba(26,8,48,.12);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.form-full { grid-column: 1 / -1; margin-bottom: 0; }
.form-field label {
  font-family: var(--f-body); font-size: 9px; font-weight: 500;
  letter-spacing: .26em; text-transform: uppercase; color: var(--teal);
}
.form-field input, .form-field textarea, .form-field select {
  background: #FAFAF5; border: 1px solid rgba(13,88,88,.18);
  border-radius: 10px; padding: 13px 16px;
  color: var(--ink); font-family: var(--f-body); font-size: 14px; font-weight: 300;
  transition: border-color .3s, box-shadow .3s;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none; border-color: var(--teal-mid);
  box-shadow: 0 0 0 3px rgba(26,120,120,.1);
}
.form-footer { margin-top: 30px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.form-note { font-size: 11px; color: var(--teal); opacity: .6; font-family: ui-monospace, monospace; }

/* ═══════════════════════════════════════════════════════════
   FOOTER  (deep plum/ink)
   ═══════════════════════════════════════════════════════════ */
.dw2-footer {
  background: var(--plum-deep);
  border-top: 1px solid rgba(245,160,32,.14);
  padding: 80px 0 40px;
  position: relative; overflow: hidden;
}
.dw2-footer .mg-deco.br { opacity: .12; width: 340px; }
.dw2-footer .mg-deco.bl { opacity: .09; width: 220px; top: -40px; bottom: auto; }

.foot-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px;
  position: relative; z-index: 1;
}
.foot-logo {
  height: 66px; width: 118px; margin-bottom: 18px;
  background: linear-gradient(108deg,
    #a8b4d4 0%, #d4daf0 14%, #f8fbff 26%,
    #ffffff 38%, #d0d8ec 50%, #f4f8ff 62%,
    #ffffff 74%, #c4cce8 86%, #eef2ff 100%);
  background-size: 280% 100%;
  animation: foilShift 6s ease-in-out infinite;
  -webkit-mask-image: url('taufah-lockup.png');
          mask-image: url('taufah-lockup.png');
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: left center; mask-position: left center;
}
.foot-by {
  font-size: 13px; font-weight: 300; color: rgba(255,210,160,.5);
  line-height: 1.65; max-width: 30ch;
}
.foot-by a { color: var(--marigold-lt); transition: color .3s; }
.foot-by a:hover { color: #fff; }
.foot-col-h {
  font-family: var(--f-body); font-size: 9px; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--marigold); margin-bottom: 18px; display: block;
}
.foot-link {
  display: block; font-size: 13.5px; font-weight: 300;
  color: rgba(255,210,160,.5); margin-bottom: 10px;
  transition: color .3s;
}
.foot-link:hover { color: var(--marigold-lt); }
.foot-bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  border-top: 1px solid rgba(245,160,32,.1); padding-top: 28px; margin-top: 56px;
  font-size: 11px; font-weight: 300; color: rgba(255,200,140,.35);
  position: relative; z-index: 1;
}

/* ── Scroll reveal ───────────────────────────────────────── */
[data-reveal] {
  opacity: 0; transform: translateY(30px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}
[data-reveal].visible { opacity: 1; transform: none; }
[data-reveal][data-d="1"] { transition-delay: .12s; }
[data-reveal][data-d="2"] { transition-delay: .24s; }
[data-reveal][data-d="3"] { transition-delay: .36s; }
[data-reveal][data-d="4"] { transition-delay: .48s; }

/* Hero stagger — starts hidden, JS adds .go class after DOMContentLoaded */
.rise { opacity: 1; transform: none; }
body.anim-ready .rise {
  opacity: 0; transform: translateY(26px);
  animation: rise .95s var(--ease) forwards;
}
@keyframes rise { to { opacity: 1; transform: none; } }
body.anim-ready .rise-1 { animation-delay: .08s; }
body.anim-ready .rise-2 { animation-delay: .20s; }
body.anim-ready .rise-3 { animation-delay: .36s; }
body.anim-ready .rise-4 { animation-delay: .50s; }
body.anim-ready .rise-5 { animation-delay: .64s; }
body.anim-ready .rise-6 { animation-delay: .76s; }
@media (prefers-reduced-motion: reduce) {
  body.anim-ready .rise {
    animation: none; opacity: 1; transform: none;
  }
  [data-reveal] { transition: none; }
}

/* ═══════════════════════════════════════════════════════════
   THINS SPOTLIGHT
   ═══════════════════════════════════════════════════════════ */
.thins-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}
.thins-img-col {
  position: sticky;
  top: 180px;
  align-self: start;
}
.thins-img-wrap {
  position: relative;
  border-radius: 20px; overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 6px 12px 48px -8px rgba(0,0,0,.55),
              2px 4px 16px -2px rgba(0,0,0,.3);
}
.thins-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
}
.thins-badge {
  position: absolute; top: 16px; right: 16px;
  background: rgba(122,28,16,.85);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(245,160,32,.35);
  color: var(--marigold-lt); font-family: var(--f-body);
  font-size: 9px; font-weight: 500; letter-spacing: .22em;
  text-transform: uppercase; padding: 7px 14px; border-radius: 100px;
}
.thins-pills {
  display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap;
}
.thins-pill {
  font-family: var(--f-body); font-size: 10px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,244,228,.55);
  border: 1px solid rgba(255,244,228,.18);
  padding: 7px 16px; border-radius: 100px;
}
.thins-flavours { display: flex; flex-direction: column; gap: 10px; }
.thins-fl {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: rgba(255,244,228,.08);
  border: 1px solid rgba(255,244,228,.14);
  border-radius: 12px;
  transition: background .35s, transform .35s;
}
.thins-fl:hover { background: rgba(255,244,228,.15); transform: translateX(4px); }
.thins-fl-swatch {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  border: 1px solid rgba(255,255,255,.12);
}
.thins-fl-body { flex: 1; }
.thins-fl-name {
  font-family: var(--f-display); font-size: 20px; font-weight: 500;
  color: var(--cream); display: block; line-height: 1.2; margin-bottom: 2px;
}
.thins-fl-note {
  font-size: 11px; font-weight: 300; color: rgba(255,244,228,.5); letter-spacing: .03em;
}
.thins-fl-qty {
  font-family: var(--f-text); font-size: 16px; font-weight: 400;
  color: var(--marigold-lt); flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   SHARDS SPOTLIGHT
   ═══════════════════════════════════════════════════════════ */
.shards-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}
.shards-img-col { position: sticky; top: 100px; }
.shards-img-wrap {
  position: relative;
  border-radius: 20px; overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.45);
}
.shards-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.shards-badge {
  position: absolute; top: 16px; left: 16px;
  background: rgba(13,88,88,.85); backdrop-filter: blur(6px);
  border: 1px solid rgba(245,160,32,.35);
  color: var(--marigold-lt); font-family: var(--f-body);
  font-size: 9px; font-weight: 500; letter-spacing: .22em;
  text-transform: uppercase; padding: 7px 14px; border-radius: 100px;
}

/* Variant card */
.shards-variant {
  background: rgba(255,248,224,.08);
  border: 1px solid rgba(255,248,224,.18);
  border-radius: 16px; padding: 26px 28px;
  margin-top: 8px;
}
.shards-var-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.shards-var-label {
  font-family: var(--f-body); font-size: 9px; font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase; color: var(--teal-lt);
}
.shards-var-tag {
  font-family: var(--f-body); font-size: 9px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--marigold-lt); background: rgba(245,160,32,.15);
  border: 1px solid rgba(245,160,32,.25); padding: 5px 12px; border-radius: 100px;
}
.shards-var-name {
  font-family: var(--f-display); font-size: 30px; font-weight: 500;
  color: var(--cream); margin-bottom: 10px; line-height: 1.2;
}
.shards-var-desc {
  font-size: 13.5px; font-weight: 300; color: rgba(255,248,224,.62);
  line-height: 1.75; text-wrap: pretty; margin-bottom: 20px;
}
.shards-tags {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px;
}
.shards-tag {
  font-family: var(--f-body); font-size: 10px; font-weight: 400;
  letter-spacing: .1em; color: rgba(255,248,224,.55);
  border: 1px solid rgba(255,248,224,.18); padding: 5px 12px; border-radius: 100px;
}
.shards-tag-green { color: var(--teal-lt); border-color: rgba(58,172,172,.3); }
.shards-origin {
  padding-top: 16px; border-top: 1px solid rgba(255,248,224,.12);
  display: flex; align-items: baseline; gap: 12px;
}
.shards-origin-label {
  font-family: var(--f-body); font-size: 9px; font-weight: 500;
  letter-spacing: .24em; text-transform: uppercase; color: var(--teal-lt);
  flex-shrink: 0;
}
.shards-origin-val {
  font-family: var(--f-display); font-size: 17px; font-weight: 400;
  color: rgba(255,248,224,.75); font-style: italic;
}

/* Shards — two-card layout */
.shards-header { margin-bottom: clamp(40px, 5vw, 72px); }
.shards-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 40px);
}
.shards-card {
  background: rgba(255,248,224,.05);
  border: 1px solid rgba(255,248,224,.12);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
/* Product image — seamless blurred-background extend technique */
.prod-blur-bg { display: none; }
.shards-card-img {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.shards-card-img img {
  position: relative; z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform .6s ease;
}
.shards-card:hover .shards-card-img img { transform: scale(1.03); }
.shards-card:nth-child(2):hover .shards-card-img img { transform: scale(1.16); }
.shards-card-img-ph {
  background: rgba(13,55,80,.6);
  display: flex; align-items: center; justify-content: center;
}
.shards-card-ph-inner {
  font-family: var(--f-body); font-size: 12px; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,248,224,.3);
  text-align: center; padding: 20px;
}
.shards-card-badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(13,88,88,.85); backdrop-filter: blur(6px);
  border: 1px solid rgba(245,160,32,.35);
  color: var(--marigold-lt); font-family: var(--f-body);
  font-size: 9px; font-weight: 500; letter-spacing: .22em;
  text-transform: uppercase; padding: 6px 12px; border-radius: 100px;
}
.shards-card-body {
  padding: clamp(20px, 2.5vw, 32px);
  flex: 1; display: flex; flex-direction: column;
}
.shards-card-name {
  font-family: var(--f-display); font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 500; color: var(--cream); margin-bottom: 12px; line-height: 1.2;
}
.shards-card-desc {
  font-size: 13.5px; font-weight: 300; color: rgba(255,248,224,.6);
  line-height: 1.75; text-wrap: pretty; margin-bottom: 20px;
}
.shards-card-origin {
  display: flex; align-items: baseline; gap: 10px;
  padding-top: 16px; border-top: 1px solid rgba(255,248,224,.1);
}

/* remove old split styles */
.shards-split, .shards-img-col, .shards-img-wrap, .shards-copy,
.shards-tabs, .shards-tab-btns, .shards-tab-btn, .shards-variant { all: unset; }

/* Shards — responsive */
@media (max-width: 768px) { .shards-cards { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════
   SHARED PRODUCT LAYOUT SYSTEM
   ═══════════════════════════════════════════════════════════ */

/* Generic split layout */
.prod-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(48px,7vw,96px); align-items: start;
}
.prod-split-rev { direction: rtl; }
.prod-split-rev > * { direction: ltr; }
.prod-img-col {
  position: sticky;
  top: 180px;
  align-self: start;
}

/* Generic placeholder */
.prod-ph {
  background: var(--ph-color, #1a1a2e);
  border-radius: 20px;
  aspect-ratio: 1/1;
  width: 100%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.45);
}
.prod-ph::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg,rgba(255,255,255,.03) 0,rgba(255,255,255,.03) 1px,transparent 1px,transparent 12px);
}
.prod-ph-label {
  font-family: var(--f-body); font-size: 11px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,248,224,.35); text-align: center;
  position: relative; z-index: 1; padding: 20px;
  line-height: 1.8;
}
.prod-ph-sm { aspect-ratio: 1/1; border-radius: 12px; box-shadow: none; }

/* ── Consistent product info strip ─────────────────────── */
.prod-info-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 0;
  border: 1px solid rgba(255,248,224,.15);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 28px;
}
.prod-info-strip--light {
  border-color: rgba(30,4,48,.15);
}
.pis-item {
  display: flex; flex-direction: column; gap: 5px;
  padding: 14px 18px;
  border-right: 1px solid rgba(255,248,224,.12);
}
.prod-info-strip--light .pis-item {
  border-right-color: rgba(30,4,48,.1);
}
.pis-item:last-child { border-right: none; }
.pis-label {
  font-family: var(--f-body); font-size: 9px;
  font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--marigold); opacity: .75;
}
.prod-info-strip--light .pis-label {
  color: var(--plum);
}
.pis-val {
  font-family: var(--f-body); font-size: 12px;
  font-weight: 400; color: rgba(255,248,224,.78);
  line-height: 1.45;
}
.prod-info-strip--light .pis-val {
  color: rgba(30,4,48,.7);
}
.pis-val-price {
  font-size: 13px; font-weight: 600;
  color: var(--marigold-lt);
}
.prod-info-strip--light .pis-val-price {
  color: var(--plum);
}

/* plum variant (for coated section dark bg) */
.prod-info-strip--plum {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,248,224,.1);
}
.prod-info-strip--plum .pis-label { color: rgba(245,160,32,.6); }
.prod-info-strip--plum .pis-val   { color: rgba(255,248,224,.75); }
.prod-info-strip--plum .pis-val-price { color: var(--marigold); }

/* Product detail card */
.prod-detail-card {
  background: rgba(255,248,224,.06);
  border: 1px solid rgba(255,248,224,.14);
  border-radius: 16px; padding: 24px 26px;
}
.prod-detail-card-light {
  background: rgba(255,248,224,.1);
  border-color: rgba(255,248,224,.2);
}
.prod-detail-desc {
  font-size: 13.5px; font-weight: 300; color: rgba(255,248,224,.62);
  line-height: 1.78; margin-bottom: 20px; text-wrap: pretty;
}
.prod-flavours { margin-bottom: 18px; }
.prod-fl-label {
  font-family: var(--f-body); font-size: 9px; font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase; color: var(--teal-lt);
  display: block; margin-bottom: 10px;
}
.prod-fl-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.prod-fl-tag {
  font-family: var(--f-body); font-size: 10px; font-weight: 400;
  letter-spacing: .1em; color: var(--marigold-lt);
  border: 1px solid rgba(245,160,32,.3); padding: 5px 12px; border-radius: 100px;
}
.prod-meta-row {
  display: flex; gap: 24px; padding-top: 16px;
  border-top: 1px solid rgba(255,248,224,.1); margin-bottom: 16px;
}
.prod-meta-item { display: flex; flex-direction: column; gap: 4px; }
.prod-meta-label {
  font-family: var(--f-body); font-size: 9px; font-weight: 500;
  letter-spacing: .24em; text-transform: uppercase; color: var(--teal-lt);
}
.prod-meta-val { font-size: 13px; color: rgba(255,248,224,.7); }
.prod-meta-val.veg, .prod-meta-val.vegan { color: var(--teal-lt); }
.prod-origin-row {
  display: flex; align-items: baseline; gap: 12px;
  padding-top: 14px; border-top: 1px solid rgba(255,248,224,.08);
}

/* ── Product Range label (top of catalogue) ─────────────── */
.product-range-label {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 56px;
}
.product-range-rule {
  flex: 1; height: 1px; background: rgba(255,248,224,.2);
}
.product-range-text {
  font-family: var(--f-display);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 300;
  color: rgba(255,248,224,.7);
  letter-spacing: .02em;
  white-space: nowrap;
}

/* ── Catalogue Divider ───────────────────────────────────── */
.catalogue-divider {
  background: var(--plum-deep);
  padding: 56px var(--gutter);
}
.catalogue-divider-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  text-align: center;
}
.catalogue-divider-title {
  font-family: var(--f-display);
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.05;
  letter-spacing: -.01em;
}


/* ── 3-column comparison layout ────────────────────────── */
.hamper-compare {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto;
}
.hamper-col {
  grid-row: 1 / 4;
  display: grid;
  grid-template-rows: subgrid;
  gap: 16px 0;
  padding: 0 28px;
  border-right: 1px solid rgba(61,10,92,.13);
}
.hamper-col:first-child { padding-left: 0; }
.hamper-col:last-child  { padding-right: 0; border-right: none; }
.hamper-col-head {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(61,10,92,.15);
  text-align: center;
}
.hamper-col-name {
  font-family: var(--f-body); font-size: 11px; font-weight: 700;
  letter-spacing: .28em; text-transform: uppercase; color: var(--plum);
}
.hamper-col-dim {
  font-family: var(--f-body); font-size: 10.5px; font-weight: 400;
  letter-spacing: .06em; color: rgba(30,4,48,.4);
}

.hamper-tier {
  text-align: center; margin-bottom: 32px;
}
.hamper-tier-label {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 10px;
}
.hamper-tier-rule {
  flex: 1; height: 1px; background: rgba(61,10,92,.2);
}
.hamper-tier-name {
  font-family: var(--f-body); font-size: 11px; font-weight: 700;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--plum); white-space: nowrap;
  border: 1px solid rgba(61,10,92,.25); border-radius: 100px;
  padding: 7px 20px;
}
.hamper-tier-sub {
  font-family: var(--f-body); font-size: 11px; font-weight: 400;
  letter-spacing: .06em; color: rgba(30,4,48,.45);
  margin: 0;
}
.hamper-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
  margin-bottom: 8px;
}
.hamper-card {
  border: 1px solid rgba(61,10,92,.14);
  border-radius: 10px; padding: 20px 18px;
  background: rgba(61,10,92,.03);
  display: flex; flex-direction: column;
  transition: border-color .3s, box-shadow .3s;
}
.hamper-card:hover {
  border-color: rgba(61,10,92,.35);
  box-shadow: 0 8px 32px -8px rgba(61,10,92,.15);
}
.hamper-card--featured {
  border-color: rgba(245,160,32,.4);
  background: rgba(61,10,92,.07);
}
.hamper-card--featured:hover {
  border-color: rgba(245,160,32,.7);
}
.hamper-card-head {
  display: flex; align-items: baseline; gap: 12px;
  margin-bottom: 18px; padding-bottom: 16px;
  border-bottom: 1px solid rgba(61,10,92,.1);
}
.hamper-card-no {
  font-family: var(--f-body); font-size: 10px; font-weight: 700;
  letter-spacing: .18em; color: var(--marigold); opacity: .7;
}
.hamper-card-name {
  font-family: var(--f-display); font-size: clamp(18px,1.6vw,22px);
  font-weight: 300; color: var(--ink); line-height: 1.15;
}
.hamper-card-list {
  list-style: none; padding: 0; margin: 0 0 20px;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.hamper-card-list li {
  font-family: var(--f-body); font-size: 13px; font-weight: 400;
  color: rgba(30,4,48,.7); display: flex; align-items: baseline;
  gap: 6px; line-height: 1.4;
}
.hamper-card-list li::before {
  content: '·'; color: var(--marigold); font-size: 14px; flex-shrink: 0;
}
.hamper-qty {
  font-size: 10px; letter-spacing: .08em; font-weight: 500;
  color: rgba(30,4,48,.35); text-transform: uppercase; margin-left: auto;
  flex-shrink: 0;
}
.li-gram {
  font-size: 10px; letter-spacing: .06em; font-weight: 600;
  color: var(--marigold-dk); margin-left: auto; flex-shrink: 0;
  background: rgba(245,160,32,.12); border-radius: 100px;
  padding: 2px 8px; align-self: center;
}
.hamper-card-foot {
  padding-top: 16px; border-top: 1px solid rgba(61,10,92,.1);
}
.hamper-price {
  font-family: var(--f-display); font-size: 20px; font-weight: 400;
  color: var(--plum); letter-spacing: -.01em;
  display: flex; flex-direction: column; gap: 3px;
}
.hamper-price::before {
  content: 'Price';
  font-family: var(--f-body); font-size: 9px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(30,4,48,.38);
}
.hamper-card--featured .hamper-price { color: var(--marigold); }

.hamper-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 860px) {
  .hamper-compare {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .hamper-col {
    grid-row: auto;
    grid-template-rows: none;
    display: flex; flex-direction: column; gap: 16px;
    padding: 0 0 32px;
    border-right: none;
    border-bottom: 1px solid rgba(61,10,92,.13);
  }
  .hamper-col:last-child { border-bottom: none; padding-bottom: 0; }
  .hamper-col-head { align-items: flex-start; text-align: left; }
}

@media (max-width: 640px) {
  .hamper-grid--2 { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .hamper-grid { grid-template-columns: 1fr; }
}

/* ── BARS ────────────────────────────────────────────────── */
.bars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: clamp(20px,2.5vw,32px);
  margin-top: clamp(40px,5vw,64px);
}
.bar-card-featured {
  grid-column: auto;
  flex-direction: column;
}
.bar-card-featured .bar-card-img {
  width: 100%;
  aspect-ratio: 4/3;
}
.bar-card-featured .bar-card-body { flex: 1; }
.bar-card {
  background: rgba(26,8,48,.05);
  border: 1px solid rgba(26,8,48,.12);
  border-radius: 20px; overflow: hidden;
  display: flex; flex-direction: column;
}
.bar-card-img { position: relative; aspect-ratio: 1/1; overflow: hidden; }
.bar-tag {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--f-body); font-size: 9px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 100px;
  backdrop-filter: blur(6px);
}
.bar-card-body { padding: clamp(18px,2vw,26px); flex: 1; display: flex; flex-direction: column; }
.bar-card-name {
  font-family: var(--f-display); font-size: clamp(20px,2vw,28px);
  font-weight: 500; color: var(--ink); margin-bottom: 10px; line-height: 1.2;
}
.bar-card-desc {
  font-size: 13px; font-weight: 400; color: rgba(26,8,48,.6);
  line-height: 1.75; margin-bottom: 16px; flex: 1; text-wrap: pretty;
}
.bar-meta { display: flex; gap: 8px; flex-wrap: wrap; }
.bar-meta-chip {
  font-family: var(--f-body); font-size: 10px; font-weight: 400;
  letter-spacing: .1em; color: rgba(26,8,48,.5);
  border: 1px solid rgba(26,8,48,.15); padding: 5px 12px; border-radius: 100px;
}
.bar-meta-chip.veg { color: var(--teal); border-color: rgba(13,88,88,.3); }
.bar-choose { margin-bottom: 14px; }
.bar-choose-label {
  font-family: var(--f-body); font-size: 9px; font-weight: 500;
  letter-spacing: .26em; text-transform: uppercase; color: var(--plum);
  display: block; margin-bottom: 8px;
}
.bar-choose-tags {
  display: flex; gap: 6px; flex-wrap: wrap;
}
.bar-choose-tags span {
  font-size: 11px; color: rgba(26,8,48,.75);
  background: rgba(26,8,48,.09); border-radius: 100px;
  padding: 4px 10px; letter-spacing: .06em;
}

/* ═══════════════════════════════════════════════════════════
   COATED — 2×2 grid
   ═══════════════════════════════════════════════════════════ */
.coated-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: clamp(20px,2.5vw,32px); margin-top: clamp(40px,5vw,64px);
}
.coated-card {
  background: rgba(255,248,224,.06); border: 1px solid rgba(255,248,224,.13);
  border-radius: 20px; overflow: hidden; display: flex; flex-direction: column;
}
.coated-card-img { position: relative; aspect-ratio: 1/1; overflow: hidden; background: #0a0a0a; }
.coated-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.coated-badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(13,88,88,.85); backdrop-filter: blur(6px);
  border: 1px solid rgba(245,160,32,.3);
  color: var(--marigold-lt); font-family: var(--f-body);
  font-size: 9px; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; padding: 6px 12px; border-radius: 100px;
}
.coated-card-body { padding: clamp(18px,2vw,26px); flex: 1; display: flex; flex-direction: column; }
.coated-card-title-row {
  display: flex; align-items: flex-end; gap: 12px; margin-bottom: 10px;
}
.coated-card-sep {
  flex: 1; height: 1px; background: rgba(245,160,32,.25); margin-bottom: 6px;
}
.coated-choc-badge {
  font-family: var(--f-body); font-size: 9px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--marigold-lt); white-space: nowrap; margin-bottom: 4px;
  flex-shrink: 0;
}
.coated-card-name {
  font-family: var(--f-display); font-size: clamp(18px,1.8vw,24px);
  font-weight: 500; color: var(--cream); margin-bottom: 0; line-height: 1.25;
}
.coated-card-desc {
  font-size: 13px; font-weight: 300; color: rgba(255,248,224,.58);
  line-height: 1.75; margin-bottom: 16px; flex: 1; text-wrap: pretty;
}
.coated-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.coated-chip {
  font-family: var(--f-body); font-size: 10px; font-weight: 400; letter-spacing: .1em;
  color: rgba(255,248,224,.5); border: 1px solid rgba(255,248,224,.18);
  padding: 5px 12px; border-radius: 100px;
}
.coated-chip-veg { color: var(--teal-lt); border-color: rgba(58,172,172,.3); }
.coated-chip-vegan { color: var(--marigold-lt); border-color: rgba(245,160,32,.3); }

/* Responsive */
@media (max-width: 1024px) {
  .prod-split { grid-template-columns: 1fr; }
  .prod-split-rev { direction: ltr; }
  .prod-img-col { position: static; height: auto; display: block; }
  .bars-grid { grid-template-columns: 1fr; }
  .coated-grid { grid-template-columns: 1fr; }
}
   ═══════════════════════════════════════════════════════════ */
.cubes-split {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}
.cubes-img-col { position: sticky; top: 100px; }
.cubes-img-wrap {
  position: relative;
  border-radius: 20px; overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.45);
}
.cubes-img-wrap img {
  position: relative; z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 15%;
}
.cubes-badge {
  position: absolute; top: 16px; right: 16px;
  background: rgba(30,4,48,.82);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(245,160,32,.35);
  color: var(--marigold-lt); font-family: var(--f-body);
  font-size: 9px; font-weight: 500; letter-spacing: .22em;
  text-transform: uppercase; padding: 7px 14px; border-radius: 100px;
  z-index: 2; position: absolute;
}

/* Stacked collection cards */
.cubes-cards { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.cubes-card {
  background: rgba(255,248,224,.07);
  border: 1px solid rgba(255,248,224,.16);
  border-radius: 14px; padding: 22px 24px;
  transition: background .3s, transform .3s;
}
.cubes-card:hover { background: rgba(255,248,224,.11); transform: translateX(4px); }
.cubes-col-label {
  font-family: var(--f-body); font-size: 9px; font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--marigold-lt); display: block; margin-bottom: 10px;
}
.cubes-col-name {
  font-family: var(--f-display); font-size: 28px; font-weight: 500;
  color: var(--cream); margin-bottom: 10px; line-height: 1.15;
}
.cubes-col-desc {
  font-size: 13.5px; font-weight: 300; color: rgba(255,248,224,.6);
  line-height: 1.75; text-wrap: pretty; margin-bottom: 22px;
}
.cubes-specs {
  display: flex; gap: 0; border-top: 1px solid rgba(255,248,224,.12); padding-top: 18px;
}
.cubes-spec {
  flex: 1; padding-right: 18px; margin-right: 18px;
  border-right: 1px solid rgba(255,248,224,.1);
}
.cubes-spec:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.cubes-spec-label {
  font-family: var(--f-body); font-size: 9px; font-weight: 500;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--teal-lt); display: block; margin-bottom: 6px;
}
.cubes-spec-val {
  font-family: var(--f-display); font-size: 26px; font-weight: 500; color: var(--cream);
}
.cubes-spec-unit { font-size: 13px; font-weight: 300; color: rgba(255,248,224,.5); margin-left: 2px; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .range-grid { grid-template-columns: repeat(2, 1fr); }
  .inside-visual { display: none; }
  .inside-grid { grid-template-columns: 1fr; }
  .thins-split { grid-template-columns: minmax(0, 1fr); }
  .thins-img-col { position: static; min-width: 0; }
  .cubes-split { grid-template-columns: 2fr 3fr; }
  .cubes-img-col { position: sticky; }
  .shards-split { grid-template-columns: 1fr; }
  .shards-img-col { position: static; }
}
@media (max-width: 860px) {
  .dw2-hero { grid-template-columns: 1fr; }
  .dw2-hero-product { display: none; }
  .sleeve-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .cubes-split { grid-template-columns: 1fr; }
  .cubes-img-col { position: static; max-width: 400px; }
  .gal-item.span2 { grid-column: span 2; }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .nav-links { display: none; }
}
@media (max-width: 560px) {
  .range-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .dw2-season-pill { display: none; }
}

/* ══════════════════════════════════════════════════════════
   THINS COLOUR SLIDER
   ══════════════════════════════════════════════════════════ */
.thins-colour-slider {
  margin-top: 20px;
}
.thins-colour-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 0 4px;
}
.thins-colour-eyebrow {
  font-family: var(--f-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(245,160,32,.55);
}
.thins-colour-active-name {
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,248,224,.6);
  transition: opacity .25s;
}
.thins-colour-track {
  aspect-ratio: 719 / 392;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 50px -12px rgba(0,0,0,.5),
              0 0 0 1px rgba(245,180,60,.1);
}
.thins-colour-track .sleeve-slide {
  object-fit: cover;
}
/* Always show arrows — no .sleeve-card parent needed */
.thins-colour-track .sleeve-arr {
  opacity: 0.7;
}

/* ── Flavour option pill ────────────────────────────────── */
.shards-flavour-opt {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 14px 0 0;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(245,160,32,.35);
  background: rgba(245,160,32,.08);
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,248,224,.55);
}
.shards-flavour-opt strong {
  color: rgba(245,160,32,.9);
  font-weight: 600;
  letter-spacing: .08em;
}

/* ── Customise intro row ──────────────────────────── */
.customise-intro {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 56px;
}
.customise-intro .sec-head {
  flex: 1 1 0;
  min-width: 0;
  margin-bottom: 0;
}
.customise-box-visual {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.customise-box-img {
  width: clamp(220px, 28vw, 380px);
  height: auto;
  border-radius: 12px;
  box-shadow: 0 24px 60px -12px rgba(0,0,0,.6);
  display: block;
}
.customise-box-caption {
  font-family: var(--f-body);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,248,224,.35);
  text-align: center;
}
@media (max-width: 760px) {
  .customise-intro {
    flex-direction: column;
    gap: 32px;
  }
  .customise-box-img {
    width: clamp(180px, 60vw, 300px);
  }
}
.thins-colour-track:hover .sleeve-arr {
  opacity: 1;
}

/* ── Clusters per-variant pricing ────────────────────────── */
.clusters-pricing {
  margin-top: 20px;
  border: 1px solid rgba(255,248,224,.12);
  border-radius: 12px;
  overflow: hidden;
}
.clusters-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,248,224,.08);
}
.clusters-price-row:last-child { border-bottom: none; }
.clusters-price-row--flavours { align-items: flex-start; padding: 14px 16px; }
.clusters-variant {
  font-family: var(--f-body);
  font-size: 12px;
  color: rgba(255,248,224,.6);
  letter-spacing: .08em;
}
.clusters-variant-flavours {
  display: flex;
  flex-direction: column;
}
.clusters-price {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--cream);
  white-space: nowrap;
  flex-shrink: 0;
}
/* Bar section separator */
.bars-section-sep {
  display: flex; align-items: center; gap: 18px;
  margin: 8px 0 4px;
}
.bars-sep-rule {
  flex: 1; height: 1px; background: rgba(61,10,92,.15);
}
.bars-sep-label {
  font-family: var(--f-body); font-size: 9px; font-weight: 600;
  letter-spacing: .28em; text-transform: uppercase;
  color: rgba(61,10,92,.45); white-space: nowrap;
}

/* ── Tablet Collection reworked card ─────────────────────── */
.bar-card-tablet {
  display: flex;
  flex-direction: row;
  gap: 0;
  align-items: stretch;
  grid-column: 1 / -1;
  padding: 0;
  overflow: hidden;
}
.bar-card-tablet .tablet-main-img {
  flex: 0 0 42%;
  position: relative;
  border-radius: 0;
  overflow: hidden;
}
.bar-card-tablet .tablet-main-img img {
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 40%;
  aspect-ratio: unset;
}
.bar-card-tablet .tablet-main-img .bar-tag {
  position: absolute;
  top: 14px; left: 14px;
}
.tablet-right-col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.tablet-info {
  flex: 1 1 0;
  min-width: 0;
  padding: 28px 28px 16px;
}
.tablet-info .bar-card-name { margin-bottom: 6px; }
.tablet-info .bar-card-desc { margin-bottom: 10px; }
.tablet-info .bar-choose { margin-bottom: 10px; }
.tablet-colour-slider {
  border-top: 1px solid rgba(61,10,92,.1);
  padding: 14px 28px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tablet-colour-slider .thins-colour-hd { margin-bottom: 8px; width: 220px; }
.tablet-colour-slider .thins-colour-track {
  width: 220px;
  aspect-ratio: 4/3;
  border-radius: 8px;
  background: #f5f0e8;
}
.tablet-colour-slider .thins-colour-track .sleeve-slide {
  object-fit: contain;
  object-position: center center;
}
.tablet-colour-slider .sleeve-swatches { bottom: 8px; }
.tablet-colour-slider .sleeve-arr { width: 24px; height: 24px; font-size: 13px; }

/* Bar option list */
.bar-choose-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 10px;
  border: 1px solid rgba(26,8,48,.1);
  border-radius: 10px;
  overflow: hidden;
}
.bar-option {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(26,8,48,.07);
}
.bar-option:last-child { border-bottom: none; }
.bar-option-no {
  font-family: var(--f-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .16em;
  color: rgba(26,8,48,.3);
}
.bar-option-name {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 600;
  color: rgba(26,8,48,.8);
  letter-spacing: .02em;
}
.bar-option-note {
  font-family: var(--f-body);
  font-size: 10px;
  color: rgba(26,8,48,.4);
  letter-spacing: .04em;
  text-align: right;
}
@media (max-width: 860px) {
  .bar-card-tablet { flex-direction: column; }
  .bar-card-tablet .tablet-main-img { flex: none; width: 100%; height: 260px; border-radius: 0; }
  .tablet-colour-slider .thins-colour-track { aspect-ratio: 16/7; }
}
/* ── Enquire split layout ─────────────────────────────────── */
.enquire-wrap { max-width: 1100px; }

/* Unified card */
.enquire-unified-card {
  display: flex; align-items: stretch;
  margin-top: 52px;
  background: #fff;
  border: 1px solid rgba(245,160,32,.2);
  border-radius: 20px;
  box-shadow: 0 24px 60px -20px rgba(26,8,48,.1);
  overflow: hidden;
}
.enquire-form-col {
  flex: 1 1 0; min-width: 0;
  padding: 32px 36px;
}
.enquire-vert-divider {
  width: 1px; flex-shrink: 0;
  background: rgba(61,10,92,.1);
  align-self: stretch;
}
.enquire-contact-side {
  flex: 0 0 240px;
  padding: 32px 28px;
  display: flex; flex-direction: column; justify-content: center; gap: 0;
}

/* Remove old separate card styles */
.enquire-split { display: none; }
.enquire-contact-card { display: none; }

.enquire-contact-label {
  display: block;
  font-family: var(--f-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--plum-mid);
  margin-bottom: 24px;
}
.enquire-contact-items {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(26,8,48,.1);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}
.enquire-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(26,8,48,.07);
  color: var(--ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  transition: background .25s, color .25s;
}
.enquire-contact-item:last-child { border-bottom: none; }
a.enquire-contact-item:hover {
  background: rgba(61,10,92,.04);
  color: var(--plum);
}
.enquire-contact-hours { color: rgba(26,8,48,.45); cursor: default; }
.enquire-contact-icon {
  font-size: 13px;
  color: var(--marigold);
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}
.enquire-contact-note {
  font-size: 11px;
  font-weight: 400;
  color: rgba(26,8,48,.38);
  line-height: 1.75;
  border-top: 1px solid rgba(26,8,48,.08);
  padding-top: 20px;
}
@media (max-width: 860px) {
  .enquire-unified-card { flex-direction: column; }
  .enquire-vert-divider { width: auto; height: 1px; align-self: auto; }
  .enquire-contact-side { flex: none; padding: 32px 36px; }
  .enquire-form-col { padding: 36px 28px; }
}

/* ── Enquire form — pill selectors & success state ──────── */
.form-req { color: var(--plum-mid); font-size: 11px; }
.form-pills {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-top: 4px;
  margin-bottom: 20px;
}
.form-pill {
  position: relative; cursor: pointer;
}
.form-pill input {
  position: absolute; opacity: 0; width: 0; height: 0;
}
.form-pill span {
  display: inline-flex; align-items: center;
  font-family: var(--f-body); font-size: 12px; font-weight: 500;
  letter-spacing: .08em;
  color: rgba(26,8,48,.6);
  border: 1.5px solid rgba(26,8,48,.18);
  border-radius: 100px; padding: 9px 22px;
  transition: background .25s, border-color .25s, color .25s;
  user-select: none;
}
.form-pill input:checked + span {
  background: var(--plum);
  border-color: var(--plum);
  color: var(--cream);
}
.form-pill:hover span {
  border-color: var(--plum-mid);
  color: var(--plum);
}
.enquire-form button[type=submit] {
  cursor: pointer; font-family: inherit;
  color: var(--ink);
  border-color: rgba(26,8,48,.6);
  background: transparent;
}
.enquire-form button[type=submit]:hover {
  background: linear-gradient(118deg, var(--marigold-lt) 0%, var(--marigold) 55%, var(--marigold-dk) 100%);
  border-color: var(--marigold);
  color: var(--plum-deep);
}
.enquire-success {
  margin-top: 52px;
}
.enquire-success-inner {
  background: #fff;
  border: 1px solid rgba(245,160,32,.25);
  border-radius: 20px;
  padding: 56px 48px;
  text-align: center;
  box-shadow: 0 24px 60px -20px rgba(26,8,48,.1);
}
.enquire-success-icon {
  font-size: 32px; color: var(--marigold);
  margin-bottom: 20px; line-height: 1;
}
.enquire-success-inner h3 {
  font-family: var(--f-display); font-size: clamp(28px,3vw,40px);
  font-weight: 400; color: var(--ink); margin-bottom: 12px;
}
.enquire-success-inner p {
  font-size: 14px; font-weight: 300;
  color: rgba(26,8,48,.55); line-height: 1.7;
}
/* Tablet colour slider — dark text on light card bg */
.tablet-colour-slider .thins-colour-eyebrow {
  color: rgba(26,8,48,.4);
}
.tablet-colour-slider .thins-colour-active-name {
  color: rgba(26,8,48,.7);
}


/* ══════════════════════════════════════════════════════════
   ENQUIRE LAYOUT UPLIFT — remove nested white card,
   upgrade contact icons to match main Taufah layout
   ══════════════════════════════════════════════════════════ */

/* Flatten nested white form card — fields sit directly in outer card */
.enquire-form {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

/* Give the outer card a little more breathing room */
.enquire-form-col { padding: 40px 40px; }

/* Contact icon — square bg like main Taufah page */
.enquire-contact-icon {
  width: 28px !important;
  height: 28px !important;
  flex-shrink: 0;
  border-radius: 8px !important;
  background: rgba(61,10,92,.1) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 12px !important;
  color: var(--marigold) !important;
}

/* Tighten contact item padding */
.enquire-contact-item { padding: 13px 14px !important; font-size: 13px !important; }


/* ══════════════════════════════════════════════════════════
   MOBILE OPTIMISATIONS
   ══════════════════════════════════════════════════════════ */

/* Hamburger button */
.nav-burger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 36px; height: 36px;
  background: none; border: none; cursor: pointer; padding: 4px;
  flex-shrink: 0;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--cream); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mob-nav-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 300;
  background: rgba(10,3,24,.72);
  backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.mob-nav-overlay.open { opacity: 1; pointer-events: auto; }
.mob-nav-drawer {
  position: absolute; top: 0; right: 0;
  width: min(320px, 88vw); height: 100%;
  background: var(--plum-deep);
  border-left: 1px solid rgba(245,160,32,.14);
  padding: 72px 32px 40px;
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.mob-nav-overlay.open .mob-nav-drawer { transform: translateX(0); }
.mob-nav-close {
  position: absolute; top: 20px; right: 20px;
  background: none; border: none; cursor: pointer;
  color: rgba(255,248,224,.5); font-size: 20px; line-height: 1;
}
.mob-nav-links { display: flex; flex-direction: column; gap: 8px; }
.mob-nav-link {
  font-family: var(--f-body); font-size: 13px; font-weight: 400;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,248,224,.7);
  padding: 14px 0; border-bottom: 1px solid rgba(255,248,224,.07);
  transition: color .2s;
}
.mob-nav-link:hover { color: var(--cream); }
.mob-nav-cta {
  margin-top: 16px; border-bottom: none !important;
  color: var(--marigold) !important; font-weight: 600;
}

@media (max-width: 860px) {
  .nav-burger { display: flex; }
  .mob-nav-overlay { display: block; }
  /* shrink nav logo on mobile */
  .nav-logo-triscript { height: 48px; width: 86px; }
  /* hide desktop CTA on very small screens */
}

@media (max-width: 480px) {
  .dw2-nav-cta { display: none; }
}

/* ── Hero mobile ─────────────────────────────────────────── */
@media (max-width: 640px) {
  .dw2-hero-bottom { padding: 0 0 clamp(32px,6vw,56px); }
  .dw2-hero-body { font-size: clamp(13px,3.5vw,15px); max-width: 90%; }
  .dw2-hero-ctas { flex-wrap: wrap; gap: 10px; }
  .btn-hero { font-size: 10px; padding: 11px 20px; }
  .dw2-season-pill { display: none; }
}

/* ── Product info strip — stack on small phones ─────────── */
@media (max-width: 480px) {
  .prod-info-strip {
    grid-auto-flow: row;
    grid-auto-columns: auto;
    grid-template-columns: 1fr;
  }
  .pis-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,248,224,.1);
    flex-direction: row; align-items: center; justify-content: space-between;
    padding: 10px 16px;
  }
  .pis-item:last-child { border-bottom: none; }
  .prod-info-strip--light .pis-item { border-bottom-color: rgba(30,4,48,.09); }
}

/* ── Gallery — single col on phones ─────────────────────── */
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr !important; }
  .gal-item.span2 { grid-column: span 1; }
}

/* ── Tablet colour slider — fluid on mobile ─────────────── */
@media (max-width: 560px) {
  .tablet-colour-slider { width: 100%; }
  .sleeve-slider.thins-colour-track { width: 100% !important; height: 220px !important; aspect-ratio: auto !important; }
  .bar-card-tablet .tablet-main-img { height: 200px; }
}

/* ── Section title sizes — tighter on phones ─────────────── */
@media (max-width: 480px) {
  .sec-title { font-size: clamp(30px,8vw,44px) !important; }
  .sec-lede { font-size: 14px; }
  .sec { padding: clamp(56px,9vh,80px) 0; }
}

/* ── Footer — tighter on phones ─────────────────────────── */
@media (max-width: 480px) {
  .foot-grid { gap: 24px; }
  .foot-logo { height: 48px; width: 86px; }
}

/* ── Enquire contact side — full width on mobile ─────────── */
@media (max-width: 560px) {
  .enquire-contact-side { padding: 24px 20px !important; }
  .enquire-form-col { padding: 28px 20px !important; }
  .enquire-unified-card { border-radius: 14px; }
}

/* ── Range grid — 1 col on phones ───────────────────────── */
@media (max-width: 480px) {
  .range-grid { grid-template-columns: 1fr !important; }
}


/* ══════════════════════════════════════════════════════════
   MULTI-SELECT DROPDOWN — Individual Items
   ══════════════════════════════════════════════════════════ */
.ms-dropdown { position: relative; margin-top: 4px; }
.ms-trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: #FAFAF5;
  border: 1px solid rgba(13,88,88,.18);
  border-radius: 10px; padding: 13px 16px;
  font-family: var(--f-body); font-size: 14px; font-weight: 300;
  color: var(--ink); cursor: pointer; text-align: left;
  transition: border-color .3s, box-shadow .3s;
}
.ms-trigger:hover { border-color: rgba(13,88,88,.35); }
.ms-trigger:focus-visible { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(13,88,88,.12); }
.ms-trigger-label {
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ms-trigger-label.placeholder { color: rgba(26,8,48,.45); }
.ms-chev {
  flex-shrink: 0; font-size: 16px; line-height: 1; color: rgba(26,8,48,.5);
  transition: transform .25s;
}
.ms-dropdown.open .ms-chev { transform: rotate(180deg); }
.ms-dropdown.open .ms-trigger { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(13,88,88,.1); }

.ms-panel {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 40;
  background: #fff;
  border: 1px solid rgba(13,88,88,.16);
  border-radius: 12px;
  box-shadow: 0 14px 40px -10px rgba(26,8,48,.28);
  padding: 6px;
  max-height: 264px; overflow-y: auto;
  display: none;
}
.ms-dropdown.open .ms-panel { display: block; }
.ms-option {
  display: flex; align-items: center; gap: 11px;
  padding: 10px 12px; border-radius: 8px;
  cursor: pointer; user-select: none;
  font-family: var(--f-body); font-size: 13.5px; font-weight: 300;
  color: var(--ink);
  transition: background .18s;
}
.ms-option:hover { background: rgba(13,88,88,.06); }
.ms-option input {
  appearance: none; -webkit-appearance: none;
  width: 18px; height: 18px; flex-shrink: 0; margin: 0;
  border: 1.5px solid rgba(26,8,48,.3); border-radius: 5px;
  background: #fff; cursor: pointer;
  position: relative; transition: background .18s, border-color .18s;
}
.ms-option input:checked {
  background: var(--plum); border-color: var(--plum);
}
.ms-option input:checked::after {
  content: ""; position: absolute;
  left: 5px; top: 1.5px; width: 4px; height: 9px;
  border: solid var(--cream); border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.ms-option input:checked + span { color: var(--plum); font-weight: 400; }


/* ══════════════════════════════════════════════════════════
   SLIDER DISCOVERABILITY — make colour/product sliders
   obviously navigable (always-on arrows, nudge, bigger dots)
   ══════════════════════════════════════════════════════════ */

/* Arrows: always visible, larger, higher contrast */
.sleeve-arr {
  opacity: .92 !important;
  width: 40px; height: 40px;
  background: rgba(30,4,48,.62);
  border: 1.5px solid rgba(245,180,60,.55);
  box-shadow: 0 5px 18px -5px rgba(0,0,0,.55);
  font-size: 20px;
}
.sleeve-card:hover .sleeve-arr,
.thins-colour-track .sleeve-arr,
.thins-colour-track:hover .sleeve-arr { opacity: .92 !important; }
.sleeve-arr:hover {
  background: rgba(61,10,92,.85);
  transform: translateY(-50%) scale(1.08);
}
.tablet-colour-slider .sleeve-arr { width: 34px; height: 34px; font-size: 17px; }

/* Swatches: larger, clearer, obviously tappable */
.sleeve-swatch {
  width: 18px; height: 18px;
  box-shadow: 0 1px 5px rgba(0,0,0,.32);
}
.sleeve-swatch.active { transform: scale(1.3); }
.sleeve-swatch:hover { transform: scale(1.18); }

/* Make the swatch row read as a control */
.sleeve-swatches {
  gap: 9px !important;
  padding: 7px 12px;
  border-radius: 100px;
  background: rgba(20,4,36,.34);
  backdrop-filter: blur(4px);
}

/* One-time nudge to invite swiping */
@keyframes arrNudgeNext {
  0%, 100% { transform: translateY(-50%); }
  35%      { transform: translateY(-50%) translateX(6px); }
  70%      { transform: translateY(-50%); }
}
@keyframes arrNudgePrev {
  0%, 100% { transform: translateY(-50%); }
  35%      { transform: translateY(-50%) translateX(-6px); }
  70%      { transform: translateY(-50%); }
}
@media (prefers-reduced-motion: no-preference) {
  .sleeve-slider.nudge .sleeve-arr-next { animation: arrNudgeNext 1.1s var(--ease) 3; }
  .sleeve-slider.nudge .sleeve-arr-prev { animation: arrNudgePrev 1.1s var(--ease) 3; }
}

/* Grab cursor to hint draggable */
.sleeve-slider { cursor: grab; touch-action: pan-y; }
.sleeve-slider:active { cursor: grabbing; }
