/* ==========================================================================
   FlowerFruitRoot — Theme stylesheet v1.1
   Modern editorial design with brutalist accents.
   Display: Bricolage Grotesque (variable). Body: Inter.
   ========================================================================== */

:root {
  /* ----- Core palette ----- */
  --ink:        #0F0F0F;     /* near-black, warmer than pure */
  --paper:      #FFFCF3;     /* off-white card surface */
  --cream:      #F7EFD9;     /* warm background — primary */
  --cream-alt:  #FBF5E5;     /* lighter cream — alt surface */
  --yellow:     #FFC93C;     /* signature gold */
  --yellow-dk:  #E8AC1F;     /* gold hover */
  --orange:     #FF5C28;     /* vivid orange — Banta Dhaar */
  --coral:      #FF4757;     /* coral red — Popeye */
  --pink:       #FF7BAC;     /* candy pink — Bubbly Banta */
  --berry:      #6E2E54;     /* deep berry — premium accent */
  --grass:      #5BAA47;     /* fresh green — flavour tag */

  /* ----- Brand accents (used via .brand-{slug} scoping) ----- */
  --accent: var(--orange);

  /* ----- Typography ----- */
  --font-display: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* ----- Spacing / borders ----- */
  --radius-card:  28px;
  --radius-pill:  999px;
  --border:       2px solid var(--ink);
  --shadow-hard:  6px 6px 0 var(--ink);
  --shadow-hard-hover: 9px 9px 0 var(--ink);
  --shadow-soft:  0 18px 40px rgba(15, 15, 15, 0.10);

  /* ----- Layout ----- */
  --wrap: min(1200px, 92vw);
}

/* Per-brand accent map (applied via class on container) */
.brand-banta-dhaar  { --accent: var(--orange); }
.brand-popeye       { --accent: var(--coral);  }
.brand-bubbly-banta { --accent: var(--pink);   }

/* ==========================================================================
   Base
   ========================================================================== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: color .15s ease; }
img, svg { max-width: 100%; display: block; height: auto; }
button { font-family: inherit; }
::selection { background: var(--ink); color: var(--yellow); }

.wrap { width: var(--wrap); margin: 0 auto; }
.screen-reader-text { position: absolute; left: -10000px; }

/* ==========================================================================
   Typography
   ========================================================================== */
h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.95;
}
h1, .h1 { font-size: clamp(2.8rem, 8.5vw, 7.2rem); font-weight: 900; letter-spacing: -0.03em; }
h2, .h2 { font-size: clamp(2.2rem, 5.8vw, 5rem);   font-weight: 800; letter-spacing: -0.025em; }
h3, .h3 { font-size: clamp(1.5rem, 3.4vw, 2.4rem); font-weight: 800; }
h4, .h4 { font-size: clamp(1.15rem, 2.4vw, 1.6rem);font-weight: 800; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 16px; opacity: .7;
  display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow::before {
  content: ""; display: inline-block;
  width: 18px; height: 2px; background: var(--ink); opacity: .6;
}

.lead {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  max-width: 64ch; line-height: 1.55; opacity: .82;
}

.squiggle {
  background: linear-gradient(transparent 70%, var(--yellow) 70%);
  padding: 0 6px;
}
.underline-thick {
  text-decoration: underline;
  text-decoration-thickness: 8px;
  text-decoration-color: var(--yellow);
  text-underline-offset: 4px;
}

/* ==========================================================================
   Wordmark
   ========================================================================== */
.text-wordmark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.text-wordmark .dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--orange);
  margin-bottom: 2px;
}
.text-wordmark .small {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: .55;
  margin-left: 4px;
}
.footer-wordmark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: .9;
  letter-spacing: -0.03em;
  color: var(--yellow);
}

/* ==========================================================================
   Buttons (brutalist)
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.06em;
  font-size: 13px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  border: var(--border);
  background: var(--ink); color: var(--yellow);
  box-shadow: var(--shadow-hard);
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease, color .2s ease;
  cursor: pointer;
  text-align: center;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-hard-hover); }
.btn:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }

.btn.primary   { background: var(--ink);    color: var(--yellow); }
.btn.secondary { background: var(--paper);  color: var(--ink); }
.btn.accent    { background: var(--accent); color: #fff; }
.btn.yellow    { background: var(--yellow); color: var(--ink); }
.btn.ghost     { background: transparent; color: var(--ink); box-shadow: none; }
.btn.ghost:hover { background: var(--ink); color: var(--yellow); box-shadow: var(--shadow-hard); }

.btn.lg { padding: 18px 30px; font-size: 14px; }
.btn.sm { padding: 10px 16px; font-size: 12px; }

/* Pill (non-button label) */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body); font-weight: 700; font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: var(--ink); color: var(--yellow);
  border: var(--border);
}
.pill.outline { background: var(--paper); color: var(--ink); }
.pill.accent  { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ==========================================================================
   Ticker (top scroll)
   ========================================================================== */
.ticker {
  background: var(--ink); color: var(--yellow);
  padding: 12px 0; overflow: hidden; white-space: nowrap;
  font-family: var(--font-body); font-weight: 700;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  border-bottom: var(--border);
}
.ticker .scroll {
  display: inline-block;
  animation: scroll-left 28s linear infinite;
  padding-left: 100%;
}
.ticker span.dot { color: var(--orange); margin: 0 10px; }
@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 239, 217, 0.92);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border-bottom: 2px solid var(--ink);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; gap: 20px;
}
.site-brand {
  display: inline-flex; align-items: center;
  font-family: var(--font-display); font-weight: 900;
  color: var(--ink);
}
.primary-menu {
  display: flex; gap: 28px; list-style: none;
  font-family: var(--font-body); font-size: 13px;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
}
.primary-menu a { position: relative; padding: 4px 0; }
.primary-menu a:hover { color: var(--orange); }
.primary-menu a:hover::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 3px; background: var(--orange); border-radius: 2px;
}
.primary-menu .current-menu-item > a::after,
.primary-menu .current_page_item > a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 3px; background: var(--ink); border-radius: 2px;
}

.nav-right { display: flex; gap: 10px; align-items: center; }
.cart-btn {
  font-family: var(--font-body); font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.06em;
  font-size: 12px;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  border: var(--border);
  background: var(--ink); color: var(--yellow);
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
}
.cart-btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); background: var(--orange); }

.menu-toggle {
  display: none;
  background: var(--paper); color: var(--ink);
  border: var(--border); border-radius: var(--radius-pill);
  padding: 9px 14px; font-weight: 800; text-transform: uppercase;
  font-size: 12px; letter-spacing: .08em; cursor: pointer;
  box-shadow: 3px 3px 0 var(--ink);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  padding: clamp(40px, 6vw, 80px) 0 clamp(40px, 5vw, 60px);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--yellow) 0%, transparent 70%);
  opacity: .6; z-index: 0; pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 40px; align-items: center;
}
.hero h1 .accent-yellow { background: var(--yellow); padding: 0 12px; box-shadow: 6px 6px 0 var(--ink); border: var(--border); border-radius: 6px; display: inline-block; line-height: 0.85; }
.hero h1 .accent-orange { color: var(--orange); }
.hero .subline {
  font-family: var(--font-body);
  font-weight: 800; font-size: clamp(1rem, 1.7vw, 1.25rem);
  margin: 0 0 12px;
}
.hero .description { font-size: 17px; max-width: 540px; opacity: .85; }
.hero .cta { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero slider (3-brand rotator) */
.hero-visual {
  position: relative;
  background: var(--paper);
  border: var(--border);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  box-shadow: var(--shadow-hard);
  overflow: hidden;
  min-height: 540px;
  display: grid;
  place-items: center;
}
.hero-visual::before {
  content: ""; position: absolute; inset: -20%;
  background: radial-gradient(circle at center, var(--accent, var(--orange)) 0%, transparent 60%);
  opacity: .12; z-index: 0; transition: opacity .4s ease;
}
.slide { display: none; position: relative; z-index: 1; text-align: center; }
.slide.active { display: block; animation: slideIn .5s ease; }
@keyframes slideIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.slide .bottle-wrap { position: relative; display: inline-block; }
.slide img.bottle-drop { max-height: 380px; width: auto; margin: 0 auto; }
.slide .stamp {
  position: absolute; right: -6px; top: 6px;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--accent, var(--orange)); color: #fff;
  display: grid; place-items: center; text-align: center;
  font-family: var(--font-display); font-weight: 900; font-size: 13px;
  line-height: 1; letter-spacing: 0.04em;
  transform: rotate(-12deg);
  border: var(--border);
  box-shadow: 4px 4px 0 var(--ink);
}
.slide-meta { margin-top: 18px; }
.slide-meta h3 { margin: 8px 0 6px; }
.slide-meta p { opacity: .8; max-width: 320px; margin: 0 auto 14px; font-size: 14px; }

.slider-nav { display: flex; gap: 10px; justify-content: center; margin-top: 18px; }
.slider-dot {
  width: 38px; height: 8px; border-radius: 999px;
  background: rgba(15,15,15,.18); border: none; cursor: pointer;
  transition: background .2s ease, width .2s ease;
}
.slider-dot:hover { background: rgba(15,15,15,.4); }
.slider-dot.active { background: var(--ink); width: 60px; }

/* ==========================================================================
   Marquee
   ========================================================================== */
.marquee {
  background: var(--ink); color: var(--yellow);
  padding: 22px 0; overflow: hidden; white-space: nowrap;
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(1.8rem, 4.4vw, 3.4rem);
  letter-spacing: -0.02em;
  border-top: var(--border); border-bottom: var(--border);
}
.marquee .run { display: inline-block; animation: scroll-left 18s linear infinite; padding-left: 100%; }
.marquee .star { color: var(--orange); margin: 0 18px; display: inline-block; transform: translateY(-4px); }

/* ==========================================================================
   Section frame
   ========================================================================== */
.section { padding: clamp(60px, 9vw, 110px) 0; position: relative; }
.section.cream  { background: var(--cream); }
.section.paper  { background: var(--paper); }
.section.yellow { background: var(--yellow); }
.section.ink    { background: var(--ink); color: var(--cream); }
.section.ink .lead { color: rgba(255,255,255,.78); }
.section.ink .eyebrow { color: var(--yellow); opacity: 1; }
.section.ink .eyebrow::before { background: var(--yellow); opacity: 1; }

.section-head { max-width: 760px; margin-bottom: 36px; }
.section-head.center { margin: 0 auto 36px; text-align: center; }
.section-head.center .lead { margin: 0 auto; }

/* ==========================================================================
   Cards — generic brutalist card
   ========================================================================== */
.card {
  background: var(--paper);
  border: var(--border);
  border-radius: var(--radius-card);
  padding: 26px;
  box-shadow: var(--shadow-hard);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column; gap: 12px;
}
.card:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow-hard-hover); }

/* ==========================================================================
   Brand cards (PICK YOUR LABEL)
   ========================================================================== */
.brand-cards { margin-top: 36px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.brand-card {
  position: relative; overflow: hidden;
  background: var(--paper); border: var(--border); border-radius: var(--radius-card);
  padding: 32px 28px; box-shadow: var(--shadow-hard);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.brand-card:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow-hard-hover); }
.brand-card::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0;
  height: 12px; background: var(--accent, var(--orange));
}
.brand-card .number {
  font-family: var(--font-display); font-weight: 900;
  font-size: 64px; line-height: 1; color: var(--accent, var(--orange));
  opacity: .25; position: absolute; right: 22px; top: 22px;
}
.brand-card .badge { align-self: flex-start; }
.brand-card h3 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.brand-card p { opacity: .82; }
.brand-card .btn { margin-top: auto; align-self: flex-start; }

/* ==========================================================================
   Unique points / benefits — numbered
   ========================================================================== */
.benefits { margin-top: 36px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.benefit {
  background: var(--paper); border: var(--border); border-radius: var(--radius-card);
  padding: 28px 26px; box-shadow: var(--shadow-hard);
  display: flex; flex-direction: column; gap: 10px;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.benefit:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow-hard-hover); }
.benefit .number {
  font-family: var(--font-display); font-weight: 900;
  font-size: 38px; line-height: 1;
  color: var(--orange);
  margin-bottom: 4px;
}
.benefit h4 { font-size: 1.4rem; }
.benefit p { opacity: .85; }

/* ==========================================================================
   Flavour cards
   ========================================================================== */
.flavours { margin-top: 36px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.flavour {
  background: var(--paper); border: var(--border); border-radius: var(--radius-card);
  padding: 22px; box-shadow: var(--shadow-hard);
  display: flex; flex-direction: column; gap: 12px;
  position: relative; overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.flavour:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow-hard-hover); }
.flavour .image {
  background: var(--cream-alt);
  border-radius: 18px; min-height: 220px;
  display: grid; place-items: center; padding: 14px;
  border: 1px dashed rgba(15,15,15,.15);
}
.flavour .image img { height: 200px; width: auto; object-fit: contain; }
.flavour .line { font-style: italic; font-weight: 600; opacity: .8; font-size: 14px; }
.flavour h4 { font-size: 1.5rem; }
.flavour p { font-size: 14px; opacity: .82; }
.flavour .mood-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.flavour .mood-tag {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 10px; border-radius: var(--radius-pill);
  background: var(--yellow); color: var(--ink);
  border: 1.5px solid var(--ink);
}

/* ==========================================================================
   Product cards (shop, bestsellers)
   ========================================================================== */
.products { margin-top: 36px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card {
  background: var(--paper); border: var(--border); border-radius: var(--radius-card);
  padding: 18px; box-shadow: var(--shadow-hard);
  display: flex; flex-direction: column; gap: 12px;
  position: relative; overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow-hard-hover); }
.product-card .image {
  background: var(--cream-alt);
  border-radius: 18px; min-height: 220px;
  display: grid; place-items: center; padding: 14px; overflow: hidden;
}
.product-card .image img { height: 200px; width: auto; object-fit: contain; transition: transform .35s ease; }
.product-card:hover .image img { transform: translateY(-6px) rotate(-2deg); }
.product-card .brand-badge {
  align-self: flex-start;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 11px; border-radius: var(--radius-pill);
  background: var(--accent, var(--ink)); color: #fff;
  border: 1.5px solid var(--ink);
}
.product-card h3 { font-size: 1.35rem; }
.product-card h3 a { color: inherit; }
.product-card h3 a:hover { color: var(--orange); }
.product-card .price {
  font-family: var(--font-display); font-weight: 900;
  font-size: 1.65rem; color: var(--ink);
}
.product-card .price del { opacity: .4; font-size: 1rem; font-weight: 700; margin-right: 6px; }
.product-card .price ins { text-decoration: none; }
.product-card .btn-add, .product-card .add {
  background: var(--ink); color: var(--yellow);
  border: var(--border); border-radius: var(--radius-pill);
  padding: 11px 16px; font-weight: 800; text-transform: uppercase;
  font-size: 12px; letter-spacing: 0.06em; cursor: pointer;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
  text-align: center; display: inline-block;
}
.product-card .btn-add:hover, .product-card .add:hover {
  background: var(--orange); transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink);
}

/* ==========================================================================
   Bottle drop animation
   ========================================================================== */
.bottle-drop { will-change: transform, opacity; }
.js .bottle-drop { opacity: 0; transform: translateY(-260px) scale(.82) rotate(-3deg); }
.bottle-drop.show {
  opacity: 1;
  animation: bottleDrop 1.1s cubic-bezier(.18,.89,.32,1.28) forwards,
             bottleFloat 3.4s ease-in-out 1.15s infinite;
}
@keyframes bottleDrop {
  0%   { opacity: 0; transform: translateY(-260px) scale(.82) rotate(-3deg); }
  70%  { opacity: 1; transform: translateY(18px)   scale(1.03) rotate(.8deg); }
  100% { opacity: 1; transform: translateY(0)      scale(1)    rotate(0deg); }
}
@keyframes bottleFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* ==========================================================================
   Story split
   ========================================================================== */
.story-grid {
  margin-top: 36px; display: grid;
  grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: center;
}
.story-text p { font-size: 17px; opacity: .9; }
.story-text p + p { margin-top: 16px; }
.story-photo {
  border: var(--border); border-radius: var(--radius-card);
  overflow: hidden; box-shadow: var(--shadow-hard);
  transform: rotate(-1.2deg);
}
.story-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ==========================================================================
   Mood matcher
   ========================================================================== */
.mood-grid { margin-top: 36px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.mood-card {
  background: var(--paper); color: var(--ink);
  border: var(--border); border-radius: var(--radius-card);
  padding: 24px; box-shadow: var(--shadow-hard);
  border-left: 10px solid var(--accent, var(--orange));
  display: flex; flex-direction: column; gap: 6px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.mood-card:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow-hard-hover); }
.mood-card .q {
  font-family: var(--font-body); font-weight: 700;
  font-size: 13px; text-transform: uppercase;
  letter-spacing: 0.1em; opacity: .65;
}
.mood-card .a {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(1.4rem, 2.6vw, 2rem); line-height: 1;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials { margin-top: 36px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.testimonial {
  background: var(--paper); color: var(--ink);
  border: var(--border); border-radius: var(--radius-card);
  padding: 26px; box-shadow: var(--shadow-hard);
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.testimonial::before {
  content: "“"; position: absolute; right: 22px; top: 6px;
  font-family: var(--font-display); font-size: 96px; line-height: 1;
  color: var(--yellow); font-weight: 900;
}
.testimonial:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow-hard-hover); }
.testimonial p { font-size: 16px; line-height: 1.55; position: relative; z-index: 1; }
.testimonial .name {
  margin-top: 14px; font-family: var(--font-body);
  font-weight: 800; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.06em;
}

/* ==========================================================================
   Marketplaces strip
   ========================================================================== */
.marketplaces { margin-top: 36px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.marketplace {
  background: var(--paper); color: var(--ink);
  border: var(--border); border-radius: var(--radius-card);
  padding: 22px 18px; text-align: center;
  box-shadow: var(--shadow-hard);
  transition: transform .2s ease, box-shadow .2s ease;
}
.marketplace:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-hard-hover); }
.marketplace h5 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 1.3rem; line-height: 1; margin-bottom: 8px;
}
.marketplace p { font-size: 13px; opacity: .8; }

/* ==========================================================================
   UGC tiles
   ========================================================================== */
.ugc-grid { margin-top: 36px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.ugc {
  aspect-ratio: 9 / 16;
  background: linear-gradient(160deg, var(--orange), var(--coral) 60%, var(--pink));
  border: var(--border); border-radius: var(--radius-card);
  color: #fff; padding: 22px;
  display: flex; align-items: flex-end;
  font-family: var(--font-display); font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.02em;
  font-size: 14px; line-height: 1.15;
  box-shadow: var(--shadow-hard);
  position: relative; overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.ugc::before {
  content: "►"; position: absolute; top: 16px; left: 16px;
  width: 36px; height: 36px; background: #fff; color: var(--ink);
  border-radius: 50%; display: grid; place-items: center;
  font-size: 12px; border: 2px solid var(--ink);
}
.ugc:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow-hard-hover); }
.ugc:nth-child(2) { background: linear-gradient(160deg, var(--berry), var(--orange)); }
.ugc:nth-child(3) { background: linear-gradient(160deg, var(--coral), var(--yellow)); }
.ugc:nth-child(4) { background: linear-gradient(160deg, var(--pink), var(--berry)); }
.ugc:nth-child(5) { background: linear-gradient(160deg, var(--orange), var(--ink)); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--ink); color: #FFF6E8;
  padding: 70px 0 28px; border-top: var(--border);
}
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: start; margin-bottom: 40px; }
.footer-tagline { font-size: 17px; opacity: .8; max-width: 460px; margin-top: 14px; }
.footer-newsletter h5 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 900; color: var(--yellow); margin-bottom: 10px; }
.footer-newsletter p { font-size: 14px; opacity: .75; margin-bottom: 14px; }
.footer-newsletter .form-row { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-newsletter input {
  flex: 1; min-width: 180px;
  padding: 14px 16px; border-radius: var(--radius-pill);
  border: 2px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.06); color: #fff;
  font: inherit;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,.5); }

.site-footer .cols { display: grid; grid-template-columns: repeat(5, 1fr); gap: 26px; padding: 30px 0; border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); }
.site-footer h5 { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 12px; color: var(--yellow); }
.site-footer ul { list-style: none; }
.site-footer li { margin: 8px 0; opacity: .82; font-size: 14px; }
.site-footer a:hover { color: var(--yellow); }

.site-footer .footer-bottom {
  margin-top: 22px; padding-top: 14px;
  display: flex; justify-content: space-between;
  gap: 12px; flex-wrap: wrap; align-items: center;
  font-size: 13px; opacity: .7;
}
.socials { display: flex; gap: 10px; }
.socials a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08); display: grid; place-items: center;
  font-weight: 800; font-size: 12px; letter-spacing: 0.04em;
  border: 1.5px solid rgba(255,255,255,.18);
  transition: background .2s ease, color .2s ease, transform .15s ease;
}
.socials a:hover { background: var(--yellow); color: var(--ink); transform: translate(-1px, -1px); }

/* ==========================================================================
   WooCommerce overrides
   ========================================================================== */
.woocommerce .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce ul.products li.product .button {
  background: var(--ink); color: var(--yellow);
  border: var(--border); border-radius: var(--radius-pill);
  padding: 12px 22px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.06em; font-size: 13px;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
}
.woocommerce .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce ul.products li.product .button:hover {
  background: var(--orange); color: #fff;
  transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink);
}
.woocommerce-page main { background: var(--cream); padding: 0; min-height: 60vh; }
.woocommerce ul.products li.product h2,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-display) !important;
  font-weight: 800 !important;
  font-size: 1.4rem !important; line-height: 1; padding: 8px 0 !important;
}
.woocommerce ul.products li.product .price {
  font-family: var(--font-display); font-weight: 900; font-size: 1.5rem; color: var(--ink);
}
.woocommerce-message, .woocommerce-info {
  border-top: 4px solid var(--orange);
  background: var(--paper);
  border-radius: 14px;
}
.woocommerce-message::before, .woocommerce-info::before { color: var(--orange); }
.woocommerce div.product .product_title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2rem, 4.2vw, 3.6rem); line-height: 0.95;
  letter-spacing: -0.02em;
}
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  font-family: var(--font-display); font-weight: 900; font-size: 2.2rem; color: var(--ink);
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
#add_payment_method table.cart td.actions .coupon .input-text,
.woocommerce-cart table.cart td.actions .coupon .input-text,
.woocommerce-checkout table.cart td.actions .coupon .input-text {
  border: var(--border); border-radius: 14px; padding: 12px;
  background: var(--paper); font: inherit;
}
.woocommerce-cart .cart_totals,
.woocommerce-checkout #order_review,
.woocommerce-checkout #customer_details > div {
  background: var(--paper);
  border: var(--border); border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: var(--shadow-hard);
}

/* ==========================================================================
   Page header (inner pages)
   ========================================================================== */
.page-header {
  background: var(--cream-alt);
  border-bottom: var(--border);
  padding: clamp(50px, 8vw, 90px) 0 clamp(30px, 5vw, 50px);
  position: relative; overflow: hidden;
}
.page-header::before {
  content: ""; position: absolute;
  right: -120px; top: -120px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, var(--accent, var(--yellow)) 0%, transparent 70%);
  opacity: .25; z-index: 0;
}
.page-header .wrap { position: relative; z-index: 1; }
.page-header h1 { margin: 14px 0 8px; max-width: 16ch; }
.page-header .sub { font-size: 18px; opacity: .85; max-width: 720px; }

/* ==========================================================================
   Entry content (prose)
   ========================================================================== */
.entry-content { font-size: 17px; line-height: 1.7; }
.entry-content > * + * { margin-top: 1em; }
.entry-content h2 { margin-top: 1.4em; margin-bottom: .3em; font-size: clamp(1.7rem, 3vw, 2.4rem); }
.entry-content h3 { margin-top: 1.2em; margin-bottom: .3em; font-size: 1.4rem; }
.entry-content ul, .entry-content ol { padding-left: 1.4em; }
.entry-content li { margin-bottom: .35em; }
.entry-content blockquote {
  border-left: 6px solid var(--orange);
  padding: 16px 22px;
  background: var(--paper);
  border-radius: 12px;
  margin: 20px 0;
  font-size: 18px;
  box-shadow: var(--shadow-hard);
  border: var(--border);
  border-left: 6px solid var(--orange);
}
.entry-content a { color: var(--orange); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.entry-content a:hover { background: var(--yellow); color: var(--ink); }
.entry-content code, .entry-content pre {
  background: var(--paper); border: 1px solid rgba(15,15,15,.12);
  padding: 2px 6px; border-radius: 6px; font-size: .9em;
}

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq-list { margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--paper); border: var(--border); border-radius: 18px;
  padding: 18px 22px; box-shadow: var(--shadow-hard);
}
.faq-item summary {
  cursor: pointer; font-family: var(--font-display);
  font-weight: 800; font-size: 1.15rem; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-item summary::after {
  content: "+"; font-size: 28px; font-weight: 900; transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .answer { margin-top: 12px; font-size: 16px; line-height: 1.6; opacity: .9; }

/* ==========================================================================
   Contact grid
   ========================================================================== */
.contact-grid { margin-top: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.contact-card {
  background: var(--paper); border: var(--border); border-radius: var(--radius-card);
  padding: 28px; box-shadow: var(--shadow-hard);
}
.contact-card h3 { margin-bottom: 12px; }
.contact-card .contact-row {
  display: flex; gap: 12px; padding: 10px 0;
  border-bottom: 1px dashed rgba(15,15,15,.15);
}
.contact-card .contact-row:last-child { border-bottom: none; }
.contact-card .contact-row .label {
  flex: 0 0 110px; font-weight: 800; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.06em; opacity: .7;
}
.contact-card .contact-row .value { flex: 1; font-size: 15px; }
.contact-card .contact-row .value a { color: var(--orange); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .site-footer .cols { grid-template-columns: repeat(3, 1fr); }
  .marketplaces, .ugc-grid { grid-template-columns: repeat(3, 1fr); }
  .products, .flavours { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 880px) {
  .primary-menu { display: none; }
  .primary-menu.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); border-top: var(--border); padding: 22px 6%;
    gap: 18px;
  }
  .menu-toggle { display: inline-flex; }
  .hero-grid, .story-grid, .footer-top, .contact-grid { grid-template-columns: 1fr; }
  .brand-cards, .benefits, .testimonials, .mood-grid, .marketplaces, .ugc-grid {
    grid-template-columns: 1fr 1fr;
  }
  .products, .flavours { grid-template-columns: 1fr 1fr; }
  .site-footer .cols { grid-template-columns: 1fr 1fr; }
  .hero-visual { min-height: 460px; }
  .slide img.bottle-drop { max-height: 300px; }
}
@media (max-width: 560px) {
  :root { --shadow-hard: 4px 4px 0 var(--ink); --shadow-hard-hover: 6px 6px 0 var(--ink); --radius-card: 22px; }
  .section { padding: 60px 0; }
  .brand-cards, .benefits, .testimonials, .mood-grid,
  .marketplaces, .ugc-grid, .products, .flavours, .site-footer .cols {
    grid-template-columns: 1fr !important;
  }
  .ugc-grid { grid-template-columns: 1fr 1fr !important; }
  .hero h1 { font-size: clamp(2.6rem, 12vw, 4.5rem); }
}
