/* Nikotene catalogue. One light world on purpose, painted explicitly so it holds
   on any host theme. Each product photo sits on the surface its own background
   was shot on: Adalya pack art on dark tiles, white-background photos on white. */
:root {
  --page: #F5F5F7;
  --surface: #FFFFFF;
  --ink: #1D1D1F;
  --ink-2: #6E6E73;
  --ink-3: #86868B;
  --rule: #D2D2D7;
  --tile: #2C292A;            /* the Adalya artwork's own ground */
  --on-tile: #F5F5F7;
  --on-tile-2: rgba(245, 245, 247, 0.74);
  --red: #E10600;              /* a true red, no pink */
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", "Helvetica Neue", Arial, sans-serif;
  color-scheme: light;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.47;
  letter-spacing: -0.012em;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
a:focus-visible, button:focus-visible, input:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; border-radius: 999px; }
img { max-width: 100%; display: block; }
/* several components set their own display; closed must always win */
[hidden] { display: none !important; }
[id] { scroll-margin-top: 88px; }
.wrap { max-width: 1180px; margin: 0 auto; padding-inline: clamp(16px, 4vw, 44px); }

/* ---------- glass ---------- */
.glass {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(255, 255, 255, 0.64) 100%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  backdrop-filter: blur(24px) saturate(180%);
  box-shadow: inset 0 1px 0 #FFFFFF, 0 0 0 0.5px rgba(0, 0, 0, 0.07), 0 12px 32px rgba(0, 0, 0, 0.1);
}
.glass-d {
  position: relative;
  color: var(--on-tile);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.03) 100%), rgba(30, 27, 28, 0.36);
  -webkit-backdrop-filter: blur(22px) saturate(185%);
  backdrop-filter: blur(22px) saturate(185%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42), inset 0 -1px 1px rgba(255, 255, 255, 0.07), 0 12px 32px rgba(0, 0, 0, 0.3);
}
/* the specular rim, bright where light would catch the top-left edge */
.glass::after, .glass-d::after, .nav::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; pointer-events: none;
  background: linear-gradient(140deg, rgba(255,255,255,.95) 0%, rgba(255,255,255,.2) 35%, rgba(255,255,255,0) 55%, rgba(255,255,255,.6) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.glass-d::after { background: linear-gradient(140deg, rgba(255,255,255,.7) 0%, rgba(255,255,255,.1) 30%, rgba(255,255,255,0) 55%, rgba(255,255,255,.28) 100%); }

/* ---------- buttons ---------- */
.pill {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  border: 0; border-radius: 999px; text-decoration: none; font: inherit; font-weight: 500; white-space: nowrap; cursor: pointer;
  transition: transform .2s ease, filter .2s ease, background-color .2s ease;
}
.pill:active { transform: scale(.97); }
.pill.sm { font-size: 13px; padding: 7px 15px; }
.pill.md { font-size: 15px; padding: 10px 20px; }
.pill.red {
  color: #fff;
  background: linear-gradient(180deg, #F2311F 0%, var(--red) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45), 0 6px 18px rgba(225, 6, 0, 0.28);
}
.pill.red:hover { filter: brightness(1.08); }
.pill.soft { color: var(--ink); background: rgba(0, 0, 0, 0.06); }
.pill.soft:hover { background: rgba(0, 0, 0, 0.1); }
.pill.ink { color: #fff; background: var(--ink); }
.pill.ink:hover { background: #000; }
.pill.white { color: var(--ink); background: #fff; }
.pill.white:hover { background: #EDEDF0; }
.icon-btn {
  flex: none; width: 36px; height: 36px; border: 0; border-radius: 999px; cursor: pointer; padding: 0;
  display: grid; place-items: center; color: var(--ink); background: rgba(0, 0, 0, 0.05);
  transition: background-color .2s ease;
}
.icon-btn:hover { background: rgba(0, 0, 0, 0.1); }
.icon-btn svg { width: 16px; height: 16px; }
.chev, .chev-b { width: 9px; height: 9px; flex: none; transition: transform .2s ease; }

/* ---------- floating capsule nav ----------
   The glass is painted on ::before: an element with its own backdrop-filter
   would stop the menus inside it from blurring the page behind them. */
.nav {
  position: fixed; top: 12px; left: 50%; transform: translateX(-50%); z-index: 20;
  width: min(820px, calc(100% - 24px)); height: 56px; border-radius: 999px;
  display: flex; align-items: center; gap: 8px; padding: 0 8px 0 22px;
}
.nav::before {
  content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.66) 100%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  backdrop-filter: blur(24px) saturate(180%);
  box-shadow: inset 0 1px 0 #FFFFFF, 0 0 0 0.5px rgba(0, 0, 0, 0.08), 0 10px 30px rgba(0, 0, 0, 0.1);
}
.brand { flex: none; display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand svg { width: 86px; height: auto; color: var(--red); flex: none; }
.brand span { font-size: 13px; color: var(--ink-2); white-space: nowrap; padding-left: 12px; border-left: 1px solid var(--rule); }
/* Nikotene | Adalya: two wordmarks at the same height, either side of the divider */
.brand .brand-by { display: flex; align-items: center; }
.brand .brand-by svg { width: auto; height: 15px; color: var(--red); }
@media (max-width: 560px) { .brand .brand-by svg { height: 12px; } }
@media (max-width: 400px) { .brand .brand-by svg { height: 11px; } }
.nav > .pill { flex: none; }

.menu { flex: 1 1 auto; display: flex; justify-content: center; align-items: center; gap: 2px; margin: 0; padding: 0; list-style: none; font-size: 14px; }
.menu > li { position: relative; }
.top {
  appearance: none; border: 0; background: transparent; font: inherit; color: var(--ink-2); cursor: pointer;
  display: inline-flex; align-items: center; gap: 5px; padding: 7px 14px; border-radius: 999px; text-decoration: none; white-space: nowrap;
  transition: background-color .2s ease, color .2s ease;
}
.top:hover, .has-sub.open > .top { color: var(--ink); background: rgba(0, 0, 0, 0.05); }
.top.on { color: var(--ink); background: #FFFFFF; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); }
.has-sub.open .chev { transform: rotate(180deg); }
.sub {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%); padding-top: 14px;
  opacity: 0; visibility: hidden; transition: opacity .18s ease, visibility .18s ease;
}
.has-sub.open > .sub { opacity: 1; visibility: visible; }
@media (hover: hover) {
  .has-sub:hover > .top { color: var(--ink); background: rgba(0, 0, 0, 0.05); }
  .has-sub:hover > .sub { opacity: 1; visibility: visible; }
  .has-sub:hover .chev { transform: rotate(180deg); }
}
.panel { min-width: 270px; border-radius: 22px; padding: 8px; }
.panel a {
  display: flex; justify-content: space-between; align-items: baseline; gap: 20px;
  padding: 10px 14px; border-radius: 14px; text-decoration: none; white-space: nowrap;
  font-size: 14px; font-weight: 500; color: var(--ink);
}
.panel a small { font-size: 12px; font-weight: 400; color: var(--ink-2); font-variant-numeric: tabular-nums; }
.panel a:hover { background: rgba(0, 0, 0, 0.05); }
.panel a.more-link { margin-top: 5px; color: var(--ink-2); font-weight: 400; box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08); border-radius: 0 0 14px 14px; }

/* phones: one Browse button opens every section */
.browse { display: none; }
.nav.sheet-open .chev-b { transform: rotate(180deg); }
.sheet {
  display: none; position: absolute; top: calc(100% + 10px); left: 0; right: 0;
  border-radius: 26px; padding: 8px 8px 10px; max-height: calc(100vh - 100px); overflow-y: auto;
  opacity: 0; visibility: hidden; transition: opacity .18s ease, visibility .18s ease;
}
.nav.sheet-open .sheet { opacity: 1; visibility: visible; }
.s-brand { display: flex; justify-content: space-between; align-items: baseline; padding: 12px 14px 6px; font-size: 17px; font-weight: 600; text-decoration: none; }
.s-brand small { font-size: 13px; font-weight: 400; color: var(--ink-2); }
/* a flat list: one row per page, divided, the page you are on in red */
.s-brand + .s-brand { border-top: 1px solid rgba(0, 0, 0, 0.08); }
.sheet > .s-brand { padding: 14px 14px; }
.s-brand[aria-current="page"] { color: var(--red); }
.s-subs { display: flex; flex-wrap: wrap; gap: 6px; padding: 4px 12px 14px; border-bottom: 1px solid rgba(0, 0, 0, 0.08); }
.s-subs:last-child { border-bottom: 0; }
.s-subs a { font-size: 13px; padding: 6px 12px; border-radius: 999px; text-decoration: none; color: var(--ink); background: rgba(0, 0, 0, 0.05); }

/* ---------- search ---------- */
.scrim { position: fixed; inset: 0; z-index: 30; background: rgba(0, 0, 0, 0.28); }
.search {
  position: fixed; z-index: 31; top: 80px; left: 50%; transform: translateX(-50%);
  width: min(660px, calc(100% - 24px)); max-height: calc(100vh - 100px);
  display: flex; flex-direction: column; border-radius: 28px; padding: 10px;
}
.search.glass { background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.82) 100%); }
.s-field { display: flex; align-items: center; gap: 10px; padding: 4px 8px 4px 14px; border-radius: 20px; background: rgba(0, 0, 0, 0.05); }
.s-field svg { width: 18px; height: 18px; flex: none; color: var(--ink-2); }
.s-field input { flex: 1 1 auto; min-width: 0; height: 46px; border: 0; outline: 0; background: transparent; font: inherit; font-size: 18px; color: var(--ink); letter-spacing: -0.015em; }
.s-field input::placeholder { color: var(--ink-3); }
.s-field input::-webkit-search-cancel-button { -webkit-appearance: none; }
.s-close { flex: none; border: 0; cursor: pointer; font: inherit; font-size: 12px; color: var(--ink-2); padding: 6px 10px; border-radius: 999px; background: rgba(0, 0, 0, 0.06); }
.s-close:hover { color: var(--ink); }
.s-hints { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; padding: 14px 8px 6px; font-size: 13px; color: var(--ink-2); }
.s-hints button { border: 0; cursor: pointer; font: inherit; font-size: 13px; color: var(--ink); padding: 5px 12px; border-radius: 999px; background: rgba(0, 0, 0, 0.05); }
.s-hints button:hover { background: rgba(0, 0, 0, 0.1); }
.results { list-style: none; margin: 0; padding: 2px 0 0; overflow-y: auto; }
.results .r-head { display: block; padding: 14px 10px 6px; font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-2); cursor: default; }
.results li.r { display: grid; grid-template-columns: 44px minmax(0, 1fr) auto; align-items: center; gap: 12px; padding: 8px 10px; border-radius: 16px; cursor: pointer; }
.results li.r[aria-selected="true"] { background: rgba(0, 0, 0, 0.06); }
.thumb { width: 44px; height: 44px; border-radius: 12px; overflow: hidden; background: #E8E8ED; display: grid; place-items: center; font-size: 14px; font-weight: 700; color: var(--ink-2); }
.thumb.dark { background: var(--tile); color: var(--on-tile-2); }
.thumb img { width: 100%; height: 100%; object-fit: contain; padding: 3px; }
.r-name { display: block; font-size: 15px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.r-name mark { background: none; color: var(--ink); text-decoration: underline; text-decoration-color: var(--red); text-decoration-thickness: 2px; text-underline-offset: 3px; }
.r-desc { display: block; font-size: 13px; color: var(--ink-2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.r-meta { font-size: 12px; color: var(--ink-2); white-space: nowrap; text-align: right; }
.s-empty { margin: 0; padding: 22px 12px 18px; font-size: 15px; color: var(--ink-2); text-align: center; }
.s-empty b { color: var(--ink); font-weight: 600; }

/* a product reached from search glows for a moment */
@keyframes found { 0% { box-shadow: 0 0 0 0 rgba(225, 6, 0, 0); } 18% { box-shadow: 0 0 0 3px #fff, 0 0 0 7px rgba(225, 6, 0, 0.6); } 100% { box-shadow: 0 0 0 3px rgba(255,255,255,0), 0 0 0 7px rgba(225, 6, 0, 0); } }
.found { animation: found 2.2s ease-out 1; }

/* ---------- stock tags: set from the stock app, never typed into the page ---------- */
.tag { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; letter-spacing: 0.01em; line-height: 1; padding: 5px 10px 5px 9px; border-radius: 999px; white-space: nowrap; }
.tag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; flex: none; }
.tag.low { color: #9A5200; background: rgba(255, 149, 0, 0.16); }
.tag.out { color: #C00500; background: rgba(225, 6, 0, 0.1); }
.tile > .tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: rgba(255, 255, 255, 0.84);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  backdrop-filter: blur(12px) saturate(160%);
  box-shadow: 0 0 0 0.5px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.08);
}
.card > .tag { align-self: flex-start; margin-bottom: 12px; }
.tag.sm { font-size: 10.5px; padding: 3px 8px 3px 7px; margin-right: 8px; vertical-align: 1px; }

/* ---------- section and group headings ---------- */
.sec { padding-top: 96px; }
main > .sec:first-child { padding-top: 112px; }   /* the first section on each page clears the floating menu */
.sec-head {
  display: flex; justify-content: space-between; align-items: baseline; gap: 8px 24px; flex-wrap: wrap;
  margin-bottom: 40px; padding-bottom: 18px; border-bottom: 1px solid var(--rule);
}
.sec-head h2 { margin: 0; font-size: clamp(38px, 5vw, 56px); line-height: 1.05; font-weight: 700; letter-spacing: -0.032em; }
.sec-head p { margin: 0; font-size: 17px; color: var(--ink-2); }
.group + .group { margin-top: 64px; }
.group-head { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.group-head h3 { margin: 0; font-size: clamp(24px, 2.6vw, 30px); font-weight: 700; letter-spacing: -0.024em; }
.group-head p { margin: 0; font-size: 15px; color: var(--ink-2); }

/* ---------- Adalya tiles: the pack on a soft tint of its own colour ---------- */
.grid { display: grid; gap: 16px; }
.grid.c3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.c4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid.c5 { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.tile {
  --tint: 180, 180, 190;
  position: relative; margin: 0; overflow: hidden;
  display: flex; flex-direction: column;
  background: var(--surface); border-radius: 24px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: box-shadow .3s ease, transform .3s ease;
}
.tile:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08); }
.shot {
  position: relative; aspect-ratio: 1; display: grid; place-items: center;
  background: radial-gradient(56% 56% at 50% 48%, rgba(var(--tint), 0.45), rgba(var(--tint), 0) 74%);
}
.shot img {
  position: absolute; inset: 0; margin: auto;
  height: 80%; width: 86%; object-fit: contain;
  filter: drop-shadow(0 16px 16px rgba(0, 0, 0, 0.18));
  transition: transform .5s cubic-bezier(.2, .7, .2, 1);
}
.tile:hover .shot img { transform: translateY(-4px); }
.shot.type span {
  padding: 0 10%; font-size: clamp(30px, 3.4vw, 46px); line-height: .95; font-weight: 800; letter-spacing: -0.04em; text-align: center;
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.t-blueice .shot span { background-image: linear-gradient(180deg, #6DB6FF 0%, #1F63D6 100%); }
.t-bananamilk .shot span { background-image: linear-gradient(180deg, #F6C95A 0%, #B7791F 100%); }
.t-maracuja .shot span { background-image: linear-gradient(180deg, #F2A93B 0%, #8E3FB8 100%); }
.cap { padding: 2px 16px 16px; }
.cap h4 { margin: 0; font-size: 18px; line-height: 1.15; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); }
.cap p { margin: 3px 0 0; font-size: 13.5px; line-height: 1.35; color: var(--ink-2); min-height: 2.7em; }
/* a small red badge after the name of a flavour that has just joined the range */
.new-badge { display: inline-block; margin-left: 6px; padding: 3px 7px; border-radius: 999px; vertical-align: 2px; font-size: 10px; line-height: 1; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: #fff; background: var(--red); }
.c5 .cap { padding: 0 14px 14px; }
.c5 .cap h4 { font-size: 16.5px; }
.c5 .cap p { font-size: 12.5px; }

/* ---------- in the Maldives: the plain pack and carton, in 3D ---------- */
.mv {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.7fr); gap: 24px 40px; align-items: center;
  margin-top: 64px; padding: clamp(20px, 3vw, 32px); border-radius: 32px; background: var(--surface); box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.mv .eyebrow { margin: 0 0 6px; font-size: 15px; font-weight: 600; color: var(--ink-2); }
.mv h3 { margin: 0; font-size: clamp(28px, 3.2vw, 38px); line-height: 1.08; font-weight: 700; letter-spacing: -0.03em; }
.mv-copy > p { margin: 10px 0 0; color: var(--ink-2); max-width: 40ch; }
.mv-switch { display: inline-flex; gap: 2px; margin-top: 22px; padding: 4px; border-radius: 999px; background: rgba(0, 0, 0, 0.06); }
.mv-switch button { border: 0; cursor: pointer; font: inherit; font-size: 15px; font-weight: 600; color: var(--ink-2); padding: 8px 20px; border-radius: 999px; background: transparent; transition: background-color .2s ease, color .2s ease; }
.mv-switch button[aria-pressed="true"] { color: var(--ink); background: #FFFFFF; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); }
.mv-copy .mv-spec { margin-top: 14px; font-size: 14px; color: var(--ink); font-variant-numeric: tabular-nums; }
.mv-copy .mv-hint { margin-top: 2px; font-size: 13px; }
.mv-stage {
  position: relative; height: clamp(320px, 38vw, 460px); border-radius: 24px; overflow: hidden;
  container-type: size;   /* the pack and carton are sized from this box (cqh, cqw), so they always fit inside it */
  perspective: 1800px; cursor: grab; touch-action: pan-y; user-select: none; -webkit-user-select: none;
  background: radial-gradient(50% 56% at 50% 48%, rgba(120, 120, 128, 0.2), rgba(120, 120, 128, 0) 72%), #FAFAFB;
}
.mv-stage.dragging { cursor: grabbing; }
.mv-stage:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
.mv-anchor { position: absolute; left: 50%; top: 47%; width: 0; height: 0; transform-style: preserve-3d; }
.mv-box {
  --mm: min(4px, 0.8cqh, 1cqw);   /* pack: at most 71% of the box height and 58% of its width */
  --w: calc(var(--wmm) * var(--mm)); --h: calc(var(--hmm) * var(--mm)); --d: calc(var(--dmm) * var(--mm));
  position: absolute; left: 0; top: 0; width: 0; height: 0; transform-style: preserve-3d;
  transform: rotateX(var(--rx, -10deg)) rotateY(var(--ry, 32deg));
}
.mv-box[data-item="carton"] { --mm: min(1.6px, 0.21cqw, 0.8cqh); }   /* small enough to stay inside the stage while it turns */
.mv-face { position: absolute; left: 0; top: 0; background-size: 100% 100%; backface-visibility: hidden; -webkit-backface-visibility: hidden; }
.mv-face::after { content: ""; position: absolute; inset: 0; background: #000; opacity: var(--dark, 0); pointer-events: none; }
.f-front, .f-back { width: var(--w); height: var(--h); margin: calc(var(--h) / -2) 0 0 calc(var(--w) / -2); }
.f-left, .f-right { width: var(--d); height: var(--h); margin: calc(var(--h) / -2) 0 0 calc(var(--d) / -2); }
.f-top, .f-bottom { width: var(--w); height: var(--d); margin: calc(var(--d) / -2) 0 0 calc(var(--w) / -2); }
.f-front { transform: translateZ(calc(var(--d) / 2)); }
.f-back { transform: rotateY(180deg) translateZ(calc(var(--d) / 2)); }
.f-left { transform: rotateY(-90deg) translateZ(calc(var(--w) / 2)); }
.f-right { transform: rotateY(90deg) translateZ(calc(var(--w) / 2)); }
.f-top { transform: rotateX(90deg) translateZ(calc(var(--h) / 2)); }
.f-bottom { transform: rotateX(-90deg) translateZ(calc(var(--h) / 2)); }
.mv-shadow {
  position: absolute; left: 0; top: 0; width: var(--sw, 260px); height: 30px; border-radius: 50%;
  transform: translate(-50%, var(--sy, 200px));
  background: radial-gradient(closest-side, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0)); filter: blur(4px); pointer-events: none;
}

/* ---------- accessory cards: white, because their photos are ---------- */
.eq { grid-template-columns: repeat(var(--n, 3), minmax(0, 1fr)); }
.card {
  margin: 0; border-radius: 22px; padding: 22px 22px 24px; display: flex; flex-direction: column;
  background: var(--surface); box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08); }
.b-label { margin-bottom: 6px; font-size: 11.5px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--ink-3); }
.card h4 { margin: 0; font-size: 22px; line-height: 1.12; font-weight: 700; letter-spacing: -0.022em; }
.card p { margin: 6px 0 0; font-size: 14.5px; color: var(--ink-2); }
/* a card with a photo keeps its text on the left and the photo on the right,
   so cards still waiting for a photo need no empty space above their names */
.card.has-photo {
  display: grid; grid-template-columns: minmax(0, 1fr) auto; grid-template-rows: repeat(4, auto) 1fr;
  column-gap: 10px; align-content: start;
}
.card.has-photo > * { grid-column: 1; }
/* one height for every photo; the width follows the product, so a tall hookah takes a slim column */
.card.has-photo > .c-photo {
  grid-column: 2; grid-row: 1 / -1; align-self: center;
  height: 136px; width: auto; max-width: 132px; object-fit: contain; margin: -8px -8px -10px 0;
  mix-blend-mode: multiply;   /* the photo's white melts into the card */
}

/* ---------- "looking for more" banners ---------- */
.more {
  position: relative; isolation: isolate; overflow: hidden; margin-top: 64px;
  display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); align-items: center; gap: 24px;
  padding: clamp(28px, 4.5vw, 56px); border-radius: 32px; text-decoration: none;
}
.more h3 { margin: 0; font-size: clamp(28px, 3.4vw, 42px); line-height: 1.08; font-weight: 700; letter-spacing: -0.03em; text-wrap: balance; max-width: 18ch; }
.more .eyebrow { margin: 0 0 8px; font-size: 17px; font-weight: 600; }
.more .pill { margin-top: 24px; }
.more.dark { background: #1D1D1F; color: #F5F5F7; }
.more.dark .eyebrow { color: #FF4A3B; }
.more.dark::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(40% 70% at 78% 30%, rgba(214, 40, 190, 0.45), transparent 70%),
    radial-gradient(36% 60% at 92% 80%, rgba(255, 150, 40, 0.35), transparent 70%),
    radial-gradient(34% 60% at 62% 90%, rgba(40, 200, 185, 0.3), transparent 70%);
}
.more .big {
  justify-self: end; font-size: clamp(76px, 11vw, 156px); line-height: .9; font-weight: 800; letter-spacing: -0.05em;
  background: linear-gradient(180deg, #FFFFFF 0%, #E8E8ED 35%, #9C9CA1 60%, #F5F5F7 82%, #6E6E73 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.more.light { background: var(--surface); color: var(--ink); box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); }
.more.light .eyebrow { color: #0066CC; }
.more.light::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(45% 80% at 90% 50%, rgba(0, 122, 255, 0.1), transparent 70%);
}
.more .series { justify-self: end; margin: 0; padding: 0; list-style: none; text-align: right; }
.more .series li { font-size: clamp(22px, 2.6vw, 34px); line-height: 1.18; font-weight: 700; letter-spacing: -0.03em; color: #C7C7CC; }
.more .series li:nth-child(2) { color: #AEAEB2; }
.more .series li:nth-child(3) { color: #8E8E93; }
.more .series li:nth-child(4) { color: #AEAEB2; }

/* ---------- pre-order page ---------- */
.page-head { padding-top: 124px; }
.page-head h1 { margin: 0; font-size: clamp(48px, 7vw, 80px); line-height: 1.02; font-weight: 700; letter-spacing: -0.04em; }
.page-head p { margin: 14px 0 0; font-size: clamp(17px, 1.8vw, 21px); color: var(--ink-2); max-width: 56ch; }
.switch { display: inline-flex; gap: 2px; margin-top: 32px; padding: 4px; border-radius: 999px; background: rgba(0, 0, 0, 0.06); }
.switch a { padding: 10px 24px; border-radius: 999px; text-decoration: none; font-size: 16px; font-weight: 600; color: var(--ink-2); transition: background-color .2s ease, color .2s ease; }
.switch a:hover { color: var(--ink); }
.switch a[aria-current="page"] { color: var(--ink); background: #FFFFFF; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); }
.view { padding-top: 40px; }
.regular {
  display: flex; justify-content: space-between; align-items: center; gap: 12px 24px; flex-wrap: wrap;
  padding: 18px 22px; border-radius: 20px; background: var(--surface); box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.regular p { margin: 0; font-size: 16px; color: var(--ink-2); }
.regular b { color: var(--ink); font-weight: 600; }
.tools { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 16px; margin: 28px 0 32px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { border: 0; cursor: pointer; font: inherit; font-size: 14px; font-weight: 500; color: var(--ink); padding: 8px 15px; border-radius: 999px; background: rgba(0, 0, 0, 0.06); transition: background-color .2s ease, color .2s ease; }
.chip:hover { background: rgba(0, 0, 0, 0.1); }
.chip[aria-pressed="true"] { color: #fff; background: var(--ink); }
.filter { position: relative; flex: 0 1 300px; margin-left: auto; }
.filter svg { position: absolute; left: 14px; top: 50%; width: 16px; height: 16px; transform: translateY(-50%); color: var(--ink-3); pointer-events: none; }
.filter input { width: 100%; height: 42px; border: 0; border-radius: 999px; padding: 0 16px 0 38px; font: inherit; font-size: 15px; color: var(--ink); background: var(--surface); box-shadow: inset 0 0 0 1px var(--rule); }
.filter input::placeholder { color: var(--ink-3); }
.tools .count { flex-basis: 100%; margin: -2px 0 0; font-size: 14px; color: var(--ink-2); }
/* the pre-order page's two main categories: Premium (with its series) and Classics */
.cat:not([hidden]) ~ .cat { margin-top: 80px; }
.cat-head { display: flex; justify-content: space-between; align-items: baseline; gap: 6px 20px; flex-wrap: wrap; margin-bottom: 28px; padding-bottom: 14px; border-bottom: 1px solid var(--rule); }
.cat-head h2 { margin: 0; font-size: clamp(32px, 4vw, 44px); line-height: 1.05; font-weight: 700; letter-spacing: -0.03em; }
.cat-head p { margin: 0; font-size: 16px; color: var(--ink-2); }
.cat .group { margin-top: 0; }
.cat .group:not([hidden]) ~ .group { margin-top: 56px; }
/* the Adalya range filter: a category switch, then that category's series as chips */
.range { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.seg { display: inline-flex; gap: 2px; padding: 4px; border-radius: 999px; background: rgba(0, 0, 0, 0.06); }
.seg button { border: 0; cursor: pointer; font: inherit; font-size: 15px; font-weight: 600; white-space: nowrap; color: var(--ink-2); padding: 9px 18px; border-radius: 999px; background: transparent; transition: background-color .2s ease, color .2s ease; }
.seg button:hover { color: var(--ink); }
.seg button small { margin-left: 3px; font-size: 12px; font-weight: 500; color: var(--ink-3); font-variant-numeric: tabular-nums; }
.seg button[aria-pressed="true"] { color: var(--ink); background: #FFFFFF; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); }
/* phones: the filter takes the whole row, so the switch is the same full width whether or not a chip row is showing */
@media (max-width: 560px) { .range { flex: 1 1 100%; } .seg { display: flex; align-self: stretch; } .seg button { flex: 1; padding-inline: 8px; } }
.grid.c4m { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.mini { margin: 0; padding: 16px 18px 17px; border-radius: 18px; background: var(--surface); box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); }
.mini h4 { margin: 0; font-size: 17px; line-height: 1.2; font-weight: 600; letter-spacing: -0.018em; }
.mini p { margin: 4px 0 0; font-size: 13.5px; line-height: 1.4; color: var(--ink-2); }
.v-empty { margin: 0; padding: 48px 12px; text-align: center; font-size: 16px; color: var(--ink-2); }

/* ---------- footer ---------- */
.contact-sec + .foot { margin-top: 64px; }
.foot { margin-top: 110px; padding-block: 26px 44px; border-top: 1px solid var(--rule); font-size: 12px; color: var(--ink-2); }
.foot p { margin: 0 0 6px; max-width: 92ch; }
.foot .reach { display: flex; flex-wrap: wrap; gap: 6px 22px; margin-bottom: 12px; font-size: 14px; }
.foot .reach a { color: var(--ink); text-decoration: none; font-weight: 500; }
.foot .reach a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .grid.c4, .grid.c5 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .c5 .cap h4 { font-size: 19px; }
  .grid.c4m { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .brand span { display: none; }
}
@media (max-width: 860px) {
  .menu { display: none; }
  .browse { display: grid; }
  #openSearch { margin-left: auto; }   /* search and then the menu icon, together at the right end */
  .sheet { display: block; }
  .search { top: 76px; }
}
@media (max-width: 820px) {
  .mv { grid-template-columns: minmax(0, 1fr); }
  .mv-stage { height: clamp(340px, 95vw, 460px); }
  .grid.c3, .eq { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .more { grid-template-columns: minmax(0, 1fr); }
  .more .big, .more .series { justify-self: start; text-align: left; }
  .more .series { display: none; }
  .r-meta { display: none; }
  .filter { flex: 1 1 100%; margin-left: 0; }
}
@media (max-width: 560px) {
  .nav { padding-left: 16px; gap: 6px; }
  .brand svg { width: 70px; }
  .grid.c3, .eq { grid-template-columns: minmax(0, 1fr); }
  .grid.c4m { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cap { padding: 0 12px 12px; }
  .cap h4 { font-size: 16px; }
  .cap p { font-size: 12px; }
  .switch { display: flex; }
  .switch a { flex: 1; text-align: center; padding-inline: 12px; }
}
/* a tile too narrow for the whole stock tag on one line (it needs about 190px) stacks its second half under the first */
.tile { container-type: inline-size; }
@container (max-width: 197px) {
  .tile > .tag { display: grid; grid-template-columns: auto auto; column-gap: 6px; row-gap: 2px; align-items: center; padding-block: 6px; border-radius: 12px; }
  .tile > .tag .tag-sep { display: none; }
  .tile > .tag .tag-more { grid-column: 2; }
}
/* the smallest phones: the capsule still has to hold logo, search, Browse and Order */
@media (max-width: 400px) {
  .nav { gap: 4px; padding-right: 6px; }
  .brand svg { width: 62px; }
  .nav .pill.sm { padding-inline: 11px; }
  .icon-btn { width: 32px; height: 32px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .shot img, .pill, .sub, .sheet, .chev, .chev-b, .card { transition: none; }
  .tile:hover .shot img, .tile:hover, .card:hover { transform: none; }
  .found { animation: none; outline: 3px solid var(--red); outline-offset: 4px; }
}

/* ---------- home ---------- */
.hero { padding-top: 120px; overflow-x: clip; }   /* the outer packs of the fan must never widen the page */
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); align-items: center; gap: 32px 48px; }
.hero-logo svg { display: block; width: clamp(150px, 15vw, 200px); height: auto; margin: 0 0 22px; color: var(--red); }
.hero .eyebrow, .about .eyebrow { margin: 0 0 14px; font-size: 16px; font-weight: 600; color: var(--red); }
.hero h1 { margin: 0; font-size: clamp(42px, 6vw, 72px); line-height: 1.03; font-weight: 700; letter-spacing: -0.04em; text-wrap: balance; }
.hero .lede { margin: 18px 0 0; font-size: clamp(17px, 1.8vw, 21px); color: var(--ink-2); max-width: 44ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
/* five packs fanned out from a point below them; hovering opens the fan a little */
.fan { position: relative; height: clamp(300px, 34vw, 440px); --s: 1; }
.fan img {
  position: absolute; left: 50%; bottom: 4%; width: 31%; height: auto; transform-origin: 50% 120%;
  transform: translateX(calc(-50% + var(--i) * 52% * var(--s))) translateY(calc(var(--a) * 5%)) rotate(calc(var(--i) * 9deg * var(--s)));
  filter: drop-shadow(0 18px 20px rgba(0, 0, 0, 0.2));
  transition: transform .6s cubic-bezier(.2, .7, .2, 1);
}
@media (hover: hover) { .fan:hover { --s: 1.14; } }
.about { max-width: 760px; }
.about h2 { margin: 0 0 16px; font-size: clamp(30px, 3.6vw, 44px); line-height: 1.08; font-weight: 700; letter-spacing: -0.03em; text-wrap: balance; }
.about p:not(.eyebrow) { margin: 0 0 14px; font-size: 18px; color: var(--ink-2); max-width: 65ch; }
.stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin: 0; padding: 0; list-style: none; }
.stats li { padding: 26px 28px; border-radius: 24px; background: var(--surface); box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); }
.stats b { display: block; font-size: clamp(34px, 4.2vw, 52px); line-height: 1; font-weight: 800; letter-spacing: -0.045em; white-space: nowrap; }
.stats span { display: block; margin-top: 10px; font-size: 15px; color: var(--ink-2); }
.paths { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 16px; }
.paths .more { margin-top: 0; grid-template-columns: minmax(0, 1fr); align-items: start; }
.paths + .more { margin-top: 16px; }
.more .groups { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 0; padding: 0; list-style: none; }
.more .groups li { font-size: 14px; font-weight: 500; padding: 6px 12px; border-radius: 999px; background: rgba(0, 0, 0, 0.06); }
.more .groups small { margin-left: 2px; font-size: 13px; color: var(--ink-2); }
.more .more-note { margin: 12px 0 0; font-size: 16px; color: var(--ink-2); max-width: 44ch; }
.order {
  display: flex; justify-content: space-between; align-items: center; gap: 20px 32px; flex-wrap: wrap;
  padding: clamp(28px, 4.5vw, 48px); border-radius: 32px; background: var(--surface); box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.order h2 { margin: 0; font-size: clamp(30px, 3.6vw, 44px); line-height: 1.08; font-weight: 700; letter-spacing: -0.03em; }
.order p { margin: 8px 0 0; font-size: 17px; color: var(--ink-2); }
.order-ways { display: flex; flex-wrap: wrap; gap: 10px; }
@media (max-width: 820px) {
  .hero-grid, .paths { grid-template-columns: minmax(0, 1fr); }
  .fan { height: min(80vw, 380px); }
  .fan img { width: 26%; }
}
@media (max-width: 560px) {
  .hero { padding-top: 104px; }
  .stats { grid-template-columns: minmax(0, 1fr); }
  .order-ways .pill { flex: 1 1 100%; }
}
@media (prefers-reduced-motion: reduce) { .fan img { transition: none; } }

/* ---------- print ---------- */
@page { size: A4; margin: 0; }
@media print {
  body { -webkit-print-color-adjust: exact; print-color-adjust: exact; font-size: 11pt; }
  .nav, .scrim, .search, .tools, .switch, .more, .mv { display: none !important; }
  .view[hidden] { display: block !important; }
  .glass-d { background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.05)), rgba(34, 31, 32, 0.8); }
  .wrap { padding-inline: 12mm; }
  main > .sec:first-child, .page-head { padding-top: 10mm; }
  .sec, .view { padding-top: 9mm; }
  #accessories, #accessories-po { break-before: page; }
  .sec-head { margin-bottom: 5mm; padding-bottom: 3mm; }
  .sec-head h2 { font-size: 28px; }
  .sec-head p, .page-head p { font-size: 12px; }
  .page-head h1 { font-size: 40px; }
  .regular { padding: 3mm 4mm; }
  .regular .pill { display: none; }
  .group + .group { margin-top: 6mm; }
  .group-head { break-after: avoid; margin-bottom: 3mm; }
  .group-head h3 { font-size: 19px; }
  .group-head p { font-size: 11px; }
  .grid { gap: 9px; }
  .grid.c3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid.c4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .grid.c5 { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 7px; }
  .c5 .cap { padding: 0 7px 7px; }
  .c5 .cap h4 { font-size: 11px; }
  .c5 .cap p { font-size: 8.5px; min-height: 0; }
  .grid.c4m { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 6px; }
  .eq { grid-template-columns: repeat(var(--n, 3), minmax(0, 1fr)); }
  .tile, .card, .mini { break-inside: avoid; box-shadow: none; }
  .card, .mini, .regular { box-shadow: inset 0 0 0 0.5pt #D2D2D7; }
  .tile { border-radius: 16px; }
  .cap { padding: 0 8px 8px; }
  .cap h4, .c3 .cap h4 { font-size: 13px; }
  .cap p { font-size: 9.5px; }
  .tile > .tag { background: #fff; }
  .card { padding: 10px 12px; border-radius: 12px; }
  .card h4 { font-size: 14px; }
  .card p { font-size: 10px; margin-top: 2px; }
  .b-label { font-size: 8.5px; margin-bottom: 2px; }
  .card > .tag { margin-bottom: 5px; font-size: 9px; padding: 3px 7px; }
  .mini { padding: 7px 9px; border-radius: 9px; }
  .mini h4 { font-size: 11.5px; }
  .mini p { font-size: 9px; margin-top: 1px; }
  .foot { margin-top: 10mm; padding-block: 6mm; }
}
