/*
Theme Name: Jaad Coffee
Theme URI: https://jaadcoffee.com
Author: Jaad Coffee
Author URI: https://jaadcoffee.com
Description: Custom WooCommerce theme for Jaad Coffee, an Indonesian coffee brand. Converted from the static Jaad Coffee HTML/CSS/JS site into WordPress templates wired to WooCommerce.
Version: 1.0
Requires at least: 6.0
Requires PHP: 7.4
Tested up to: 6.6
WC requires at least: 8.0
WC tested up to: 10.8
Text Domain: jaad-coffee
License: Proprietary
*/

/* ============================================================
   JAAD COFFEE — Design System
   Editorial - Premium - Indonesian
   Fonts: Fraunces (display) + Hanken Grotesk (body)
   Ported from the static jaad-coffee-web design system.
   ============================================================ */


:root {
  /* Brand palette */
  --emerald:   #0F4743;
  --emerald-2: #0a322f;
  --mint:      #3F9F9E;
  --brown:     #7A421C;
  --cream:     #D1B6A9;
  --black:     #231F20;
  --white:     #FFFFFF;

  /* Surfaces */
  --bg:        #F7F3EC;   /* warm paper */
  --bg-2:      #EFE7DA;
  --ink:       #231F20;
  --ink-soft:  #4a4744;
  --border:    #E4D9C9;
  --gold:      #C99A4B;
  --orange:    #E8743B;   /* logo accent — primary CTA */
  --orange-2:  #cf5f2a;
  --yellow:    #FBF3DD;   /* flavor card tint */
  --leaf:      #2E7D54;   /* fresh green */

  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Hanken Grotesk', system-ui, sans-serif;

  /* Rhythm */
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 26px;
  --radius-xl: 40px;

  --max:    1280px;
  --pad:    clamp(16px, 5vw, 80px);
  --gap:    clamp(16px, 3vw, 32px);

  --shadow-sm: 0 2px 10px rgba(15,71,67,.06);
  --shadow-md: 0 18px 50px -22px rgba(15,71,67,.35);
  --shadow-lg: 0 40px 90px -30px rgba(15,71,67,.45);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* Paper grain overlay */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9998;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Typography ---------- */
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.04; letter-spacing: -.01em; }
.display {
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  font-weight: 600;
  font-variation-settings: "SOFT" 0, "WONK" 0, "opsz" 144;
}
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--mint);
}
.eyebrow.dark { color: var(--brown); }
.lead { font-size: clamp(1rem, 1.6vw, 1.18rem); color: var(--ink-soft); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(64px, 10vw, 130px); position: relative; }
.section--tight { padding-block: clamp(48px, 7vw, 90px); }
.center { text-align: center; }
.section-head { max-width: 620px; }
.section-head.center { margin-inline: auto; }
.section-head .eyebrow { margin-bottom: 14px; display: inline-block; }
.section-head h2 { font-size: clamp(2rem, 4.4vw, 3.3rem); margin-bottom: 16px; }

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cursor-dot { width: 7px; height: 7px; background: #fff; }
.cursor-ring {
  width: 38px; height: 38px;
  border: 1.5px solid #fff;
  transition: width .25s var(--ease), height .25s var(--ease), background .25s, opacity .25s;
}
.cursor-ring.is-hover { width: 64px; height: 64px; background: rgba(255,255,255,.12); }
@media (hover: none), (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  --bg-btn: var(--emerald);
  --fg-btn: #fff;
  position: relative;
  display: inline-flex; align-items: center; gap: .6em;
  padding: 15px 30px;
  font-weight: 600; font-size: .95rem;
  color: var(--fg-btn);
  border-radius: 100px;
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), color .35s var(--ease);
  background: var(--bg-btn);
  will-change: transform;
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--mint);
  transform: translateY(101%);
  transition: transform .45s var(--ease);
  border-radius: inherit;
}
.btn:hover { box-shadow: var(--shadow-md); }
.btn:hover::before { transform: translateY(0); }
.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translate(4px,-1px); }

.btn--ghost {
  --fg-btn: var(--emerald);
  background: transparent;
  border: 1.5px solid var(--emerald);
}
.btn--ghost::before { background: var(--emerald); }
.btn--ghost:hover { --fg-btn: #fff; color: #fff; }

.btn--light { --bg-btn: #fff; --fg-btn: var(--emerald); }
.btn--light::before { background: var(--cream); }
.btn--light:hover { color: var(--emerald); }

/* ============================================================
   E-COMMERCE LAYER (cart, login, checkout, FAB, maps) — app-like
   ============================================================ */
:root { --z-fab: 1200; --z-drawer: 1300; --z-modal: 1400; }

/* Floating WhatsApp help */
.fab-wa {
  position: fixed; right: 18px; bottom: 22px; z-index: var(--z-fab);
  width: 56px; height: 56px; border-radius: 50%;
  background: #1faf54; color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 28px -6px rgba(31,175,84,.6);
  transition: transform .3s var(--ease); -webkit-tap-highlight-color: transparent;
}
.fab-wa:hover { transform: scale(1.08); }
.fab-wa svg { width: 30px; height: 30px; }
.fab-wa__pulse { position: absolute; inset: 0; border-radius: 50%; background: #1faf54; opacity: .5; animation: fabPulse 2.4s ease-out infinite; z-index: -1; }
@keyframes fabPulse { 0%{transform:scale(1);opacity:.5} 100%{transform:scale(1.8);opacity:0} }
@media (max-width: 768px) { .fab-wa { bottom: 74px; right: 14px; width: 52px; height: 52px; } } /* clear bottom nav */

/* Overlay (shared) */
.scrim { position: fixed; inset: 0; z-index: var(--z-drawer); background: rgba(10,50,47,.5); backdrop-filter: blur(3px); opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s; }
.scrim.open { opacity: 1; visibility: visible; }

/* Cart drawer */
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: var(--z-drawer);
  width: min(420px, 92vw); background: var(--white);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .4s var(--ease);
  box-shadow: -20px 0 60px -20px rgba(0,0,0,.4);
}
.drawer.open { transform: none; }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--border); }
.drawer__head h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--emerald); }
.drawer__close { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; color: var(--ink); transition: background .25s; }
.drawer__close:hover { background: var(--bg-2); }
.drawer__body { flex: 1; overflow-y: auto; padding: 16px 20px; }
.drawer__empty { text-align: center; color: var(--ink-soft); padding: 50px 20px; }
.drawer__empty svg { width: 60px; height: 60px; color: var(--cream); margin-bottom: 14px; }
.citem { display: grid; grid-template-columns: 64px 1fr auto; gap: 14px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--border); }
.citem__img { width: 64px; height: 64px; border-radius: 10px; object-fit: cover; background: var(--bg-2); }
.citem__name { font-weight: 700; font-size: .92rem; color: var(--emerald); }
.citem__price { font-size: .82rem; color: var(--ink-soft); }
.citem__qty { display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; }
.citem__qty button { width: 28px; height: 28px; border-radius: 8px; border: 1px solid var(--border); display: grid; place-items: center; font-size: 1rem; color: var(--emerald); transition: .2s; }
.citem__qty button:hover { background: var(--emerald); color: #fff; }
.citem__qty span { min-width: 24px; text-align: center; font-weight: 700; }
.citem__remove { color: var(--ink-soft); width: 32px; height: 32px; display: grid; place-items: center; border-radius: 8px; }
.citem__remove:hover { color: var(--brown); background: var(--bg-2); }
.drawer__foot { border-top: 1px solid var(--border); padding: 18px 20px calc(18px + env(safe-area-inset-bottom)); background: var(--bg); }
.voucher { display: flex; gap: 8px; margin-bottom: 14px; }
.voucher input { flex: 1; min-width: 0; border: 1px solid var(--border); border-radius: 10px; padding: 11px 14px; font-family: inherit; font-size: .9rem; outline: none; background: #fff; }
.voucher input:focus { border-color: var(--mint); }
.voucher button { padding: 0 16px; border-radius: 10px; background: var(--emerald); color: #fff; font-weight: 600; font-size: .85rem; }
.voucher__msg { font-size: .78rem; margin: -8px 0 12px; }
.voucher__msg.ok { color: #1faf54; }
.voucher__msg.err { color: #c0492b; }
.summary { font-size: .9rem; }
.summary__row { display: flex; justify-content: space-between; margin-bottom: 8px; color: var(--ink-soft); }
.summary__row.total { font-size: 1.15rem; font-weight: 800; color: var(--emerald); border-top: 1px dashed var(--border); padding-top: 12px; margin-top: 4px; }
.summary__row.disc { color: #1faf54; }

/* Modal (login) + bottom sheet (checkout) */
.modal { position: fixed; inset: 0; z-index: var(--z-modal); display: grid; place-items: center; padding: 20px; opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s; }
.modal.open { opacity: 1; visibility: visible; }
.modal__scrim { position: absolute; inset: 0; background: rgba(10,50,47,.55); backdrop-filter: blur(4px); }
.modal__card { position: relative; background: #fff; border-radius: var(--radius-lg); width: min(400px, 100%); padding: 32px 26px; box-shadow: var(--shadow-lg); transform: translateY(16px) scale(.98); transition: transform .35s var(--ease); text-align: center; }
.modal.open .modal__card { transform: none; }
.modal__close { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; color: var(--ink-soft); }
.modal__close:hover { background: var(--bg-2); }
.modal__logo { height: 46px; margin: 0 auto 18px; }
.modal h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--emerald); margin-bottom: 6px; }
.modal p { color: var(--ink-soft); font-size: .9rem; margin-bottom: 24px; }
.btn-google { width: 100%; display: flex; align-items: center; justify-content: center; gap: 12px; padding: 13px; border: 1.5px solid var(--border); border-radius: 100px; background: #fff; font-weight: 600; font-size: .95rem; color: var(--ink); transition: .25s var(--ease); }
.btn-google:hover { box-shadow: var(--shadow-md); border-color: var(--mint); }
.btn-google svg { width: 20px; height: 20px; }
.modal__divider { display: flex; align-items: center; gap: 12px; margin: 18px 0; color: var(--ink-soft); font-size: .78rem; }
.modal__divider::before, .modal__divider::after { content: ""; flex: 1; height: 1px; background: var(--border); }
.modal__field { text-align: left; margin-bottom: 12px; }
.modal__field label { display: block; font-size: .78rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 5px; }
.modal__field input { width: 100%; border: 1px solid var(--border); border-radius: 10px; padding: 12px 14px; font-family: inherit; font-size: .95rem; outline: none; }
.modal__field input:focus { border-color: var(--mint); }
.modal__fineprint { font-size: .72rem; color: var(--ink-soft); margin-top: 16px; }

/* Checkout = bottom sheet on mobile, modal on desktop */
.sheet__card { text-align: left; max-width: 460px; }
.sheet__summary { background: var(--bg); border-radius: var(--radius-md); padding: 14px 16px; margin: 16px 0; font-size: .88rem; }
@media (max-width: 600px) {
  .modal { align-items: flex-end; padding: 0; }
  .modal__card { width: 100%; border-radius: var(--radius-xl) var(--radius-xl) 0 0; transform: translateY(100%); padding-bottom: calc(26px + env(safe-area-inset-bottom)); }
  .modal.open .modal__card { transform: none; }
}

/* Maps */
.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); height: 100%; min-height: 280px; }
.map-embed iframe { width: 100%; height: 100%; min-height: 280px; border: 0; display: block; }

/* Product badge (best seller / recommended) */
.card__badge { position: absolute; top: 12px; left: 12px; z-index: 2; font-size: .62rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 5px 10px; border-radius: 100px; color: #fff; }
.card__badge--best { background: var(--brown); }
.card__badge--reco { background: var(--mint); }

/* marketplace secondary row (bottom, least priority) */
.market-row { display: flex; align-items: center; justify-content: center; gap: 8px 16px; flex-wrap: wrap; margin-top: 20px; font-size: .8rem; }
.market-row span { opacity: .65; color: var(--ink-soft); }
.market-row a { font-weight: 600; color: var(--emerald); text-decoration: underline; text-underline-offset: 3px; opacity: .9; transition: opacity .25s; }
.market-row a:hover { opacity: 1; }
.market-row--light span { color: rgba(255,255,255,.7); }
.market-row--light a { color: #fff; }

.btn--orange { --bg-btn: var(--orange); --fg-btn: #fff; }
.btn--orange::before { background: var(--orange-2); }
.btn--orange:hover { color: #fff; }

.btn--wa { --bg-btn: #1faf54; }
.btn--wa::before { background: #157f3d; }
.btn--block { width: 100%; justify-content: center; }
.btn--sm { padding: 11px 20px; font-size: .85rem; }

/* link with animated underline */
.link-u { position: relative; font-weight: 600; color: var(--emerald); }
.link-u::after {
  content: ""; position: absolute; left: 0; bottom: -3px;
  width: 100%; height: 1.5px; background: currentColor;
  transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease);
}
.link-u:hover::after { transform: scaleX(1); transform-origin: left; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 14px var(--pad);
  background: rgba(15,71,67,0);
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.nav.scrolled {
  background: rgba(10,50,47,.92);
  backdrop-filter: blur(14px);
  padding-block: 10px;
  box-shadow: 0 10px 40px -20px rgba(0,0,0,.6);
}
.nav__logo { display: flex; align-items: center; gap: 11px; color: #fff; }
.nav__logo-mark { height: 40px; width: 40px; border-radius: 11px; object-fit: cover; box-shadow: 0 0 0 1px rgba(255,255,255,.14); }
.nav__logo-word { font-family: var(--font-body); font-weight: 800; letter-spacing: .14em; font-size: .98rem; color: #fff; line-height: 1; text-transform: uppercase; }
.nav__logo-word em { font-style: normal; font-weight: 500; color: var(--cream); }
@media (max-width: 420px) { .nav__logo-word { display: none; } }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a {
  color: var(--cream); font-weight: 500; font-size: .94rem;
  position: relative; transition: color .3s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 100%;
  background: var(--mint); transform: scaleX(0); transform-origin: right;
  transition: transform .35s var(--ease);
}
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__right { display: flex; align-items: center; gap: 18px; }

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a { display: inline-flex; align-items: center; gap: 5px; }
.has-dropdown > a .caret { transition: transform .35s var(--ease); display: inline-block; }
.has-dropdown:hover > a .caret { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: 100%; left: 50%; transform: translate(-50%, 10px);
  min-width: 264px; padding: 8px;
  background: var(--emerald-2);
  border: 1px solid rgba(209,182,169,.15);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.dropdown::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px; } /* hover bridge */
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 12px);
}
.dropdown a {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 14px; border-radius: 8px;
  color: var(--cream) !important; font-size: .9rem; font-weight: 500;
  transition: background .25s var(--ease), padding .25s var(--ease), color .25s;
}
.dropdown a::after { display: none; }
.dropdown a .da {
  font-family: var(--font-body); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--mint); opacity: 0; transform: translateX(-6px); transition: .3s var(--ease);
}
.dropdown a:hover { background: rgba(255,255,255,.07); color: #fff !important; padding-left: 18px; }
.dropdown a:hover .da { opacity: 1; transform: none; }

.lang {
  display: inline-flex; align-items: center;
  border: 1px solid rgba(209,182,169,.4); border-radius: 100px;
  overflow: hidden; font-size: .78rem; font-weight: 700;
}
.lang button { padding: 6px 12px; color: var(--cream); transition: .3s; letter-spacing: .04em; }
.lang button.active { background: var(--mint); color: var(--emerald-2); }

.cart {
  position: relative; color: #fff; display: inline-flex; align-items: center;
  transition: transform .3s var(--ease);
}
.cart:hover { transform: translateY(-2px); }
.cart__badge {
  position: absolute; top: -8px; right: -10px;
  background: var(--brown); color: #fff;
  font-size: .65rem; font-weight: 700;
  min-width: 18px; height: 18px; border-radius: 100px;
  display: grid; place-items: center; padding: 0 4px;
}
.nav__burger { display: none; color: #fff; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  color: #fff; overflow: hidden;
  padding-top: 90px;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media iframe, .hero__media img {
  position: absolute; top: 50%; left: 50%;
  width: 100vw; height: 56.25vw; min-height: 100vh; min-width: 177.78vh;
  transform: translate(-50%,-50%);
  object-fit: cover; pointer-events: none; border: 0;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,50,47,.55) 0%, rgba(10,50,47,.35) 40%, rgba(10,50,47,.78) 100%);
}
.hero__inner { position: relative; z-index: 2; max-width: 760px; }
.hero .eyebrow { color: var(--cream); }
.hero h1 { font-size: clamp(2.7rem, 6.6vw, 5.3rem); margin: 18px 0 22px; }
.hero h1 em { font-style: italic; color: var(--cream); font-variation-settings: "SOFT" 100; }
.hero__sub { font-size: clamp(1rem,1.7vw,1.25rem); color: rgba(255,255,255,.86); max-width: 540px; margin-bottom: 34px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,.7); font-size: .72rem; letter-spacing: .2em;
  text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero__scroll span { width: 1px; height: 38px; background: linear-gradient(rgba(255,255,255,.7), transparent); animation: scrollLine 2s var(--ease) infinite; }
@keyframes scrollLine { 0%{transform:scaleY(0);transform-origin:top} 45%{transform:scaleY(1);transform-origin:top} 55%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* ============================================================
   MARQUEE — Indonesian origins
   ============================================================ */
.marquee {
  background: var(--emerald); color: var(--cream);
  padding-block: 16px; overflow: hidden; white-space: nowrap;
  border-block: 1px solid rgba(255,255,255,.08);
}
.marquee__track { display: inline-flex; gap: 48px; animation: marq 32s linear infinite; will-change: transform; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee span { font-family: var(--font-display); font-size: 1.1rem; font-style: italic; display: inline-flex; align-items: center; gap: 48px; }
.marquee span::after {
  content: ""; width: 16px; height: 16px; font-style: normal; opacity: .55;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233F9F9E' stroke-width='1.5'%3E%3Cellipse cx='12' cy='12' rx='6.5' ry='9'/%3E%3Cpath d='M9.5 3.5c2.5 4 2.5 13 0 17'/%3E%3C/svg%3E") center/contain no-repeat;
}
@keyframes marq { to { transform: translateX(-50%); } }

/* ============================================================
   STORY (Indonesian origin) — signature illustrations
   ============================================================ */
.story { background: var(--bg); }
.story__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 6vw, 80px);
  align-items: center;
}
.story__art { position: relative; }
.story__art .main { width: 100%; display: block; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.story__art video.main { aspect-ratio: 16/11; object-fit: cover; }
.story__art .float {
  position: absolute; width: 42%; border-radius: var(--radius-md);
  box-shadow: var(--shadow-md); border: 5px solid var(--bg);
  bottom: -34px; right: -22px;
}
.story__badge {
  position: absolute; top: -22px; left: -22px;
  background: var(--brown); color: #fff; border-radius: 50%;
  width: 116px; height: 116px; display: grid; place-items: center; text-align: center;
  font-family: var(--font-display); font-style: italic; font-size: .95rem; line-height: 1.2;
  box-shadow: var(--shadow-md); padding: 10px;
  border: 1px solid rgba(255,255,255,.18);
}
.story__stats { display: flex; gap: 36px; margin-top: 32px; flex-wrap: wrap; }
.story__stats .num { font-family: var(--font-display); font-size: 2.4rem; color: var(--emerald); line-height: 1; }
.story__stats .lbl { font-size: .82rem; color: var(--ink-soft); letter-spacing: .02em; }
.story p { margin-bottom: 18px; max-width: 52ch; }

/* ============================================================
   CATEGORY BLOCKS
   ============================================================ */
.cat { background: var(--bg-2); }
.cat__block {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  gap: clamp(28px, 5vw, 70px);
  padding-block: clamp(40px, 6vw, 70px);
  border-bottom: 1px solid var(--border);
}
.cat__block:last-child { border-bottom: none; }
.cat__block:nth-child(even) .cat__art { order: 2; }
.cat__art {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
  position: relative; aspect-ratio: 4/3; background: var(--emerald);
}
.cat__art img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.cat__block:hover .cat__art img { transform: scale(1.05); }
.cat__text h3 { font-size: clamp(1.6rem, 3.2vw, 2.5rem); margin: 12px 0 14px; }
.cat__text p { color: var(--ink-soft); margin-bottom: 22px; max-width: 46ch; }
.tag {
  display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--brown);
  background: rgba(122,66,28,.09); padding: 6px 12px; border-radius: 100px;
}

/* ============================================================
   PRODUCT GRID
   ============================================================ */
.shop__filter {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
  margin: 32px 0 44px;
}
.chip {
  padding: 9px 18px; border-radius: 100px; font-size: .85rem; font-weight: 600;
  border: 1px solid var(--border); color: var(--ink-soft);
  transition: .3s var(--ease); background: #fff;
}
.chip:hover { border-color: var(--emerald); color: var(--emerald); }
.chip.active { background: var(--emerald); color: #fff; border-color: var(--emerald); }

.grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap);
}
.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card__media { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--bg-2); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.card:hover .card__media img { transform: scale(1.07); }
.card__add {
  position: absolute; right: 12px; bottom: 12px;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--emerald); color: #fff; display: grid; place-items: center;
  font-size: 1.2rem; transform: translateY(10px); opacity: 0;
  transition: .4s var(--ease); box-shadow: var(--shadow-md);
}
.card:hover .card__add { transform: translateY(0); opacity: 1; }
.card__add:hover { background: var(--mint); transform: scale(1.1) !important; }
.card__body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card__cat { font-size: .66rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--mint); }
.card__name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; }
.card__notes { font-size: .8rem; color: var(--ink-soft); flex: 1; }
.card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; }
.card__price { font-weight: 800; color: var(--emerald); font-size: 1.05rem; }
.card__price small { font-weight: 500; color: var(--ink-soft); font-size: .72rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi { background: var(--emerald); color: #fff; }
.testi .eyebrow { color: var(--cream); }
.testi .section-head h2 { color: #fff; }
.testi__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--gap); margin-top: 48px; }
.tcard {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md); padding: 28px; display: flex; flex-direction: column; gap: 14px;
  backdrop-filter: blur(4px); transition: transform .4s var(--ease), background .4s;
}
.tcard:hover { transform: translateY(-6px); background: rgba(255,255,255,.09); }
.tcard__stars { color: var(--gold); letter-spacing: 2px; }
.tcard__text { font-family: var(--font-display); font-size: 1.12rem; font-style: italic; line-height: 1.5; color: #fff; }
.tcard__who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.tcard__avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--mint); color: var(--emerald-2); display: grid; place-items: center; font-weight: 800; }
.tcard__name { font-weight: 700; font-size: .92rem; }
.tcard__src { font-size: .74rem; color: var(--cream); }
.testi__logos { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; align-items: center; margin-top: 50px; opacity: .85; }
.testi__logos span { font-weight: 700; letter-spacing: .04em; color: var(--cream); display: inline-flex; align-items: center; gap: 8px; }

/* ============================================================
   INFLUENCER VIDEOS
   ============================================================ */
.infl { background: var(--bg); }
.infl__grid {
  display: flex; gap: var(--gap); margin-top: 48px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 16px; scroll-padding-left: var(--pad);
  -webkit-overflow-scrolling: touch;
}
.infl__grid::-webkit-scrollbar { height: 8px; }
.infl__grid::-webkit-scrollbar-thumb { background: var(--cream); border-radius: 100px; }
.vcard {
  position: relative; flex: 0 0 clamp(220px, 26vw, 286px); aspect-ratio: 9/16;
  border-radius: var(--radius-md); overflow: hidden; scroll-snap-align: start;
  background: linear-gradient(160deg, var(--emerald), var(--emerald-2));
  box-shadow: var(--shadow-md);
  display: flex; align-items: flex-end; color: #fff;
  transition: transform .4s var(--ease);
}
.vcard:hover { transform: translateY(-6px); }
.vcard img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.vcard__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,.9);
  display: grid; place-items: center; color: var(--emerald); font-size: 1.4rem;
  transition: .4s var(--ease);
}
.vcard:hover .vcard__play { transform: translate(-50%,-50%) scale(1.12); background: #fff; }
.vcard__meta { position: relative; z-index: 2; padding: 18px; }
.vcard__meta b { font-weight: 700; }
.vcard__meta small { color: var(--cream); }
.infl__note { text-align: center; margin-top: 26px; font-size: .85rem; color: var(--ink-soft); }
.vcard__frame { position: absolute; inset: 0; }
.vcard__frame iframe { width: 100%; height: 100%; border: 0; }

/* ---- Product LP video section ---- */
.pvideo { text-align: center; }
.pvideo__wrap {
  position: relative; max-width: 420px; margin: 36px auto 0;
  aspect-ratio: 9/16; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); background: var(--emerald-2);
}
.pvideo__wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.pvideo__cap { margin-top: 16px; font-size: .85rem; color: var(--ink-soft); }

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta {
  background: linear-gradient(135deg, var(--brown), #5e2f12);
  color: #fff; border-radius: var(--radius-xl);
  padding: clamp(40px, 7vw, 80px);
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center;
  position: relative; overflow: hidden;
}
.cta::after {
  content: ""; position: absolute; right: -60px; bottom: -80px; width: 320px; height: 320px; opacity: .07;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1'%3E%3Cellipse cx='12' cy='12' rx='6.5' ry='9'/%3E%3Cpath d='M9.5 3.5c2.5 4 2.5 13 0 17'/%3E%3C/svg%3E") center/contain no-repeat;
}
.cta h2 { font-size: clamp(1.9rem, 4vw, 3rem); color: #fff; }
.cta p { color: rgba(255,255,255,.85); margin: 14px 0 0; }
.cta__actions { display: flex; flex-direction: column; gap: 12px; }
.market { display: flex; gap: 10px; flex-wrap: wrap; }
.market a {
  flex: 1; min-width: 130px; display: flex; align-items: center; justify-content: center; gap: 8px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  padding: 12px 14px; border-radius: 100px; font-weight: 600; font-size: .88rem;
  transition: .3s var(--ease);
}
.market a:hover { background: #fff; color: var(--brown); transform: translateY(-2px); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--emerald-2); color: var(--cream); padding-block: clamp(50px,7vw,80px) 110px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer__logo { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.footer__logo img { height: 46px; width: 46px; border-radius: 12px; object-fit: cover; }
.footer__logo .nav__logo-word { font-size: 1.05rem; }
.footer p { font-size: .9rem; color: rgba(209,182,169,.8); max-width: 32ch; }
.footer h4 { font-family: var(--font-body); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--mint); margin-bottom: 18px; }
.footer ul li { margin-bottom: 11px; }
.footer ul a { font-size: .9rem; color: var(--cream); transition: .3s; }
.footer ul a:hover { color: #fff; padding-left: 4px; }
.footer__social { display: flex; gap: 12px; margin-top: 18px; }
.footer__social a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(209,182,169,.3);
  display: grid; place-items: center; transition: .3s var(--ease);
}
.footer__social a:hover { background: var(--mint); color: var(--emerald-2); border-color: var(--mint); transform: translateY(-3px); }
.footer__bottom { border-top: 1px solid rgba(209,182,169,.15); margin-top: 50px; padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .8rem; color: rgba(209,182,169,.7); }

/* ============================================================
   MOBILE BOTTOM NAV
   ============================================================ */
.bottomnav { display: none; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid { grid-template-columns: repeat(3, 1fr); }
  .testi__grid, .infl__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav__links, .nav .lang { display: none; }
  .nav__burger { display: inline-flex; }

  .hero { min-height: 88vh; }
  .hero__media img, .hero__media iframe { min-height: 88vh; }

  .story__grid { grid-template-columns: 1fr; }
  .story__art { max-width: 460px; margin-inline: auto; }
  .story__badge { width: 92px; height: 92px; font-size: .8rem; }

  .cat__block { grid-template-columns: 1fr; gap: 22px; padding-block: 38px; }
  .cat__block:nth-child(even) .cat__art { order: 0; }
  .cat__art { aspect-ratio: 16/10; }

  .grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .card__name { font-size: 1rem; }
  .card__add { opacity: 1; transform: none; width: 38px; height: 38px; }

  .testi__grid { grid-template-columns: 1fr; }

  .cta { grid-template-columns: 1fr; text-align: center; }
  .cta__actions { align-items: stretch; }
  .market a { flex: 1 1 calc(50% - 10px); }

  .footer { padding-bottom: 100px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }

  /* Mobile bottom nav */
  .bottomnav {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,.96); backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
    justify-content: space-around;
  }
  .bottomnav a {
    display: flex; flex-direction: column; align-items: center; gap: 3px;
    font-size: .64rem; font-weight: 600; color: var(--ink-soft); flex: 1; padding: 4px 0;
    transition: color .25s;
  }
  .bottomnav a svg { width: 22px; height: 22px; }
  .bottomnav a.active, .bottomnav a:hover { color: var(--emerald); }
}

@media (max-width: 420px) {
  .footer__grid { grid-template-columns: 1fr; }
  .story__stats { gap: 24px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { justify-content: center; }
}

/* Mobile menu overlay */
.mmenu {
  position: fixed; inset: 0; z-index: 1100; background: var(--emerald-2);
  display: flex; flex-direction: column; justify-content: center; gap: 4px; padding: 80px var(--pad) 40px;
  overflow-y: auto;
  transform: translateY(-100%); transition: transform .5s var(--ease); visibility: hidden;
}
.mmenu.open { transform: none; visibility: visible; }
.mmenu a { color: #fff; font-family: var(--font-display); font-size: 1.85rem; padding: 7px 0; opacity: .9; }
.mmenu a:hover { opacity: 1; padding-left: 10px; }
.mmenu__group > span { color: var(--mint); font-family: var(--font-display); font-size: 1.85rem; display: block; padding: 7px 0; }
.mmenu__sub { padding-left: 16px; border-left: 2px solid rgba(63,159,158,.4); margin: 2px 0 8px; }
.mmenu__sub a { display: block; font-family: var(--font-body); font-size: 1.02rem; font-weight: 600; color: var(--cream); padding: 6px 0; }
.mmenu__close { position: absolute; top: 20px; right: var(--pad); color: #fff; font-size: 2rem; }
.mmenu__lang { margin-top: 22px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   PRODUCT LANDING PAGE (shared)
   ============================================================ */
.psubnav {
  position: sticky; top: 0; z-index: 900;
  background: rgba(247,243,236,.9); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 6px; overflow-x: auto;
  padding: 10px var(--pad);
}
.psubnav .back { font-weight: 600; color: var(--emerald); margin-right: auto; white-space: nowrap; }
.psubnav a:not(.back) { font-size: .85rem; font-weight: 600; color: var(--ink-soft); padding: 8px 14px; border-radius: 100px; white-space: nowrap; transition: .3s; }
.psubnav a.active, .psubnav a:not(.back):hover { background: var(--emerald); color: #fff; }
.psubnav .buy { background: var(--brown); color: #fff; }

.phero { padding-top: 40px; }
.phero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,70px); align-items: center; }
.phero__art { position: relative; display: grid; place-items: center; }
.phero__art .bg-blob { position: absolute; width: 80%; aspect-ratio: 1; background: radial-gradient(circle, rgba(63,159,158,.22), transparent 70%); border-radius: 50%; }
.phero__art img { position: relative; max-width: 78%; filter: drop-shadow(0 30px 50px rgba(15,71,67,.3)); animation: float 6s ease-in-out infinite; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-16px)} }
.phero h1 { font-size: clamp(2.6rem,6vw,4.6rem); margin: 14px 0 16px; }
.pills { display: flex; gap: 10px; flex-wrap: wrap; margin: 22px 0 30px; }
.pill { display: inline-flex; align-items: center; gap: 7px; background: #fff; border: 1px solid var(--border); padding: 9px 16px; border-radius: 100px; font-weight: 600; font-size: .85rem; transition: .3s var(--ease); }
.pill:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--mint); }
.phero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

.specs { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 30px; }
.spec { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 18px; }
.spec .ico { font-size: 1.4rem; color: var(--brown); }
.spec .ico svg { width: 26px; height: 26px; }
.spec .k { font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; color: var(--mint); font-weight: 700; margin: 8px 0 4px; }
.spec .v { font-weight: 700; font-family: var(--font-display); font-size: 1.02rem; }

.meet { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px,5vw,60px); align-items: center; }
.meet__img img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }

.fnotes { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--gap); }
.fnote { background: linear-gradient(160deg, #fff, var(--bg)); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 30px; text-align: center; transition: transform .4s var(--ease); }
.fnote:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.fnote .emoji { font-size: 2.8rem; }
.fnote h4 { font-size: 1.3rem; margin: 12px 0 6px; }
.fnote p { color: var(--ink-soft); font-size: .9rem; }

.origin { background: var(--emerald); color: #fff; border-radius: var(--radius-xl); overflow: hidden; position: relative; }
.origin__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; padding: clamp(34px,5vw,64px); }
.origin .eyebrow { color: var(--cream); }
.origin h2 { color: #fff; font-size: clamp(1.8rem,4vw,2.8rem); margin: 12px 0 16px; }
.origin p { color: rgba(255,255,255,.85); }
.origin__details { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 26px; }
.odetail { border-left: 2px solid var(--mint); padding-left: 14px; }
.odetail .k { font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; color: var(--cream); }
.odetail .v { font-family: var(--font-display); font-size: 1.15rem; }
.origin__img img { border-radius: var(--radius-lg); }

.love { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--gap); }
.lcard { padding: 26px; border-radius: var(--radius-md); background: var(--bg); border: 1px solid var(--border); transition: .4s var(--ease); }
.lcard:hover { background: #fff; transform: translateY(-5px); box-shadow: var(--shadow-md); }
.lcard .n { font-family: var(--font-display); font-size: 2rem; color: var(--mint); }
.lcard h4 { margin: 6px 0 8px; font-size: 1.1rem; }
.lcard p { font-size: .88rem; color: var(--ink-soft); }

.brew { background: var(--emerald-2); color: #fff; border-radius: var(--radius-xl); padding: clamp(34px,5vw,64px); }
.brew .eyebrow { color: var(--cream); }
.brew h2 { color: #fff; font-size: clamp(1.8rem,4vw,2.6rem); margin: 12px 0 30px; }
.brew__row { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.15); }
.brew__row .k { font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; color: var(--mint); margin-bottom: 6px; }
.brew__row .v { font-family: var(--font-display); font-size: 1.5rem; }
.brew__tip { margin-top: 24px; background: rgba(255,255,255,.07); border-radius: var(--radius-md); padding: 18px; font-size: .9rem; color: var(--cream); }

.enjoy { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--gap); }
.ecard { border-radius: var(--radius-md); overflow: hidden; background: #fff; border: 1px solid var(--border); transition: .4s var(--ease); }
.ecard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.ecard__img { aspect-ratio: 16/11; background: var(--bg-2); display: grid; place-items: center; font-size: 3rem; color: var(--emerald); }
.ecard__img svg { width: 48px; height: 48px; }
.ecard__body { padding: 20px; }
.ecard__body h4 { font-size: 1.15rem; margin-bottom: 6px; }
.ecard__body p { font-size: .88rem; color: var(--ink-soft); }

.pcta { background: linear-gradient(135deg, var(--brown), #5e2f12); color: #fff; border-radius: var(--radius-xl); padding: clamp(40px,6vw,80px); text-align: center; position: relative; overflow: hidden; }
.pcta h2 { color: #fff; font-size: clamp(2rem,4.5vw,3.2rem); margin-bottom: 10px; }
.pcta p { color: rgba(255,255,255,.85); margin-bottom: 24px; }
.sizes { display: inline-flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 24px; }
.size { padding: 10px 18px; border: 1px solid rgba(255,255,255,.4); border-radius: 100px; font-weight: 600; cursor: pointer; transition: .3s; }
.size.active, .size:hover { background: #fff; color: var(--brown); }
.pcta__buttons { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.pcta__price { font-family: var(--font-display); font-size: 2.2rem; margin-bottom: 18px; }

@media (max-width: 768px) {
  .phero__grid, .meet, .origin__inner { grid-template-columns: 1fr; }
  .fnotes, .love, .enjoy { grid-template-columns: 1fr; }
  .specs { grid-template-columns: 1fr 1fr; }
  .origin__details { grid-template-columns: 1fr 1fr; }
  .brew__row { grid-template-columns: 1fr 1fr; gap: 16px; }
  .origin__img { order: -1; }
  .meet__img { order: -1; }
}
@media (max-width: 420px) { .brew__row, .specs { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   REFERENCE COMPONENTS (shared: category pages + LPs)
   ============================================================ */
/* White nav */
.lpnav { position: sticky; top: 0; z-index: 1000; display: flex; align-items: center; justify-content: space-between; gap: 20px; background: rgba(255,255,255,.92); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); padding: 12px var(--pad); }
.lpnav__logo { display: flex; align-items: center; gap: 10px; }
.lpnav__logo img { height: 38px; width: 38px; border-radius: 10px; }
.lpnav__logo b { font-weight: 800; letter-spacing: .14em; text-transform: uppercase; font-size: .95rem; color: var(--emerald); }
.lpnav__logo b em { font-style: normal; font-weight: 500; color: var(--brown); }
.lpnav__links { display: flex; gap: 28px; align-items: center; }
.lpnav__links > a, .lpnav__links > .has-dropdown > a { font-size: .9rem; font-weight: 600; color: var(--ink-soft); position: relative; transition: color .3s; display: inline-flex; align-items: center; gap: 5px; }
.lpnav__links > a::after, .lpnav__links > .has-dropdown > a::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 100%; background: var(--orange); transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease); }
.lpnav__links > a:hover, .lpnav__links > a.active, .lpnav__links > .has-dropdown:hover > a { color: var(--emerald); }
.lpnav__links > a:hover::after, .lpnav__links > a.active::after, .lpnav__links > .has-dropdown:hover > a::after { transform: scaleX(1); transform-origin: left; }
.lpnav__links .has-dropdown > a .caret { transition: transform .35s var(--ease); }
.lpnav__links .has-dropdown:hover > a .caret { transform: rotate(180deg); }
.lpnav__right { display: flex; align-items: center; gap: 14px; }
.lpnav .lang { border-color: rgba(15,71,67,.25); }
.lpnav .lang button { color: var(--ink-soft); }
.lpnav .lang button.active { background: var(--emerald); color: #fff; }
.lpnav__burger { display: none; color: var(--emerald); }

/* Category hero */
.chero { position: relative; overflow: hidden; background: var(--bg-2); text-align: center; padding: clamp(70px,10vw,120px) 0 clamp(50px,7vw,80px); }
.chero::after { content: ""; position: absolute; right: -80px; bottom: -120px; width: 360px; height: 360px; opacity: .06; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230F4743' stroke-width='1'%3E%3Cellipse cx='12' cy='12' rx='6.5' ry='9'/%3E%3Cpath d='M9.5 3.5c2.5 4 2.5 13 0 17'/%3E%3C/svg%3E") center/contain no-repeat; }
.chero__tag { display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #fff; background: var(--orange); padding: 7px 16px; border-radius: 100px; margin-bottom: 18px; }
.chero h1 { font-size: clamp(2.4rem,5.5vw,4.2rem); color: var(--emerald); max-width: 14ch; margin: 0 auto 18px; }
.chero__tagline { font-size: clamp(1rem,1.7vw,1.2rem); color: var(--ink-soft); max-width: 52ch; margin: 0 auto; position: relative; z-index: 1; }
.chero__count { margin-top: 22px; font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--mint); }
.chero__lineup { display: flex; justify-content: center; align-items: flex-end; gap: clamp(6px, 1.5vw, 20px); margin-top: 46px; position: relative; z-index: 1; }
.chero__lineup img { width: clamp(90px, 13vw, 172px); height: auto; border-radius: 12px; filter: drop-shadow(0 16px 28px rgba(15,71,67,.18)); transition: transform .45s var(--ease); }
.chero__lineup img:hover { transform: translateY(-10px); }
@media (max-width: 768px) { .chero__lineup { flex-wrap: wrap; gap: 10px; } .chero__lineup img { width: clamp(74px, 26vw, 120px); } }

/* Category features */
.cfeat { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(24px,4vw,48px); }
.cfeat__item { text-align: center; }
.cfeat__ico { width: 66px; height: 66px; margin: 0 auto 18px; border-radius: 18px; background: rgba(63,159,158,.12); display: grid; place-items: center; color: var(--emerald); }
.cfeat__ico svg { width: 30px; height: 30px; }
.cfeat__item h3 { font-size: 1.25rem; color: var(--emerald); margin-bottom: 8px; }
.cfeat__item p { color: var(--ink-soft); font-size: .92rem; max-width: 36ch; margin: 0 auto; }

/* Reference footer (shared) */
.rfooter { background: var(--emerald-2); color: var(--cream); padding: clamp(50px,7vw,80px) 0 40px; }
.rfooter__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.5fr; gap: 40px; }
.rfooter__logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.rfooter__logo img { height: 42px; width: 42px; border-radius: 11px; }
.rfooter__logo b { font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: #fff; }
.rfooter p { font-size: .9rem; color: rgba(209,182,169,.8); max-width: 34ch; }
.rfooter h4 { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--mint); margin-bottom: 16px; font-family: var(--font-body); }
.rfooter ul li { margin-bottom: 10px; }
.rfooter ul a { font-size: .9rem; color: var(--cream); transition: .3s; }
.rfooter ul a:hover { color: #fff; padding-left: 4px; }
.rnews { display: flex; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); border-radius: 100px; padding: 5px 5px 5px 18px; margin-top: 14px; }
.rnews input { flex: 1; background: none; border: none; color: #fff; font-family: inherit; font-size: .9rem; outline: none; min-width: 0; }
.rnews input::placeholder { color: rgba(209,182,169,.6); }
.rnews button { width: 42px; height: 42px; border-radius: 50%; background: var(--orange); color: #fff; display: grid; place-items: center; transition: .3s var(--ease); flex: 0 0 42px; border: none; }
.rnews button:hover { background: var(--orange-2); transform: translateX(2px); }
.rfooter__social { display: flex; gap: 10px; margin-top: 18px; }
.rfooter__social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(209,182,169,.3); display: grid; place-items: center; transition: .3s var(--ease); }
.rfooter__social a:hover { background: var(--mint); color: var(--emerald-2); transform: translateY(-3px); }
.rfooter__bottom { border-top: 1px solid rgba(209,182,169,.15); margin-top: 46px; padding-top: 22px; text-align: center; font-size: .8rem; color: rgba(209,182,169,.7); }

@media (max-width: 900px) {
  .lpnav__links { display: none; }
  .lpnav__burger { display: inline-flex; }
}
@media (max-width: 768px) {
  .cfeat { grid-template-columns: 1fr; gap: 32px; }
  .rfooter__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .lpnav { gap: 10px; padding-inline: 16px; }
  .lpnav__logo b { display: none; }
  .lpnav .btn--orange { white-space: nowrap; padding: 9px 16px; font-size: .82rem; }
  .lpnav .lang button { padding: 5px 9px; }
  .rfooter__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   REAL LOGO (wordmark) + inline media
   ============================================================ */
.brandmark { height: 34px; width: auto; display: block; }
.brandmark-pill { display: inline-flex; align-items: center; background: #fff; border-radius: 10px; padding: 6px 11px; }
.brandmark-pill img { height: 26px; width: auto; display: block; }
.lpnav__logo .brandmark, .rfooter__logo .brandmark, .footer__logo .brandmark { width: auto !important; border-radius: 0 !important; }
.lpnav__logo .brandmark { height: 36px !important; }
.rfooter__logo .brandmark, .footer__logo .brandmark { height: 40px !important; }
@media (max-width: 560px) { .brandmark { height: 30px; } .lpnav__logo .brandmark { height: 32px !important; } }

/* Category block as video */
.cat__art--video { aspect-ratio: 16/9; }
.cat__art iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Story floating video */
.story__art video.float { aspect-ratio: 16/11; object-fit: cover; }

/* ============================================================
   PRODUCT LP — Reference-style sections (hero/meet/flavor/origin/
   brewing/CTA) used by woocommerce/content-single-product.php.
   Ported from produk/*.html inline <style> blocks (not present in
   the base site's shared stylesheet originally).
   ============================================================ */
.lp { background: var(--bg); }

.rhero { position: relative; overflow: hidden; padding: clamp(30px,5vw,60px) 0 clamp(50px,7vw,90px); }
.rhero__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(30px,5vw,60px); align-items: center; }
.rhero h1 { font-size: clamp(2.8rem,6.5vw,5rem); color: var(--emerald); margin: 14px 0 18px; }
.rhero .lead { max-width: 42ch; }
.rhero__desc { color: var(--ink-soft); margin-top: 14px; max-width: 46ch; }
.rhero__pills { display: flex; gap: 12px; flex-wrap: wrap; margin: 28px 0; }
.fruitpill { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 10px 16px 10px 10px; font-weight: 700; font-size: .9rem; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease); }
.fruitpill:hover { transform: translateY(-3px); }
.fruitpill svg { width: 30px; height: 30px; }
.rhero__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.rhero__art { position: relative; display: grid; place-items: center; min-height: 360px; }
.rhero__blob { position: absolute; width: 96%; height: 92%; right: -4%; bottom: 0;
  background: linear-gradient(150deg, var(--leaf), var(--emerald));
  border-radius: 46% 54% 48% 52% / 56% 44% 56% 44%; }
.rhero__product { position: relative; max-width: 86%; filter: drop-shadow(0 30px 45px rgba(15,71,67,.4)); animation: float 6s ease-in-out infinite; }
.rhero__orange { position: absolute; top: 6%; right: 4%; width: clamp(70px,10vw,120px); animation: spin 26s linear infinite; }
@keyframes spin { to { transform: rotate(360deg);} }

.rhead { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.rhead .eyebrow { display: inline-block; margin-bottom: 12px; }
.rhead h2 { font-size: clamp(2rem,4.4vw,3.2rem); color: var(--emerald); }

.rspecs { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 28px; }
.rspec { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px 16px; text-align: center; transition: transform .35s var(--ease), box-shadow .35s; }
.rspec:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.rspec__ico { width: 48px; height: 48px; margin: 0 auto 12px; border-radius: 50%; background: rgba(63,159,158,.14); display: grid; place-items: center; color: var(--emerald); }
.rspec__ico svg { width: 24px; height: 24px; }
.rspec__k { font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; color: var(--mint); font-weight: 700; margin-bottom: 5px; }
.rspec__v { font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; color: var(--emerald); }

.rmeet { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(30px,5vw,60px); align-items: center; }
.rmeet__img { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-md); }
.rmeet h2 { font-size: clamp(1.9rem,4vw,2.8rem); color: var(--emerald); margin: 10px 0 14px; }
.rmeet p { color: var(--ink-soft); }

.rvideo__wrap { position: relative; max-width: 400px; margin: 36px auto 0; aspect-ratio: 9/16; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--emerald-2); }
.rvideo__wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.rvideo__cap { text-align: center; margin-top: 14px; font-size: .85rem; color: var(--ink-soft); }

.rflavor { background: var(--bg-2); }
.rfgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--gap); }
.rfcard { background: var(--yellow); border: 1px solid #efe2c4; border-radius: var(--radius-lg); padding: 26px; display: flex; gap: 18px; align-items: center; transition: transform .4s var(--ease), box-shadow .4s; }
.rfcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.rfcard__fruit { flex: 0 0 64px; width: 64px; height: 64px; }
.rfcard__fruit svg { width: 100%; height: 100%; }
.rfcard h4 { font-size: 1.25rem; color: var(--emerald); margin-bottom: 6px; }
.rfcard p { font-size: .88rem; color: var(--ink-soft); }

.rorigin__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,60px); align-items: center; }
.rorigin__img img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.rorigin h2 { font-size: clamp(1.9rem,4vw,2.8rem); color: var(--emerald); margin: 10px 0 14px; }
.rorigin p { color: var(--ink-soft); }
.rorigin .rspecs { grid-template-columns: 1fr 1fr; }
.rorigin .rspec { text-align: left; display: flex; align-items: center; gap: 14px; padding: 16px; }
.rorigin .rspec__ico { margin: 0; flex: 0 0 48px; }

.rlove { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--gap); }
.rlove__item { text-align: center; padding: 10px; }
.rlove__ico { width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 50%; background: var(--emerald); display: grid; place-items: center; color: #fff; transition: transform .4s var(--ease); }
.rlove__ico svg { width: 30px; height: 30px; }
.rlove__item:hover .rlove__ico { transform: translateY(-5px) scale(1.05); }
.rlove h4 { font-size: 1.1rem; color: var(--emerald); margin-bottom: 6px; }
.rlove p { font-size: .88rem; color: var(--ink-soft); }

.rbrew { background: linear-gradient(160deg, var(--emerald), var(--emerald-2)); color: #fff; border-radius: var(--radius-xl); padding: clamp(34px,5vw,60px); }
.rbrew__top { display: grid; grid-template-columns: 200px 1fr; gap: clamp(24px,4vw,48px); align-items: center; }
.rbrew__v60 { color: rgba(255,255,255,.8); }
.rbrew__v60 svg { width: 100%; height: auto; }
.rbrew .eyebrow { color: var(--cream); }
.rbrew__label { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--cream); font-weight: 700; margin-bottom: 18px; }
.rrecipe { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.rrec { display: flex; gap: 12px; align-items: flex-start; }
.rrec svg { width: 26px; height: 26px; color: var(--mint); flex: 0 0 26px; margin-top: 2px; }
.rrec span { display: block; font-size: .72rem; color: var(--cream); }
.rrec b { font-family: var(--font-display); font-size: 1.4rem; display: block; line-height: 1.1; }
.rrec small { font-size: .68rem; color: rgba(255,255,255,.6); }
.rpour { margin-top: 36px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.15); }
.rpour__steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; position: relative; margin-top: 22px; }
.rpour__steps::before { content: ""; position: absolute; top: 7px; left: 12%; right: 12%; height: 2px; background: rgba(255,255,255,.2); }
.rpour__step { text-align: center; position: relative; }
.rpour__dot { width: 16px; height: 16px; border-radius: 50%; background: var(--mint); border: 3px solid var(--emerald-2); margin: 0 auto 12px; position: relative; z-index: 1; }
.rpour__step b { font-family: var(--font-display); font-size: 1.05rem; display: block; }
.rpour__ml { font-size: 1.5rem; font-weight: 800; }
.rpour__step small { color: var(--cream); font-size: .78rem; }
.rbrew__tip { margin-top: 28px; background: rgba(251,243,221,.12); border-left: 3px solid var(--gold); border-radius: 8px; padding: 16px 18px; font-size: .9rem; color: var(--cream); }

.renjoy { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--gap); }
.recard { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s; }
.recard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.recard__top { aspect-ratio: 16/10; background: linear-gradient(160deg, var(--bg-2), var(--cream)); display: grid; place-items: center; color: var(--emerald); }
.recard__top svg { width: 52px; height: 52px; }
.recard__body { padding: 22px; }
.recard__body h4 { font-size: 1.2rem; color: var(--emerald); margin-bottom: 6px; }
.recard__body p { font-size: .88rem; color: var(--ink-soft); }

.rcta { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--emerald), var(--emerald-2)); color: #fff; border-radius: var(--radius-xl); padding: clamp(40px,6vw,72px); display: grid; grid-template-columns: 1.3fr .7fr; gap: 40px; align-items: center; }
.rcta__leaf { position: absolute; opacity: .12; color: var(--cream); pointer-events: none; }
.rcta__leaf.l1 { top: -30px; left: -20px; width: 180px; transform: rotate(20deg); }
.rcta__leaf.l2 { bottom: -40px; right: 30%; width: 150px; transform: rotate(-150deg); }
.rcta h2 { color: #fff; font-size: clamp(2rem,4.5vw,3rem); margin-bottom: 8px; }
.rcta p { color: rgba(255,255,255,.85); margin-bottom: 14px; }
.rcta__price { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 22px; }
.rcta__buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.rcta__art { position: relative; z-index: 1; display: grid; place-items: center; }
.rcta__art img { max-width: 78%; filter: drop-shadow(0 20px 35px rgba(0,0,0,.35)); }

@media (max-width: 900px) {
  .rspecs { grid-template-columns: 1fr 1fr; }
  .rlove { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .rhero__grid, .rmeet, .rorigin__grid, .rcta { grid-template-columns: 1fr; }
  .rfgrid, .renjoy { grid-template-columns: 1fr; }
  .rbrew__top { grid-template-columns: 1fr; }
  .rbrew__v60 { max-width: 150px; margin: 0 auto; }
  .rrecipe { grid-template-columns: 1fr 1fr; gap: 22px; }
  .rmeet__img { order: -1; max-width: 380px; margin-inline: auto; }
  .rorigin__img { order: -1; }
  .rcta { text-align: center; }
  .rcta__buttons { justify-content: center; }
  .rcta__art { display: none; }
}
@media (max-width: 480px) {
  .rspecs, .rlove, .rrecipe, .rpour__steps { grid-template-columns: 1fr; }
  .rpour__steps::before { display: none; }
  .rhero__pills .fruitpill { flex: 1 1 100%; }
}

/* ============================================================
   WooCommerce defaults — product tabs & related products
   (rendered via woocommerce_after_single_product_summary, which
   we deliberately kept so reviews/related-products plugins still
   work; WooCommerce ships zero styling of its own, so this brings
   it in line with the rest of the design system.)
   ============================================================ */
.woocommerce-tabs { max-width: var(--max); margin: 0 auto; padding: clamp(40px,6vw,72px) var(--pad) 0; }
.woocommerce-tabs ul.tabs { display: flex; gap: 8px; flex-wrap: wrap; list-style: none; margin: 0 0 28px; padding: 0; border-bottom: 1px solid var(--border); }
.woocommerce-tabs ul.tabs li { margin: 0; }
.woocommerce-tabs ul.tabs li a { display: inline-block; padding: 12px 20px; font-family: var(--font-body); font-weight: 700; font-size: .92rem; color: var(--ink-soft); border-bottom: 2px solid transparent; margin-bottom: -1px; transition: color .25s, border-color .25s; }
.woocommerce-tabs ul.tabs li a:hover { color: var(--emerald); }
.woocommerce-tabs ul.tabs li.active a { color: var(--emerald); border-bottom-color: var(--orange); }
.woocommerce-tabs .panel { color: var(--ink-soft); line-height: 1.7; }
.woocommerce-tabs .panel h2 { font-family: var(--font-display); color: var(--emerald); font-size: clamp(1.4rem,3vw,1.9rem); margin-bottom: 16px; }
.woocommerce-tabs table.shop_attributes { width: 100%; border-collapse: collapse; }
.woocommerce-tabs table.shop_attributes th,
.woocommerce-tabs table.shop_attributes td { padding: 12px 16px; border: 1px solid var(--border); text-align: left; font-size: .92rem; }
.woocommerce-tabs table.shop_attributes th { background: var(--bg-2); font-weight: 700; color: var(--emerald); width: 220px; }
.woocommerce-Reviews #comments { list-style: none; padding: 0; }
.woocommerce-Reviews .comment-form input,
.woocommerce-Reviews .comment-form textarea { width: 100%; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 10px 14px; font-family: var(--font-body); }
.woocommerce-Reviews .comment-form textarea { min-height: 120px; }
.woocommerce-Reviews .form-submit input[type="submit"] { background: var(--orange); color: #fff; border: none; border-radius: 100px; padding: 12px 28px; font-weight: 700; cursor: pointer; margin-top: 12px; }

.related.products,
.upsells.products { max-width: var(--max); margin: 0 auto; padding: clamp(30px,5vw,50px) var(--pad) clamp(60px,8vw,100px); }
.related.products > h2,
.upsells.products > h2 { font-family: var(--font-display); color: var(--emerald); font-size: clamp(1.8rem,3.6vw,2.4rem); text-align: center; margin-bottom: 36px; }
.related.products ul.products,
.upsells.products ul.products { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--gap); list-style: none; padding: 0; margin: 0; }
.related.products ul.products li.product,
.upsells.products ul.products li.product { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; text-align: center; padding-bottom: 18px; transition: transform .3s var(--ease), box-shadow .3s; }
.related.products ul.products li.product:hover,
.upsells.products ul.products li.product:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.related.products ul.products li.product img,
.upsells.products ul.products li.product img { width: 100%; aspect-ratio: 1/1; object-fit: cover; margin-bottom: 14px; }
.related.products ul.products li.product h2.woocommerce-loop-product__title,
.upsells.products ul.products li.product h2.woocommerce-loop-product__title { font-family: var(--font-display); font-size: 1.05rem; color: var(--emerald); margin: 0 16px 6px; }
.related.products ul.products li.product .price,
.upsells.products ul.products li.product .price { font-family: var(--font-display); font-weight: 600; color: var(--brown); font-size: .95rem; }
.related.products ul.products li.product .star-rating,
.upsells.products ul.products li.product .star-rating { margin: 0 auto 6px; color: var(--gold); }
.related.products ul.products li.product .button,
.upsells.products ul.products li.product .button { display: inline-block; margin-top: 12px; background: var(--emerald); color: #fff; border-radius: 100px; padding: 8px 22px; font-size: .85rem; font-weight: 700; }
.related.products ul.products li.product .button:hover,
.upsells.products ul.products li.product .button:hover { background: var(--emerald-2); }

@media (max-width: 600px) {
  .woocommerce-tabs ul.tabs { gap: 2px; }
  .woocommerce-tabs ul.tabs li a { padding: 10px 14px; font-size: .85rem; }
  .woocommerce-tabs table.shop_attributes th { width: auto; }
}
