/* ============================================================
   ICE COLA 冰可乐 · 饮品菜单展示站  样式表
   ============================================================ */

:root {
  /* 中性色 */
  --bg: #0d1019;
  --bg-soft: #141826;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-strong: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.1);
  --text: #eef1ff;
  --text-soft: #b6bdd9;
  --text-mute: #7e88a8;

  /* 默认主题色：经典可乐（棕褐 + 冰蓝） */
  --accent: #c2701f;
  --accent-2: #5ad9e5;
  --accent-grad: linear-gradient(135deg, #c2701f, #5ad9e5);

  /* 品类主题色变量（被 body.theme-x 覆盖） */
  --cola: #c2701f;        --cola-2: #5ad9e5;    --cola-grad: linear-gradient(135deg, #c2701f, #5ad9e5);
  --fizz: #ff5e8a;        --fizz-2: #ffb347;   --fizz-grad: linear-gradient(135deg, #ff5e8a, #ffb347);
  --slush: #2dd4bf;       --slush-2: #38bdf8;  --slush-grad: linear-gradient(135deg, #2dd4bf, #38bdf8);
  --coffee: #a9743f;      --coffee-2: #e0b070; --coffee-grad: linear-gradient(135deg, #8b5a2b, #d4a373);
  --special: #a855f7;     --special-2: #ec4899;--special-grad: linear-gradient(135deg, #a855f7, #ec4899);
  --zero: #64748b;        --zero-2: #14b8a6;   --zero-grad: linear-gradient(135deg, #64748b, #14b8a6);

  /* 尺寸 */
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.25);
  --maxw: 1200px;
}

/* 品类主题切换 */
body.theme-cola    { --accent: var(--cola);    --accent-2: var(--cola-2);    --accent-grad: var(--cola-grad); }
body.theme-fizz    { --accent: var(--fizz);    --accent-2: var(--fizz-2);    --accent-grad: var(--fizz-grad); }
body.theme-slush   { --accent: var(--slush);   --accent-2: var(--slush-2);   --accent-grad: var(--slush-grad); }
body.theme-coffee  { --accent: var(--coffee);  --accent-2: var(--coffee-2);  --accent-grad: var(--coffee-grad); }
body.theme-special { --accent: var(--special); --accent-2: var(--special-2); --accent-grad: var(--special-grad); }
body.theme-zero    { --accent: var(--zero);    --accent-2: var(--zero-2);    --accent-grad: var(--zero-grad); }

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Noto Sans SC", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select { font-family: inherit; }

/* ============================================================
   导航栏
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 32px;
  background: rgba(13, 16, 25, 0.7);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 900; }
.logo-mark {
  display: grid; place-items: center;
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--accent-grad); color: #fff; font-weight: 900;
  font-family: "Oswald", sans-serif; letter-spacing: 0.5px; font-size: 0.92rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}
.logo-text { font-family: "Oswald", sans-serif; font-size: 1.25rem; letter-spacing: 1px; }
.logo-sub { color: var(--text-mute); font-size: 0.85rem; margin-left: 6px; font-family: "Noto Sans SC"; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  color: var(--text-soft); font-size: 0.95rem; font-weight: 500; position: relative; transition: color 0.2s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--accent-grad); border-radius: 2px; transition: width 0.25s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   英雄区 + 气泡
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 120px 24px 80px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(900px 500px at 18% 25%, rgba(194, 112, 31, 0.32), transparent 60%),
    radial-gradient(800px 500px at 82% 30%, rgba(90, 217, 229, 0.28), transparent 60%),
    radial-gradient(700px 400px at 50% 100%, rgba(255, 94, 138, 0.12), transparent 70%);
  filter: blur(6px); animation: floatBg 14s ease-in-out infinite alternate;
}
@keyframes floatBg { 0% { transform: translateY(0) scale(1); } 100% { transform: translateY(-24px) scale(1.05); } }

.bubbles { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.bubble {
  position: absolute; bottom: -80px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.5), rgba(90,217,229,0.12));
  box-shadow: inset 0 0 10px rgba(255,255,255,0.3);
  animation: rise linear infinite;
}
.bubble:nth-child(1) { left: 8%;  width: 18px; height: 18px; animation-duration: 11s; }
.bubble:nth-child(2) { left: 18%; width: 28px; height: 28px; animation-duration: 14s; animation-delay: 1s; }
.bubble:nth-child(3) { left: 30%; width: 12px; height: 12px; animation-duration: 9s;  animation-delay: 2s; }
.bubble:nth-child(4) { left: 44%; width: 34px; height: 34px; animation-duration: 16s; }
.bubble:nth-child(5) { left: 58%; width: 16px; height: 16px; animation-duration: 12s; animation-delay: 1.5s; }
.bubble:nth-child(6) { left: 70%; width: 24px; height: 24px; animation-duration: 13s; animation-delay: 0.5s; }
.bubble:nth-child(7) { left: 82%; width: 14px; height: 14px; animation-duration: 10s; animation-delay: 2.5s; }
.bubble:nth-child(8) { left: 92%; width: 30px; height: 30px; animation-duration: 15s; animation-delay: 1s; }
@keyframes rise {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 0.8; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-110vh) translateX(20px); opacity: 0; }
}

.hero-inner { position: relative; z-index: 1; max-width: 860px; }
.hero-eyebrow {
  display: inline-block; padding: 7px 18px; border-radius: 999px;
  background: var(--bg-card-strong); border: 1px solid var(--border);
  color: var(--text-soft); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 28px;
}
.hero-title {
  font-family: "Oswald", sans-serif; font-size: clamp(2.8rem, 9vw, 6rem);
  font-weight: 700; line-height: 1.05; letter-spacing: 2px; margin-bottom: 24px;
}
.hero-title .grad {
  background: var(--accent-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-desc { font-size: clamp(1rem, 2vw, 1.2rem); color: var(--text-soft); max-width: 680px; margin: 0 auto 40px; }
.hl { color: var(--accent-2); font-weight: 700; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-size: 1.7rem; font-weight: 900; color: var(--accent-2); font-family: "Oswald"; }
.hero-stats span { font-size: 0.85rem; color: var(--text-mute); }

.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  color: var(--text-mute); font-size: 0.85rem; animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,8px); } }

/* ============================================================
   按钮
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 28px; border-radius: 999px;
  font-weight: 700; font-size: 0.98rem; letter-spacing: 0.5px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  border: 1px solid transparent;
}
.btn-primary { background: var(--accent-grad); color: #fff; box-shadow: 0 10px 26px rgba(0,0,0,0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(0,0,0,0.5); }
.btn-ghost { background: var(--bg-card-strong); color: var(--text); border-color: var(--border); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }

/* ============================================================
   通用区块
   ============================================================ */
.section { padding: 96px 0; position: relative; }
.section-alt { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-tag {
  display: inline-block; padding: 5px 14px; border-radius: 999px;
  background: var(--bg-card-strong); border: 1px solid var(--border);
  color: var(--accent-2); font-size: 0.78rem; letter-spacing: 2px;
  margin-bottom: 16px; font-weight: 700; font-family: "Oswald";
}
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 900; letter-spacing: -0.5px; margin-bottom: 14px; }
.section-head p { color: var(--text-soft); }

/* ============================================================
   菜单区：工具条 + 筛选 + 网格
   ============================================================ */
.menu-toolbar {
  display: flex; gap: 16px; align-items: center; justify-content: space-between;
  margin-bottom: 28px; flex-wrap: wrap;
}
.search-box {
  position: relative; flex: 1; min-width: 260px; max-width: 480px;
}
.search-icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); opacity: 0.6; }
.search-box input {
  width: 100%; padding: 12px 16px 12px 44px; border-radius: 999px;
  background: var(--bg-card); border: 1px solid var(--border); color: var(--text); font-size: 0.98rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.search-box input:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(90, 217, 229, 0.18);
}

.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.filter-chip {
  padding: 9px 18px; border-radius: 999px; font-size: 0.9rem; font-weight: 600;
  background: var(--bg-card); border: 1px solid var(--border); color: var(--text-soft);
  transition: all 0.2s;
}
.filter-chip:hover { color: var(--text); border-color: var(--accent-2); transform: translateY(-1px); }
.filter-chip.active {
  background: var(--accent-grad); color: #fff; border-color: transparent;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.filter-chip .chip-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 7px;
  vertical-align: middle;
}

.menu-count { color: var(--text-mute); font-size: 0.88rem; margin-bottom: 22px; }
.menu-count b { color: var(--accent-2); }

.menu-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px;
}
.drink-card {
  position: relative; display: flex; flex-direction: column;
  padding: 26px 24px 24px; border-radius: var(--radius-lg);
  background: var(--bg-card); border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  overflow: hidden; cursor: pointer;
}
.drink-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--accent-grad);
}
.drink-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--accent-2); }
.drink-card-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 10px; }
.drink-card-name { font-size: 1.25rem; font-weight: 800; line-height: 1.3; }
.drink-card-en { display: block; font-family: "Oswald"; font-size: 0.78rem; color: var(--text-mute); letter-spacing: 1px; margin-top: 2px; }
.drink-card-price { font-family: "Oswald"; font-size: 1.5rem; font-weight: 700; color: var(--accent-2); white-space: nowrap; }
.drink-card-price small { font-size: 0.7rem; color: var(--text-mute); }
.drink-card-desc { color: var(--text-soft); font-size: 0.9rem; margin-bottom: 16px; flex: 1; }
.drink-card-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.tag {
  font-size: 0.72rem; padding: 3px 9px; border-radius: 999px; font-weight: 600;
  border: 1px solid var(--border); color: var(--text-soft);
}
.tag.new { background: rgba(255, 94, 138, 0.15); color: #ff8fb1; border-color: rgba(255,94,138,0.4); }
.tag.hot { background: rgba(255, 179, 71, 0.15); color: #ffc987; border-color: rgba(255,179,71,0.4); }
.tag.low { background: rgba(45, 212, 191, 0.15); color: #5eead4; border-color: rgba(45,212,191,0.4); }
.drink-card-meta {
  display: flex; gap: 16px; padding-top: 14px; border-top: 1px dashed var(--border);
  font-size: 0.82rem; color: var(--text-mute);
}
.drink-card-meta b { color: var(--text-soft); font-weight: 700; }
.drink-card-foot { margin-top: 14px; font-size: 0.82rem; color: var(--accent-2); font-weight: 600; }

.menu-empty { text-align: center; padding: 60px 20px; color: var(--text-mute); }
.menu-empty-emoji { display: block; font-size: 3rem; margin-bottom: 12px; }

/* ============================================================
   营养区
   ============================================================ */
.nutrition-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 48px; }
.nutrition-card {
  padding: 30px 26px; border-radius: var(--radius); background: var(--bg-card); border: 1px solid var(--border);
  transition: transform 0.25s, border-color 0.25s;
}
.nutrition-card:hover { transform: translateY(-4px); border-color: var(--accent-2); }
.nutrition-card-icon { font-size: 1.8rem; margin-bottom: 12px; }
.nutrition-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; }
.nutrition-card p { color: var(--text-soft); font-size: 0.92rem; }

.nutrition-bars {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px;
}
.bars-title { font-size: 1.15rem; font-weight: 800; margin-bottom: 24px; }
.bars-title span { font-size: 0.85rem; color: var(--text-mute); font-weight: 400; }
.bar-row { display: grid; grid-template-columns: 180px 1fr 70px; align-items: center; gap: 16px; margin-bottom: 16px; }
.bar-label { font-size: 0.92rem; color: var(--text-soft); }
.bar-track { height: 14px; border-radius: 999px; background: rgba(255,255,255,0.06); overflow: hidden; }
.bar-fill { height: 100%; border-radius: 999px; background: var(--accent-grad); width: 0; transition: width 1s ease; }
.bar-value { font-family: "Oswald"; font-weight: 700; color: var(--accent-2); text-align: right; }
.nutrition-note { text-align: center; color: var(--text-mute); font-size: 0.82rem; margin-top: 20px; }

/* ============================================================
   品牌故事
   ============================================================ */
.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.story-block {
  padding: 30px 26px; border-radius: var(--radius); background: var(--bg-card); border: 1px solid var(--border);
  position: relative; transition: transform 0.25s, border-color 0.25s;
}
.story-block:hover { transform: translateY(-4px); border-color: var(--accent-2); }
.story-year { font-family: "Oswald"; font-size: 2rem; font-weight: 700; color: var(--accent-2); margin-bottom: 10px; }
.story-block h4 { font-size: 1.15rem; font-weight: 800; margin-bottom: 8px; }
.story-block p { color: var(--text-soft); font-size: 0.92rem; }

/* ============================================================
   门店
   ============================================================ */
.store-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.store-card {
  padding: 36px; border-radius: var(--radius-lg); background: var(--bg-card); border: 1px solid var(--border);
}
.store-card h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 20px; }
.store-card dl { display: grid; grid-template-columns: 100px 1fr; gap: 10px 16px; }
.store-card dt { color: var(--text-mute); font-size: 0.9rem; }
.store-card dd { color: var(--text-soft); font-size: 0.95rem; }
.store-card-accent { border-color: var(--accent-2); background: linear-gradient(135deg, rgba(90,217,229,0.08), var(--bg-card)); }
.store-card-accent p { color: var(--text-soft); margin-bottom: 20px; }
.store-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.store-tip { color: var(--text-mute); font-size: 0.8rem; margin-top: 16px; }

/* ============================================================
   免责 + 页脚
   ============================================================ */
.disclaimer { background: var(--bg-soft); padding: 32px 0; border-top: 1px solid var(--border); }
.disclaimer p { color: var(--text-mute); font-size: 0.86rem; text-align: center; max-width: 900px; margin: 0 auto; line-height: 1.8; }
.footer { background: var(--bg); padding: 40px 0; border-top: 1px solid var(--border); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.footer-meta { color: var(--text-mute); font-size: 0.85rem; }

/* ============================================================
   详情弹窗
   ============================================================ */
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 24px; }
.modal-overlay { position: absolute; inset: 0; background: rgba(5, 7, 14, 0.75); backdrop-filter: blur(6px); animation: fadeIn 0.25s; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-box {
  position: relative; z-index: 1; width: 100%; max-width: 620px; max-height: 88vh; overflow-y: auto;
  background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); animation: pop 0.3s ease;
}
@keyframes pop { from { opacity: 0; transform: scale(0.94) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%; background: var(--bg-card-strong);
  font-size: 1rem; border: 1px solid var(--border); transition: background 0.2s, transform 0.2s;
}
.modal-close:hover { background: rgba(255,94,138,0.2); transform: rotate(90deg); }
.modal-body { padding: 36px; }
.modal-banner {
  height: 110px; margin: -36px -36px 24px; border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: var(--accent-grad); position: relative; overflow: hidden;
}
.modal-banner::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.3), transparent 60%);
}
.modal-emoji { position: absolute; right: 24px; bottom: -10px; font-size: 4rem; z-index: 1; }
.modal-cat { display: inline-block; font-size: 0.78rem; padding: 4px 12px; border-radius: 999px; background: var(--bg-card-strong); color: var(--accent-2); font-weight: 600; margin-bottom: 10px; }
.modal-name { font-size: 1.8rem; font-weight: 900; margin-bottom: 4px; }
.modal-en { font-family: "Oswald"; color: var(--text-mute); font-size: 0.9rem; letter-spacing: 1px; margin-bottom: 14px; }
.modal-price { font-family: "Oswald"; font-size: 2rem; font-weight: 700; color: var(--accent-2); margin-bottom: 18px; }
.modal-desc { color: var(--text-soft); margin-bottom: 22px; }
.modal-section-title { font-size: 0.92rem; font-weight: 800; color: var(--text); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.modal-nutrition { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 22px; }
.modal-nut-item { text-align: center; padding: 14px 8px; border-radius: var(--radius-sm); background: var(--bg-card); border: 1px solid var(--border); }
.modal-nut-item .v { font-family: "Oswald"; font-size: 1.3rem; font-weight: 700; color: var(--accent-2); }
.modal-nut-item .l { font-size: 0.74rem; color: var(--text-mute); margin-top: 2px; }
.modal-ingredients { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.modal-ingredients span { font-size: 0.82rem; padding: 5px 11px; border-radius: 999px; background: var(--bg-card); border: 1px solid var(--border); color: var(--text-soft); }
.modal-actions { display: flex; gap: 12px; }

/* ============================================================
   响应式
   ============================================================ */
@media (max-width: 1100px) {
  .nutrition-row, .story-grid { grid-template-columns: 1fr; }
  .bar-row { grid-template-columns: 130px 1fr 60px; }
}
@media (max-width: 820px) {
  .nav-links {
    display: none; position: absolute; top: 100%; right: 20px; left: 20px;
    flex-direction: column; gap: 4px; padding: 16px; border-radius: 14px;
    background: var(--bg-soft); border: 1px solid var(--border); box-shadow: var(--shadow-soft);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .navbar { padding: 12px 20px; }
  .store-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; }
  .section { padding: 72px 0; }
  .nutrition-bars, .store-card { padding: 26px 22px; }
  .modal-body { padding: 26px; }
  .modal-banner { margin: -26px -26px 22px; height: 90px; }
  .modal-nutrition { grid-template-columns: repeat(3, 1fr); }
}

/* 入场动画 */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* 打印样式 */
@media print {
  .navbar, .hero, .nav-toggle, .menu-toolbar, .filter-bar, .menu-count, .drink-card-foot,
  .modal, .modal-overlay, .scroll-hint, .disclaimer, .bubbles, #store, #story { display: none !important; }
  body { background: #fff; color: #000; }
  .section { padding: 16px 0; }
  .section-alt { background: #fff; }
  .drink-card, .nutrition-card, .nutrition-bars, .bar-row {
    background: #fff !important; border: 1px solid #ccc !important; color: #000 !important; box-shadow: none !important;
    break-inside: avoid;
  }
  .drink-card-price, .bar-value, .modal-price, .grad, .hero-stats strong { -webkit-text-fill-color: #000 !important; color: #000 !important; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .drink-card::before { background: #888 !important; }
}
