/* ============================================================
   VayyaariBhama Couture — peacock green + peacock blue
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
  /* peacock blue */
  --pb-900: #04222B;
  --pb-800: #06323E;
  --pb-700: #084655;
  --pb-600: #0A6379;
  --pb-500: #0E8AA6;
  --pb-400: #1FA9C4;
  --pb-300: #63C9DC;

  /* peacock green */
  --pg-900: #052C22;
  --pg-800: #084433;
  --pg-700: #0A5C46;
  --pg-600: #0E7C58;
  --pg-500: #14A075;
  --pg-400: #2BC495;
  --pg-300: #7BE0BE;

  /* metallics + neutrals */
  --gold: #E3B23C;
  --gold-soft: #F3D68C;
  --cream: #F6F2E9;
  --sand: #EDE6D8;
  --ink: #0A1A1E;
  --muted: #5D7278;

  /* warm ivory ground, peacock ink — editorial handloom look */
  --bg: #F6F1E7;
  --bg-deep: #EFE7D8;
  --surface: #FFFCF6;
  --line: rgba(8, 70, 85, 0.14);

  --peacock-grad: linear-gradient(135deg, var(--pg-700) 0%, var(--pb-700) 48%, var(--pb-600) 100%);
  --peacock-grad-soft: linear-gradient(135deg, rgba(14,124,88,.12), rgba(10,99,121,.12));
  --gold-grad: linear-gradient(120deg, var(--gold) 0%, var(--gold-soft) 50%, var(--gold) 100%);

  --shadow-sm: 0 2px 10px rgba(4, 34, 43, .07);
  --shadow-md: 0 10px 34px rgba(4, 34, 43, .12);
  --shadow-lg: 0 26px 70px rgba(4, 34, 43, .22);

  --radius: 16px;
  --radius-lg: 26px;
  --header-h: 132px;

  --display: 'Cormorant Garamond', 'Georgia', serif;
  --sans: 'Jost', 'Segoe UI', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.locked { overflow: hidden; }

h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; margin: 0; letter-spacing: .01em; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; display: block; }
input, select, textarea { font-family: inherit; font-size: 14px; }

.wrap { width: min(1360px, 92vw); margin-inline: auto; }
.hidden { display: none !important; }

/* ------------------------------------------------------------- header */
/* Sticky by design, matching the reference: brand band, search and the
   Filters/Sort strip stay pinned at top while the product grid scrolls
   beneath. Only the announcement bar above it scrolls away. */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease, background .3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); background: rgba(255,255,255,.94); }

.header-main {
  display: grid;
  grid-template-columns: auto auto minmax(220px, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
}

/* ---- hamburger ---- */
.menu-btn {
  width: 44px; height: 44px; border-radius: 13px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  transition: background .2s;
}
.menu-btn:hover { background: var(--peacock-grad-soft); }
.menu-btn span {
  display: block; height: 1.8px; border-radius: 2px; background: var(--pb-800);
  transition: transform .32s cubic-bezier(.2,.9,.3,1), opacity .22s, width .32s;
}
.menu-btn span:nth-child(1) { width: 22px; }
.menu-btn span:nth-child(2) { width: 16px; align-self: flex-start; margin-left: 11px; }
.menu-btn span:nth-child(3) { width: 22px; }
.menu-btn:hover span:nth-child(2) { width: 22px; margin-left: 11px; }
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 14px;
  background: var(--peacock-grad);
  display: grid; place-items: center;
  color: var(--gold-soft);
  font-family: var(--display); font-size: 21px; font-weight: 700;
  box-shadow: 0 6px 18px rgba(10, 99, 121, .35);
  position: relative; overflow: hidden;
}
.brand-mark::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.4), transparent 60%);
}
.brand-text strong {
  display: block; font-family: var(--display); font-size: 22px; font-weight: 700;
  line-height: 1.05; letter-spacing: .02em;
  background: var(--peacock-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.brand-text small { font-size: 9.5px; letter-spacing: .34em; text-transform: uppercase; color: var(--muted); }

/* ---- search ---- */
.search-shell { position: relative; }
.search-box {
  display: flex; align-items: center; gap: 8px;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 7px 8px 7px 18px;
  transition: border-color .25s, box-shadow .25s;
}
.search-box:focus-within { border-color: var(--pb-500); box-shadow: 0 0 0 4px rgba(14, 138, 166, .12); }
.search-box input { flex: 1; border: none; outline: none; background: none; font-size: 14.5px; min-width: 0; }
.search-box input::placeholder { color: #9AAAB0; }

.icon-btn {
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center; color: var(--pb-700);
  transition: background .2s, color .2s, transform .2s;
}
.icon-btn:hover { background: var(--peacock-grad-soft); transform: translateY(-1px); }
.icon-btn svg { width: 18px; height: 18px; }
.icon-btn.mic.listening { background: #E23D5A; color: #fff; animation: pulse 1.1s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(226,61,90,.6); } 50% { box-shadow: 0 0 0 10px rgba(226,61,90,0); } }

.search-go {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--peacock-grad); color: #fff; display: grid; place-items: center;
  transition: transform .2s, filter .2s;
}
.search-go:hover { transform: scale(1.06); filter: brightness(1.08); }

.suggest {
  position: absolute; top: calc(100% + 10px); left: 0; right: 0; z-index: 40;
  background: var(--surface); border: 1px solid var(--line); border-radius: 18px;
  box-shadow: var(--shadow-lg); overflow: hidden; max-height: 420px; overflow-y: auto;
}
.suggest-head { padding: 10px 18px 4px; font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.suggest-item { display: flex; align-items: center; gap: 12px; padding: 9px 18px; cursor: pointer; transition: background .16s; }
.suggest-item:hover { background: var(--peacock-grad-soft); }
.suggest-item img { width: 40px; height: 52px; object-fit: cover; border-radius: 7px; }
.suggest-item .s-name { font-size: 13.5px; font-weight: 500; }
.suggest-item .s-meta { font-size: 11.5px; color: var(--muted); }
.suggest-item .s-price { margin-left: auto; font-weight: 600; color: var(--pg-700); }

/* ---- header actions ---- */
.header-actions { display: flex; align-items: center; gap: 4px; }
.action {
  position: relative; display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 7px 12px; border-radius: 13px; transition: background .2s, transform .2s;
}
.action:hover { background: var(--peacock-grad-soft); transform: translateY(-2px); }
.action svg { width: 24px; height: 24px; stroke-width: 1.5; }
.action span { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.badge {
  position: absolute; top: 2px; right: 6px; min-width: 18px; height: 18px; padding: 0 5px;
  background: var(--gold); color: var(--pg-900); border-radius: 9px;
  font-size: 10.5px; font-weight: 600; display: grid; place-items: center;
  border: 2px solid var(--surface);
}

.country-pick {
  display: flex; align-items: center; gap: 7px; padding: 8px 13px;
  border: 1px solid var(--line); border-radius: 999px; font-size: 13px; font-weight: 500;
  transition: border-color .2s, background .2s;
}
.country-pick:hover { border-color: var(--pb-500); background: var(--peacock-grad-soft); }
.country-pick .flag { font-size: 15px; }

/* ---- nav ---- */
.nav-row { border-top: 1px solid var(--line); }
.nav {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 0; flex-wrap: wrap;
}
.nav a {
  position: relative; padding: 13px 17px; font-size: 12.5px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase; color: var(--pb-800);
  transition: color .2s;
}
.nav a::after {
  content: ''; position: absolute; left: 17px; right: 17px; bottom: 7px; height: 2px;
  background: var(--gold-grad); transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.nav a:hover, .nav a.active { color: var(--pg-700); }
.nav a.accent { color: #C0392B; }

.menu-toggle { display: none; }

/* --------------------------------------------------------------- hero */
.hero {
  position: relative; overflow: hidden;
  background: var(--peacock-grad);
  color: var(--cream);
  padding: 84px 0 130px;
  /* the ivory page sweeps up into the hero, Vastranand-style */
  border-bottom-left-radius: 52% 90px;
  border-bottom-right-radius: 52% 90px;
  margin-bottom: -1px;
}
.hero-curve {
  position: absolute; left: 0; right: 0; bottom: -2px; height: 92px; z-index: 3;
  pointer-events: none;
}
.hero-curve svg { width: 100%; height: 100%; display: block; }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 10%, rgba(99, 201, 220, .28), transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(20, 160, 117, .32), transparent 55%);
}
.hero::after {
  content: ''; position: absolute; inset: 0; opacity: .18;
  background-image:
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(227,178,60,.5) 14px 15px),
    repeating-linear-gradient(-45deg, transparent 0 14px, rgba(255,255,255,.28) 14px 15px);
}
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-soft);
  margin-bottom: 20px;
}
.eyebrow::before, .eyebrow::after { content: ''; height: 1px; width: 34px; background: var(--gold); opacity: .7; }
.eyebrow::after { display: none; }
.hero h1 { font-size: clamp(42px, 5.6vw, 76px); line-height: 1.02; font-weight: 300; }
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.hero p { max-width: 46ch; margin: 22px 0 34px; font-size: 16px; color: rgba(246,242,233,.86); font-weight: 300; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 30px; border-radius: 999px; font-size: 12.5px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; transition: transform .2s, box-shadow .2s, background .25s, color .25s;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn-gold { background: var(--gold-grad); color: var(--pg-900); box-shadow: 0 10px 28px rgba(227,178,60,.34); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(227,178,60,.44); }
.btn-ghost { border: 1.5px solid rgba(246,242,233,.5); color: var(--cream); }
.btn-ghost:hover { background: rgba(246,242,233,.14); border-color: var(--cream); }
.btn-peacock { background: var(--peacock-grad); color: #fff; box-shadow: 0 10px 26px rgba(10,99,121,.3); }
.btn-peacock:hover { transform: translateY(-2px); filter: brightness(1.07); }
.btn-outline { border: 1.5px solid var(--pb-600); color: var(--pb-700); }
.btn-outline:hover { background: var(--pb-700); color: #fff; }
.btn-block { width: 100%; }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }

.hero-stats { display: flex; gap: 34px; margin-top: 46px; }
.hero-stats div strong { display: block; font-family: var(--display); font-size: 30px; color: var(--gold-soft); }
.hero-stats div span { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; opacity: .8; }

/* hero collage */
.hero-art { position: relative; height: 460px; }
.hero-card {
  position: absolute; border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.28);
  animation: float 7s ease-in-out infinite;
}
.hero-card img { height: 100%; width: 100%; object-fit: cover; }
.hero-card:nth-child(1) { width: 46%; height: 84%; left: 4%; top: 8%; }
.hero-card:nth-child(2) { width: 40%; height: 62%; right: 8%; top: 0; animation-delay: -2.3s; }
.hero-card:nth-child(3) { width: 36%; height: 46%; right: 2%; bottom: 4%; animation-delay: -4.6s; }
@keyframes float { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-16px) rotate(1deg); } }

/* -------------------------------------------------------- marquee rail */
.rail { padding: 40px 0 6px; overflow: hidden; }
.rail-track { display: flex; gap: 20px; width: max-content; animation: slide 46s linear infinite; }
.rail:hover .rail-track { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }
.rail-card {
  width: 218px; flex-shrink: 0; border-radius: var(--radius); overflow: hidden;
  background: var(--surface); box-shadow: var(--shadow-sm); cursor: pointer;
  transition: transform .3s, box-shadow .3s;
}
.rail-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.rail-card .r-img { height: 258px; overflow: hidden; position: relative; }
.rail-card img { height: 100%; width: 100%; object-fit: cover; transition: transform .6s; }
.rail-card:hover img { transform: scale(1.07); }
.rail-card .r-body { padding: 12px 14px 15px; }
.rail-card .r-name { font-size: 13.5px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rail-card .r-price { font-size: 14px; color: var(--pg-700); font-weight: 600; margin-top: 3px; }

/* =============== Vastranand-style editorial components ============== */

/* curved band that separates one section from the next */
.arc-divider { position: relative; height: 90px; overflow: hidden; }
.arc-divider svg { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ---- circular category medallions ---- */
.cat-circles {
  display: flex; gap: 26px; overflow-x: auto; padding: 6px 4px 20px;
  scroll-snap-type: x mandatory; scrollbar-width: none;
}
.cat-circles::-webkit-scrollbar { display: none; }
.cat-circle {
  flex: 0 0 auto; width: 132px; text-align: center; cursor: pointer;
  scroll-snap-align: start;
}
.cat-circle .ring {
  width: 132px; height: 132px; border-radius: 50%; overflow: hidden;
  position: relative; margin-bottom: 12px;
  border: 1px solid rgba(10,99,121,.28); padding: 6px;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .3s;
}
.cat-circle .ring::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 1px dashed rgba(227,178,60,.55);
}
.cat-circle .ring span {
  display: block; width: 100%; height: 100%; border-radius: 50%;
  background: var(--peacock-grad); position: relative; overflow: hidden;
}
.cat-circle .ring span::before {
  content: ''; position: absolute; inset: 0; opacity: .4;
  background-image: repeating-linear-gradient(58deg, transparent 0 8px, rgba(227,178,60,.6) 8px 9px);
}
.cat-circle:hover .ring { transform: translateY(-6px) scale(1.03); border-color: var(--gold); }
.cat-circle b { display: block; font-family: var(--display); font-size: 16px; font-weight: 600; line-height: 1.25; }
.cat-circle small { font-size: 11px; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; }

/* ---- horizontal product carousel rows ---- */
.row-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 18px;
  margin-bottom: 22px; flex-wrap: wrap;
}
.row-head h2 { font-size: clamp(27px, 3.2vw, 40px); font-weight: 400; }
.row-head h2 em { font-style: italic; color: var(--pg-600); }
.row-head .kicker { font-size: 10.5px; letter-spacing: .3em; text-transform: uppercase; color: var(--pb-500); margin-bottom: 6px; }
.row-nav { display: flex; gap: 8px; }
.row-nav button {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--pb-700); background: var(--surface);
  transition: background .25s, color .25s, transform .2s;
}
.row-nav button:hover { background: var(--peacock-grad); color: #fff; transform: translateY(-2px); }

.carousel {
  display: flex; gap: 22px; overflow-x: auto; padding: 4px 4px 24px;
  scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none;
}
.carousel::-webkit-scrollbar { display: none; }
.carousel > .card { flex: 0 0 clamp(210px, 24vw, 268px); scroll-snap-align: start; }

/* ---- circular "best seller" stamp on cards ---- */
.stamp {
  position: absolute; right: 10px; top: 10px; width: 52px; height: 52px; z-index: 3;
  border-radius: 50%; display: grid; place-items: center; text-align: center;
  background: rgba(255,252,246,.96); color: var(--pg-800);
  font-size: 7.5px; font-weight: 700; letter-spacing: .1em; line-height: 1.2;
  text-transform: uppercase; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(227,178,60,.7);
}
.stamp::after {
  content: ''; position: absolute; inset: 4px; border-radius: 50%;
  border: 1px dotted rgba(10,92,70,.45);
}

/* ---- craft stories editorial band ---- */
.stories { background: var(--bg-deep); padding: 66px 0; }
.stories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }
.story {
  background: var(--surface); border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .35s, box-shadow .35s;
}
.story:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.story-art {
  height: 210px; position: relative; overflow: hidden;
  border-radius: 0 0 46% 46% / 0 0 26% 26%;
  background: var(--peacock-grad);
}
.story-art::after {
  content: ''; position: absolute; inset: 0; opacity: .35;
  background-image:
    repeating-linear-gradient(45deg, transparent 0 11px, rgba(227,178,60,.55) 11px 12px),
    repeating-linear-gradient(-45deg, transparent 0 11px, rgba(255,255,255,.3) 11px 12px);
}
.story-art b {
  position: absolute; left: 20px; bottom: 18px; z-index: 2;
  font-family: var(--display); font-size: 26px; color: var(--cream); font-weight: 600;
}
.story-body { padding: 20px 22px 26px; }
.story-body p { margin: 0 0 14px; font-size: 13.5px; color: var(--muted); line-height: 1.7; }
.story-body a {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase; font-weight: 600;
  color: var(--pg-700); border-bottom: 1px solid var(--gold); padding-bottom: 3px;
}

/* ---- editorial split banner ---- */
.split {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  background: var(--surface); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.split-art { height: 100%; min-height: 340px; background: var(--peacock-grad); position: relative; }
.split-art::after {
  content: ''; position: absolute; inset: 0; opacity: .32;
  background-image: repeating-linear-gradient(70deg, transparent 0 13px, rgba(227,178,60,.6) 13px 14px);
}
.split-body { padding: 44px 46px; }
.split-body h3 { font-size: clamp(26px, 3vw, 38px); font-weight: 400; margin-bottom: 12px; }
.split-body h3 em { font-style: italic; color: var(--pg-600); }
.split-body p { color: var(--muted); margin: 0 0 22px; font-size: 14.5px; }

/* ---- floating care button ---- */
.float-care {
  position: fixed; right: 20px; bottom: 22px; z-index: 80;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 20px 12px 14px; border-radius: 999px;
  background: var(--peacock-grad); color: #fff;
  box-shadow: 0 12px 32px rgba(10,99,121,.42);
  font-size: 12.5px; font-weight: 600; letter-spacing: .06em;
  transition: transform .25s, box-shadow .25s;
}
.float-care:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 18px 42px rgba(10,99,121,.5); }
.float-care svg { width: 20px; height: 20px; }

/* --------------------------------------------------------- section head */
.section { padding: 62px 0; }
.section-head { text-align: center; margin-bottom: 40px; }
#categoriesSection { padding: 28px 0; }
#categoriesSection .section-head { margin-bottom: 18px; }
.section-head .kicker {
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--pb-500); font-weight: 500;
}
.section-head h2 { font-size: clamp(30px, 3.6vw, 46px); font-weight: 400; margin: 10px 0 8px; }
.section-head h2 em { font-style: italic; color: var(--pg-600); }
.section-head p { color: var(--muted); max-width: 56ch; margin-inline: auto; }
.divider-orn { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 14px; color: var(--gold); }
.divider-orn::before, .divider-orn::after { content: ''; height: 1px; width: 60px; background: linear-gradient(90deg, transparent, var(--gold)); }
.divider-orn::after { background: linear-gradient(270deg, transparent, var(--gold)); }

/* ------------------------------------------------------------ category tiles */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(184px, 1fr)); gap: 18px; }
.cat-tile {
  position: relative; border-radius: var(--radius); overflow: hidden; height: 190px;
  display: grid; place-items: end center; padding: 18px; cursor: pointer;
  background: var(--peacock-grad); color: #fff; isolation: isolate;
  transition: transform .3s, box-shadow .3s;
}
.cat-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.cat-tile::before {
  content: ''; position: absolute; inset: 0; z-index: -1; opacity: .35;
  background-image: repeating-linear-gradient(60deg, transparent 0 10px, rgba(227,178,60,.45) 10px 11px);
}
.cat-tile b { font-family: var(--display); font-size: 20px; font-weight: 600; text-align: center; }
.cat-tile small { display: block; font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; opacity: .8; text-align: center; }

/* ------------------------------------------------------------ toolbar */
.toolbar {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  padding: 16px 20px; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm); margin-bottom: 26px;
}
.chip {
  padding: 8px 16px; border-radius: 999px; border: 1px solid var(--line);
  font-size: 12.5px; font-weight: 500; transition: all .2s; white-space: nowrap;
}
.chip:hover { border-color: var(--pb-500); color: var(--pb-700); }
.chip.on { background: var(--peacock-grad); color: #fff; border-color: transparent; box-shadow: 0 6px 16px rgba(10,99,121,.26); }
.toolbar select {
  margin-left: auto; padding: 9px 14px; border-radius: 999px; border: 1px solid var(--line);
  background: var(--surface); outline: none; color: var(--ink);
}
.result-note { font-size: 13px; color: var(--muted); }

/* ------------------------------------------------------------- product grid */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 26px; }

.card {
  background: var(--surface); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); position: relative;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); }
.card-img { position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: var(--sand); cursor: pointer; }
.card-img img { height: 100%; width: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.card:hover .card-img img { transform: scale(1.08); }

/* small heart, tucked in the top-left corner out of the badge's way */
.wish-btn {
  position: absolute; top: 10px; left: 10px; width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px); display: grid; place-items: center;
  color: var(--pb-800); box-shadow: var(--shadow-sm); transition: transform .2s, color .2s; z-index: 3;
}
.wish-btn:hover { transform: scale(1.12); color: #E23D5A; }
.wish-btn.on { color: #E23D5A; }
.wish-btn.on svg { fill: #E23D5A; }

.sold-veil {
  position: absolute; inset: 0; background: rgba(4,34,43,.55); backdrop-filter: blur(2px);
  display: grid; place-items: center; color: #fff;
  font-size: 11.5px; letter-spacing: .22em; text-transform: uppercase; font-weight: 600;
}

.card-body { padding: 12px 14px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card-name {
  font-family: var(--display); font-size: 16.5px; font-weight: 600; line-height: 1.3;
  color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.card-price { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.card-price .now { font-size: 16px; font-weight: 700; color: var(--ink); }
.card-price .was { font-size: 12.5px; color: var(--muted); text-decoration: line-through; }
.card-price .off {
  font-size: 10.5px; font-weight: 500; color: var(--muted);
  background: var(--bg-deep); padding: 2px 7px; border-radius: 4px;
}
.stars { color: var(--gold); letter-spacing: 1px; }
/* still used by the product-detail modal, even though the grid card no longer emits it */
.card-meta { font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--pb-500); }
.stock-dot { display: inline-flex; align-items: center; gap: 6px; }
.stock-dot i { width: 7px; height: 7px; border-radius: 50%; background: var(--pg-500); }
.stock-dot.low i { background: #E07A14; }
.stock-dot.out i { background: #C0392B; }

/* ----------------------------------------------------------------- promo strip */
.promo {
  background: var(--pg-900); color: var(--cream); padding: 54px 0;
  position: relative; overflow: hidden;
}
.promo::before {
  content: ''; position: absolute; inset: 0; opacity: .3;
  background: radial-gradient(circle at 20% 50%, rgba(14,138,166,.5), transparent 50%),
              radial-gradient(circle at 85% 30%, rgba(20,160,117,.45), transparent 50%);
}
.promo-grid { position: relative; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; text-align: center; }
.promo-item i { font-style: normal; font-size: 28px; display: block; margin-bottom: 10px; }
.promo-item b { display: block; font-family: var(--display); font-size: 20px; margin-bottom: 4px; color: var(--gold-soft); }
.promo-item span { font-size: 13px; opacity: .82; }

/* --------------------------------------------------------------- drawers */
.scrim {
  position: fixed; inset: 0; background: rgba(4,34,43,.5); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none; transition: opacity .3s; z-index: 90;
}
.scrim.open { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(440px, 100vw);
  background: var(--bg); z-index: 100; transform: translateX(100%);
  transition: transform .42s cubic-bezier(.2,.85,.25,1);
  display: flex; flex-direction: column; box-shadow: var(--shadow-lg);
}
.drawer.open { transform: none; }
.drawer-head {
  padding: 20px 22px; border-bottom: 1px solid var(--line); background: var(--surface);
  display: flex; align-items: center; justify-content: space-between;
}
.drawer-head h3 { font-size: 22px; }
.drawer-head small { display: block; font-size: 11.5px; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; }
.drawer-body { flex: 1; overflow-y: auto; padding: 18px 22px; }
.drawer-foot { padding: 18px 22px; border-top: 1px solid var(--line); background: var(--surface); }

.close-x { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; transition: background .2s; }
.close-x:hover { background: var(--sand); }

/* ----------------------------------------------------------- bottom sheet */
.sheet {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 101;
  max-height: 82vh; width: 100%; margin-inline: auto;
  background: var(--bg); border-radius: 18px 18px 0 0; box-shadow: var(--shadow-lg);
  transform: translateY(100%); transition: transform .38s cubic-bezier(.2,.85,.25,1);
  display: flex; flex-direction: column;
}
.sheet.open { transform: none; }
.sheet-narrow { max-height: 60vh; }
@media (min-width: 640px) { .sheet { max-width: 460px; left: auto; right: 24px; bottom: 24px; border-radius: 16px; } }
.sheet-head {
  padding: 16px 20px; border-bottom: 1px solid var(--line); background: var(--surface);
  display: flex; align-items: center; justify-content: space-between; border-radius: inherit inherit 0 0;
  flex: none;
}
.sheet-head h3 { font-size: 21px; }
.sheet-body { flex: 1; overflow-y: auto; padding: 6px 20px 16px; }
.sheet-foot {
  flex: none; padding: 14px 20px; border-top: 1px solid var(--line); background: var(--surface);
  display: flex; gap: 10px; align-items: center;
}
.sheet-foot .chip { flex: none; padding: 12px 16px; }
.sheet-foot .btn { flex: 1; }

.sort-list { display: flex; flex-direction: column; }
.sort-list button {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 15px 4px; font-size: 15.5px; text-align: left;
  border-bottom: 1px solid var(--line); color: var(--ink); transition: color .2s;
}
.sort-list button:last-child { border-bottom: none; }
.sort-list button::after { content: ''; width: 18px; height: 18px; }
.sort-list button.on { color: var(--pg-700); font-weight: 600; }
.sort-list button.on::after {
  content: '✓'; display: grid; place-items: center; color: var(--pg-700); font-weight: 700;
}

.line-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.line-item img { width: 78px; height: 100px; object-fit: cover; border-radius: 10px; }
.li-body { flex: 1; min-width: 0; }
.li-name { font-family: var(--display); font-size: 17px; font-weight: 600; }
.li-meta { font-size: 11.5px; color: var(--muted); }
.li-price { font-weight: 600; color: var(--pg-700); margin-top: 4px; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; margin-top: 8px; }
.qty button { width: 30px; height: 30px; display: grid; place-items: center; transition: background .2s; }
.qty button:hover { background: var(--sand); }
.qty span { min-width: 30px; text-align: center; font-size: 13px; font-weight: 600; }
.li-remove { font-size: 11.5px; color: #C0392B; letter-spacing: .06em; margin-top: 6px; }

.summary-row { display: flex; justify-content: space-between; padding: 7px 0; font-size: 14px; }
.summary-row.total { border-top: 1px dashed var(--line); margin-top: 8px; padding-top: 12px; font-size: 18px; font-weight: 600; font-family: var(--display); }
.summary-row .save { color: var(--pg-600); }

.empty-state { text-align: center; padding: 60px 20px; color: var(--muted); }
.empty-state .em { font-size: 44px; display: block; margin-bottom: 14px; opacity: .5; }

/* ================= peacock-feather menu drawer ==================== */
.menu-drawer {
  position: fixed; top: 0; left: 0; bottom: 0; z-index: 100;
  width: min(470px, 94vw);
  background: linear-gradient(160deg, #FBF8F1 0%, var(--cream) 55%, #EFE9DC 100%);
  transform: translateX(-104%);
  transition: transform .52s cubic-bezier(.22,.9,.24,1);
  display: flex; flex-direction: column;
  box-shadow: 26px 0 70px rgba(4, 34, 43, .22);
}
/* the curved right edge is applied by JS in px (path() rejects percentages);
   without JS the panel is simply a rectangle rather than broken */
.menu-drawer.open { transform: none; }

.feather-edge {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; overflow: visible;
}

.menu-close {
  position: absolute; top: 20px; left: 22px; z-index: 3;
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center; color: var(--pg-800);
  background: rgba(255,255,255,.7); transition: background .2s, transform .2s;
}
.menu-close:hover { background: #fff; transform: rotate(90deg); }

.menu-scroll {
  position: relative; z-index: 2; flex: 1; overflow-y: auto;
  padding: 84px 30% 32px 30px;   /* right padding keeps text clear of the curve */
  scrollbar-width: thin;
}
.menu-scroll::-webkit-scrollbar { width: 4px; }
.menu-scroll::-webkit-scrollbar-thumb { background: rgba(10,99,121,.22); border-radius: 4px; }

.menu-eyebrow {
  font-size: 10px; letter-spacing: .32em; text-transform: uppercase;
  color: var(--pb-500); margin-bottom: 20px;
}

.menu-list { display: flex; flex-direction: column; }
.menu-list > a, .menu-acc {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 4px; font-family: var(--display); font-size: 23px; font-weight: 500;
  color: var(--pg-900); border-bottom: 1px solid rgba(10,92,70,.14);
  text-align: left; width: 100%; position: relative;
  transition: color .25s, padding-left .28s;
}
.menu-list > a::before, .menu-acc::before {
  content: ''; position: absolute; left: -12px; top: 50%; width: 0; height: 1.5px;
  background: var(--gold); transform: translateY(-50%); transition: width .28s;
}
.menu-list > a:hover, .menu-acc:hover { color: var(--pb-600); padding-left: 16px; }
.menu-list > a:hover::before, .menu-acc:hover::before { width: 22px; }

.menu-acc i {
  font-style: normal; font-family: var(--sans); font-size: 20px; font-weight: 300;
  color: var(--pb-500); transition: transform .3s;
}
.menu-acc.on i { transform: rotate(135deg); }
.menu-acc.on { color: var(--pb-600); }

.menu-sub {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .38s cubic-bezier(.22,.9,.24,1);
}
.menu-sub > * { overflow: hidden; }
.menu-sub.open { grid-template-rows: 1fr; }
.menu-sub a {
  display: block; padding: 10px 4px 10px 20px; font-size: 14px; color: var(--muted);
  border-bottom: 1px dotted rgba(10,92,70,.12); transition: color .2s, padding-left .24s;
}
.menu-sub a:first-child { padding-top: 14px; }
.menu-sub a:last-child { border-bottom: none; padding-bottom: 14px; }
.menu-sub a:hover { color: var(--pg-600); padding-left: 28px; }

.menu-actions { display: flex; gap: 10px; margin: 26px 0 22px; }
.menu-actions .btn { flex: 1; padding: 14px 10px; font-size: 11px; }

.menu-care { padding-top: 18px; border-top: 1px solid rgba(10,92,70,.14); }
.menu-care small { display: block; font-size: 9.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); }
.menu-care a { display: block; font-family: var(--display); font-size: 22px; color: var(--pg-700); margin: 3px 0; }
.menu-care span { font-size: 11.5px; color: var(--muted); }

/* feather strokes, animated in when the drawer opens */
.feather-edge .shaft, .feather-edge .barb { opacity: 0; }
.menu-drawer.open .feather-edge .shaft { animation: drawShaft 1.1s ease forwards; }
.menu-drawer.open .feather-edge .barb { animation: fadeBarb .5s ease forwards; }
.menu-drawer.open .feather-edge .barb.inner { animation: fadeBarbInner .5s ease forwards; }
@keyframes drawShaft { to { opacity: 1; stroke-dashoffset: 0; } }
@keyframes fadeBarb { to { opacity: .8; } }
@keyframes fadeBarbInner { to { opacity: .22; } }

/* --------------------------------------------------------------- modal */
.modal-wrap {
  position: fixed; inset: 0; z-index: 110; display: grid; place-items: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.modal-wrap.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--bg); border-radius: var(--radius-lg); width: min(980px, 100%);
  max-height: 92vh; overflow: hidden; box-shadow: var(--shadow-lg);
  transform: translateY(24px) scale(.97); transition: transform .35s cubic-bezier(.2,.85,.25,1);
  display: flex; flex-direction: column;
}
.modal-wrap.open .modal { transform: none; }
.modal.narrow { width: min(480px, 100%); }
.modal.wide { width: min(1100px, 100%); }
.modal-scroll { overflow-y: auto; }

.pd { display: grid; grid-template-columns: 1fr 1fr; }
.pd-gallery { background: var(--sand); position: relative; }
.pd-gallery .main { aspect-ratio: 3/4; }
.pd-gallery .main img { height: 100%; width: 100%; object-fit: cover; }
.pd-thumbs { display: flex; gap: 8px; padding: 10px; position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,.35)); }
.pd-thumbs img { width: 52px; height: 66px; object-fit: cover; border-radius: 6px; border: 2px solid transparent; cursor: pointer; }
.pd-thumbs img.on { border-color: var(--gold); }
.pd-info { padding: 30px; overflow-y: auto; }
.pd-info h2 { font-size: 31px; line-height: 1.15; margin-bottom: 6px; }
.spec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 20px; margin: 20px 0; }
.spec-grid div { border-bottom: 1px dotted var(--line); padding-bottom: 7px; }
.spec-grid dt { font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.spec-grid dd { margin: 2px 0 0; font-size: 14px; font-weight: 500; }

/* ----------------------------------------------------------------- forms */
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 15px; border: 1.5px solid var(--line); border-radius: 11px;
  background: var(--surface); outline: none; transition: border-color .2s, box-shadow .2s; color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--pb-500); box-shadow: 0 0 0 4px rgba(14,138,166,.1);
}
.field textarea { resize: vertical; min-height: 90px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field-row.three { grid-template-columns: repeat(3, 1fr); }
.hint { font-size: 11.5px; color: var(--muted); margin-top: 5px; }

.tab-row { display: flex; gap: 6px; background: var(--sand); padding: 5px; border-radius: 999px; margin-bottom: 22px; }
.tab-row button { flex: 1; padding: 10px; border-radius: 999px; font-size: 12.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; transition: background .25s, color .25s; }
.tab-row button.on { background: var(--surface); color: var(--pg-700); box-shadow: var(--shadow-sm); }

.alert { padding: 11px 15px; border-radius: 11px; font-size: 13px; margin-bottom: 14px; }
.alert.err { background: #FDECEA; color: #A5281B; border: 1px solid #F5C6C1; }
.alert.ok { background: #E7F6EF; color: #0A5C46; border: 1px solid #B9E4D2; }
.alert.info { background: #E8F4F8; color: #084655; border: 1px solid #BDE0EC; }

/* ---------------------------------------------------------- stepper / checkout */
.steps { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; }
.step { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--muted); }
.step i { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: var(--sand); font-style: normal; font-size: 12px; font-weight: 600; }
.step.on i { background: var(--peacock-grad); color: #fff; }
.step.on { color: var(--pg-700); font-weight: 600; }
.step-line { flex: 1; height: 1px; background: var(--line); }

.addr-card {
  border: 1.5px solid var(--line); border-radius: 13px; padding: 14px; margin-bottom: 10px; cursor: pointer;
  transition: border-color .2s, background .2s;
}
.addr-card:hover { border-color: var(--pb-400); }
.addr-card.on { border-color: var(--pg-600); background: rgba(14,124,88,.05); }
.addr-card b { font-size: 14.5px; }
.addr-card p { margin: 4px 0 0; font-size: 12.5px; color: var(--muted); line-height: 1.5; }
.addr-label { display: inline-block; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; background: var(--peacock-grad); color: #fff; padding: 2px 8px; border-radius: 999px; margin-bottom: 6px; }

/* confirmation */
.confirm { text-align: center; padding: 20px 6px 6px; }
.confirm .tick {
  width: 82px; height: 82px; margin: 0 auto 20px; border-radius: 50%;
  background: var(--peacock-grad); display: grid; place-items: center; color: #fff;
  animation: pop .5s cubic-bezier(.2,1.4,.4,1);
}
.confirm .tick svg { width: 40px; height: 40px; }
@keyframes pop { from { transform: scale(.3); opacity: 0; } }
.confirm h2 { font-size: 32px; margin-bottom: 8px; }
.confirm .order-no { font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.confirm .eta { margin: 18px auto; padding: 15px; border-radius: 13px; background: var(--peacock-grad-soft); max-width: 420px; }
.confirm .eta b { color: var(--pg-700); font-size: 16px; }

/* --------------------------------------------------------------- tracker */
.tracker { display: flex; margin: 18px 0 6px; }
.trk { flex: 1; text-align: center; position: relative; font-size: 11px; color: var(--muted); }
.trk::before {
  content: ''; position: absolute; top: 9px; left: -50%; width: 100%; height: 2px; background: var(--line);
}
.trk:first-child::before { display: none; }
.trk i {
  position: relative; z-index: 2; width: 20px; height: 20px; border-radius: 50%;
  background: var(--sand); display: block; margin: 0 auto 8px; border: 3px solid var(--bg);
}
.trk.done i { background: var(--pg-500); }
.trk.done::before { background: var(--pg-500); }
.trk.current i { background: var(--gold); box-shadow: 0 0 0 4px rgba(227,178,60,.28); }
.trk.done { color: var(--pg-700); font-weight: 500; }

.order-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px; margin-bottom: 16px; box-shadow: var(--shadow-sm);
}
.order-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.status-pill { padding: 5px 13px; border-radius: 999px; font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.status-pill.active { background: rgba(14,138,166,.12); color: var(--pb-700); }
.status-pill.done { background: rgba(14,124,88,.12); color: var(--pg-700); }
.status-pill.cancel { background: #FDECEA; color: #A5281B; }
.order-mini { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 4px; }
.order-mini img { width: 54px; height: 70px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }

.policy-note {
  margin-top: 12px; padding: 11px 14px; border-radius: 11px;
  background: var(--peacock-grad-soft); border: 1px dashed rgba(10, 99, 121, .28);
}
.policy-note b { display: block; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--pg-700); margin-bottom: 3px; }
.policy-note span { font-size: 12.5px; color: var(--muted); line-height: 1.6; }
.policy-note a { color: var(--pb-600); text-decoration: underline; }

/* ------------------------------------------------------------- help centre */
.help-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.help-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.help-card h4 { font-size: 19px; margin-bottom: 10px; color: var(--pg-700); }
.help-card ul { margin: 0; padding-left: 18px; font-size: 13.5px; color: var(--muted); line-height: 1.8; }
.care-strip {
  background: var(--peacock-grad); color: #fff; border-radius: var(--radius-lg);
  padding: 26px 30px; display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 22px; margin-bottom: 22px;
}
.care-strip a { display: block; }
.care-strip small { font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; opacity: .78; }
.care-strip b { font-family: var(--display); font-size: 22px; color: var(--gold-soft); }

/* --------------------------------------------------------------- footer */
.site-footer { background: var(--pg-900); color: rgba(246,242,233,.72); padding: 62px 0 26px; margin-top: 40px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; }
.foot-grid h5 { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-soft); margin: 0 0 16px; font-weight: 600; font-family: var(--sans); }
.foot-grid ul { list-style: none; margin: 0; padding: 0; }
.foot-grid li { margin-bottom: 9px; font-size: 13.5px; }
.foot-grid li a:hover { color: var(--pb-300); }
.foot-brand p { font-size: 13.5px; max-width: 36ch; margin: 14px 0 20px; }
.foot-care { border: 1px solid rgba(246,242,233,.16); border-radius: 13px; padding: 14px 16px; }
.foot-care b { display: block; color: var(--gold-soft); font-family: var(--display); font-size: 20px; }
.foot-bottom {
  margin-top: 44px; padding-top: 20px; border-top: 1px solid rgba(246,242,233,.12);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12.5px;
}

/* ---------------------------------------------------------------- toast */
.toasts { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 200; display: flex; flex-direction: column; gap: 10px; align-items: center; }
.toast {
  background: var(--pg-900); color: var(--cream); padding: 13px 22px; border-radius: 999px;
  font-size: 13.5px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 10px;
  animation: rise .35s cubic-bezier(.2,1.3,.4,1);
  border: 1px solid rgba(227,178,60,.3);
}
.toast.err { background: #8E2A20; }
@keyframes rise { from { transform: translateY(24px); opacity: 0; } }

/* -------------------------------------------------------- camera capture */
.cam-stage { background: #04222B; border-radius: var(--radius); overflow: hidden; position: relative; aspect-ratio: 4/3; }
.cam-stage video { width: 100%; height: 100%; object-fit: cover; }
.cam-swatch { width: 46px; height: 46px; border-radius: 12px; border: 2px solid var(--surface); box-shadow: var(--shadow-sm); }
.drop-zone {
  border: 2px dashed var(--line); border-radius: var(--radius); padding: 34px 20px; text-align: center;
  cursor: pointer; transition: border-color .2s, background .2s;
}
.drop-zone:hover, .drop-zone.hot { border-color: var(--pb-500); background: var(--peacock-grad-soft); }

/* skeletons */
.skeleton { background: linear-gradient(90deg, var(--sand) 25%, #F7F4EC 50%, var(--sand) 75%); background-size: 200% 100%; animation: shimmer 1.4s infinite; border-radius: var(--radius); }
@keyframes shimmer { to { background-position: -200% 0; } }
.sk-card { aspect-ratio: 3/4.6; }

/* ------------------------------------------------------------ responsive */
@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { height: 340px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .header-main { grid-template-columns: auto 1fr auto; row-gap: 12px; gap: 10px; }
  .search-shell { grid-column: 1 / -1; order: 3; }
  .menu-scroll { padding: 76px 8px 26px 24px; }
  .menu-list > a, .menu-acc { font-size: 20px; padding: 13px 4px; }
  .header-actions .action span { display: none; }
  .nav { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
  .nav::-webkit-scrollbar { display: none; }
  .pd { grid-template-columns: 1fr; }
  .field-row, .field-row.three { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 64px; }
  .hero-stats { gap: 22px; flex-wrap: wrap; }
  .grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .card-name { font-size: 13.5px; }
  .card-price .now { font-size: 14px; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .country-pick span.cname { display: none; }
  .split { grid-template-columns: 1fr; }
  .split-art { min-height: 220px; }
  .split-body { padding: 30px 24px 34px; }
  .cat-circle, .cat-circle .ring { width: 104px; }
  .cat-circle .ring { height: 104px; }
  .hero { border-bottom-left-radius: 60% 50px; border-bottom-right-radius: 60% 50px; padding-bottom: 92px; }
  .hero-curve { height: 56px; }
  .float-care { right: 14px; bottom: 14px; padding: 11px 16px 11px 12px; font-size: 11.5px; }
  .row-head h2 { font-size: 26px; }
  .stamp { width: 42px; height: 42px; font-size: 6.5px; }
  .rating-pill { font-size: 10px; padding: 4px 8px; left: 8px; bottom: 8px; }
}
