/* =========================================================================
   ALCHEMY on ICE — site styles
   Brand: playfully sophisticated, whimsical alchemy.
   "Farmers' market meets fantasy potion shop." Elegance + enchantment.
   ========================================================================= */

:root {
  /* Core palette */
  --ink:        #241433; /* deep aubergine / midnight plum (primary dark) */
  --plum:       #43275c; /* secondary plum */
  --berry:      #b83d6e; /* slush magenta accent */
  --gold:       #c9a24c; /* amber "potion" gold */
  --gold-soft:  #e3c987;
  --frost:      #e8f3f8; /* pale ice */
  --frost-deep: #cfe6f0;
  --cream:      #faf7fc; /* off-white lavender tint */
  --paper:      #ffffff;
  --text:       #2b2333; /* body text on light */
  --muted:      #6b6275;

  --maxw: 1140px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 50px -22px rgba(36, 20, 51, 0.45);
  --shadow-soft: 0 10px 30px -16px rgba(36, 20, 51, 0.35);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* Screen-reader-only: keeps correct heading order without visual noise. */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0.01em;
  margin: 0 0 0.4em;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 14px;
}

.section { padding: 88px 0; }
.section--tight { padding: 60px 0; }

.center { text-align: center; }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 640px; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  padding: 15px 30px;
  border-radius: 999px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: var(--ink);
  box-shadow: 0 12px 28px -12px rgba(201, 162, 76, 0.8);
}
.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}
/* Ghost's twin for light backgrounds — visible outline + ink text. */
.btn--outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn--outline:hover { background: var(--ink); color: #fff; }
.btn--ink {
  background: var(--ink);
  color: #fff;
}
.btn--ink:hover { background: var(--plum); }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--ink);
  color: var(--frost);
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 16px;
  font-weight: 500;
}
.announce strong { color: var(--gold-soft); font-weight: 700; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 252, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(67, 39, 92, 0.1);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.brand {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 9px;
}
.brand .flake { color: var(--berry); font-size: 1.1rem; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--berry); }
.nav-cta { font-size: 0.88rem !important; }
.nav-right { display: flex; align-items: center; gap: 30px; }
.nav-actions { display: flex; align-items: center; gap: 14px; }
/* Hamburger — hidden on desktop, shown in the mobile media query below. */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 9px;
  background: transparent;
  border: 1px solid rgba(67, 39, 92, 0.18);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  background:
    radial-gradient(1200px 600px at 15% -10%, rgba(184, 61, 110, 0.55), transparent 60%),
    radial-gradient(900px 500px at 95% 10%, rgba(64, 132, 168, 0.5), transparent 55%),
    linear-gradient(160deg, #2c1840 0%, #241433 55%, #170c24 100%);
  overflow: hidden;
}
.hero::after {
  /* subtle frosted shimmer */
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.5), transparent),
                    radial-gradient(2px 2px at 70% 60%, rgba(255,255,255,0.4), transparent),
                    radial-gradient(1.5px 1.5px at 40% 80%, rgba(255,255,255,0.4), transparent),
                    radial-gradient(1.5px 1.5px at 85% 25%, rgba(255,255,255,0.35), transparent);
  pointer-events: none;
  opacity: 0.7;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
  padding: 96px 0 100px;
}
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  margin-bottom: 18px;
}
.hero h1 .accent { color: var(--gold-soft); font-style: italic; }
.hero p.sub {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.86);
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  display: flex;
  gap: 26px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.hero-trust span {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-trust .dot { color: var(--gold); }

/* Hero visual card (placeholder for product photo) */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 26px;
  background:
    linear-gradient(160deg, rgba(232,243,248,0.16), rgba(184,61,110,0.18)),
    linear-gradient(#3a2152, #2a173d);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
}
.hero-visual .ph {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}
.hero-visual .ph strong { display: block; font-family: var(--serif); font-size: 1.5rem; color: #fff; margin-bottom: 8px; letter-spacing: 0; }

/* ---------- Logo strip / mini trust ---------- */
.trustbar {
  background: var(--ink);
  color: var(--frost);
  padding: 18px 0;
}
.trustbar .wrap {
  display: flex;
  justify-content: center;
  gap: 44px;
  flex-wrap: wrap;
  font-size: 0.86rem;
  letter-spacing: 0.05em;
}
.trustbar b { color: var(--gold-soft); }

/* ---------- How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 46px;
}
.step {
  background: var(--paper);
  border: 1px solid rgba(67, 39, 92, 0.1);
  border-radius: var(--radius);
  padding: 34px 28px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.step .num {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.step h3 { font-size: 1.5rem; color: var(--ink); }
.step p { color: var(--muted); font-size: 0.96rem; margin: 0; }

/* ---------- Section headers ---------- */
.sec-head { max-width: 620px; }
.sec-head.center { margin: 0 auto; }
.sec-head h2 { font-size: clamp(2rem, 4vw, 2.9rem); color: var(--ink); }

/* ---------- Flavour grid ---------- */
.flavours { background: var(--cream); }
.flavour-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 46px;
}
.flavour {
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid rgba(67, 39, 92, 0.08);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.2s ease;
}
.flavour:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.flavour .thumb {
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: #fff;
  text-align: center;
  padding: 14px;
  letter-spacing: 0.02em;
}
/* flavour swatches */
.f-cherry    { background: linear-gradient(150deg, #7a1730, #b8324f); }
.f-sangria   { background: linear-gradient(150deg, #6e1228, #a8324e); }
.f-peach     { background: linear-gradient(150deg, #c9663a, #efa878); }
.f-citrus    { background: linear-gradient(150deg, #c89a2a, #e9cf6a); }
.f-strawberry{ background: linear-gradient(150deg, #9c2342, #d65a7e); }
.f-apple     { background: linear-gradient(150deg, #2f6b3f, #66a85f); }
.f-mango     { background: linear-gradient(150deg, #d08a1e, #f0c24a); }
.f-colada    { background: linear-gradient(150deg, #b9921f, #ead27a); }
.flavour .body { padding: 16px 18px 20px; }
.flavour h3 { font-size: 1.28rem; color: var(--ink); margin-bottom: 4px; }
.flavour .profile { font-size: 0.84rem; color: var(--muted); margin: 0 0 12px; }
.flavour .row { display: flex; align-items: center; justify-content: space-between; }
.flavour .price { font-weight: 700; color: var(--ink); font-size: 0.95rem; }
.flavour .price small { font-weight: 500; color: var(--muted); }
.flavour .add {
  font-size: 0.82rem; font-weight: 600;
  color: var(--berry);
  border: 1.5px solid var(--berry);
  border-radius: 999px;
  padding: 6px 14px;
  transition: background 0.15s ease, color 0.15s ease;
}
.flavour .add:hover { background: var(--berry); color: #fff; }

/* ---------- Bundle / featured offer ---------- */
.offer {
  background: linear-gradient(160deg, #2c1840, #241433);
  color: #fff;
}
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.offer-visual {
  aspect-ratio: 5 / 4;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(232,243,248,0.14), rgba(201,162,76,0.18)), linear-gradient(#3a2152, #2a173d);
  border: 1px solid rgba(255,255,255,0.16);
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: rgba(255,255,255,0.6); font-size: 0.85rem; padding: 24px;
}
.offer-visual strong { display:block; font-family: var(--serif); font-size: 1.6rem; color:#fff; margin-bottom:6px; }
.offer h2 { color: #fff; font-size: clamp(2rem, 4vw, 2.8rem); }
.offer p { color: rgba(255,255,255,0.84); }
.offer .price-tag { font-family: var(--serif); font-size: 2rem; color: var(--gold-soft); margin: 8px 0 22px; }
.offer .price-tag s { color: rgba(255,255,255,0.45); font-size: 1.3rem; margin-right: 10px; }

/* ---------- Why / real fruit ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-top: 44px;
}
.why-card {
  display: flex;
  gap: 18px;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid rgba(67, 39, 92, 0.08);
  box-shadow: var(--shadow-soft);
}
.why-card .ic {
  flex: none;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--frost), var(--frost-deep));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.why-card h3 { font-size: 1.35rem; color: var(--ink); margin-bottom: 5px; }
.why-card p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* ---------- Reviews ---------- */
.reviews { background: var(--frost); }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}
.review {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(67, 39, 92, 0.06);
}
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.review p { font-family: var(--serif); font-size: 1.18rem; color: var(--ink); line-height: 1.4; margin: 0 0 16px; }
.review .who { font-size: 0.85rem; color: var(--muted); font-weight: 600; }
.review-note {
  text-align: center;
  margin-top: 26px;
  font-size: 0.84rem;
  color: var(--muted);
  font-style: italic;
}

/* ---------- Gift / Grimoire ---------- */
.gift .offer-visual {
  background: linear-gradient(160deg, rgba(201,162,76,0.22), rgba(184,61,110,0.2)), linear-gradient(#3a2152, #2a173d);
}

/* ---------- Newsletter ---------- */
.news {
  background: var(--ink);
  color: #fff;
  text-align: center;
}
.news h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.6rem); }
.news p { color: rgba(255,255,255,0.8); max-width: 520px; margin: 0 auto 26px; }
.news-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto;
}
.news-form input {
  flex: 1;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 0.95rem;
}
.news-form input::placeholder { color: rgba(255,255,255,0.55); }

/* ---------- Footer ---------- */
.site-footer {
  background: #170c24;
  color: rgba(255,255,255,0.7);
  padding: 56px 0 30px;
  font-size: 0.9rem;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
}
.site-footer h2 {
  color: #fff;
  font-family: var(--sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0 0 14px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 9px; }
.site-footer a:hover { color: var(--gold-soft); }
.foot-brand .brand { color: #fff; margin-bottom: 12px; }
.foot-brand p { max-width: 260px; color: rgba(255,255,255,0.6); }
.foot-bottom {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 0.82rem; color: rgba(255,255,255,0.5);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; padding: 64px 0 70px; }
  .hero-visual { max-width: 360px; }
  .steps { grid-template-columns: 1fr; }
  .flavour-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 6px 0;
    background: var(--paper);
    border-bottom: 1px solid rgba(67, 39, 92, 0.1);
    box-shadow: 0 18px 30px -20px rgba(36, 20, 51, 0.5);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 13px 24px; font-size: 1rem; }
  .nav-links a:hover { background: rgba(184, 61, 110, 0.07); }
}
@media (max-width: 520px) {
  .flavour-grid { grid-template-columns: 1fr; }
  .news-form { flex-direction: column; }
  .news-form .btn { width: 100%; }
  /* On phones the button goes full-width again for an easy tap (issue #92);
     the row's 12px gap handles the spacing. */
  .buy-row .btn { flex: 1; min-width: 0; margin: 0; }
}

/* =========================================================================
   Sub-page styles: product, shipping, wholesale
   ========================================================================= */

/* ---------- Page header band (lightweight hero for sub-pages) ---------- */
.page-head {
  background:
    radial-gradient(900px 400px at 80% -20%, rgba(184, 61, 110, 0.4), transparent 60%),
    linear-gradient(160deg, #2c1840 0%, #241433 100%);
  color: #fff;
  padding: 30px 0 30px;
}
.page-head .breadcrumb { margin-bottom: 4px; }
.page-head h1 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 6px; }
.page-head p { color: rgba(255,255,255,0.82); max-width: 620px; font-size: 1.1rem; margin: 0; }
/* Readable on light pages (flavour + bundle) by default; the dark header
   bands (.page-head, .post-header) override to white below. */
.breadcrumb {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--berry); }
.breadcrumb a:hover { color: var(--ink); }
.page-head .breadcrumb { color: rgba(255, 255, 255, 0.6); }
.page-head .breadcrumb a { color: rgba(255, 255, 255, 0.85); }
.page-head .breadcrumb a:hover { color: var(--gold-soft); }

/* ---------- Product page ---------- */
.product { padding: 70px 0; }
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.gallery {
  position: sticky;
  top: 90px;
}
.gallery-main {
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  background: linear-gradient(150deg, #7a1730, #b8324f);
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: rgba(255,255,255,0.85); font-family: var(--serif); font-size: 1.4rem;
  padding: 24px; box-shadow: var(--shadow);
}
.gallery-thumbs {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 12px;
}
.gallery-thumbs div {
  aspect-ratio: 1/1; border-radius: 12px;
  background: rgba(184,61,110,0.18);
  border: 1px solid rgba(67,39,92,0.12);
  display:flex; align-items:center; justify-content:center;
  font-size: 0.7rem; color: var(--muted);
}

.buybox .rating { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.buybox .rating .stars { margin: 0; }
.buybox .rating a { font-size: 0.85rem; color: var(--muted); text-decoration: underline; }
.buybox h1 { font-size: clamp(2rem, 4vw, 2.8rem); color: var(--ink); margin-bottom: 6px; }
.buybox .tagline { font-size: 1.1rem; color: var(--berry); font-family: var(--serif); font-style: italic; margin-bottom: 18px; }
.buybox .desc { color: var(--text); margin-bottom: 24px; }

.format-toggle { margin-bottom: 22px; }
.format-toggle .label {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--muted); font-weight: 600; margin-bottom: 10px;
}
.format-options { display: flex; gap: 12px; }
.format-opt {
  flex: 1;
  border: 1.5px solid rgba(67,39,92,0.2);
  border-radius: 14px;
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.format-opt.active { border-color: var(--berry); background: rgba(184,61,110,0.06); }
.format-opt .ft-name { font-weight: 700; color: var(--ink); font-size: 0.98rem; }
.format-opt .ft-meta { font-size: 0.82rem; color: var(--muted); }
.format-opt .ft-price { font-weight: 700; color: var(--ink); margin-top: 6px; }

.buy-row { display: flex; gap: 12px; align-items: stretch; margin-bottom: 22px; }
.qty {
  display: flex; align-items: center;
  border: 1.5px solid rgba(67,39,92,0.2); border-radius: 999px; overflow: hidden;
}
.qty button { border: none; background: transparent; font-size: 1.2rem; width: 44px; cursor: pointer; color: var(--ink); }
.qty span { min-width: 28px; text-align: center; font-weight: 600; }
/* Add to cart is a comfortable fixed size with its label centred, sat in the
   space beside the quantity stepper with an even gap on each side — not
   stretched full-width (issues #92). */
.buy-row .btn { flex: 0 1 auto; min-width: 220px; margin: 0 auto; text-align: center; }

.buybox .assurances { list-style: none; padding: 0; margin: 0; }
.buybox .assurances li {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0; font-size: 0.92rem; color: var(--text);
  border-bottom: 1px solid rgba(67,39,92,0.08);
}
.buybox .assurances li:last-child { border-bottom: none; }
.buybox .assurances .tick { color: var(--berry); font-weight: 700; }

/* product detail blocks below the fold */
.pdetail { background: var(--cream); }
.pdetail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 40px; }
.pdetail-card {
  background: var(--paper); border-radius: var(--radius); padding: 28px;
  border: 1px solid rgba(67,39,92,0.08); box-shadow: var(--shadow-soft);
}
.pdetail-card h3 { font-size: 1.35rem; color: var(--ink); }
.pdetail-card ul { padding-left: 18px; margin: 0; color: var(--muted); font-size: 0.94rem; }
.pdetail-card ol { padding-left: 18px; margin: 0; color: var(--muted); font-size: 0.94rem; }
.pdetail-card li { margin-bottom: 7px; }
.pdetail-card p { color: var(--muted); font-size: 0.94rem; margin: 0; }

/* ---------- Generic content (shipping etc.) ---------- */
.content { padding: 66px 0; }
.content-narrow { max-width: 780px; margin: 0 auto; }
.content h2 { font-size: 1.9rem; color: var(--ink); margin-top: 44px; }
.content h2:first-child { margin-top: 0; }
.content p { color: var(--text); }
.content ul { color: var(--text); padding-left: 20px; }
.content li { margin-bottom: 8px; }

.info-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 10px 0 8px; }
.info-card {
  background: var(--paper); border-radius: var(--radius); padding: 26px;
  border: 1px solid rgba(67,39,92,0.08); box-shadow: var(--shadow-soft); text-align: center;
}
.info-card .ic-big { font-size: 1.8rem; margin-bottom: 8px; }
.info-card h2 { font-size: 1.3rem; color: var(--ink); margin-bottom: 4px; }
.info-card p { color: var(--muted); font-size: 0.92rem; margin: 0; }

/* table */
.table-wrap { overflow-x: auto; }
table.sheet {
  width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 0.94rem;
  background: var(--paper); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-soft);
}
table.sheet th {
  background: var(--ink); color: #fff; text-align: left; padding: 14px 16px;
  font-family: var(--sans); font-weight: 600; font-size: 0.86rem; letter-spacing: 0.03em;
}
table.sheet td { padding: 13px 16px; border-top: 1px solid rgba(67,39,92,0.08); color: var(--text); }
table.sheet tr:nth-child(even) td { background: rgba(232,243,248,0.4); }
table.sheet .num { font-weight: 700; color: var(--ink); }

/* FAQ */
.faq { margin-top: 18px; }
.faq details {
  background: var(--paper); border: 1px solid rgba(67,39,92,0.1); border-radius: var(--radius-sm);
  padding: 4px 22px; margin-bottom: 12px; box-shadow: var(--shadow-soft);
}
.faq summary {
  cursor: pointer; font-weight: 600; color: var(--ink); padding: 16px 0;
  font-size: 1.02rem; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--berry); font-size: 1.3rem; }
.faq details[open] summary::after { content: "−"; }
.faq details p { color: var(--muted); margin: 0 0 16px; }

/* ---------- Wholesale ---------- */
.wholesale-cta {
  background: linear-gradient(160deg, #2c1840, #241433);
  color: #fff; border-radius: var(--radius); padding: 44px;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 36px; align-items: center;
}
.wholesale-cta h2 { color: #fff; font-size: 2rem; }
.wholesale-cta p { color: rgba(255,255,255,0.84); margin: 0; }

.form-card {
  background: var(--paper); border-radius: var(--radius); padding: 30px;
  border: 1px solid rgba(67,39,92,0.1); box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.84rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px; border-radius: 10px;
  border: 1.5px solid rgba(67,39,92,0.18); font-family: var(--sans); font-size: 0.95rem;
  background: #fff; color: var(--text);
}
.field textarea { min-height: 110px; resize: vertical; }

@media (max-width: 900px) {
  .product-grid { grid-template-columns: 1fr; }
  .gallery { position: static; }
  .pdetail-grid { grid-template-columns: 1fr; }
  .info-cards { grid-template-columns: 1fr; }
  .wholesale-cta { grid-template-columns: 1fr; padding: 30px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- About / Our Story ---------- */
.story-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 50px;
  align-items: start;
}
.story-side { position: sticky; top: 90px; }
.story-photo {
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(184,61,110,0.25), rgba(201,162,76,0.2)), linear-gradient(#3a2152, #2a173d);
  border: 1px solid rgba(67,39,92,0.14);
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: rgba(255,255,255,0.7); font-family: var(--serif); font-size: 1.05rem; padding: 22px;
  box-shadow: var(--shadow-soft); margin-bottom: 20px;
}
.story-facts {
  background: var(--paper); border-radius: var(--radius); padding: 26px;
  border: 1px solid rgba(67,39,92,0.1); box-shadow: var(--shadow-soft);
}
.story-facts h3 { font-size: 1.3rem; color: var(--ink); margin-bottom: 12px; }
.story-facts ul { list-style: none; padding: 0; margin: 0; }
.story-facts li {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 8px 0; font-size: 0.92rem; color: var(--text);
}
.story-facts .tick { color: var(--berry); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 44px;
  align-items: start;
}
.contact-info .ci-block { margin-bottom: 26px; }
.contact-info h2 { font-size: 1.25rem; color: var(--ink); margin-bottom: 4px; }
.contact-info p { color: var(--muted); margin: 0; font-size: 0.96rem; }
.contact-info a { color: var(--berry); }
.contact-social { display: flex; gap: 12px; margin-top: 8px; }
.contact-social a {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid rgba(67,39,92,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--ink);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.contact-social a:hover { background: var(--berry); color: #fff; border-color: var(--berry); }

@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; }
  .story-side { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* ---------- Bundle ladder ---------- */
.bundles { background: var(--cream); }
/* Offset for the sticky header when jumped to via #flavours / #bundles. */
#flavours, #bundles { scroll-margin-top: 90px; }
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 46px;
  align-items: stretch;
}
.bundle {
  position: relative;
  background: var(--paper);
  border: 1.5px solid rgba(67, 39, 92, 0.12);
  border-radius: var(--radius);
  padding: 30px 24px 26px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.2s ease;
}
.bundle:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.bundle.featured {
  border-color: var(--gold);
  box-shadow: 0 18px 50px -22px rgba(201, 162, 76, 0.6);
}
.bundle .tag {
  position: absolute;
  top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: var(--ink);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 999px; white-space: nowrap;
}
.bundle .qty-name { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); margin-bottom: 2px; }
.bundle .qty-sub { font-size: 0.82rem; color: var(--muted); margin-bottom: 16px; }
.bundle .price { font-family: var(--serif); font-size: 2.4rem; font-weight: 700; color: var(--ink); line-height: 1; }
.bundle .each { font-size: 0.84rem; color: var(--berry); font-weight: 600; margin: 6px 0 4px; }
.bundle .save { font-size: 0.8rem; color: var(--muted); min-height: 18px; }
.bundle .btn { margin-top: 18px; width: 100%; }
.bundle-note { text-align: center; margin-top: 24px; font-size: 0.9rem; color: var(--muted); }
.bundle-note strong { color: var(--berry); }

@media (max-width: 900px) {
  .bundle-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .bundle-grid { grid-template-columns: 1fr; }
}
