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

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Hide native scrollbar (scroll still works) ── */
html { scrollbar-width: none; }
html::-webkit-scrollbar { display: none; }

/* ── Custom scrub progress indicator ── */
#scrub-indicator {
  position: fixed;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
#scrub-track {
  width: 2px;
  height: 160px;
  background: rgba(255,255,255,0.18);
  border-radius: 2px;
  position: relative;
}
#scrub-ball {
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(74,138,90,0.8), 0 0 4px rgba(74,138,90,0.5);
}

/* ── Video Scrub Intro ── */

/* Spacer — height set by JS to create the scroll distance for the animation */
#scrub-section { padding: 0; }

/* Fixed overlay — always covers the exact visual viewport, immune to iOS overflow bugs */
#scrub-sticky {
  position: fixed;
  inset: 0;
  z-index: 10;
  overflow: hidden;
  background: #ffffff;
  transition: opacity 0.65s ease;
}
#scrub-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}
/* White bars — solid fallback heights for iPhones, hidden on desktop via env() returning 0 */
#scrub-safe-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  /* solid fallback: 50px covers every iPhone status bar */
  height: 50px;
  height: env(safe-area-inset-top, 50px);
  background: #ffffff;
  z-index: 8;
  pointer-events: none;
}
#scrub-safe-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 34px;
  height: env(safe-area-inset-bottom, 34px);
  background: #ffffff;
  z-index: 8;
  pointer-events: none;
}

/* Fade-to-brand — full screen overlay that goes opaque at animation end */
#scrub-fade {
  position: absolute;
  inset: 0;
  background: #c4b898;
  opacity: 0;
  pointer-events: none;
  z-index: 4;
  transition: opacity 0.1s linear;
}
#scrub-loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  z-index: 9;
}
.scrub-spinner {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(0,0,0,0.1);
  border-top-color: rgba(0,0,0,0.45);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
#scrub-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 48px;
  pointer-events: none;
}
.scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  transition: opacity 0.3s;
}
.scroll-cue-line {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.6);
  transform-origin: top;
  animation: scrubLine 1.4s ease-in-out infinite;
}
@keyframes scrubLine {
  0%   { transform: scaleY(0); opacity: 0; }
  30%  { opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* ── Variables ── */
:root {
  --bg:        #c4b898;
  --bg2:       #b8ac88;
  --bg3:       #a89a78;
  --card:      rgba(255,255,255,0.88);
  --card-muted:rgba(200,188,165,0.35);
  --border:    rgba(150,135,110,0.28);
  --nav-bg:    rgba(168,156,133,0.92);
  --text:      #ffffff;
  --text-dark: #2a2218;
  --text-mid:  rgba(255,255,255,0.82);
  --muted:     rgba(255,255,255,0.58);
  --active:    #d4573a;
  --gold:      #c9a84c;
  --gold2:     #e8c96e;
  --green:     #4a8a5a;
  --font:      -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
  --heading-font: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --radius:    20px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: clip; /* clip ≠ hidden: doesn't create a scroll container, so position:fixed still works on iOS */
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
}
img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--font); }

/* ── Age Gate ── */
.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(30,24,14,0.88);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.age-gate-card {
  background: var(--bg);
  border-radius: 32px;
  padding: 48px 40px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}
.age-gate-logo {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 28px;
}
.age-gate-icon { font-size: 2.5rem; margin-bottom: 16px; }
.age-gate h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.age-gate p {
  font-size: 0.88rem;
  color: rgba(42,34,24,0.6);
  margin-bottom: 32px;
  line-height: 1.6;
}
.age-gate-btns { display: flex; gap: 12px; }
.btn-age-yes, .btn-age-no {
  flex: 1;
  padding: 14px;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 700;
  border: none;
  transition: transform 0.15s, opacity 0.15s;
}
.btn-age-yes { background: var(--text-dark); color: #fff; }
.btn-age-yes:hover { opacity: 0.85; transform: translateY(-1px); }
.btn-age-no  { background: rgba(42,34,24,0.12); color: var(--text-dark); }
.btn-age-no:hover { opacity: 0.7; }
.age-gate-legal {
  font-size: 0.72rem;
  color: rgba(42,34,24,0.45);
  margin-top: 16px;
}

/* ── Floating nav ── */
nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1180px;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 20px;
  height: 62px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 0;
}

.nav-logo {
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.nav-logo-icon { font-size: 1.1rem; }

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--active); }
.nav-links a.active { color: var(--active); font-weight: 700; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.nav-right a, .nav-right button {
  font-size: 0.82rem;
  color: var(--text-dark);
  font-weight: 500;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── Cart button ── */
.cart-btn {
  position: relative;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  font-size: 1.15rem;
  color: var(--text-dark) !important;
  cursor: pointer;
}
.cart-badge {
  display: none;
  position: absolute;
  top: -6px; right: -8px;
  background: var(--active);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  width: 16px; height: 16px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-dark);
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 60px 60px;
  position: relative;
  gap: 40px;
}

.hero-left {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

/* Starburst badge */
.starburst-wrap {
  position: relative;
  width: 145px;
  height: 145px;
  flex-shrink: 0;
  margin-bottom: 18px;
  align-self: flex-start;
  transform: rotate(-6deg);
}
.starburst-bg {
  position: absolute;
  inset: 0;
  background: white;
  clip-path: polygon(
    50% 0%,55% 10%,63% 4%,65% 15%,75% 10%,74% 21%,86% 18%,82% 29%,95% 28%,88% 38%,100% 40%,91% 49%,100% 53%,89% 59%,97% 66%,85% 69%,90% 78%,78% 78%,79% 90%,68% 87%,65% 98%,55% 92%,50% 100%,45% 92%,35% 98%,32% 87%,21% 90%,22% 78%,10% 78%,15% 69%,3% 66%,11% 59%,0% 53%,9% 49%,0% 40%,12% 38%,5% 28%,18% 29%,14% 18%,26% 21%,25% 10%,35% 15%,37% 4%,45% 10%
  );
}
.starburst-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.4;
  padding: 28px;
}
.starburst-text .pct {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 3px;
}

.hero-tagline {
  font-family: var(--heading-font);
  font-style: italic;
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--heading-font);
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 36px;
  text-align: left;
}

.hero-cta {
  display: inline-block;
  padding: 15px 42px;
  border: 2px solid rgba(255,255,255,0.9);
  border-radius: 50px;
  color: var(--text);
  background: rgba(255,255,255,0.1);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.hero-cta:hover {
  background: #fff;
  color: var(--text-dark);
  border-color: #fff;
}

.hero-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}
.hero-logo-img {
  max-width: 100%;
  max-height: 480px;
  object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.2));
}

/* ── Promo Card ── */
.promo-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 400px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 28px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text-dark);
  box-shadow: 0 2px 0 rgba(255,255,255,0.8) inset, 0 20px 60px rgba(42,34,24,0.14);
  transition: transform 0.3s cubic-bezier(0.34,1.22,0.64,1), box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
}
.promo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 2px 0 rgba(255,255,255,0.8) inset, 0 32px 80px rgba(42,34,24,0.2);
}

.promo-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--text-dark);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  z-index: 2;
}

.promo-product-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: rgba(196,184,152,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.promo-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.promo-card:hover .promo-product-img {
  transform: scale(1.04);
}

.promo-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.promo-threshold {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(42,34,24,0.5);
  letter-spacing: 0.01em;
  margin: 0;
}
.promo-threshold strong {
  color: var(--text-dark);
  font-weight: 800;
}

.promo-title {
  font-family: var(--heading-font);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
  margin: 0;
  letter-spacing: -0.01em;
}

.promo-gifts {
  display: flex;
  gap: 10px;
}
.promo-gift-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
}
.promo-gift-img-wrap {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 14px;
  background: rgba(196,184,152,0.2);
  border: 1px solid rgba(196,184,152,0.4);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.promo-gift-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.promo-gift-item span {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(42,34,24,0.5);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
}

.promo-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 4px;
  border-top: 1px solid rgba(42,34,24,0.08);
}
.promo-cta-btn {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}
.promo-arrow {
  font-size: 1rem;
  color: var(--text-dark);
  transition: transform 0.2s ease;
}
.promo-card:hover .promo-arrow {
  transform: translateX(4px);
}
.hero-logo-placeholder {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4/3;
  border: 2px dashed rgba(255,255,255,0.3);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  text-align: center;
  padding: 24px;
}

/* ── General buttons ── */
.btn-primary {
  background: var(--text-dark);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 13px 32px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: opacity 0.2s, transform 0.15s;
  cursor: pointer;
}
.btn-primary:hover { opacity: 0.85; transform: translateY(-1px); }
.btn-primary:disabled { opacity: 0.35; cursor: not-allowed; transform: none; }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.45);
  border-radius: 50px;
  padding: 13px 32px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
  display: inline-block;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* ── Tags strip ── */
.tags-strip {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 28px 40px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.tag {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.tag .dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.4); }

/* ── Sections ── */
section { padding: 72px 40px; }

.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: rgba(255,255,255,0.4);
  flex-shrink: 0;
}
.section-title {
  font-family: var(--heading-font);
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 14px;
}
.section-sub {
  color: rgba(255,255,255,0.68);
  font-size: 0.95rem;
  max-width: 500px;
  margin-bottom: 44px;
}

/* ── Features ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.feature-icon { font-size: 1.8rem; margin-bottom: 12px; }
.feature-title { font-size: 0.9rem; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.feature-desc  { font-size: 0.8rem; color: rgba(42,34,24,0.55); line-height: 1.5; }

/* ── Products ── */
.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 14px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 18px;
}
.product-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 3px 16px rgba(0,0,0,0.07);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(42,34,24,0.16);
}
.product-img {
  aspect-ratio: 1;
  background: rgba(200,188,165,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  position: relative;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--text-dark);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 4px;
}
.product-info { padding: 14px; }
.product-name  { font-size: 0.9rem; font-weight: 700; color: var(--text-dark); margin-bottom: 3px; }
.product-cbd   { font-size: 0.75rem; color: rgba(42,34,24,0.5); margin-bottom: 10px; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price  { font-size: 1rem; font-weight: 800; color: var(--text-dark); }
.btn-add {
  background: var(--text-dark);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 7px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  transition: opacity 0.2s;
}
.btn-add:hover { opacity: 0.75; }

/* ── Variant select ── */
.variant-select {
  width: 100%;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(200,188,165,0.25);
  color: var(--text-dark);
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font);
  margin: 4px 0 10px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='rgba(42,34,24,0.4)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
}
.variant-select:focus { outline: 1.5px solid var(--text-dark); }

/* ── Delivery banner ── */
.delivery-banner {
  background: var(--text-dark);
  border-radius: 28px;
  padding: 44px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.delivery-banner h2 { font-family: var(--heading-font); font-size: 1.8rem; font-weight: 600; color: #fff; margin-bottom: 8px; }
.delivery-banner p  { color: rgba(255,255,255,0.65); font-size: 0.92rem; }
.delivery-banner .btn-primary { background: var(--bg); color: var(--text-dark); }

/* ── Reviews ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}
.review-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}
.review-stars  { color: #c9a84c; font-size: 0.85rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-text   { font-size: 0.9rem; color: rgba(42,34,24,0.72); line-height: 1.7; margin-bottom: 14px; font-style: italic; font-family: var(--heading-font); }
.review-author { font-size: 0.78rem; font-weight: 700; color: rgba(42,34,24,0.5); }

/* ── Location ── */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.location-info h3 { font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 18px; font-family: var(--heading-font); }
.info-row { display: flex; gap: 12px; margin-bottom: 16px; }
.info-icon { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.info-text { font-size: 0.87rem; color: rgba(255,255,255,0.72); line-height: 1.6; }
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px 20px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
}
.hours-grid span:nth-child(odd) { font-weight: 600; color: rgba(255,255,255,0.9); }
.map-placeholder {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  text-align: center;
}

/* ── Newsletter ── */
.newsletter {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 52px 40px;
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}
.newsletter h2 { font-family: var(--heading-font); font-size: 1.8rem; font-weight: 600; color: var(--text-dark); margin-bottom: 10px; }
.newsletter p  { color: rgba(42,34,24,0.55); font-size: 0.92rem; margin-bottom: 26px; }
.newsletter-form { display: flex; gap: 10px; max-width: 380px; margin: 0 auto; }
.newsletter-form input {
  flex: 1;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 0.88rem;
  color: var(--text-dark);
  font-family: var(--font);
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input:focus { border-color: var(--text-dark); }
.newsletter-form input::placeholder { color: rgba(42,34,24,0.4); }

/* ── Footer ── */
footer {
  background: var(--text-dark);
  padding: 52px 40px 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}
.footer-brand .nav-logo { color: var(--bg); }
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 0.85rem; margin-top: 10px; max-width: 220px; line-height: 1.6; }
.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a  { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
}

/* ── Cart overlay + drawer ── */
#cartOverlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(30,24,14,0.5);
  z-index: 200;
}
#cartOverlay.open { display: block; }

#cartDrawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(400px, 100vw);
  background: var(--bg);
  border-left: 1px solid var(--border);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
#cartDrawer.open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-header h3 { font-size: 1rem; font-weight: 800; color: var(--text-dark); }
.cart-close {
  background: rgba(42,34,24,0.1);
  border: none;
  border-radius: 6px;
  width: 30px; height: 30px;
  font-size: 1rem;
  color: var(--text-dark);
  cursor: pointer;
}
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cart-empty { color: rgba(42,34,24,0.45); font-size: 0.88rem; text-align: center; margin-top: 40px; }
.cart-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px;
}
.cart-item-emoji { font-size: 1.4rem; flex-shrink: 0; }
.cart-item-info  { flex: 1; min-width: 0; }
.cart-item-name  { font-size: 0.82rem; font-weight: 700; color: var(--text-dark); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cart-item-price { font-size: 0.75rem; color: rgba(42,34,24,0.55); margin-top: 2px; }
.cart-item-controls { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.cart-item-controls button {
  background: rgba(42,34,24,0.1);
  border: none;
  border-radius: 5px;
  width: 24px; height: 24px;
  font-size: 0.95rem;
  color: var(--text-dark);
  cursor: pointer;
}
.cart-item-controls span { font-size: 0.85rem; font-weight: 700; min-width: 14px; text-align: center; color: var(--text-dark); }
.cart-remove { background: none; border: none; color: rgba(42,34,24,0.35); font-size: 1.1rem; cursor: pointer; padding: 0 2px; line-height: 1; }
.cart-remove:hover { color: #c0392b; }
.cart-footer { border-top: 1px solid var(--border); padding: 18px 22px; flex-shrink: 0; }
.cart-total-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.cart-total-row span { font-size: 0.92rem; font-weight: 700; color: var(--text-dark); }
.cart-total-row span:last-child { font-size: 1.1rem; }
.cart-footer .btn-primary { width: 100%; padding: 13px; }
.cart-hint { text-align: center; font-size: 0.72rem; color: rgba(42,34,24,0.45); margin-top: 9px; }

/* ── Shop page ── */
.shop-header { padding: 110px 40px 50px; text-align: center; background: var(--bg); }
.shop-header .section-title { color: #fff; }
.filter-bar { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.filter-btn {
  background: var(--card);
  border: 1.5px solid var(--border);
  color: rgba(42,34,24,0.6);
  border-radius: 50px;
  padding: 7px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--text-dark);
  color: var(--text-dark);
  background: rgba(42,34,24,0.08);
}

/* ── About page ── */
.about-hero { padding: 110px 40px 72px; max-width: 900px; margin: 0 auto; }
.about-hero h1 { font-family: var(--heading-font); font-size: clamp(1.9rem, 5vw, 3.2rem); font-weight: 600; color: #fff; line-height: 1.15; margin-bottom: 18px; }
.about-hero p  { color: rgba(255,255,255,0.7); font-size: 1rem; line-height: 1.7; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.about-img {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

/* ── Legal pages ── */
.legal { max-width: 720px; margin: 0 auto; padding: 110px 40px 72px; }
.legal h1 { font-family: var(--heading-font); font-size: 2rem; font-weight: 600; color: #fff; margin-bottom: 28px; }
.legal h2 { font-size: 1.05rem; font-weight: 700; color: #fff; margin: 24px 0 7px; }
.legal p, .legal address { font-size: 0.92rem; color: rgba(255,255,255,0.68); line-height: 1.8; font-style: normal; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero { padding: 100px 30px 50px; flex-direction: column; }
  .hero-right { width: 100%; min-height: auto; display: flex; justify-content: center; }
  .promo-card { max-width: 480px; }

  .hero-title { font-size: 1.7rem; }
  .location-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  /* Promo card → compact horizontal pill on mobile */
  .hero-right { padding: 0 0 8px; }
  .promo-card {
    flex-direction: row;
    max-width: 100%;
    border-radius: 20px;
    align-items: stretch;
    min-height: 0;
  }
  .promo-badge {
    top: 12px;
    left: 12px;
    font-size: 0.58rem;
    padding: 4px 9px;
  }
  .promo-product-wrap {
    width: 130px;
    min-width: 130px;
    aspect-ratio: auto;
    flex-shrink: 0;
    border-radius: 0;
  }
  .promo-product-img {
    width: 130px;
    height: 100%;
    object-fit: cover;
  }
  .promo-body {
    padding: 14px 16px;
    gap: 8px;
    justify-content: center;
    flex: 1;
    min-width: 0;
  }
  .promo-threshold { font-size: 0.72rem; }
  .promo-title { font-size: 1.05rem; }
  .promo-gifts { gap: 6px; }
  .promo-gift-img-wrap { border-radius: 10px; }
  .promo-gift-item span { font-size: 0.58rem; }
  .promo-cta-row { padding-top: 6px; }
  .promo-cta-btn { font-size: 0.78rem; }

  nav { top: 10px; width: calc(100% - 24px); padding: 0 16px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 82px; left: 12px; right: 12px;
    background: var(--nav-bg);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 20px;
    padding: 16px 20px;
    gap: 14px;
    z-index: 99;
  }
  .nav-toggle { display: flex; }
  section { padding: 52px 20px; }
  .hero { padding: 90px 20px 40px; }
  .shop-header { padding: 90px 20px 40px; }
  .about-hero { padding: 90px 20px 52px; }
  .footer-grid { grid-template-columns: 1fr; }
  .delivery-banner { padding: 28px 22px; text-align: center; justify-content: center; }
  .newsletter { padding: 36px 20px; }
  .newsletter-form { flex-direction: column; }
  .tags-strip { padding: 20px; }
  footer { padding: 40px 20px 22px; }
  .legal { padding: 90px 20px 52px; }
}

@media (max-width: 420px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* ── Product card clickable ── */
.product-card { cursor: pointer; }
.product-card .product-img { cursor: pointer; }

/* ── Product Detail Modal ── */
#productModalOverlay {
  position: fixed;
  inset: 0;
  background: rgba(22,16,8,0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
#productModalOverlay.open {
  opacity: 1;
  pointer-events: all;
}
#productModal {
  background: #fdf8f2;
  border-radius: 28px;
  width: 100%;
  max-width: 860px;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(24px) scale(0.98);
  transition: transform 0.3s cubic-bezier(0.34,1.22,0.64,1);
  box-shadow: 0 32px 80px rgba(0,0,0,0.28);
}
#productModalOverlay.open #productModal {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(42,34,24,0.1);
  border: none;
  border-radius: 50%;
  width: 36px; height: 36px;
  font-size: 1rem;
  color: var(--text-dark);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  transition: background 0.2s;
}
.modal-close:hover { background: rgba(42,34,24,0.18); }

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 0;
}
.modal-img-col {
  padding: 32px 24px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.modal-img-wrap {
  position: relative;
  background: rgba(196,184,152,0.25);
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}
.modal-img-emoji {
  font-size: 5rem;
  display: none;
}
.modal-img-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--text-dark);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 4px;
}
.modal-lab-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.modal-lab-pill {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(42,34,24,0.6);
  background: rgba(42,34,24,0.07);
  border-radius: 50px;
  padding: 4px 10px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.modal-info-col {
  padding: 32px 32px 32px 8px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.modal-type {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(42,34,24,0.45);
}
.modal-name {
  font-family: var(--heading-font);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.15;
  margin: 0;
}
.modal-stats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.modal-stat {
  background: rgba(42,34,24,0.06);
  border-radius: 12px;
  padding: 10px 16px;
  min-width: 72px;
  text-align: center;
}
.modal-stat-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(42,34,24,0.4);
  margin-bottom: 3px;
}
.modal-stat-value {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
}
.modal-stat.highlight .modal-stat-value { color: var(--green); }

.modal-section-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(42,34,24,0.4);
  margin-bottom: 7px;
}
.modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.modal-tag {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dark);
  background: rgba(42,34,24,0.07);
  border: 1px solid rgba(42,34,24,0.12);
  border-radius: 50px;
  padding: 4px 12px;
}
.modal-tag-effect {
  background: rgba(74,138,90,0.1);
  border-color: rgba(74,138,90,0.2);
  color: #3a6e4a;
}

.modal-desc {
  font-size: 0.88rem;
  color: rgba(42,34,24,0.7);
  line-height: 1.72;
  margin: 0;
  font-family: var(--heading-font);
  font-style: italic;
}
.modal-herkunft {
  font-size: 0.75rem;
  color: rgba(42,34,24,0.45);
  padding-top: 6px;
  border-top: 1px solid rgba(42,34,24,0.08);
}
.modal-buy-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 6px;
  margin-top: auto;
}
.modal-buy-row .variant-select {
  flex: 1;
  min-width: 140px;
}
.modal-price-box {
  display: flex;
  align-items: center;
  gap: 12px;
}
.modal-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  white-space: nowrap;
}
.modal-add-btn {
  white-space: nowrap;
}
.modal-divider {
  height: 1px;
  background: rgba(42,34,24,0.08);
  margin: 0;
}

@media (max-width: 680px) {
  #productModal { border-radius: 20px 20px 0 0; max-height: 96vh; }
  #productModalOverlay { align-items: flex-end; padding: 0; }
  .modal-body { grid-template-columns: 1fr; }
  .modal-img-col { padding: 24px 24px 0; }
  .modal-img-wrap { aspect-ratio: 16/9; }
  .modal-img-wrap img { object-fit: contain; }
  .modal-info-col { padding: 16px 24px 32px; }
}
