/* ============================================================
   FUMIGO — Master Stylesheet
   Brand: white background, #111 dark, #0055cc blue accent
   Mobile-first, WooCommerce compatible
   ============================================================ */

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; }
body { font-family: 'Inter', Arial, sans-serif; background: #fff; color: #111; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }

/* COLOUR TOKENS */
:root {
  --black: #111111;
  --white: #ffffff;
  --blue: #0055cc;
  --blue-light: #e8f0fb;
  --blue-dark: #003d99;
  --gray-bg: #f9f9f9;
  --gray-light: #f5f5f5;
  --gray-border: #e5e5e5;
  --gray-text: #666666;
  --gray-muted: #aaaaaa;
  --green: #27ae60;
  --green-light: #f0f8f0;
  --green-border: #c3e6c3;
  --red: #e74c3c;
  --red-light: #fff5f5;
  --red-border: #ffdddd;
  --gold: #f4a500;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

/* TYPOGRAPHY */
h1, h2 { font-family: 'Clash Display', 'Inter', sans-serif; }
h1 { font-size: clamp(26px, 4vw, 36px); font-weight: 600; line-height: 1.2; color: var(--black); }
h1 em { font-style: normal; color: var(--blue); }
h2 { font-size: clamp(20px, 3vw, 26px); font-weight: 600; line-height: 1.3; color: var(--black); }
h3 { font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 500; color: var(--black); }
h4 { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500; color: var(--black); }
p { font-size: 14px; color: #444; line-height: 1.75; }

/* ANNOUNCEMENT BAR */
.ann-bar {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  border-bottom: 0.5px solid var(--gray-border);
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 100;
}
.logo { font-family: 'Clash Display', 'Inter', sans-serif; font-size: 20px; font-weight: 600; letter-spacing: 0.06em; color: var(--black); }
.nav-right { display: flex; gap: 20px; align-items: center; }
.nav-link { font-size: 13px; color: var(--gray-text); transition: color 0.15s; }
.nav-link:hover { color: var(--black); }
.nav-cta {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  transition: background 0.15s;
}
.nav-cta:hover { background: #333; }

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.hero-img {
  background: linear-gradient(145deg, #0f0f14 0%, #1a1a2e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
  min-height: 580px;
  overflow: hidden;
}
.hero-img::before {
  content: '';
  position: absolute;
  width: 70%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(0,85,204,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-img img { width: 100%; height: 530px; object-fit: contain; position: relative; z-index: 1; }
.hero-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.hero-sound-btn { position: absolute; bottom: 16px; right: 16px; z-index: 3; background: rgba(0,0,0,0.5); border: none; color: white; font-size: 16px; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.hero-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  font-weight: 400;
  padding: 4px 10px;
  border-radius: 20px;
  border: 0.5px solid rgba(255,255,255,0.12);
  z-index: 2;
  letter-spacing: 0.02em;
}
.hero-copy {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-muted);
  margin-bottom: 10px;
}
.hero-wit {
  font-size: 13px;
  color: var(--gray-muted);
  font-style: italic;
  margin-bottom: 16px;
}
.stars-row { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.stars { color: var(--gold); font-size: 14px; }
.stars-text { font-size: 13px; color: var(--gray-text); }
.hero-tp-link { font-size: 13px; font-weight: 700; color: #00b67a; text-decoration: none; }
.hero-tp-link:hover { text-decoration: underline; }
.hero-sub { font-size: 15px; color: #444; line-height: 1.65; margin-bottom: 20px; }

/* PACK SELECTOR */
.pack-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.pack-label { font-size: 12px; color: var(--gray-text); font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; }
.pack-savings-hint { font-size: 12px; color: var(--blue); font-weight: 500; }
.pack-options { display: flex; gap: 7px; margin-bottom: 8px; }
.pack-opt {
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius-md);
  padding: 10px;
  cursor: pointer;
  flex: 1;
  text-align: center;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.12s;
  position: relative;
  background: var(--white);
}
.pack-opt:hover {
  border-color: #999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transform: translateY(-1px);
}
.pack-opt.selected {
  border-color: var(--black);
  box-shadow: 0 0 0 1px var(--black), 0 4px 14px rgba(0,0,0,0.1);
  transform: translateY(-1px);
}
.pack-opt.selected .pack-price { color: var(--blue); }
.pack-popular {
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: 9px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 10px;
  white-space: nowrap;
}
.pack-qty { font-size: 11px; color: var(--gray-text); margin-bottom: 2px; }
.pack-price { font-size: 15px; font-weight: 500; color: var(--black); }
.pack-unit { font-size: 10px; color: var(--gray-text); margin-top: 1px; }
.pack-save { font-size: 10px; color: var(--blue); margin-top: 1px; }
.pack-save.muted { color: var(--gray-muted); }

/* COLOUR SELECTOR */
.colour-selector {
  font-size: 12px;
  color: var(--gray-text);
  margin: 6px 0 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.colour-name { color: var(--black); }
.colour-dot {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 2px solid var(--gray-border);
  display: inline-block;
  transition: border-color 0.15s;
  overflow: hidden;
  background: var(--gray-light);
}
.colour-dot img { width: 100%; height: 100%; object-fit: contain; display: block; }
.colour-zoom { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.45); opacity: 0; transition: opacity 0.15s; font-size: 16px; cursor: zoom-in; border-radius: 4px; }
.colour-dot { position: relative; }
.colour-dot:hover .colour-zoom { opacity: 1; }
.colour-dot.active { border-color: var(--black); }
.colour-dot.sold-out { opacity: 0.4; cursor: not-allowed; position: relative; }
.colour-dot.sold-out::after { content: ''; position: absolute; top: 50%; left: -1px; width: calc(100% + 2px); height: 2px; background: #aaa; transform: rotate(-45deg); border-radius: 1px; }

/* PRICE BLOCK */
.price-block { margin-bottom: 14px; }
.price-now { font-size: 36px; font-weight: 700; color: var(--black); letter-spacing: -0.02em; font-family: 'Clash Display', sans-serif; }
.price-was { font-size: 15px; color: #ccc; text-decoration: line-through; margin-left: 10px; }
.price-save { font-size: 12px; color: var(--blue); font-weight: 600; margin-left: 6px; }
.price-per { font-size: 12px; color: var(--gray-muted); margin-top: 4px; }

/* SHIP UPSELL */
.ship-upsell {
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 6px;
  min-height: 18px;
}

/* DISPATCH TICKER */
.dispatch-ticker {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--gray-text);
  margin-top: 10px;
}
.dispatch-ticker strong { color: var(--black); }

/* SHIP NOTE */
.ship-note {
  font-size: 13px;
  color: var(--green);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* BUTTONS */
.add-btn {
  width: 100%;
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 15px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 8px;
  transition: background 0.15s;
}
.add-btn:hover { background: #333; }
.buy-btn {
  width: 100%;
  background: var(--white);
  color: var(--black);
  border: 1.5px solid var(--gray-border);
  padding: 13px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 14px;
  transition: background 0.15s;
}
.buy-btn:hover { background: var(--gray-light); }

/* TRUST LINE */
.trust-line { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; }
.trust-line span { font-size: 12px; color: var(--gray-muted); }
.trust-line .t-sep { color: var(--gray-border); }

/* HERO BULLETS */
.hero-bullets { list-style: none; }
.hero-bullets li { font-size: 13px; color: #555; padding: 3px 0; display: flex; align-items: center; gap: 7px; }
.hero-bullets li::before { content: "✓"; color: var(--blue); font-weight: 500; }

/* TRUST BAR */
.trust-bar { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--gray-bg); border-top: 0.5px solid #eee; border-bottom: 0.5px solid #eee; }
.trust-bar-item { padding: 16px 12px; text-align: center; border-right: 0.5px solid #eee; font-size: 12px; }
.trust-bar-item:last-child { border-right: none; }
.trust-bar-item span:first-child { font-size: 20px; display: block; margin-bottom: 4px; }
.trust-bar-item div div:first-child { font-weight: 500; color: var(--black); margin-bottom: 1px; }
.trust-bar-item div div:last-child { color: var(--gray-muted); font-size: 11px; }

/* CREDIBILITY BAR */
.cred-bar { background: #f8f8f8; border-top: 0.5px solid #eee; border-bottom: 0.5px solid #eee; padding: 14px 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.cred-left { display: flex; align-items: center; gap: 12px; }
.cred-logo { font-size: 14px; font-weight: 500; color: var(--black); letter-spacing: 0.06em; }
.cred-divider { width: 1px; height: 18px; background: #ddd; }
.cred-text { font-size: 12px; color: var(--gray-text); }
.cred-badges { display: flex; gap: 7px; }
.cred-badge { background: var(--white); border: 0.5px solid var(--gray-border); border-radius: 20px; padding: 3px 10px; font-size: 11px; color: #444; font-weight: 500; }

/* SECTIONS */
.section { padding: 72px 28px; }
.section.gray { background: var(--gray-bg); }
.section.dark { background: var(--black); }
.section.blue { background: var(--blue); }
.section-eye { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray-muted); margin-bottom: 8px; text-align: center; }
.section-title { text-align: center; margin-bottom: 12px; }
.section-sub { font-size: 15px; color: var(--gray-text); text-align: center; margin-bottom: 40px; line-height: 1.7; max-width: 560px; margin-left: auto; margin-right: auto; }
.section-eye.light { color: rgba(255,255,255,0.5); }
.section-title.light { color: var(--white); }
.section-sub.light { color: rgba(255,255,255,0.65); }
.section-wit { font-size: 14px; color: #555; text-align: center; font-style: italic; margin-bottom: 24px; }

/* PRODUCT CAROUSEL */
.carousel { position: relative; margin: 0 auto; }
.carousel-track-wrap { overflow: hidden; --slide-w: calc((100% - 24px) / 3); }
.carousel-track { display: flex; gap: 12px; transition: transform 0.4s ease; }
.carousel-slide { min-width: var(--slide-w); width: var(--slide-w); aspect-ratio: 4/5; display: flex; align-items: center; justify-content: center; background: var(--gray-light); border-radius: var(--radius-lg); overflow: hidden; flex-shrink: 0; }
.carousel-slide img { width: 100%; height: 100%; object-fit: contain; }
.carousel-placeholder span { font-size: 11px; color: var(--gray-muted); letter-spacing: 0.06em; text-transform: uppercase; }
.carousel-arrow { position: absolute; top: 45%; transform: translateY(-50%); background: var(--white); border: 0.5px solid var(--gray-border); color: var(--black); width: 40px; height: 40px; border-radius: 50%; font-size: 16px; cursor: pointer; z-index: 2; box-shadow: 0 2px 8px rgba(0,0,0,0.08); transition: box-shadow 0.15s; display: flex; align-items: center; justify-content: center; }
.carousel-arrow:hover { box-shadow: 0 4px 14px rgba(0,0,0,0.14); }
.carousel-prev { left: -20px; }
.carousel-next { right: -20px; }
.carousel-dots { display: flex; justify-content: center; gap: 6px; margin-top: 16px; }
.carousel-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gray-border); cursor: pointer; transition: background 0.2s; }
.carousel-dot.active { background: var(--black); }

/* PRODUCT STRIP */
.product-strip { display: flex; gap: 10px; justify-content: center; padding: 20px var(--page-pad); border-bottom: 0.5px solid var(--gray-border); background: var(--white); }
.prod-thumb { width: 90px; height: 90px; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; border: 1.5px solid var(--gray-border); background: var(--gray-light); flex-shrink: 0; transition: border-color 0.15s, transform 0.15s; }
.prod-thumb:hover { border-color: var(--black); transform: scale(1.04); }
.prod-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* LIGHTBOX */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.88); z-index: 1000; align-items: center; justify-content: center; cursor: pointer; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: var(--radius-lg); }
.lightbox-close { position: absolute; top: 20px; right: 28px; background: none; border: none; color: #fff; font-size: 36px; cursor: pointer; line-height: 1; opacity: 0.8; }
.lightbox-close:hover { opacity: 1; }

/* LIFESTYLE GRID */
.lifestyle-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.lifestyle-card { border-radius: var(--radius-lg); overflow: hidden; background: var(--white); border: 0.5px solid var(--gray-border); }
.lifestyle-photo { aspect-ratio: 3/4; background: var(--gray-light); }
.lifestyle-placeholder { background: #f0f0f0; }
.lifestyle-info { padding: 16px; }
.lifestyle-label { font-family: 'Clash Display', 'Inter', sans-serif; font-size: 14px; font-weight: 600; color: var(--black); margin-bottom: 6px; }
.lifestyle-card p { font-size: 13px; color: var(--gray-text); line-height: 1.6; margin: 0; }

/* HOW IT WORKS */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.step-card { background: var(--white); border: 0.5px solid var(--gray-border); border-radius: var(--radius-lg); padding: 24px 18px; text-align: center; }
.step-num { font-size: 26px; font-weight: 500; color: #e0e0e0; margin-bottom: 8px; }
.step-card h3 { margin-bottom: 6px; }
.step-card p { font-size: 12px; color: var(--gray-text); }

/* MID CTA STRIP */
.mid-cta { background: #f0f5ff; border-top: 0.5px solid #d0e0ff; border-bottom: 0.5px solid #d0e0ff; padding: 20px 28px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.mid-cta-title { font-size: 15px; font-weight: 500; color: var(--black); }
.mid-cta-sub { font-size: 13px; color: #555; margin-top: 2px; }
.mid-cta-btn { background: var(--black); color: var(--white); border: none; padding: 12px 24px; border-radius: var(--radius-md); font-size: 14px; font-weight: 500; white-space: nowrap; transition: background 0.15s; }
.mid-cta-btn:hover { background: #333; }

/* BENEFITS */
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.benefit-card { background: #f7f8fa; border-radius: var(--radius-lg); padding: 20px; display: flex; gap: 12px; align-items: flex-start; }
.benefit-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.benefit-card h3 { margin-bottom: 4px; }
.benefit-card p { font-size: 12px; color: var(--gray-text); line-height: 1.5; }

/* PRODUCT PAGE HERO */
.pg-hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }
.pg-gallery { display: flex; gap: 12px; background: var(--gray-light); padding: 24px; position: relative; }
.pg-thumbs { display: flex; flex-direction: column; gap: 8px; width: 68px; flex-shrink: 0; }
.pg-thumb { width: 68px; aspect-ratio: 1; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; border: 2px solid transparent; background: var(--white); display: flex; align-items: center; justify-content: center; transition: border-color 0.15s; }
.pg-thumb img { width: 100%; height: 100%; object-fit: contain; }
.pg-thumb.active { border-color: var(--black); }
.pg-thumb--placeholder { background: #e8e8e8; color: var(--gray-muted); font-size: 18px; font-weight: 300; }
.pg-main-img { flex: 1; display: flex; align-items: center; justify-content: center; overflow: hidden; cursor: zoom-in; }
.pg-main-img img { max-height: 520px; width: 100%; object-fit: contain; transition: transform 0.1s ease; transform-origin: center center; }

/* PRODUCT NAME */
.prod-name { font-family: 'Clash Display', 'Inter', sans-serif; font-size: 32px; font-weight: 600; color: var(--black); line-height: 1.1; margin-bottom: 4px; }
.prod-descriptor { font-size: 13px; color: var(--gray-muted); margin-bottom: 16px; }

/* MICRO BENEFITS */
.micro-benefits { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 5px 16px; margin: 12px 0 16px; }
.micro-benefits li { font-size: 12px; color: var(--gray-text); display: flex; align-items: center; gap: 6px; }
.micro-benefits li::before { content: '✓'; color: #27ae60; font-weight: 600; font-size: 11px; flex-shrink: 0; }

/* TRUST STRIP */
.trust-strip { background: var(--white); border-top: 0.5px solid var(--gray-border); border-bottom: 0.5px solid var(--gray-border); padding: 14px 28px; display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.trust-strip-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--gray-text); }
.ts-stars { color: var(--gold); font-size: 13px; }
.ts-sep { color: var(--gray-border); font-size: 16px; }

/* WHY FUMIGO TAB */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-item { text-align: center; padding: 24px 16px; background: var(--white); border-radius: var(--radius-lg); border: 0.5px solid var(--gray-border); }
.why-num { font-family: 'Clash Display', 'Inter', sans-serif; font-size: 44px; font-weight: 600; color: var(--black); line-height: 1; margin-bottom: 4px; }
.why-label { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-muted); margin-bottom: 10px; }
.why-item p { font-size: 12px; color: var(--gray-text); line-height: 1.55; margin: 0; }

/* HOW IT WORKS TAB */
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.how-step { display: flex; flex-direction: column; gap: 16px; }
.how-photo { aspect-ratio: 4/3; border-radius: var(--radius-lg); background: var(--gray-light); }
.how-placeholder { background: #ebebeb; }
.how-content { }
.how-content h3 { margin-bottom: 6px; }
.how-content p { font-size: 13px; color: var(--gray-text); margin: 0; }

/* USE CASES (product page) */
.uc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.uc-card { border-radius: var(--radius-lg); overflow: hidden; border: 0.5px solid var(--gray-border); }
.uc-photo { aspect-ratio: 4/3; background: var(--gray-light); }
.uc-placeholder { background: #ebebeb; }
.uc-info { padding: 16px; }
.uc-label { font-family: 'Clash Display', 'Inter', sans-serif; font-size: 14px; font-weight: 600; color: var(--black); margin-bottom: 6px; }
.uc-card p { font-size: 13px; color: var(--gray-text); line-height: 1.6; margin: 0; }

/* PRODUCT PAGE TABS */
.tabs-wrap { max-width: 760px; margin: 0 auto; }
.tabs-nav { display: flex; border-bottom: 1.5px solid var(--gray-border); margin-bottom: 32px; }
.tab-btn { padding: 12px 24px; font-size: 13px; font-weight: 500; font-family: 'Inter', sans-serif; border: none; background: none; cursor: pointer; color: var(--gray-muted); border-bottom: 2px solid transparent; margin-bottom: -1.5px; transition: color 0.15s, border-color 0.15s; }
.tab-btn:hover { color: var(--black); }
.tab-active { color: var(--black) !important; border-bottom-color: var(--black) !important; }
.tab-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.spec-table { width: 100%; font-size: 13px; border-collapse: collapse; }
.spec-table tr { border-bottom: 0.5px solid var(--gray-border); }
.spec-table td { padding: 9px 0; }
.spec-table td:first-child { color: var(--gray-text); }
.spec-table td:last-child { font-weight: 500; text-align: right; color: var(--black); }
.tab-list { list-style: none; font-size: 13px; }
.tab-list li { padding: 5px 0; display: flex; gap: 8px; align-items: center; color: #444; }
.tab-list li::before { content: '✓'; color: var(--blue); font-weight: 600; }
.shipping-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.shipping-card { background: var(--white); border: 0.5px solid var(--gray-border); border-radius: var(--radius-lg); padding: 18px; }
.shipping-card--green { background: var(--green-light); border-color: var(--green-border); }
.shipping-zone { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-muted); margin-bottom: 8px; }
.shipping-price { font-size: 15px; font-weight: 500; color: var(--black); margin-bottom: 4px; }
.shipping-detail { font-size: 12px; color: var(--gray-text); }

/* WHY IT'S DIFFERENT */
.diff-section { background: var(--black); display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; }
.diff-visual { display: flex; align-items: center; justify-content: center; padding: 60px 48px; background: #0d0d12; }
.diff-visual img { max-height: 420px; width: auto; object-fit: contain; }
.diff-copy { display: flex; flex-direction: column; justify-content: center; padding: 72px 56px; }
.diff-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 24px; }
.diff-headline { font-family: 'Clash Display', 'Inter', sans-serif; font-size: clamp(32px, 4vw, 52px); font-weight: 600; color: var(--white); line-height: 1.15; margin-bottom: 24px; }
.diff-body { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.75; margin-bottom: 32px; max-width: 380px; }
.diff-list { list-style: none; margin-bottom: 36px; display: flex; flex-direction: column; gap: 12px; }
.diff-list li { font-size: 14px; color: rgba(255,255,255,0.8); display: flex; align-items: center; gap: 12px; }
.diff-list li::before { content: '✓'; color: #27ae60; font-weight: 600; font-size: 13px; }
.diff-closer { font-family: 'Clash Display', 'Inter', sans-serif; font-size: 16px; font-weight: 500; color: rgba(255,255,255,0.35); letter-spacing: 0.02em; font-style: italic; }

/* UGC */
.ugc-section { background: var(--white); padding: 100px 48px; }
.ugc-header { text-align: center; margin-bottom: 56px; }
.ugc-sub { font-size: 15px; color: var(--black); text-align: center; margin-top: 10px; }
.ugc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.ugc-card--empty { display: flex; align-items: center; justify-content: center; background: var(--gray-light); border-radius: var(--radius-lg); aspect-ratio: 9/16; }
.ugc-card--empty span { font-size: 11px; color: var(--gray-muted); letter-spacing: 0.06em; text-transform: uppercase; }
.ugc-placeholder { border-radius: var(--radius-lg); background: var(--gray-light); aspect-ratio: 9/16; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; border: 0.5px solid var(--gray-border); position: relative; }
.ugc-card { border-radius: var(--radius-lg); aspect-ratio: 9/16; position: relative; overflow: hidden; background: var(--black); cursor: pointer; }
.ugc-card video { width: 100%; height: 100%; object-fit: cover; display: block; }
.ugc-card .ugc-play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); transition: opacity 0.2s; opacity: 0; }
.ugc-card.paused .ugc-play-btn { opacity: 1; }
.ugc-card:hover .ugc-play-btn { opacity: 1; }
.ugc-tag { position: absolute; top: 10px; left: 10px; background: var(--white); border-radius: 20px; padding: 3px 8px; font-size: 10px; font-weight: 500; }
.ugc-play-btn { width: 44px; height: 44px; background: rgba(0,0,0,0.6); border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 16px; cursor: pointer; }
.ugc-label { font-size: 11px; color: var(--gray-muted); text-align: center; line-height: 1.5; }
.ugc-footer { display: flex; align-items: center; justify-content: space-between; }
.ugc-follow { font-size: 13px; color: var(--blue); cursor: pointer; }
.ugc-platforms { display: flex; gap: 12px; font-size: 12px; color: var(--gray-text); }

/* REVIEWS */
.review-summary { display: grid; grid-template-columns: 160px 1fr; gap: 20px; margin-bottom: 24px; align-items: center; }
.score-big { font-size: 52px; font-weight: 500; color: var(--black); line-height: 1; text-align: center; }
.score-stars { color: var(--gold); font-size: 18px; text-align: center; margin: 3px 0; }
.score-count { font-size: 12px; color: var(--gray-muted); text-align: center; }
.score-bars { display: flex; flex-direction: column; gap: 5px; }
.score-bar { display: flex; align-items: center; gap: 7px; font-size: 11px; color: var(--gray-text); }
.bar-track { flex: 1; height: 5px; background: #f0f0f0; border-radius: 3px; overflow: hidden; }
.bar-fill { height: 100%; background: var(--gold); border-radius: 3px; }
.tp-bar { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.tp-stars { color: #00b67a; font-size: 16px; letter-spacing: 1px; }
.tp-text { font-size: 13px; color: var(--gray-text); }
.tp-link { font-size: 13px; font-weight: 700; color: #00b67a; text-decoration: none; }
.tp-link:hover { text-decoration: underline; }

/* TRUSTPILOT SUMMARY */
.tp-summary {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gray-border);
}
.tp-score-block { text-align: center; flex-shrink: 0; }
.tp-score-num {
  font-family: 'Clash Display', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
  margin-bottom: 4px;
}
.tp-stars-row { color: #00b67a; font-size: 20px; letter-spacing: 2px; margin-bottom: 4px; }
.tp-label { font-size: 11px; color: var(--gray-muted); font-weight: 500; letter-spacing: 0.04em; }
.tp-widget-wrap { flex: 1; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.review-card { background: var(--white); border: 0.5px solid var(--gray-border); border-radius: var(--radius-lg); padding: 24px; }
.rev-stars { color: var(--gold); font-size: 14px; margin-bottom: 10px; letter-spacing: 1px; }
.rev-scenario { font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-muted); display: inline-block; margin-bottom: 8px; }
.review-card h4 { margin-bottom: 8px; font-size: 15px; }
.review-card p { font-size: 14px; color: #555; line-height: 1.7; font-style: italic; margin-bottom: 16px; }
.rev-author { display: flex; align-items: center; gap: 7px; }
.rev-avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--black); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 500; flex-shrink: 0; }
.rev-name { font-size: 12px; font-weight: 500; color: var(--black); }
.rev-loc { font-size: 11px; color: var(--gray-muted); }

/* COMPARE TABLE */
.compare-table { width: 100%; border-collapse: collapse; font-size: 13px; margin-top: 24px; }
.compare-table th { padding: 12px 14px; text-align: center; font-weight: 500; font-size: 12px; }
.compare-table th.col-feature { background: #f5f5f5; color: var(--black); text-align: left; border-radius: 8px 0 0 0; }
.compare-table th.col-fumigo { background: var(--blue); color: var(--white); }
.compare-table th.col-other { background: #888; color: var(--white); border-radius: 0 8px 0 0; }
.compare-table td { padding: 11px 14px; border-bottom: 0.5px solid #f0f0f0; text-align: center; }
.compare-table td:first-child { text-align: left; color: var(--black); font-weight: 500; }
.fumigo-win { color: var(--blue); font-weight: 500; }

/* GIFT SECTION */
.section.dark .section-eye { color: #555; }
.section.dark .section-title { color: var(--white); }
.section.dark .section-sub { color: #888; }
.gift-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; max-width: 500px; margin: 20px auto; }
.gift-card { background: #1a1a1a; border-radius: var(--radius-md); padding: 16px 12px; text-align: center; }
.gift-card.featured { border: 1.5px solid var(--blue); }
.gift-qty { font-size: 13px; font-weight: 500; color: var(--white); margin-bottom: 3px; }
.gift-price { font-size: 15px; font-weight: 500; color: var(--white); }
.gift-sub { font-size: 11px; color: #555; margin-top: 2px; }
.gift-btn { display: block; background: var(--white); color: var(--black); border: none; padding: 13px 32px; border-radius: var(--radius-md); font-size: 15px; font-weight: 500; margin: 0 auto 10px; transition: background 0.15s; width: fit-content; }
.gift-btn:hover { background: #f0f0f0; }
.gift-note { text-align: center; font-size: 12px; color: #555; }

/* EMAIL SECTION */
.section.blue .section-eye { color: #89b4f7; }
.section.blue .section-title { color: var(--white); }
.section.blue .section-sub { color: rgba(255,255,255,0.7); }
.email-form { display: flex; gap: 8px; max-width: 400px; margin: 0 auto 10px; }
.email-input { flex: 1; padding: 12px 14px; border-radius: var(--radius-md); border: 1px solid var(--gray-border); font-size: 14px; outline: none; background: var(--white); }
.email-btn { background: var(--black); color: var(--white); border: none; padding: 12px 18px; border-radius: var(--radius-md); font-size: 14px; font-weight: 500; white-space: nowrap; cursor: pointer; }
.email-disc { text-align: center; font-size: 11px; color: var(--gray-muted); }

/* FAQ */
.faq-list { max-width: 400px; margin: 20px auto 0; }
.faq-item { background: var(--white); border: 0.5px solid var(--gray-border); border-radius: var(--radius-md); margin-bottom: 7px; overflow: hidden; }
.faq-question { width: 100%; background: none; border: none; padding: 15px 18px; font-size: 14px; font-weight: 500; color: var(--black); text-align: left; display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.faq-question span { font-size: 18px; color: var(--gray-text); transition: transform 0.2s; }
.faq-question.open span { transform: rotate(45deg); }
.faq-answer { padding: 0 18px; font-size: 13px; color: #555; line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-answer.show { max-height: 200px; padding: 0 18px 15px; }

/* FINAL CTA */
.final-cta-btn { display: block; background: var(--white); color: var(--black); border: none; padding: 15px 36px; border-radius: var(--radius-md); font-size: 15px; font-weight: 500; margin: 0 auto 16px; width: fit-content; transition: background 0.15s; }
.final-cta-btn:hover { background: #f0f0f0; }
.final-trust { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.final-trust span { font-size: 13px; font-weight: 500; letter-spacing: 0.04em; color: rgba(255,255,255,0.45); }

/* FOOTER */
.footer { padding: 24px 28px 100px; display: flex; justify-content: space-between; align-items: center; border-top: 0.5px solid var(--gray-border); flex-wrap: wrap; gap: 12px; }
.footer-logo { font-size: 15px; font-weight: 500; letter-spacing: 0.06em; color: var(--black); }
.footer-copy { font-size: 11px; color: var(--gray-muted); margin-top: 2px; }
.footer-links { display: flex; gap: 16px; }
.footer-links a { font-size: 12px; color: var(--gray-muted); transition: color 0.15s; }
.footer-links a:hover { color: var(--black); }

/* STICKY BAR */
.sticky-bar { display: none !important; }
.sticky-name { font-size: 13px; font-weight: 500; color: var(--black); }
.sticky-price { font-size: 12px; color: var(--gray-text); }
.sticky-btn { background: var(--black); color: var(--white); border: none; padding: 11px 22px; border-radius: var(--radius-md); font-size: 14px; font-weight: 500; transition: background 0.15s; }
.sticky-btn:hover { background: #333; }
.sticky-popular-tag { font-size: 10px; font-weight: 500; color: var(--blue); letter-spacing: 0.02em; margin-left: 4px; }
.sticky-bar--home { justify-content: space-between; }
.sticky-bar--home .sticky-left { display: flex; flex-direction: column; gap: 2px; }
.sticky-badge { font-size: 11px; font-weight: 500; color: var(--blue); letter-spacing: 0.02em; }
.sticky-mid { font-size: 13px; color: var(--gray-text); }

/* HERO V2 */
.hero-copy--v2 { gap: 0; padding: 52px 40px; }
.hero-copy--v2 h1 { font-size: clamp(28px, 3.5vw, 42px); margin-bottom: 16px; }
.hero-sub--v2 { font-size: 14px; color: #777; line-height: 1.65; margin-bottom: 28px; }
.pack-options--v2 .pack-opt { padding: 12px 8px; }
.pack-options--v2 .pack-unit { display: none; }

/* ABOUT PAGE */
.about-section { max-width: 720px; margin: 0 auto; }
.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 40px 0; }
.about-stat { background: var(--gray-bg); border-radius: var(--radius-lg); padding: 20px; text-align: center; }
.about-stat-num { font-family: 'Clash Display', 'Inter', sans-serif; font-size: 28px; font-weight: 600; color: var(--blue); margin-bottom: 8px; }
.about-stat p { font-size: 12px; color: var(--gray-text); line-height: 1.55; margin: 0; }
.about-body { margin-bottom: 48px; }
.about-body p { font-size: 15px; color: #444; line-height: 1.8; margin-bottom: 14px; }
.about-body h2 { margin-bottom: 16px; }
.about-founded { background: var(--gray-bg); border-radius: var(--radius-lg); padding: 32px; margin-bottom: 48px; }
.about-founded-header { margin-bottom: 24px; }
.about-founded-header .legal-h2 { margin-bottom: 0; }
.about-locations { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
.about-location { background: var(--white); border-radius: var(--radius-md); padding: 20px; border: 0.5px solid var(--gray-border); }
.about-location-flag { font-size: 24px; margin-bottom: 8px; }
.about-location-name { font-family: 'Clash Display', 'Inter', sans-serif; font-size: 15px; font-weight: 600; color: var(--black); margin-bottom: 3px; }
.about-location-role { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-muted); margin-bottom: 10px; }
.about-location p { font-size: 13px; color: var(--gray-text); line-height: 1.6; margin: 0; }
.about-cta { border-radius: var(--radius-lg); text-align: center; max-width: none; margin: 0; }

/* LEGAL PAGES */
.legal-section { max-width: 720px; margin: 0 auto; }
.legal-updated { font-size: 12px; color: var(--gray-muted); text-align: center; margin-top: -16px; margin-bottom: 40px; }
.legal-content { }
.legal-block { margin-bottom: 36px; }
.legal-h2 { font-family: 'Clash Display', 'Inter', sans-serif; font-size: 16px; font-weight: 600; color: var(--black); margin-bottom: 10px; }
.legal-list { list-style: none; margin: 10px 0; }
.legal-list li { font-size: 14px; color: #444; line-height: 1.75; padding: 3px 0 3px 16px; position: relative; }
.legal-list li::before { content: '–'; position: absolute; left: 0; color: var(--gray-muted); }
.legal-details { font-size: 13px; color: var(--gray-muted); margin-top: 6px; }
.legal-table-wrap { overflow-x: auto; margin: 12px 0; border-radius: var(--radius-md); border: 0.5px solid var(--gray-border); }
.legal-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.legal-table th { padding: 11px 14px; text-align: left; background: var(--gray-bg); font-weight: 500; color: var(--black); border-bottom: 0.5px solid var(--gray-border); }
.legal-table td { padding: 11px 14px; border-bottom: 0.5px solid var(--gray-border); color: #444; }
.legal-table tr:last-child td { border-bottom: none; }
.legal-company-block { margin-top: 48px; }

/* RETURNS PAGE */
.returns-shipping-grid { grid-template-columns: 1fr 1fr; margin-bottom: 16px; }
.returns-notice { background: var(--blue-light); border: 0.5px solid #b8d0f5; border-radius: var(--radius-md); padding: 14px 16px; font-size: 13px; color: #444; line-height: 1.6; }
.returns-notice strong { color: var(--blue); }
.returns-guarantee { background: var(--green-light); border: 0.5px solid var(--green-border); border-radius: var(--radius-lg); padding: 20px; margin-bottom: 24px; display: flex; gap: 14px; align-items: flex-start; }
.returns-guarantee-icon { font-size: 26px; flex-shrink: 0; }
.returns-guarantee-title { font-size: 15px; font-weight: 500; color: var(--black); margin-bottom: 4px; }
.returns-guarantee p { font-size: 13px; color: #555; margin: 0; line-height: 1.6; }
.returns-steps-title { font-size: 14px; font-weight: 500; color: var(--black); margin-bottom: 12px; margin-top: 24px; }
.returns-steps { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.returns-step { display: flex; gap: 14px; align-items: flex-start; }
.returns-step-num { width: 28px; height: 28px; border-radius: 50%; background: var(--black); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 500; flex-shrink: 0; }
.returns-step-label { font-size: 14px; font-weight: 500; color: var(--black); margin-bottom: 2px; }
.returns-step p { font-size: 13px; color: var(--gray-text); margin: 0; }
.returns-cta { background: var(--black); border-radius: var(--radius-lg); padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 48px; }
.returns-cta-title { font-size: 14px; font-weight: 500; color: var(--white); margin-bottom: 3px; }
.returns-cta-sub { font-size: 13px; color: rgba(255,255,255,0.5); }

/* CONTACT PAGE */
.contact-section { max-width: 860px; margin: 0 auto; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 8px; }
.contact-intro { font-size: 13px; color: var(--gray-muted); margin-bottom: 20px; }
.contact-link { text-decoration: none; color: inherit; border-radius: var(--radius-md); padding: 8px; margin: -8px; transition: background 0.15s; }
.contact-link:hover { background: #e8e8e8; }
.contact-link:hover .contact-value { color: var(--blue); }
.contact-col-title { font-family: 'Clash Display', 'Inter', sans-serif; font-size: 16px; font-weight: 600; color: var(--black); margin-bottom: 20px; }
.contact-item { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
.contact-icon { width: 22px; height: 22px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.contact-label { font-size: 11px; color: var(--gray-muted); margin-bottom: 2px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }
.contact-value { font-size: 14px; font-weight: 500; color: var(--black); }
.contact-sub { font-size: 12px; color: var(--gray-text); margin-top: 1px; }
.response-times { background: var(--gray-bg); border-radius: var(--radius-md); padding: 16px; }
.response-title { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-muted); margin-bottom: 10px; }
.response-row { display: flex; justify-content: space-between; font-size: 13px; padding: 6px 0; border-bottom: 0.5px solid var(--gray-border); }
.response-row.last { border-bottom: none; }
.response-row span:first-child { color: var(--gray-text); }
.response-row span:last-child { font-weight: 500; color: var(--black); }
.contact-form-card { background: var(--gray-bg); border-radius: var(--radius-lg); padding: 24px; }
.form-field { margin-bottom: 14px; }
.form-label { font-size: 11px; color: var(--gray-text); display: block; margin-bottom: 5px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }
.form-input { width: 100%; padding: 11px 14px; border: 1.5px solid var(--gray-border); border-radius: var(--radius-md); font-size: 14px; outline: none; font-family: 'Inter', sans-serif; background: var(--white); color: var(--black); transition: border-color 0.15s; }
.form-input:focus { border-color: var(--black); }
.form-select { background: var(--white); cursor: pointer; }
.form-textarea { resize: vertical; min-height: 100px; }

/* HERO LINE REVEAL */
.hero-line { display: block; overflow: hidden; }
.hero-line-inner {
  display: block;
  animation: lineReveal 0.75s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.05s;
}
@keyframes lineReveal {
  from { transform: translateY(105%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* SCROLL ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   REVIEW BELT (scrolling marquee)
   ============================================================ */
.review-belt {
  overflow: hidden;
  background: #fafafa;
  padding: 22px 0;
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
}
.marquee-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: beltScroll 65s linear infinite;
}
.review-belt:hover .marquee-track { animation-play-state: paused; }
@keyframes beltScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.review-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--gray-border);
  border-radius: 40px;
  padding: 11px 22px;
  white-space: nowrap;
  flex-shrink: 0;
}
.rc-stars { color: var(--gold); font-size: 13px; letter-spacing: 1px; }
.rc-text { font-size: 14px; color: #333; margin: 0; font-style: italic; }
.rc-name { font-size: 13px; color: var(--gray-muted); font-weight: 500; }

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; }
  .pg-hero { grid-template-columns: 1fr; }
  .pg-gallery { flex-direction: column-reverse; }
  .pg-thumbs { flex-direction: row; width: 100%; }
  .pg-thumb { width: 56px; height: 56px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: 1fr; }
  .uc-grid { grid-template-columns: 1fr; }
  .trust-strip { gap: 10px; }
  .ts-sep { display: none; }
  .micro-benefits { grid-template-columns: 1fr; }
  .pack-unit { display: none; }
  .carousel-prev { left: 4px; }
  .carousel-next { right: 4px; }
  .carousel-track-wrap { --slide-w: 100%; }
  .carousel-slide { min-width: 100%; width: 100%; }
  .hero-img { min-height: 320px; }
  .hero-img img { height: 300px; }
  .trust-bar { grid-template-columns: 1fr 1fr; }
  .trust-bar-item:nth-child(2) { border-right: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .lifestyle-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-section { grid-template-columns: 1fr; }
  .diff-visual { padding: 40px 32px; min-height: 300px; }
  .diff-visual img { max-height: 260px; }
  .diff-copy { padding: 40px 28px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .ugc-section { padding: 64px 20px; }
  .ugc-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gift-grid { grid-template-columns: 1fr; }
  .review-summary { grid-template-columns: 1fr; }
  .mid-cta { flex-direction: column; align-items: flex-start; }
  .cred-bar { flex-direction: column; align-items: flex-start; }
  .final-trust { gap: 10px; }
  .nav-right .nav-link { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .returns-shipping-grid { grid-template-columns: 1fr; }
  .returns-shipping-grid .shipping-card--green { grid-column: span 1; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .about-locations { grid-template-columns: 1fr; }
  .email-form { flex-direction: column; }
  .hero-copy { padding: 28px 20px; }
  .section { padding: 52px 20px; }
  .nav { padding: 14px 20px; }
  .review-chip { padding: 10px 16px; }
  .rc-text { font-size: 13px; }
  .rc-name { font-size: 12px; }
}

/* ============================================================
   AGE GATE
   ============================================================ */
.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.age-gate.hidden { display: none; }
.age-gate-box {
  background: #fff;
  border-radius: 16px;
  padding: 48px 40px;
  max-width: 420px;
  width: 100%;
  text-align: center;
}
.age-gate-logo {
  font-family: 'Clash Display', Arial, sans-serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.12em;
  color: #111;
  margin-bottom: 28px;
}
.age-gate-title {
  font-family: 'Clash Display', Arial, sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #111;
  margin-bottom: 10px;
}
.age-gate-sub {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 32px;
}
.age-gate-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.age-gate-yes {
  background: #0055cc;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.age-gate-yes:hover { background: #0044aa; }
.age-gate-no {
  background: #f0f0f0;
  color: #111;
  border: none;
  border-radius: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}
.age-gate-disc {
  color: #bbb;
  font-size: 12px;
  margin-top: 20px;
  line-height: 1.5;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #111;
  color: #fff;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 8999;
  flex-wrap: wrap;
}
.cookie-banner.hidden { display: none; }
.cookie-text {
  font-size: 14px;
  color: #ccc;
  margin: 0;
  flex: 1;
  min-width: 200px;
  line-height: 1.5;
}
.cookie-link { color: #6699ff; text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn-primary {
  background: #0055cc;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.cookie-btn-secondary {
  background: transparent;
  color: #ccc;
  border: 1px solid #444;
  border-radius: 6px;
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
}
@media (max-width: 600px) {
  .age-gate-box { padding: 36px 24px; }
  .age-gate-btns { flex-direction: column; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
  .cookie-btns { width: 100%; }
  .cookie-btn-primary, .cookie-btn-secondary { flex: 1; }
}
