@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;600;700;800;900&family=Pacifico&display=swap");

/* ============================================================
   BUSANSAN — full-width website (v3)
   ============================================================ */
:root {
  --red: #e11020;
  --deep-red: #b00711;
  --dark-red: #8a0510;
  --ink: #1b1b1b;
  --muted: #6a6a6a;
  --line: #eee1db;
  --cream: #fff6f1;
  --cream-2: #fdeee6;
  --gold: #ffb400;
  --white: #ffffff;
  --shadow-sm: 0 6px 18px rgba(40, 20, 15, 0.08);
  --shadow: 0 18px 44px rgba(50, 22, 15, 0.12);
  --shadow-lg: 0 30px 70px rgba(50, 22, 15, 0.18);
  --radius: 18px;
  --radius-sm: 12px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Be Vietnam Pro", system-ui, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.shell { width: min(100%, 1240px); margin: 0 auto; padding: 0 28px; }
.shell-wide { width: min(100%, 1480px); margin: 0 auto; padding: 0 28px; }

.skip-link {
  position: absolute; left: 14px; top: -70px; z-index: 200;
  padding: 12px 20px; border-radius: 10px; color: #fff; background: var(--red);
  font-weight: 800; transition: top 0.25s var(--ease);
}
.skip-link:focus { top: 14px; }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 52px; padding: 14px 30px;
  border: 2px solid transparent; border-radius: 12px;
  font-size: 15px; font-weight: 800; letter-spacing: 0.2px; text-transform: uppercase;
  cursor: pointer; white-space: nowrap;
  position: relative; overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}
.btn .ic { font-size: 1.15em; }
.btn-lg { min-height: 62px; padding: 18px 40px; font-size: 17px; border-radius: 14px; }
.btn-block { width: 100%; }
.btn-primary { color: #fff; background: linear-gradient(135deg, #ff2233, var(--deep-red)); box-shadow: 0 12px 26px rgba(225, 16, 32, 0.32); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 36px rgba(225, 16, 32, 0.4); }
.btn-ghost { color: var(--red); background: #fff; border-color: rgba(225, 16, 32, 0.4); }
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--red); box-shadow: var(--shadow-sm); }
.btn-outline { color: var(--red); background: transparent; border-color: rgba(225, 16, 32, 0.5); }
.btn-outline:hover { color: #fff; background: var(--red); transform: translateY(-3px); box-shadow: 0 14px 30px rgba(225, 16, 32, 0.3); }
.btn-white { color: var(--red); background: #fff; box-shadow: var(--shadow); }
.btn-white:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
/* Shine sweep */
.btn::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.5), transparent 70%);
  transform: translateX(-130%); transition: transform 0.6s var(--ease);
}
.btn:hover::after { transform: translateX(130%); }

/* ---------------- Header ---------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.scrolled { box-shadow: 0 10px 30px rgba(50, 22, 15, 0.1); }
.header-inner { display: flex; align-items: center; gap: 20px; min-height: 84px; }
.brand img { width: 176px; transition: transform 0.3s var(--ease); }
.brand:hover img { transform: scale(1.04); }
.main-nav { display: flex; align-items: center; gap: clamp(20px, 2.4vw, 42px); margin-left: clamp(24px, 4vw, 64px); }
.main-nav a {
  position: relative; padding: 10px 2px; font-size: 15px; font-weight: 700; color: var(--ink);
  transition: color 0.2s var(--ease);
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; border-radius: 3px;
  background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform 0.28s var(--ease);
}
.main-nav a:hover, .main-nav a.active { color: var(--red); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.header-actions { margin-left: auto; }
.hotline-button { min-height: 48px; padding: 12px 24px; font-size: 15px; }
.menu-toggle { display: none; flex-direction: column; gap: 5px; width: 46px; height: 46px; margin-left: auto; padding: 11px; border: 0; border-radius: 10px; background: var(--cream); cursor: pointer; }
.menu-toggle span { height: 3px; border-radius: 3px; background: var(--red); transition: transform 0.3s var(--ease), opacity 0.2s; }
.site-header.open .menu-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.site-header.open .menu-toggle span:nth-child(2) { opacity: 0; }
.site-header.open .menu-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------------- Hero (white) ---------------- */
.hero { position: relative; background: var(--white); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -20%; right: -10%; width: 60%; height: 120%;
  background: radial-gradient(circle at 70% 40%, rgba(255, 200, 160, 0.28), transparent 60%);
  pointer-events: none;
}
.hero-inner {
  position: relative; display: grid; grid-template-columns: 1.05fr 1fr; align-items: center; gap: 40px;
  min-height: clamp(560px, 72vh, 760px); padding-top: 48px; padding-bottom: 56px;
}
.hero-copy { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 22px;
  padding: 10px 20px; border: 1px solid rgba(225, 16, 32, 0.24); border-radius: 999px;
  background: var(--cream); color: var(--deep-red); font-size: 14px; font-weight: 800;
  box-shadow: var(--shadow-sm);
}
.script { margin: 0 0 6px; font-family: "Pacifico", cursive; font-size: clamp(30px, 3.6vw, 46px); color: var(--ink); }
.hero h1 { margin: 0; font-size: clamp(46px, 6vw, 82px); line-height: 1.28; font-weight: 900; text-transform: uppercase; letter-spacing: -0.5px; }
.hero h1 span { display: block; color: var(--ink); }
.hero h1 strong { display: block; color: var(--red); }
.hero h2 { margin: 22px 0 18px; font-size: clamp(18px, 1.7vw, 24px); font-weight: 800; text-transform: uppercase; color: #2a2a2a; }
.lede { max-width: 520px; margin: 0 0 34px; color: #4a4a4a; font-size: 17px; line-height: 1.85; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 18px; }
.stats { display: flex; gap: 40px; margin-top: 40px; }
.stats div { position: relative; padding-left: 18px; }
.stats div::before { content: ""; position: absolute; left: 0; top: 6px; bottom: 8px; width: 4px; border-radius: 3px; background: linear-gradient(180deg, var(--red), #ff8c29); }
.stats b { display: block; font-size: clamp(30px, 3vw, 40px); font-weight: 900; line-height: 1.05; color: var(--ink); }
.stats b i { font-size: 0.5em; font-style: normal; color: var(--muted); }
.stats span { font-size: 13px; font-weight: 700; text-transform: uppercase; color: #555; letter-spacing: 0.3px; }

.hero-visual { position: relative; z-index: 1; display: grid; place-items: center; min-height: 480px; }
.hero-blob {
  position: absolute; width: min(46vw, 560px); aspect-ratio: 1; border-radius: 46% 54% 52% 48% / 52% 46% 54% 48%;
  background: radial-gradient(circle at 40% 35%, #ff5a4d, var(--deep-red));
  box-shadow: 0 40px 90px rgba(180, 12, 24, 0.35);
  animation: blobMorph 9s var(--ease) infinite;
}
.bowl {
  position: relative; z-index: 2; width: min(44vw, 520px); aspect-ratio: 1; max-width: none;
  border-radius: 50%; object-fit: cover; border: 12px solid #fff;
  box-shadow: 0 34px 64px rgba(0, 0, 0, 0.26);
  animation: floatBowl 5s ease-in-out infinite;
}
.hero-promo {
  position: absolute; z-index: 3; top: 6%; left: 4%;
  display: grid; place-content: center; text-align: center;
  width: 108px; height: 108px; border-radius: 50%; color: #fff;
  background: radial-gradient(circle at 32% 28%, #ffd23f, #ff8a00);
  box-shadow: 0 18px 30px rgba(200, 110, 0, 0.4), inset 0 0 0 4px rgba(255, 255, 255, 0.4);
  transform: rotate(-12deg); animation: promoPop 3s ease-in-out infinite;
}
.hero-promo b { font-size: 22px; font-weight: 900; line-height: 1; }
.hero-promo i { font-size: 9.5px; font-style: normal; font-weight: 800; text-transform: uppercase; letter-spacing: 0.4px; }
.stamp {
  position: absolute; z-index: 3; right: 6%; bottom: 8%;
  width: 48px; padding: 10px 0; border: 2px solid var(--red); border-radius: 10px;
  color: var(--red); background: rgba(255, 255, 255, 0.9); font-size: 24px; font-weight: 800; line-height: 1.05; text-align: center;
}

.hero-marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--red); color: #fff; overflow: hidden; }
.hero-marquee-track { display: flex; width: max-content; padding: 14px 0; animation: scrollX 24s linear infinite; }
.hero-marquee-track span { font-size: 15px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; opacity: 0.95; margin-right: 30px; }

@keyframes floatBowl { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes blobMorph {
  0%, 100% { border-radius: 46% 54% 52% 48% / 52% 46% 54% 48%; transform: rotate(0deg) scale(1); }
  50% { border-radius: 54% 46% 48% 52% / 46% 54% 48% 52%; transform: rotate(6deg) scale(1.03); }
}
@keyframes promoPop { 0%, 100% { transform: rotate(-12deg) scale(1); } 50% { transform: rotate(-12deg) scale(1.08); } }
@keyframes scrollX { to { transform: translateX(-50%); } }

/* ---------------- Section scaffolding ---------------- */
.section { padding: 92px 0; }
.section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section-head.light .eyebrow { color: #ffd7a8; }
.section-head.light h2, .section-head.light .section-sub { color: #fff; }
.eyebrow {
  display: inline-block; margin-bottom: 14px; padding: 7px 16px; border-radius: 999px;
  background: var(--cream-2); color: var(--red); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.6px;
}
.section-head h2 { margin: 0; font-size: clamp(32px, 4vw, 50px); font-weight: 900; line-height: 1.15; text-transform: uppercase; letter-spacing: -0.5px; }
.section-sub { margin: 16px 0 0; color: var(--muted); font-size: 17px; }

/* ---------------- Levels ---------------- */
.levels { background: linear-gradient(180deg, var(--cream) 0%, #fff 100%); }
.level-panel {
  display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: center;
  padding: 44px; border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); border: 1px solid var(--line);
}
.level-line { position: relative; display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.level-line::before { content: ""; position: absolute; left: 22px; right: 22px; height: 4px; border-radius: 3px; background: linear-gradient(90deg, #ffc400, #ff7a1a, var(--red)); }
.level { position: relative; z-index: 1; width: 46px; height: 46px; border: 0; border-radius: 50%; color: #fff; font-size: 18px; font-weight: 900; cursor: pointer; transition: transform 0.25s var(--ease); }
.level.yellow { background: #ffc400; color: #4a3500; }
.level.orange { background: #ff8c29; }
.level.red { background: var(--red); }
.level:not(.selected):hover { transform: scale(1.15); }
.level.selected { width: 68px; height: 68px; border: 5px solid #ffb21d; background: var(--red); font-size: 30px; box-shadow: 0 12px 26px rgba(225, 16, 32, 0.35); animation: levelPulse 1.6s ease-in-out infinite; }
.level-icons { display: flex; justify-content: space-between; padding: 0 6px; font-size: 26px; }
.level-card { position: relative; overflow: hidden; padding: 34px; border-radius: var(--radius); color: #fff; background: linear-gradient(140deg, #ff3040, var(--dark-red)); box-shadow: var(--shadow); }
.level-flame { position: absolute; right: -10px; bottom: -14px; font-size: 130px; opacity: 0.22; }
.level-card h3 { margin: 0 0 8px; font-size: 40px; font-weight: 900; text-transform: uppercase; }
.level-card strong { display: block; margin-bottom: 12px; font-size: 18px; }
.level-card p { margin: 0 0 22px; font-size: 15px; opacity: 0.92; }
.level-card .btn-primary { background: #fff; color: var(--red); }

@keyframes levelPulse { 0%, 100% { box-shadow: 0 12px 26px rgba(225, 16, 32, 0.35); } 50% { box-shadow: 0 0 0 12px rgba(225, 16, 32, 0.12), 0 16px 30px rgba(225, 16, 32, 0.45); } }

/* ---------------- Best Seller marquee ---------------- */
.best { background: linear-gradient(180deg, #fff 0%, var(--cream) 100%); }
.best-viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.product-track { display: flex; gap: 28px; width: max-content; padding: 12px 28px; animation: productMarquee var(--marquee-dur, 30s) linear infinite; }
.best-viewport:hover .product-track { animation-play-state: paused; }
.product-card { flex: 0 0 clamp(260px, 22vw, 320px); overflow: hidden; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.pc-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.pc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.product-card:hover .pc-media img { transform: scale(1.08); }
.product-card.hot .pc-media::before { content: "HOT"; position: absolute; z-index: 2; top: 14px; left: 14px; padding: 6px 14px; border-radius: 999px; color: #fff; background: var(--red); font-size: 12px; font-weight: 900; letter-spacing: 0.5px; box-shadow: var(--shadow-sm); }
.pc-body { padding: 20px 22px 22px; }
.pc-body h3 { margin: 0 0 6px; font-size: 19px; font-weight: 800; }
.pc-body p { margin: 0 0 16px; color: var(--muted); font-size: 14px; }
.pc-foot { display: flex; align-items: center; justify-content: space-between; }
.pc-foot b { color: var(--red); font-size: 22px; font-weight: 900; }
.stars { color: var(--gold); font-size: 15px; letter-spacing: 1px; }

@keyframes productMarquee { to { transform: translateX(var(--marquee-shift, -50%)); } }

/* ---------------- Menu (5 per row, full width) ---------------- */
.menu-section { background: radial-gradient(circle at 15% 10%, rgba(255, 190, 120, 0.12), transparent 40%), #fff; }
.tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 48px; }
.tabs button {
  min-height: 54px; padding: 14px 26px; border: 2px solid var(--line); border-radius: 999px;
  background: #fff; color: var(--ink); font-size: 15px; font-weight: 800; cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.tabs button:hover { transform: translateY(-2px); border-color: rgba(225, 16, 32, 0.5); }
.tabs button.active, .tabs button[aria-selected="true"] { color: #fff; background: linear-gradient(135deg, #ff2233, var(--deep-red)); border-color: transparent; box-shadow: 0 12px 26px rgba(225, 16, 32, 0.3); }
.menu-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 26px; animation: fadeUp 0.4s var(--ease); }
.menu-item { overflow: hidden; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); display: flex; flex-direction: column; }
.menu-item:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.mi-media { position: relative; aspect-ratio: 1; overflow: hidden; }
.mi-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.menu-item:hover .mi-media img { transform: scale(1.08); }
.mi-media .badge { position: absolute; top: 12px; left: 12px; padding: 6px 12px; border-radius: 999px; background: var(--red); color: #fff; font-size: 11px; font-weight: 900; text-transform: uppercase; }
.mi-body { display: flex; flex-direction: column; flex: 1; padding: 18px 18px 20px; }
.mi-body h3 { margin: 0 0 6px; font-size: 17px; font-weight: 800; }
.mi-body p { margin: 0 0 10px; color: var(--muted); font-size: 13px; line-height: 1.55; }
.mi-tag { margin-bottom: 14px; color: var(--deep-red); font-size: 12px; font-weight: 800; }
.mi-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; gap: 10px; }
.mi-foot b { color: var(--red); font-size: 20px; font-weight: 900; }
.mi-order { min-height: 40px; padding: 8px 16px; border-radius: 10px; border: 2px solid var(--red); background: #fff; color: var(--red); font-size: 12px; font-weight: 800; text-transform: uppercase; cursor: pointer; transition: all 0.2s var(--ease); }
.mi-order:hover { color: #fff; background: var(--red); }
.menu-cta { margin-top: 48px; text-align: center; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* ---------------- Combo (pricing cards) ---------------- */
.combo-section { background: linear-gradient(160deg, var(--red), var(--dark-red)); }
.combo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: stretch; }
.combo-card { position: relative; display: flex; flex-direction: column; padding: 30px; border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.combo-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.combo-card.featured { transform: scale(1.04); border: 3px solid var(--gold); }
.combo-card.featured:hover { transform: scale(1.04) translateY(-10px); }
.ribbon { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); padding: 8px 20px; border-radius: 999px; background: linear-gradient(135deg, #ffd23f, #ff8a00); color: #6a3a00; font-size: 13px; font-weight: 900; white-space: nowrap; box-shadow: var(--shadow-sm); }
.combo-media { aspect-ratio: 16 / 11; margin-bottom: 20px; overflow: hidden; border-radius: var(--radius-sm); background: var(--cream); }
.combo-media img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.5s var(--ease); }
.combo-card:hover .combo-media img { transform: scale(1.06); }
.combo-card h3 { margin: 0 0 16px; font-size: 24px; font-weight: 900; text-align: center; }
.combo-items { list-style: none; margin: 0 0 20px; padding: 0; display: grid; gap: 10px; }
.combo-items li { position: relative; padding-left: 28px; font-size: 15px; color: #333; }
.combo-items li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 20px; height: 20px; display: grid; place-content: center; border-radius: 50%; background: var(--cream-2); color: var(--red); font-size: 12px; font-weight: 900; }
.combo-price { text-align: center; margin-bottom: 8px; }
.combo-price del { display: block; color: #999; font-size: 15px; }
.combo-price b { color: var(--red); font-size: 34px; font-weight: 900; }
.save-badge { display: inline-block; align-self: center; margin-bottom: 20px; padding: 6px 14px; border-radius: 999px; background: #eafaef; color: #1a8a3c; font-size: 13px; font-weight: 800; }
.combo-card .btn { margin-top: auto; }

/* ---------------- Offers ---------------- */
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.offer-card { display: flex; overflow: hidden; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.offer-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.offer-media { flex: 0 0 42%; overflow: hidden; }
.offer-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.offer-card:hover .offer-media img { transform: scale(1.08); }
.offer-body { padding: 26px 24px; display: flex; flex-direction: column; justify-content: center; }
.offer-body small { color: var(--red); font-size: 13px; font-weight: 900; text-transform: uppercase; }
.offer-body h3 { margin: 8px 0 8px; font-size: 24px; font-weight: 900; color: var(--ink); }
.offer-body p { margin: 0 0 16px; color: var(--muted); font-size: 15px; }
.link-arrow { color: var(--red); font-size: 14px; font-weight: 800; text-transform: uppercase; transition: gap 0.2s var(--ease); }
.link-arrow:hover { text-decoration: underline; }

/* ---------------- News ---------------- */
.news-section { background: var(--cream); }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.news-grid article { overflow: hidden; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.news-grid article:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.news-media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.news-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.news-grid article:hover .news-media img { transform: scale(1.08); }
.news-media .tag { position: absolute; top: 14px; left: 14px; padding: 7px 14px; border-radius: 999px; background: var(--red); color: #fff; font-size: 12px; font-weight: 900; text-transform: uppercase; }
.news-body { padding: 24px; }
.news-body h3 { margin: 0 0 10px; font-size: 20px; font-weight: 800; line-height: 1.3; }
.news-body p { margin: 0 0 16px; color: var(--muted); font-size: 15px; }

/* ---------------- Stores ---------------- */
.stores { background: linear-gradient(180deg, #fff 0%, var(--cream) 100%); }
.store-wrap { display: grid; grid-template-columns: 440px 1fr; gap: 40px; align-items: stretch; }
.store-list { display: flex; flex-direction: column; gap: 14px; }
.store-list article { display: grid; grid-template-columns: 52px 1fr auto; align-items: center; gap: 14px; padding: 18px 20px; border: 2px solid var(--line); border-radius: var(--radius-sm); background: #fff; cursor: pointer; transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.store-list article:hover, .store-list article.active { transform: translateX(6px); border-color: rgba(225, 16, 32, 0.5); box-shadow: var(--shadow-sm); }
.store-list article.active { border-color: var(--red); }
.pin { display: grid; place-content: center; width: 52px; height: 52px; border-radius: 14px; background: var(--cream-2); color: var(--red); font-size: 24px; }
.store-list b { display: block; margin-bottom: 4px; font-size: 16px; }
.store-list p { margin: 0; color: var(--muted); font-size: 13px; }
.store-list time { color: var(--red); font-size: 13px; font-weight: 800; white-space: nowrap; }
.store-list .btn { margin-top: 6px; }
.store-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.map-switch { animation: mapSwitch 0.45s var(--ease); }
@keyframes mapSwitch { from { opacity: 0.3; transform: scale(0.98); } to { opacity: 1; transform: none; } }

/* ---------------- CTA band ---------------- */
.cta-band { background: linear-gradient(135deg, #1b1b1b, #3a1210); color: #fff; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 56px 28px; flex-wrap: nowrap; }
.cta-inner h2 { margin: 0 0 10px; font-size: clamp(26px, 3vw, 38px); font-weight: 900; text-transform: uppercase; line-height: 1.32; }
.cta-inner p { margin: 0; color: rgba(255, 255, 255, 0.8); font-size: 17px; }
/* text block grows, button stays a fixed block on the right (no wrapping under) */
.cta-inner > div { flex: 1 1 auto; min-width: 0; }
.cta-inner > .btn { flex: 0 0 auto; }
.cta-inner-center { flex-direction: column; justify-content: center; align-items: center; text-align: center; }
.cta-inner-center p { margin-bottom: 22px; max-width: 560px; }

/* ---------------- Footer ---------------- */
.footer { color: #fff; background: linear-gradient(160deg, #c8000e, var(--dark-red)); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1fr 1.3fr; gap: 44px; padding: 72px 28px 48px; }
.footer-brand img { width: 190px; margin-bottom: 20px; padding: 8px 12px; border-radius: 12px; background: rgba(255, 255, 255, 0.14); }
.footer-brand p { margin: 0 0 22px; color: rgba(255, 255, 255, 0.85); font-size: 14px; line-height: 1.7; }
.social { display: flex; gap: 12px; }
.social a { display: grid; place-content: center; width: 44px; height: 44px; border-radius: 50%; background: rgba(255, 255, 255, 0.14); color: #fff; font-size: 18px; font-weight: 900; transition: transform 0.25s var(--ease), background 0.25s var(--ease); }
.social a:hover { transform: translateY(-4px); background: #fff; color: var(--red); }
.footer-col h3, .footer-hotline h3 { margin: 0 0 20px; font-size: 16px; font-weight: 800; text-transform: uppercase; }
.footer-col a { display: block; margin-bottom: 12px; color: rgba(255, 255, 255, 0.85); font-size: 14px; transition: color 0.2s var(--ease), padding-left 0.2s var(--ease); }
.footer-col a:hover { color: #fff; padding-left: 6px; }
.phone-big { display: block; margin-bottom: 8px; font-size: 30px; font-weight: 900; color: #fff; }
.footer-hotline p { margin: 0 0 18px; color: rgba(255, 255, 255, 0.85); font-size: 14px; }
.footer-hotline .btn-primary { background: #fff; color: var(--red); box-shadow: none; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.18); }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; padding: 22px 28px; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { margin: 0; color: rgba(255, 255, 255, 0.8); font-size: 13px; }

/* ---------------- Floating call button ---------------- */
.fab-call {
  position: fixed; right: 26px; bottom: 26px; z-index: 90;
  display: grid; place-content: center; width: 62px; height: 62px; border-radius: 50%;
  color: #fff; background: linear-gradient(135deg, #ff2233, var(--deep-red)); font-size: 26px;
  box-shadow: 0 14px 30px rgba(225, 16, 32, 0.45); animation: fabPulse 2s ease-in-out infinite;
}
.fab-call:hover { transform: scale(1.08); }
@keyframes fabPulse { 0%, 100% { box-shadow: 0 14px 30px rgba(225, 16, 32, 0.45); } 50% { box-shadow: 0 0 0 14px rgba(225, 16, 32, 0.001), 0 14px 30px rgba(225, 16, 32, 0.6); } }

/* ---------------- Toast ---------------- */
.toast { position: fixed; left: 50%; bottom: 30px; z-index: 150; padding: 14px 24px; border-radius: 12px; color: #fff; background: rgba(25, 20, 20, 0.96); box-shadow: var(--shadow-lg); font-size: 14px; font-weight: 700; transform: translate(-50%, 24px); opacity: 0; pointer-events: none; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.toast.show { transform: translate(-50%, 0); opacity: 1; }

/* ---------------- Scroll reveal (animation frees transform afterwards) ---------------- */
/* Hidden only when JS is active, so content never gets stuck invisible without JS. */
.js [data-reveal] { opacity: 0; }
[data-reveal].is-visible { animation: revealUp 0.7s var(--ease) var(--d, 0ms) forwards; }
[data-reveal].revealed { opacity: 1; }
@keyframes revealUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ---------------- Focus ---------------- */
a:focus-visible, button:focus-visible, .store-list article:focus-visible { outline: 3px solid #1a56db; outline-offset: 3px; border-radius: 8px; }
.btn-primary:focus-visible, .tabs button.active:focus-visible { outline-color: #fff; box-shadow: 0 0 0 5px rgba(26, 86, 219, 0.55); }
:focus:not(:focus-visible) { outline: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .menu-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
  .footer-hotline { grid-column: span 1; }
}
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; text-align: left; }
  .hero-visual { min-height: 380px; order: -1; }
  .bowl { width: min(70vw, 460px); }
  .hero-blob { width: min(66vw, 440px); }
  .level-panel { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: repeat(3, 1fr); }
  .combo-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .combo-card.featured { transform: none; }
  .combo-card.featured:hover { transform: translateY(-10px); }
  .offer-grid, .news-grid { grid-template-columns: 1fr 1fr; }
  .store-wrap { grid-template-columns: 1fr; }
  .map { min-height: 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 36px; }
  .main-nav, .header-actions { display: none; }
  .menu-toggle { display: flex; }
  .site-header.open .main-nav {
    position: absolute; top: 84px; left: 16px; right: 16px; display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
    padding: 16px 20px; border-radius: 16px; background: #fff; box-shadow: var(--shadow);
  }
  .hero h1 { line-height: 1.2; }
  .hero-buttons .btn { flex: 1; }
  .stats { flex-wrap: wrap; gap: 22px; }
  .menu-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .offer-grid, .news-grid { grid-template-columns: 1fr; }
  .offer-card { flex-direction: column; }
  .offer-media { flex-basis: auto; aspect-ratio: 16 / 10; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; padding: 48px 28px 36px; }
  .cta-inner { flex-direction: column; align-items: flex-start; text-align: left; }
  .cta-inner-center { align-items: center; text-align: center; }
  .level-card h3 { font-size: 32px; }
}
@media (max-width: 460px) {
  .menu-grid { grid-template-columns: 1fr; }
  .level { width: 34px; height: 34px; font-size: 14px; }
  .level.selected { width: 50px; height: 50px; font-size: 22px; }
}

/* ---------------- Reduced motion ---------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .product-track { animation: none !important; flex-wrap: wrap; justify-content: center; }
  .hero-marquee-track { animation: none !important; }
  .bowl, .hero-blob, .hero-promo, .fab-call { animation: none !important; }
}

/* ============================================================
   v4 — feedback pass: headline, levels height, combo/news slider,
   footer square logo, bolder eyebrow on red
   ============================================================ */

/* 1. Headline tighter, single line for "NGON ĐÃ MIỆNG" */
.hero h1 { font-size: clamp(38px, 4.4vw, 58px); line-height: 1.14; letter-spacing: -0.4px; }
.hero h2 { margin: 18px 0 16px; }
.hero-inner { min-height: clamp(520px, 64vh, 680px); }

/* 1b. Hero visual: cleaner ring + a bit smaller */
.bowl { width: min(40vw, 470px); border-width: 10px; }
.hero-blob { width: min(42vw, 500px); }
.hero-promo { width: 96px; height: 96px; top: 4%; left: 2%; }
.hero-promo b { font-size: 19px; }
.stamp { right: 4%; bottom: 6%; }

/* 2. Levels section shorter */
.levels { padding: 66px 0; }
.levels .section-head { margin-bottom: 34px; }
.level-panel { padding: 32px; gap: 32px; }
.level-card { padding: 26px 28px; }
.level-card h3 { font-size: 30px; }
.level-card strong { font-size: 16px; margin-bottom: 8px; }
.level-card p { margin-bottom: 16px; }
.level-flame { font-size: 100px; right: -6px; bottom: -10px; }
.level-line { margin-bottom: 16px; }

/* 3. Eyebrow on red section — make it pop, not faded */
.section-head.light .eyebrow { background: #fff; color: var(--red); box-shadow: 0 6px 16px rgba(0,0,0,0.15); }

/* --- Generic slider (combo + news) --- */
.slider { position: relative; display: grid; grid-template-columns: auto minmax(0,1fr) auto; align-items: center; gap: 16px; }
.slider-viewport { overflow: hidden; }
.combo-slider .slider-viewport { padding-top: 26px; margin-top: -26px; }
.slider-track { display: flex; gap: 30px; transition: transform 0.55s var(--ease); will-change: transform; }
.slider-nav { flex-shrink: 0; width: 54px; height: 54px; border: 0; border-radius: 50%; background: #fff; color: var(--red); font-size: 30px; line-height: 1; cursor: pointer; box-shadow: var(--shadow); transition: transform 0.2s var(--ease), opacity 0.2s; }
.slider-nav:hover { transform: scale(1.12); }
.slider-nav:disabled { opacity: 0.35; cursor: default; }
.combo-slider .combo-card, .news-slider .news-card { flex: 0 0 calc((100% - 60px) / 3); }
.combo-slider .combo-card.featured { transform: none; }
.combo-slider .combo-card.featured:hover { transform: translateY(-10px); }
.slider-dots { display: flex; justify-content: center; gap: 10px; margin-top: 30px; }
.slider-dots .dot { width: 10px; height: 10px; padding: 0; border: 0; border-radius: 50%; background: rgba(0,0,0,0.16); cursor: pointer; transition: width 0.25s var(--ease), background 0.25s var(--ease); }
.combo-section .slider-dots .dot { background: rgba(255,255,255,0.45); }
.slider-dots .dot.active { width: 28px; border-radius: 6px; background: var(--red); }
.combo-section .slider-dots .dot.active { background: #fff; }

/* News card (moved out of grid into slider) */
.news-card { overflow: hidden; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.news-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.news-card:hover .news-media img { transform: scale(1.08); }

@media (max-width: 1000px) {
  .combo-slider .combo-card, .news-slider .news-card { flex-basis: calc((100% - 30px) / 2); }
}
@media (max-width: 760px) {
  .combo-slider .combo-card, .news-slider .news-card { flex-basis: 100%; }
  .slider { gap: 8px; }
  .slider-nav { width: 44px; height: 44px; font-size: 26px; }
}

/* 5. Footer square (stacked) logo */
.footer-logo { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; margin-bottom: 20px; }
.footer-logo img { width: 84px; height: auto; margin: 0; padding: 0; background: none; border-radius: 0; }
.footer-logo-text b { display: block; font-family: "Pacifico", cursive; font-size: 30px; font-weight: 400; line-height: 1; color: #fff; }
.footer-logo-text span { display: block; margin-top: 4px; font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.9); }

/* 6. Header logo (transparent, hi-res) sizing */
.brand img { width: 172px; height: auto; }

/* ============================================================
   v5 — square product/combo images, consistent level card,
   professional SVG heat icons
   ============================================================ */

/* 3. Product images square (best seller) */
.pc-media { aspect-ratio: 1 / 1; }
/* 4. Combo images fill the cell + square (like products) */
.combo-media { aspect-ratio: 1 / 1; margin-bottom: 18px; background: var(--cream); }
.combo-media img { object-fit: cover; }

/* 1. Level card: same size for every level + all text white */
.level-card { min-height: 306px; justify-content: center; }
.level-card, .level-card h3, .level-card strong, .level-card p { color: #fff !important; }
.level-card .btn-primary { color: var(--red) !important; }
.level-main { align-self: center; }

/* 2. SVG chili / flame heat icons */
.level-icons { align-items: flex-end; gap: 6px; }
.level-icons .heat { display: inline-flex; align-items: flex-end; justify-content: center; flex: 1; transition: transform 0.3s var(--ease), filter 0.3s var(--ease); }
.level-icons .heat svg { width: 30px; height: 30px; display: block; filter: drop-shadow(0 3px 5px rgba(0,0,0,0.14)); }
.level-icons .heat.on { transform: translateY(-4px) scale(1.28); }
.level-icons .heat.on svg { filter: drop-shadow(0 6px 10px rgba(225,16,32,0.4)); }

/* ============================================================
   v6 — selected level number white, animated burning flames
   ============================================================ */

/* 1. Selected level number must be white (was dark on red = chìm) */
.level.selected { color: #fff !important; }

/* 2. Continuously flickering flame heat icons */
.level-icons { align-items: flex-end; gap: 4px; }
.level-icons .heat { flex: 1; display: flex; justify-content: center; align-items: flex-end; transition: transform 0.3s var(--ease); }
.level-icons .heat svg {
  width: var(--sz, 28px); height: var(--sz, 28px); display: block;
  transform-origin: bottom center;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
  animation: flameFlicker 0.9s ease-in-out infinite;
  animation-delay: var(--dly, 0s);
}
.level-icons .heat.on { transform: translateY(-3px) scale(1.18); }
.level-icons .heat.on svg { filter: drop-shadow(0 0 12px rgba(255, 90, 0, 0.75)); }
@keyframes flameFlicker {
  0%, 100% { transform: scaleY(1) scaleX(1) rotate(0deg); }
  20% { transform: scaleY(1.16) scaleX(0.95) rotate(-3deg); }
  45% { transform: scaleY(0.9) scaleX(1.05) rotate(2deg); }
  70% { transform: scaleY(1.1) scaleX(0.97) rotate(3deg); }
}

/* ============================================================
   v7 — Online ordering: floating cart + slide-in panel + checkout
   ============================================================ */
.cart-chip {
  position: fixed; right: 26px; bottom: 100px; z-index: 95;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 20px; border: 0; border-radius: 999px;
  background: linear-gradient(135deg, #ff2233, var(--deep-red)); color: #fff;
  font-weight: 800; font-size: 14px; cursor: pointer;
  box-shadow: 0 14px 30px rgba(225, 16, 32, 0.42);
  transition: transform 0.2s var(--ease);
}
.cart-chip:hover { transform: translateY(-3px); }
.cart-chip .cart-count { display: grid; place-content: center; min-width: 24px; height: 24px; padding: 0 6px; border-radius: 999px; background: #fff; color: var(--red); font-size: 13px; font-weight: 900; }
.cart-chip[hidden] { display: none; }

.cart-overlay { position: fixed; inset: 0; z-index: 110; background: rgba(20, 10, 10, 0.5); opacity: 0; pointer-events: none; transition: opacity 0.3s var(--ease); }
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-panel { position: fixed; top: 0; right: 0; bottom: 0; z-index: 120; width: min(430px, 94vw); display: flex; flex-direction: column; background: #fff; box-shadow: -20px 0 60px rgba(0, 0, 0, 0.25); transform: translateX(105%); transition: transform 0.35s var(--ease); }
.cart-panel.open { transform: none; }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; background: linear-gradient(135deg, var(--red), var(--deep-red)); color: #fff; }
.cart-head h3 { margin: 0; font-size: 20px; font-weight: 900; text-transform: uppercase; }
.cart-close { border: 0; background: rgba(255,255,255,0.2); width: 40px; height: 40px; border-radius: 10px; font-size: 20px; color: #fff; cursor: pointer; }
.cart-body { flex: 1; overflow-y: auto; padding: 8px 24px; }
.cart-empty { text-align: center; color: var(--muted); padding: 70px 20px; }
.cart-empty span { font-size: 46px; display: block; margin-bottom: 12px; }
.cart-item { display: grid; grid-template-columns: 64px 1fr auto; gap: 12px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cart-item img { width: 64px; height: 64px; border-radius: 10px; object-fit: cover; }
.cart-item h4 { margin: 0 0 4px; font-size: 15px; font-weight: 800; }
.cart-item .ci-price { color: var(--red); font-weight: 800; font-size: 14px; }
.qty { display: inline-flex; align-items: center; gap: 12px; margin-top: 8px; }
.qty button { width: 28px; height: 28px; border: 1px solid var(--line); border-radius: 8px; background: #fff; cursor: pointer; font-weight: 900; color: var(--red); font-size: 15px; }
.qty span { min-width: 18px; text-align: center; font-weight: 800; }
.ci-remove { border: 0; background: none; color: #bbb; cursor: pointer; font-size: 20px; align-self: start; }
.ci-remove:hover { color: var(--red); }
.cart-foot { padding: 20px 24px; border-top: 1px solid var(--line); background: var(--cream); }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; font-size: 16px; font-weight: 800; margin-bottom: 16px; }
.cart-total b { color: var(--red); font-size: 24px; font-weight: 900; }
.checkout-form { display: grid; gap: 12px; margin-top: 8px; }
.checkout-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.checkout-form input, .checkout-form select, .checkout-form textarea { width: 100%; padding: 13px 14px; border: 1px solid var(--line); border-radius: 10px; font: inherit; background: #fff; }
.checkout-form textarea { min-height: 68px; resize: vertical; }
.checkout-form input:focus, .checkout-form select:focus, .checkout-form textarea:focus { outline: 2px solid var(--red); border-color: var(--red); }
.cart-success { text-align: center; padding: 50px 24px; }
.cart-success .ok { font-size: 54px; }
.cart-success h3 { margin: 14px 0 8px; color: #1a8a3c; }

/* ============================================================
   v8 — sub-pages (page hero, category menu, contact form)
   ============================================================ */
.page-hero { background: linear-gradient(135deg, var(--red), var(--dark-red)); color: #fff; padding: 56px 0 50px; text-align: center; position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; right: -60px; top: -60px; width: 220px; height: 220px; border-radius: 50%; background: rgba(255,255,255,0.08); }
.page-hero .crumb { margin-bottom: 12px; font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.85); }
.page-hero .crumb a { color: #fff; }
.page-hero h1 { margin: 0 0 10px; font-size: clamp(30px, 4vw, 50px); font-weight: 900; text-transform: uppercase; letter-spacing: -0.5px; }
.page-hero p { margin: 0 auto; max-width: 620px; color: rgba(255,255,255,0.9); font-size: 17px; }

.cat-nav { position: sticky; top: 84px; z-index: 40; background: rgba(255,255,255,0.96); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.cat-nav-inner { display: flex; gap: 10px; overflow-x: auto; padding-top: 14px; padding-bottom: 14px; }
.cat-nav a { flex: 0 0 auto; padding: 10px 20px; border-radius: 999px; background: var(--cream); color: var(--ink); font-weight: 800; font-size: 14px; white-space: nowrap; transition: background 0.2s var(--ease), color 0.2s var(--ease); }
.cat-nav a:hover, .cat-nav a.active { background: var(--red); color: #fff; }
.menu-cat { padding: 52px 0 8px; }
.menu-cat:last-child { padding-bottom: 64px; }
.cat-title { font-size: clamp(23px, 3vw, 34px); font-weight: 900; text-transform: uppercase; margin: 0 0 28px; padding-bottom: 12px; border-bottom: 3px solid var(--red); display: inline-block; }

.page-section { padding: 64px 0; }
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-info { display: grid; gap: 18px; }
.contact-card { display: flex; gap: 16px; align-items: flex-start; padding: 22px 24px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: var(--shadow-sm); }
.contact-card .ic2 { font-size: 24px; }
.contact-card h4 { margin: 0 0 4px; font-size: 16px; }
.contact-card p { margin: 0; color: var(--muted); font-size: 14px; }
.book-form { display: grid; gap: 14px; padding: 32px; border-radius: 18px; background: #fff; box-shadow: var(--shadow); }
.book-form h3 { margin: 0; font-size: 24px; font-weight: 900; text-transform: uppercase; }
.book-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.book-form input, .book-form select, .book-form textarea { padding: 13px 14px; border: 1px solid var(--line); border-radius: 10px; font: inherit; width: 100%; background: #fff; }
.book-form textarea { min-height: 90px; resize: vertical; }
.book-form input:focus, .book-form select:focus, .book-form textarea:focus { outline: 2px solid var(--red); border-color: var(--red); }
@media (max-width: 900px) { .contact-wrap { grid-template-columns: 1fr; } }

/* v9 — deposit payment step + news pagination + article page */
.pay-step { padding: 8px 4px 22px; text-align: center; }
.pay-step h3 { margin: 6px 0 8px; font-size: 20px; font-weight: 900; }
.pay-step p { color: var(--muted); font-size: 14px; margin: 0 0 14px; }
.pay-qr { width: 210px; height: 210px; margin: 0 auto 16px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.pay-bank { list-style: none; margin: 0 0 18px; padding: 14px 16px; border: 1px solid var(--line); border-radius: 12px; background: var(--cream); text-align: left; }
.pay-bank li { display: flex; justify-content: space-between; padding: 7px 0; font-size: 14px; border-bottom: 1px dashed var(--line); }
.pay-bank li:last-child { border-bottom: 0; }
.pay-bank li span { color: var(--muted); }
.pay-bank li b { color: var(--red); }

/* Pagination */
.pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 44px; flex-wrap: wrap; }
.pagination button { min-width: 44px; height: 44px; padding: 0 14px; border: 1px solid var(--line); border-radius: 10px; background: #fff; color: var(--ink); font-weight: 800; font-size: 15px; cursor: pointer; transition: all 0.2s var(--ease); }
.pagination button:hover:not(:disabled) { border-color: var(--red); color: var(--red); }
.pagination button.active { background: var(--red); color: #fff; border-color: var(--red); }
.pagination button:disabled { opacity: 0.4; cursor: default; }

/* Article page */
.article-wrap { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 46px; align-items: start; }
.article-body { max-width: 820px; font-size: 17px; line-height: 1.85; color: #333; }
.article-body h2 { font-size: clamp(24px, 2.6vw, 32px); font-weight: 900; margin: 40px 0 14px; color: var(--ink); }
.article-body h3 { font-size: 21px; font-weight: 800; margin: 28px 0 10px; color: var(--deep-red); }
.article-body p { margin: 0 0 18px; }
.article-body ul, .article-body ol { margin: 0 0 18px; padding-left: 22px; }
.article-body li { margin-bottom: 8px; }
.article-body img { border-radius: 16px; margin: 10px 0 22px; width: 100%; }
.article-body blockquote { margin: 24px 0; padding: 16px 22px; border-left: 4px solid var(--red); background: var(--cream); border-radius: 0 12px 12px 0; font-style: italic; color: #444; }
.article-lead { font-size: 19px !important; font-weight: 600; color: #222 !important; }
.article-meta { display: flex; gap: 16px; color: var(--muted); font-size: 14px; margin-bottom: 8px; }
.article-fig { margin: 0 0 26px; }
.article-fig figcaption { text-align: center; font-size: 13px; color: var(--muted); margin-top: 8px; }
.article-side { position: sticky; top: 104px; display: grid; gap: 24px; }
.side-box { padding: 22px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: var(--shadow-sm); }
.side-box h4 { margin: 0 0 14px; font-size: 16px; font-weight: 900; text-transform: uppercase; }
.side-post { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.side-post:last-child { border-bottom: 0; }
.side-post img { width: 64px; height: 64px; border-radius: 10px; object-fit: cover; }
.side-post b { font-size: 14px; display: block; line-height: 1.4; }
@media (max-width: 960px) { .article-wrap { grid-template-columns: 1fr; } .article-side { position: static; } }

/* ============================================================
   v10 — centered category nav, product detail modal, order code
   ============================================================ */
.cat-nav-inner { justify-content: center; }
@media (max-width: 760px) { .cat-nav-inner { justify-content: flex-start; } }

.menu-item, .product-card { cursor: pointer; }

/* Product detail modal */
.pd-overlay { position: fixed; inset: 0; z-index: 130; background: rgba(20, 10, 10, 0.55); opacity: 0; pointer-events: none; transition: opacity 0.3s var(--ease); }
.pd-overlay.open { opacity: 1; pointer-events: auto; }
.pd-modal { position: fixed; z-index: 140; left: 50%; top: 50%; transform: translate(-50%, -46%) scale(0.96); opacity: 0; pointer-events: none; width: min(860px, 94vw); max-height: 90vh; overflow: auto; display: grid; grid-template-columns: 1fr 1fr; background: #fff; border-radius: 20px; box-shadow: var(--shadow-lg); transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.pd-modal.open { transform: translate(-50%, -50%) scale(1); opacity: 1; pointer-events: auto; }
.pd-close { position: absolute; top: 14px; right: 14px; z-index: 2; width: 40px; height: 40px; border: 0; border-radius: 10px; background: rgba(255, 255, 255, 0.92); color: var(--red); font-size: 18px; cursor: pointer; box-shadow: var(--shadow-sm); }
.pd-media img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; }
.pd-info { padding: 34px; display: flex; flex-direction: column; }
.pd-tag { align-self: flex-start; padding: 6px 14px; border-radius: 999px; background: var(--cream-2); color: var(--red); font-size: 12px; font-weight: 800; text-transform: uppercase; margin-bottom: 12px; }
.pd-info h3 { margin: 0 0 12px; font-size: 28px; font-weight: 900; }
.pd-info > p { margin: 0 0 18px; color: var(--muted); line-height: 1.7; }
.pd-price { font-size: 32px; font-weight: 900; color: var(--red); margin-bottom: 20px; }
.pd-field { display: flex; flex-direction: column; gap: 8px; font-weight: 800; font-size: 14px; margin-bottom: 18px; }
.pd-field select { padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; font: inherit; }
.pd-qty { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; font-weight: 800; }
.pd-add { margin-top: auto; }
.order-code { display: inline-block; margin: 6px 0 2px; padding: 6px 14px; border-radius: 8px; background: var(--cream-2); color: var(--deep-red); font-weight: 900; letter-spacing: 1px; }
@media (max-width: 680px) { .pd-modal { grid-template-columns: 1fr; } .pd-media img { min-height: 200px; max-height: 240px; } }

/* v11 — fix news-card title, author box */
.news-media { display: block; }
.news-body h3 a { color: inherit; }
.news-body h3 a:hover { color: var(--red); }

.author-box { display: flex; gap: 18px; align-items: center; margin: 44px 0 12px; padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: var(--cream); }
.author-box .avatar { flex: 0 0 72px; width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--red), var(--deep-red)); display: grid; place-content: center; color: #fff; font-size: 30px; }
.author-box h4 { margin: 0 0 4px; font-size: 17px; font-weight: 900; }
.author-box .role { color: var(--red); font-weight: 800; font-size: 13px; }
.author-box p { margin: 6px 0 0; color: var(--muted); font-size: 14px; line-height: 1.6; }

/* ============================================================
   v12 — batch: hero bowl, square images, glowing hover border,
   store grid, form balance, button effects, header, flames
   ============================================================ */

/* #2 Hero branded bowl (floating image, no circle/blob) */
.hero-visual-bowl { min-height: 440px; }
.hero-visual-bowl .bowl {
  width: min(52vw, 640px); height: auto; aspect-ratio: auto;
  border: 0; border-radius: 0; object-fit: contain; box-shadow: none;
  filter: drop-shadow(0 26px 40px rgba(120, 12, 12, 0.26));
  animation: floatBowl 5s ease-in-out infinite;
}
.hero-visual-bowl .hero-promo { top: 4%; left: 2%; }

/* #14 Header vertical alignment */
.header-inner { align-items: center; }
.brand { display: inline-flex; align-items: center; }
.main-nav { align-items: center; }
.main-nav a { display: inline-flex; align-items: center; }

/* #5 Footer: clean logo + 3 columns */
.footer-grid { grid-template-columns: 1.7fr 1fr 1.3fr; }
.footer-logo-img { width: 200px; height: auto; margin-bottom: 20px; display: block; }
@media (max-width: 1000px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }

/* #4 author avatar = logo */
.author-box .avatar { background: #fff; border: 1px solid var(--line); padding: 8px; }
.author-box .avatar img { width: 100%; height: 100%; object-fit: contain; }

/* #8 news images square */
.news-media { aspect-ratio: 1 / 1; }

/* #9 offer images square (vertical card) */
.offer-card { flex-direction: column; }
.offer-media { flex: none; width: 100%; aspect-ratio: 1 / 1; }
@media (min-width: 761px) { .offer-card { min-height: 0; } }

/* #11 button feedback everywhere */
.btn:active { transform: translateY(-1px) scale(0.98); }
.qty button, .pd-inc, .pd-dec, .ci-remove, .mi-order, .level, .tabs button { transition: transform 0.18s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease); }
.qty button:hover, .pagination button:hover:not(:disabled) { transform: translateY(-2px); }
.mi-order:hover { transform: translateY(-2px); }

/* #13 running glowing brand-color border on food card hover */
@property --ang { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
.menu-item, .product-card { position: relative; }
.menu-item::before, .product-card::before {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius); padding: 2.5px;
  background: conic-gradient(from var(--ang, 0deg), transparent 0 52%, #ff2233 66%, #ffd23f 80%, #ff2233 88%, transparent 96%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity 0.3s var(--ease); pointer-events: none; z-index: 3;
}
.menu-item:hover::before, .product-card:hover::before { opacity: 1; animation: spinBorder 2.4s linear infinite; }
@keyframes spinBorder { to { --ang: 360deg; } }

/* #7 store grid — scales to any number of addresses */
.store-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 26px; }
.loc-card { display: flex; flex-direction: column; overflow: hidden; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.loc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.loc-map { aspect-ratio: 16 / 10; overflow: hidden; }
.loc-map img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.loc-card:hover .loc-map img { transform: scale(1.06); }
.loc-body { display: flex; flex-direction: column; gap: 8px; flex: 1; padding: 22px; }
.loc-body h3 { margin: 0; font-size: 19px; font-weight: 800; display: flex; align-items: center; gap: 8px; }
.loc-body .addr { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }
.loc-meta { color: var(--red); font-weight: 800; font-size: 13px; }
.loc-actions { display: flex; gap: 10px; margin-top: auto; padding-top: 10px; }
.loc-actions .btn { flex: 1; min-height: 46px; font-size: 13px; padding: 10px 12px; }

/* #3 contact form balanced height with side cards */
.contact-wrap { align-items: stretch; }
.book-form { align-self: stretch; justify-content: center; gap: 16px; }
.book-form textarea { min-height: 130px; }

/* #15 nicer flames: bigger + brand glow */
.level-icons .heat svg { filter: drop-shadow(0 0 7px rgba(255, 120, 0, 0.55)) drop-shadow(0 3px 5px rgba(0, 0, 0, 0.16)); }
.level-icons .heat.on svg { filter: drop-shadow(0 0 18px rgba(255, 80, 0, 0.9)) drop-shadow(0 0 6px rgba(255, 180, 0, 0.8)); }

/* v13 — hero all-white background + tighter spacing */
.hero { background: #fff !important; }
.hero::before { display: none !important; }
.hero-inner { padding-top: 34px; padding-bottom: 42px; gap: 32px; min-height: clamp(480px, 58vh, 640px); }
.hero-badge { margin-bottom: 12px; }
.script { margin: 0 0 2px; }
.hero h1 { margin: 0; }
.hero h2 { margin: 10px 0 12px; line-height: 1.28; }
.lede { margin: 0 0 22px; }
.hero-buttons { gap: 14px; }
.stats { margin-top: 24px; gap: 34px; }

/* v14 — hero h2 on one line */
.hero h2 { white-space: nowrap; font-size: clamp(13px, 1.45vw, 18px); }
@media (max-width: 420px) { .hero h2 { white-space: normal; font-size: 15px; } }

/* v15 — soft red halo behind a transparent hero bowl */
.hero-visual-bowl { position: relative; }
.hero-visual-bowl::before {
  content: ""; position: absolute; z-index: 0; right: 3%; top: 50%;
  width: 80%; aspect-ratio: 1; transform: translateY(-50%);
  background: radial-gradient(circle, rgba(225,16,32,0.15), rgba(225,16,32,0.05) 46%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-visual-bowl .bowl { position: relative; z-index: 1; }

/* v16 — brush is in the image now; drop the extra halo, widen bowl area */
.hero-visual-bowl::before { display: none !important; }
.hero-visual-bowl .bowl { width: min(56vw, 700px); }

/* ============================================================
   v17 — hero 3 layers (SVG brush + bowl + CSS stamp),
   buttons on one row, Zalo floating button
   ============================================================ */
.hero-visual-bowl { position: relative; }
.hero-brush { position: absolute; z-index: 0; top: 50%; left: 52%; transform: translate(-50%, -52%); width: 122%; height: auto; pointer-events: none; }
.hero-visual-bowl .bowl { position: relative; z-index: 1; width: min(50vw, 600px); filter: drop-shadow(0 24px 34px rgba(120, 12, 12, 0.28)); }
.hero-visual-bowl .stamp {
  z-index: 2; right: 1%; bottom: 4%; width: 46px; padding: 9px 0;
  border: 2px solid var(--red); border-radius: 9px; color: var(--red);
  background: rgba(255, 255, 255, 0.92); font-size: 22px; font-weight: 800; line-height: 1.05; text-align: center;
}
.hero-visual-bowl .hero-promo { z-index: 3; }

/* buttons on ONE row */
.hero-buttons { flex-wrap: nowrap; gap: 12px; }
.hero-buttons .btn { flex: 0 1 auto; min-height: 54px; padding: 14px 22px; font-size: 15px; }

/* Zalo floating button (next to phone FAB) */
.fab-zalo {
  position: fixed; right: 100px; bottom: 26px; z-index: 90;
  display: grid; place-content: center; width: 62px; height: 62px; border-radius: 50%;
  background: #0068ff; color: #fff; font-weight: 900; font-size: 15px; letter-spacing: 0.3px;
  box-shadow: 0 14px 30px rgba(0, 104, 255, 0.42); transition: transform 0.2s var(--ease);
}
.fab-zalo:hover { transform: scale(1.08); }
@media (max-width: 760px) { .fab-zalo { right: 96px; } }

/* v18 — stack floating buttons vertically: cart (top) > Zalo > hotline (bottom) */
.cart-chip { bottom: 174px !important; right: 26px; }
.fab-zalo { right: 26px; bottom: 98px; }
.fab-call { right: 26px; bottom: 26px; }
@media (max-width: 760px) { .fab-zalo { right: 26px; } .cart-chip { bottom: 168px !important; } }

/* ============================================================
   v19 — align flames under numbers (grid) + richer flame effect
   ============================================================ */
.level-line { display: grid; grid-template-columns: repeat(8, 1fr); justify-items: center; align-items: center; }
.level-line::before { left: 6.25%; right: 6.25%; }
.level-icons { display: grid; grid-template-columns: repeat(8, 1fr); justify-items: center; align-items: end; gap: 0; margin-top: 14px; }
.level-icons .heat { position: relative; overflow: visible; }
.level-icons .heat .flame { width: var(--sz, 30px); height: auto; display: block; transform-origin: 50% 100%; animation: flameSway var(--dur, 0.85s) ease-in-out infinite; animation-delay: var(--dly, 0s); filter: drop-shadow(0 0 6px rgba(255, 110, 0, 0.5)); }
.level-icons .heat .f-core { transform-origin: 50% 100%; animation: coreFlick var(--dur, 0.85s) ease-in-out infinite; animation-delay: var(--dly, 0s); }
.level-icons .heat::after { content: ""; position: absolute; left: 50%; bottom: -4px; width: 72%; height: 30%; transform: translateX(-50%); border-radius: 50%; background: radial-gradient(ellipse at center, rgba(255, 120, 0, 0.6), transparent 70%); filter: blur(3px); animation: glowPulse var(--dur, 0.85s) ease-in-out infinite; animation-delay: var(--dly, 0s); z-index: -1; }
.level-icons .heat.on { transform: translateY(-5px) scale(1.24); }
.level-icons .heat.on .flame { filter: drop-shadow(0 0 16px rgba(255, 80, 0, 0.95)) drop-shadow(0 0 6px rgba(255, 200, 0, 0.9)); }
@keyframes flameSway {
  0%, 100% { transform: scaleY(1) scaleX(1) rotate(0deg); }
  25% { transform: scaleY(1.13) scaleX(0.93) rotate(-3.5deg); }
  50% { transform: scaleY(0.95) scaleX(1.05) rotate(2deg); }
  75% { transform: scaleY(1.09) scaleX(0.97) rotate(3.5deg); }
}
@keyframes coreFlick { 0%, 100% { opacity: 0.85; transform: scaleY(1); } 50% { opacity: 1; transform: scaleY(1.18) translateY(-3%); } }
@keyframes glowPulse { 0%, 100% { opacity: 0.4; transform: translateX(-50%) scale(1); } 50% { opacity: 0.85; transform: translateX(-50%) scale(1.25); } }

/* v20 — page marquee band (all sub-pages, page-specific text) */
.page-marquee { background: var(--red); color: #fff; overflow: hidden; }
.page-marquee .mq-track { display: flex; width: max-content; padding: 13px 0; animation: scrollX 24s linear infinite; }
.page-marquee .mq-track span { font-size: 15px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; white-space: nowrap; margin-right: 30px; }
.page-marquee:hover .mq-track { animation-play-state: paused; }

/* v21 — store master-detail (searchable list + live map) */
.store-master { display: grid; grid-template-columns: 380px 1fr; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: #fff; }
.store-side { display: flex; flex-direction: column; background: var(--cream); border-right: 1px solid var(--line); }
.store-search-wrap { padding: 18px; }
.store-search { width: 100%; padding: 13px 16px 13px 42px; border: 1px solid var(--line); border-radius: 10px; font: inherit; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='8' cy='8' r='6'/%3E%3Cpath d='M13 13l4 4'/%3E%3C/svg%3E") no-repeat 14px center; }
.store-search:focus { outline: 2px solid var(--red); border-color: var(--red); }
.store-rows { flex: 1; overflow-y: auto; max-height: 460px; }
.store-row { display: flex; align-items: center; gap: 13px; width: 100%; padding: 16px 18px; border: 0; border-top: 1px solid var(--line); background: transparent; text-align: left; cursor: pointer; transition: background 0.2s var(--ease); }
.store-row:hover { background: #fff; }
.store-row.active { background: #fff; box-shadow: inset 4px 0 0 var(--red); }
.store-row .pin { display: grid; place-content: center; width: 42px; height: 42px; border-radius: 12px; background: var(--cream-2); color: var(--red); font-size: 19px; flex: 0 0 auto; }
.sr-info { display: flex; flex-direction: column; gap: 3px; flex: 1; min-width: 0; }
.sr-info b { font-size: 15px; }
.sr-info small { color: var(--muted); font-size: 12.5px; }
.sr-info em { color: var(--red); font-size: 12px; font-weight: 800; font-style: normal; }
.sr-arrow { color: #bbb; font-size: 22px; }
.store-detail { position: relative; min-height: 460px; }
.store-detail .map { width: 100%; height: 100%; min-height: 460px; object-fit: cover; }
.store-detail-info { position: absolute; left: 20px; right: 20px; bottom: 20px; background: rgba(255, 255, 255, 0.96); backdrop-filter: blur(6px); border-radius: 14px; padding: 18px 22px; box-shadow: var(--shadow); }
.sd-name { font-size: 19px; font-weight: 900; display: block; }
.sd-addr { margin: 4px 0 14px; color: var(--muted); font-size: 14px; }
.sd-actions { display: flex; gap: 10px; }
.sd-actions .btn { min-height: 44px; font-size: 13px; padding: 10px 16px; }
@media (max-width: 820px) { .store-master { grid-template-columns: 1fr; } .store-detail { min-height: 300px; } .store-detail .map { min-height: 300px; } .store-rows { max-height: 320px; } }

/* v22 — Google Maps embed in store detail */
.store-detail .map-embed { width: 100%; height: 100%; min-height: 460px; border: 0; display: block; }
.store-detail-info { z-index: 2; }
@media (max-width: 820px) { .store-detail .map-embed { min-height: 300px; } }

/* v23 — footer logo on a white box so the red logo shows clearly */
.footer-logo-img { background: #fff; padding: 14px 20px; border-radius: 14px; width: 210px; box-shadow: 0 6px 18px rgba(0,0,0,0.18); }

/* v23b — force white box for footer logo (beats older .footer img rule) */
.footer .footer-logo-img { background: #fff !important; padding: 14px 20px !important; border-radius: 14px !important; width: 210px; box-shadow: 0 6px 18px rgba(0,0,0,0.18); filter: none !important; }

/* ============================================================
   v24 — Mobile optimization across all pages
   ============================================================ */
@media (max-width: 760px) {
  /* Tighter side gutters so content uses the screen */
  .shell, .shell-wide { padding-left: 18px; padding-right: 18px; }

  /* ---- HERO (home): headline first, bowl below, all centered ---- */
  .hero-inner { text-align: center; gap: 16px !important; min-height: auto !important; padding-top: 24px !important; padding-bottom: 30px !important; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-badge { margin: 0 0 10px; }
  .hero h1 { font-size: clamp(32px, 8.4vw, 42px); line-height: 1.12; }
  .hero h2 { white-space: normal; }
  .lede { margin-left: auto; margin-right: auto; font-size: 15.5px; line-height: 1.7; }
  .hero-buttons { flex-wrap: wrap; justify-content: center; width: 100%; gap: 12px; }
  .hero-buttons .btn { flex: 1 1 42%; min-height: 52px; }
  .stats { justify-content: center; gap: 26px; margin-top: 20px; }
  .hero-visual, .hero-visual-bowl { order: 0 !important; min-height: auto !important; margin-top: 6px; }
  .hero-visual-bowl .bowl { width: min(78vw, 320px) !important; }
  .hero-visual-bowl .hero-promo { width: 74px; height: 74px; top: 2%; left: 2%; }

  /* ---- Buttons: comfortable tap targets ---- */
  .btn-lg { min-height: 54px; padding: 15px 26px; font-size: 16px; }

  /* ---- Section rhythm ---- */
  .section, .page-section { padding: 48px 0; }
  .page-hero { padding: 40px 0 34px; }
  .page-hero p { font-size: 15.5px; }
  .cta-inner { padding: 44px 22px; }
  .cta-inner h2 { font-size: clamp(24px, 6.6vw, 32px); }

  /* ---- Menu / combos ---- */
  .combo-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }

  /* ---- Forms (checkout + contact) stack ---- */
  .checkout-form .row2 { grid-template-columns: 1fr; }

  /* ---- Store cards: remove big pin gap already handled; keep tidy ---- */
  .store-detail-info { left: 12px; right: 12px; bottom: 12px; padding: 12px 14px; }
  .sd-actions { gap: 8px; }
  .sd-actions .btn { flex: 1; }
}

@media (max-width: 460px) {
  .shell, .shell-wide { padding-left: 14px; padding-right: 14px; }
  .hero-buttons .btn { flex: 1 1 100%; }
  .stats { gap: 18px; }
  .stats b { font-size: 26px; }
  .section-head h2 { font-size: clamp(26px, 8vw, 34px); }
  .pay-qr { width: 180px; height: 180px; }
  .cart-item { grid-template-columns: 52px 1fr auto; }
  .cart-item img { width: 52px; height: 52px; }
}

/* ============================================================
   v25 — tighter CTA rhythm + larger floating hero bowl
   ============================================================ */
.hero-visual-bowl {
  isolation: isolate;
  overflow: visible;
}

.hero-visual-bowl::before {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-visual-bowl::before {
  display: block !important;
  z-index: 0;
  left: 6%;
  right: 0;
  bottom: 7%;
  height: 38%;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(225, 16, 32, 0.14), transparent 68%);
  filter: blur(18px);
  opacity: 0.75;
  transform: rotate(-4deg);
}

.hero-visual-bowl .bowl {
  z-index: 1;
  width: min(52vw, 700px);
  max-width: none;
  transform: translateX(4%) scale(1);
  filter:
    drop-shadow(0 28px 26px rgba(28, 18, 14, 0.18))
    drop-shadow(0 8px 12px rgba(225, 16, 32, 0.1));
  animation-name: floatBowlLarge;
}

@keyframes floatBowlLarge {
  0%, 100% { transform: translateX(4%) translateY(0) scale(1); }
  50% { transform: translateX(4%) translateY(-10px) scale(1); }
}

.cta-band {
  background:
    radial-gradient(circle at 50% 118%, rgba(225, 16, 32, 0.24), transparent 38%),
    linear-gradient(135deg, #1b1515, #3a1110);
}

.cta-inner {
  gap: 18px;
  padding: 42px 28px;
}

.cta-inner h2 {
  margin: 0;
  max-width: 1180px;
  font-size: clamp(34px, 4.7vw, 72px);
  line-height: 1.15;
  text-wrap: balance;
}

.cta-inner-center p {
  margin: 0;
  max-width: 700px;
  font-size: clamp(16px, 1.55vw, 22px);
  line-height: 1.45;
}

.cta-inner .btn {
  margin-top: 8px;
}

@media (max-width: 1000px) {
  .hero-visual-bowl::before {
    top: auto;
    left: 14%;
    right: 14%;
    bottom: 8%;
    height: 34%;
  }
  .hero-visual-bowl .bowl {
    width: min(82vw, 560px);
    transform: translateX(0) scale(1);
    animation-name: floatBowlTablet;
  }
}

@keyframes floatBowlTablet {
  0%, 100% { transform: translateX(0) translateY(0) scale(1); }
  50% { transform: translateX(0) translateY(-8px) scale(1); }
}

@media (max-width: 760px) {
  .hero-visual-bowl .bowl {
    width: min(92vw, 380px) !important;
  }

  .cta-inner {
    gap: 12px;
    padding: 34px 18px;
  }

  .cta-inner h2 {
    font-size: clamp(28px, 8.2vw, 42px);
    line-height: 1.18;
  }

  .cta-inner-center p {
    font-size: 15.5px;
    line-height: 1.45;
  }

  .cta-inner .btn {
    margin-top: 4px;
  }
}

/* v26 — keep hero copy compact while making the bowl feel 3D */
@media (min-width: 1001px) {
  .hero-inner {
    grid-template-columns: minmax(520px, 0.9fr) minmax(0, 1.45fr);
    gap: 8px;
    min-height: clamp(500px, 59vh, 650px);
    padding-top: 28px;
    padding-bottom: 34px;
  }

  .hero-copy {
    min-width: 0;
  }

  .script {
    font-size: clamp(34px, 3.3vw, 52px);
  }

  .hero h1 {
    font-size: clamp(48px, 4.5vw, 72px);
    line-height: 1.08;
  }

  .hero h1 strong {
    white-space: nowrap;
  }

  .lede {
    max-width: 560px;
    line-height: 1.62;
  }

  .hero-buttons {
    margin-top: 0;
  }

  .stats {
    flex-wrap: nowrap;
    gap: 32px;
  }

  .stats div {
    min-width: 0;
  }

  .stats span {
    white-space: nowrap;
  }

  .hero-visual-bowl {
    justify-self: end;
    width: min(58vw, 860px);
    min-height: 430px;
    margin-right: clamp(-120px, -5vw, -54px);
    perspective: 1200px;
    transform-style: preserve-3d;
  }

  .hero-visual-bowl::before {
    left: 18%;
    right: 12%;
    bottom: 6%;
    height: 28%;
    background: radial-gradient(ellipse at center, rgba(30, 20, 18, 0.24), rgba(225, 16, 32, 0.08) 42%, transparent 70%);
    filter: blur(20px);
    opacity: 0.62;
    transform: rotateX(68deg) rotateZ(-4deg);
    transform-origin: center;
  }

  .hero-visual-bowl .bowl {
    width: min(54vw, 720px);
    transform: translateX(5%) rotateX(2deg) rotateY(-6deg) rotateZ(-0.4deg) scale(1);
    transform-origin: 54% 58%;
    filter:
      drop-shadow(0 34px 24px rgba(28, 18, 14, 0.17))
      drop-shadow(-14px 14px 16px rgba(225, 16, 32, 0.1));
    animation-name: floatBowl3d;
    animation-duration: 5.6s;
  }

  .hero-visual-bowl .hero-promo {
    left: 7%;
    top: 12%;
  }
}

@keyframes floatBowl3d {
  0%, 100% { transform: translateX(5%) translateY(0) rotateX(2deg) rotateY(-6deg) rotateZ(-0.4deg) scale(1); }
  50% { transform: translateX(5%) translateY(-9px) rotateX(3deg) rotateY(-8deg) rotateZ(-0.4deg) scale(1.01); }
}

@media (min-width: 1001px) and (max-width: 1240px) {
  .hero-inner {
    grid-template-columns: minmax(440px, 0.88fr) minmax(0, 1.35fr);
  }

  .script {
    font-size: clamp(32px, 3vw, 42px);
  }

  .hero h1 {
    font-size: clamp(44px, 4.1vw, 56px);
  }

  .hero h2 {
    font-size: 15px;
  }

  .lede {
    max-width: 500px;
  }

  .hero-visual-bowl {
    margin-right: clamp(-86px, -4vw, -36px);
  }
}

/* v27 — full-width hero, no text/image overlap, restore brush + Korean stamp */
@media (min-width: 1001px) {
  .hero .hero-inner {
    width: min(100%, 1680px);
    grid-template-columns: minmax(610px, 0.92fr) minmax(560px, 1.08fr);
    gap: clamp(24px, 3vw, 58px);
    padding-left: clamp(34px, 4vw, 82px);
    padding-right: clamp(18px, 2.8vw, 52px);
  }

  .hero-copy {
    width: min(100%, 720px);
    z-index: 4;
  }

  .script {
    font-size: clamp(38px, 3.35vw, 58px);
  }

  .hero h1 {
    font-size: clamp(52px, 4.45vw, 76px);
    line-height: 1.08;
  }

  .hero h1 strong {
    white-space: nowrap;
  }

  .hero-visual-bowl {
    width: 100%;
    justify-self: end;
    margin-right: clamp(-84px, -3.6vw, -36px);
    min-height: 450px;
  }

  .hero-visual-bowl::before {
    z-index: 0;
    left: 20%;
    right: 12%;
    bottom: 4%;
    height: 25%;
    background: radial-gradient(ellipse at center, rgba(26, 16, 12, 0.2), rgba(225, 16, 32, 0.07) 45%, transparent 72%);
    filter: blur(18px);
    opacity: 0.58;
  }

  .hero-visual-bowl::after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 4%;
    right: -5%;
    top: 20%;
    height: 66%;
    pointer-events: none;
    background:
      linear-gradient(110deg, transparent 0 6%, rgba(225, 16, 32, 0.88) 7% 70%, transparent 71%),
      linear-gradient(104deg, transparent 0 16%, rgba(225, 16, 32, 0.7) 17% 46%, transparent 47%),
      linear-gradient(116deg, transparent 0 58%, rgba(225, 16, 32, 0.92) 59% 85%, transparent 86%);
    clip-path: polygon(5% 64%, 18% 46%, 10% 40%, 30% 28%, 24% 20%, 60% 7%, 96% 0, 90% 16%, 99% 22%, 72% 36%, 96% 43%, 75% 58%, 93% 65%, 51% 80%, 56% 91%, 14% 100%, 22% 82%);
    filter: drop-shadow(0 22px 34px rgba(225, 16, 32, 0.16));
    opacity: 0.95;
    transform: rotate(-5deg);
  }

  .hero-visual-bowl .bowl {
    z-index: 2;
    width: min(48vw, 700px);
    transform: translateX(8%) rotateX(2deg) rotateY(-5deg) rotateZ(-0.25deg) scale(1);
    filter:
      drop-shadow(0 32px 24px rgba(28, 18, 14, 0.18))
      drop-shadow(-10px 12px 14px rgba(225, 16, 32, 0.09));
    animation-name: floatBowlRight3d;
  }

  .hero-visual-bowl .hero-promo {
    z-index: 4;
    left: 5%;
    top: 13%;
  }

  .hero-visual-bowl .stamp {
    display: block;
    z-index: 4;
    right: 2%;
    bottom: 12%;
    width: 52px;
    padding: 9px 0;
    border-color: rgba(225, 16, 32, 0.78);
    color: rgba(225, 16, 32, 0.9);
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(3px);
    box-shadow: 0 16px 26px rgba(225, 16, 32, 0.12);
  }
}

@media (min-width: 1001px) and (max-width: 1380px) {
  .hero .hero-inner {
    grid-template-columns: minmax(560px, 0.94fr) minmax(500px, 1.06fr);
    gap: 20px;
  }

  .hero-copy {
    width: min(100%, 650px);
  }

  .script {
    font-size: clamp(34px, 3.1vw, 46px);
  }

  .hero h1 {
    font-size: clamp(46px, 4.1vw, 58px);
  }

  .hero-visual-bowl {
    margin-right: clamp(-54px, -2.4vw, -24px);
  }

  .hero-visual-bowl .bowl {
    width: min(47vw, 620px);
    transform: translateX(7%) rotateX(2deg) rotateY(-5deg) scale(1);
    animation-name: floatBowlRightCompact;
  }
}

@keyframes floatBowlRight3d {
  0%, 100% { transform: translateX(8%) translateY(0) rotateX(2deg) rotateY(-5deg) rotateZ(-0.25deg) scale(1); }
  50% { transform: translateX(8%) translateY(-8px) rotateX(3deg) rotateY(-7deg) rotateZ(-0.25deg) scale(1.008); }
}

@keyframes floatBowlRightCompact {
  0%, 100% { transform: translateX(7%) translateY(0) rotateX(2deg) rotateY(-5deg) scale(1); }
  50% { transform: translateX(7%) translateY(-7px) rotateX(3deg) rotateY(-6deg) scale(1.006); }
}

/* v28 — real paint brush under bowl + tighter hero balance */
.hero-brush-accent {
  display: none;
}

@media (min-width: 1001px) {
  .hero .hero-inner {
    grid-template-columns: minmax(640px, 0.98fr) minmax(560px, 1.02fr);
    gap: clamp(4px, 1.2vw, 24px);
    width: min(100%, 1760px);
    padding-left: clamp(34px, 4vw, 78px);
    padding-right: clamp(10px, 2vw, 34px);
  }

  .hero-copy {
    width: min(100%, 760px);
  }

  .hero-visual-bowl {
    margin-left: clamp(-44px, -2.2vw, -16px);
    margin-right: clamp(-70px, -3vw, -28px);
    min-height: 448px;
  }

  .hero-visual-bowl::after {
    display: none;
  }

  .hero-brush-accent {
    position: absolute;
    z-index: 1;
    display: block;
    width: min(56vw, 780px);
    max-width: none;
    left: 0;
    top: 23%;
    transform: translateX(1%) rotate(-2deg);
    opacity: 0.96;
    filter: drop-shadow(0 22px 28px rgba(178, 8, 17, 0.16));
    pointer-events: none;
  }

  .hero-visual-bowl .bowl {
    width: min(48vw, 690px);
    transform: translateX(3%) rotateX(2deg) rotateY(-5deg) rotateZ(-0.25deg) scale(1);
    animation-name: floatBowlBalanced3d;
  }

  .hero-visual-bowl .stamp {
    right: 1.5%;
    bottom: 13%;
  }
}

@keyframes floatBowlBalanced3d {
  0%, 100% { transform: translateX(3%) translateY(0) rotateX(2deg) rotateY(-5deg) rotateZ(-0.25deg) scale(1); }
  50% { transform: translateX(3%) translateY(-8px) rotateX(3deg) rotateY(-7deg) rotateZ(-0.25deg) scale(1.008); }
}

@media (min-width: 1001px) and (max-width: 1380px) {
  .hero .hero-inner {
    grid-template-columns: minmax(535px, 0.95fr) minmax(500px, 1.05fr);
    gap: clamp(0px, 0.8vw, 14px);
  }

  .hero-copy {
    width: min(100%, 640px);
  }

  .hero-visual-bowl {
    margin-left: clamp(-28px, -1.4vw, -10px);
    margin-right: clamp(-44px, -2vw, -18px);
  }

  .hero-brush-accent {
    width: min(54vw, 650px);
    left: -1%;
    top: 25%;
  }

  .hero-visual-bowl .bowl {
    width: min(47vw, 610px);
    transform: translateX(2%) rotateX(2deg) rotateY(-5deg) scale(1);
    animation-name: floatBowlBalancedCompact;
  }
}

@keyframes floatBowlBalancedCompact {
  0%, 100% { transform: translateX(2%) translateY(0) rotateX(2deg) rotateY(-5deg) scale(1); }
  50% { transform: translateX(2%) translateY(-7px) rotateX(3deg) rotateY(-6deg) scale(1.006); }
}

/* v29 — keep paint accent balanced and clear of the marquee */
@media (min-width: 1001px) {
  .hero .hero-inner {
    min-height: clamp(500px, 57vh, 620px);
    padding-bottom: 22px;
  }

  .hero-visual-bowl {
    min-height: 410px;
    align-self: center;
    margin-left: clamp(-30px, -1.5vw, -10px);
  }

  .hero-brush-accent {
    width: min(45vw, 660px);
    left: 10%;
    top: 33%;
    transform: translateX(0) rotate(-3deg);
    opacity: 0.9;
    filter: drop-shadow(0 16px 22px rgba(178, 8, 17, 0.13));
  }

  .hero-visual-bowl .bowl {
    width: min(46vw, 660px);
    transform: translateX(4%) translateY(-4px) rotateX(2deg) rotateY(-5deg) rotateZ(-0.25deg) scale(1);
    animation-name: floatBowlTidy3d;
  }

  .hero-visual-bowl::before {
    left: 24%;
    right: 18%;
    bottom: 7%;
    height: 20%;
  }

  .hero-visual-bowl .stamp {
    right: 3%;
    bottom: 20%;
  }
}

@keyframes floatBowlTidy3d {
  0%, 100% { transform: translateX(4%) translateY(-4px) rotateX(2deg) rotateY(-5deg) rotateZ(-0.25deg) scale(1); }
  50% { transform: translateX(4%) translateY(-11px) rotateX(3deg) rotateY(-7deg) rotateZ(-0.25deg) scale(1.006); }
}

@media (min-width: 1001px) and (max-width: 1380px) {
  .hero-brush-accent {
    width: min(43vw, 560px);
    left: 12%;
    top: 35%;
  }

  .hero-visual-bowl .bowl {
    width: min(45vw, 580px);
    transform: translateX(3%) translateY(-4px) rotateX(2deg) rotateY(-5deg) scale(1);
    animation-name: floatBowlTidyCompact;
  }

  .hero-visual-bowl .stamp {
    right: 2%;
    bottom: 22%;
  }
}

@keyframes floatBowlTidyCompact {
  0%, 100% { transform: translateX(3%) translateY(-4px) rotateX(2deg) rotateY(-5deg) scale(1); }
  50% { transform: translateX(3%) translateY(-10px) rotateX(3deg) rotateY(-6deg) scale(1.004); }
}

/* v30 — rebalance hero composition and keep paint behind the bowl only */
@media (min-width: 1001px) {
  .hero {
    overflow: hidden;
  }

  .hero .hero-inner {
    grid-template-columns: minmax(600px, 0.9fr) minmax(620px, 1.1fr);
    gap: 0;
    min-height: clamp(500px, 54vh, 600px);
    padding-top: 26px;
    padding-bottom: 24px;
  }

  .hero-copy {
    width: min(100%, 735px);
  }

  .hero-visual-bowl {
    min-height: 420px;
    margin-left: clamp(-96px, -4.8vw, -54px);
    margin-right: clamp(-28px, -1.2vw, -8px);
    align-self: center;
  }

  .hero-brush-accent {
    width: min(40vw, 560px);
    left: 22%;
    top: 43%;
    opacity: 0.9;
    transform: translateX(0) rotate(-3deg);
    filter: drop-shadow(0 12px 18px rgba(178, 8, 17, 0.12));
  }

  .hero-visual-bowl .bowl {
    width: min(45vw, 630px);
    transform: translateX(2%) translateY(-8px) rotateX(2deg) rotateY(-4deg) rotateZ(-0.2deg) scale(1);
    animation-name: floatBowlClean3d;
    filter:
      drop-shadow(0 28px 22px rgba(28, 18, 14, 0.17))
      drop-shadow(-8px 10px 12px rgba(225, 16, 32, 0.08));
  }

  .hero-visual-bowl::before {
    left: 31%;
    right: 22%;
    bottom: 13%;
    height: 15%;
    opacity: 0.45;
    filter: blur(16px);
  }

  .hero-visual-bowl .hero-promo {
    left: 15%;
    top: 20%;
  }

  .hero-visual-bowl .stamp {
    right: 5%;
    bottom: 28%;
  }

  .hero-marquee {
    position: relative;
    z-index: 10;
  }
}

@keyframes floatBowlClean3d {
  0%, 100% { transform: translateX(2%) translateY(-8px) rotateX(2deg) rotateY(-4deg) rotateZ(-0.2deg) scale(1); }
  50% { transform: translateX(2%) translateY(-14px) rotateX(3deg) rotateY(-5.5deg) rotateZ(-0.2deg) scale(1.004); }
}

@media (min-width: 1001px) and (max-width: 1380px) {
  .hero .hero-inner {
    grid-template-columns: minmax(535px, 0.92fr) minmax(520px, 1.08fr);
  }

  .hero-visual-bowl {
    margin-left: clamp(-70px, -3.6vw, -34px);
  }

  .hero-brush-accent {
    width: min(39vw, 500px);
    left: 24%;
    top: 45%;
  }

  .hero-visual-bowl .bowl {
    width: min(44vw, 560px);
    transform: translateX(1%) translateY(-8px) rotateX(2deg) rotateY(-4deg) scale(1);
    animation-name: floatBowlCleanCompact;
  }

  .hero-visual-bowl .hero-promo {
    left: 13%;
    top: 21%;
  }

  .hero-visual-bowl .stamp {
    right: 4%;
    bottom: 30%;
  }
}

@keyframes floatBowlCleanCompact {
  0%, 100% { transform: translateX(1%) translateY(-8px) rotateX(2deg) rotateY(-4deg) scale(1); }
  50% { transform: translateX(1%) translateY(-13px) rotateX(3deg) rotateY(-5deg) scale(1.003); }
}

/* v31 — hero polish: solid on load (handled in JS), tidy spacing, stamp off the edge */
@media (min-width: 1001px) {
  /* cleaner vertical rhythm between the headline group and the accent line */
  .hero h2 { margin-top: 18px; margin-bottom: 20px; }
  .lede { margin-bottom: 30px; }
  /* keep the Korean stamp clearly on the bowl, never kissing the viewport edge */
  .hero-visual-bowl .stamp { right: 8%; }
}
@media (min-width: 1001px) and (max-width: 1380px) {
  .hero-visual-bowl .stamp { right: 6%; }
}

/* v32 — pull hero together: narrower container + balanced columns so it isn't sparse on wide screens */
@media (min-width: 1001px) {
  .hero .hero-inner {
    width: min(100%, 1300px);
    padding-left: clamp(28px, 3vw, 52px);
    padding-right: clamp(28px, 3vw, 52px);
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    column-gap: clamp(20px, 3.2vw, 56px);
    align-items: center;
  }
  .hero-copy { width: 100%; }
  /* anchor the bowl to the right so it grows toward the screen edge (chopsticks bleed = full-width),
     moving away from the copy; the brush is inside this box so it follows the bowl and stays centered */
  .hero-visual-bowl {
    margin-left: 0;
    margin-right: clamp(-150px, -6.5vw, -40px);
    justify-self: end;
    min-height: 430px;
  }
  .hero-visual-bowl .bowl {
    width: min(48vw, 760px);
  }
  /* red paint centered directly behind the bowl (offset accounts for the chopsticks bleed) */
  .hero-brush-accent {
    left: 50%;
    top: 16%;
    transform: translateX(-36%) rotate(-2deg);
    width: min(60vw, 900px);
  }
  .hero-visual-bowl .hero-promo { left: 4%; top: 12%; }
  .hero-visual-bowl .stamp { right: 1%; bottom: 22%; }
}

/* v33 — calmer LV.7 badge (less first-screen motion); bowl float stays the main animation */
@keyframes promoBreath {
  0%, 100% { transform: rotate(-11deg) scale(1); }
  50% { transform: rotate(-11deg) scale(1.03); }
}
.hero-promo { animation: promoBreath 5.5s ease-in-out infinite; }

/* v34 — CTA trang chủ 1 dòng + nút cùng hàng; thanh nút trên bản đồ gọn về góc dưới-phải */
/* CTA trang chủ — 1 hàng: chữ đậm bên trái, chữ script gradient lửa lệch hẳn sang phải */
.cta-home { align-items: center; }
.cta-home .cta-title {
  display: flex; align-items: center; justify-content: space-between;
  gap: clamp(24px, 5vw, 90px); flex-wrap: wrap; width: 100%; margin: 0; white-space: normal;
}
.cta-home .cta-title .l1 {
  flex: 0 1 auto; font-weight: 900; text-transform: uppercase; letter-spacing: -0.5px;
  line-height: 1.06; font-size: clamp(26px, 3.2vw, 50px);
}
.cta-home .cta-title .l2 {
  flex: 0 1 auto; margin-left: auto;
  font-family: 'Pacifico', cursive; font-weight: 400; text-transform: none; letter-spacing: 0;
  line-height: 1.5; padding-bottom: 0.22em; padding-right: 0.45em; font-size: clamp(48px, 6.8vw, 106px);
  background: linear-gradient(92deg, #ffd23f, #ff8a29 52%, #ff4d4d);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
@media (max-width: 1000px) {
  .cta-home .cta-title { justify-content: flex-start; gap: 6px; }
  .cta-home .cta-title .l2 { margin-left: 0.4em; font-size: clamp(36px, 10vw, 60px); }
}
.store-detail-info { left: auto; right: 16px; bottom: 16px; width: auto; max-width: calc(100% - 32px); padding: 10px 12px; }
.store-detail-info .sd-actions { margin: 0; }

/* ============================================================
   v35 — Badge LV.7 nổi bật + hiệu ứng; nút nổi Zalo/Hotline sinh động
   ============================================================ */

/* ---- Badge LV.7 trên hero ---- */
@media (min-width: 1001px) {
  .hero-visual-bowl .hero-promo { width: 134px; height: 134px; }
  .hero-visual-bowl .hero-promo b { font-size: 27px; }
  .hero-visual-bowl .hero-promo i { font-size: 11px; }
}
.hero-visual-bowl .hero-promo {
  background: radial-gradient(circle at 32% 26%, #ffe14d, #ff8a00 62%, #ff6a00);
  box-shadow: 0 16px 34px rgba(200, 90, 0, 0.5), inset 0 0 0 4px rgba(255, 255, 255, 0.55), 0 0 34px rgba(255, 150, 0, 0.75);
}
.hero-visual-bowl .hero-promo b { text-shadow: 0 1px 3px rgba(150, 60, 0, 0.4); }
.hero-visual-bowl .hero-promo::after {
  content: ""; position: absolute; inset: -2px; border-radius: 50%; pointer-events: none;
  box-shadow: 0 0 0 0 rgba(255, 138, 0, 0.65);
  animation: promoRing 2s ease-out infinite;
}
@keyframes promoRing {
  0%   { box-shadow: 0 0 0 0 rgba(255, 138, 0, 0.65); }
  70%  { box-shadow: 0 0 0 24px rgba(255, 138, 0, 0); }
  100% { box-shadow: 0 0 0 24px rgba(255, 138, 0, 0); }
}

/* ---- Nút nổi Zalo + Hotline: nhún nhẹ + vòng sóng lan toả ---- */
.fab-zalo, .fab-call { animation: fabBob 2.6s ease-in-out infinite; }
.fab-call { animation-delay: 0.5s; }
.fab-zalo:hover, .fab-call:hover { animation-play-state: paused; }
.fab-zalo::after, .fab-call::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
}
.fab-zalo::after { animation: fabRingBlue 2s ease-out infinite; }
.fab-call::after { animation: fabRingRed 2s ease-out infinite; }
@keyframes fabBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes fabRingBlue {
  0%   { box-shadow: 0 0 0 0 rgba(0, 104, 255, 0.55); }
  70%  { box-shadow: 0 0 0 16px rgba(0, 104, 255, 0); }
  100% { box-shadow: 0 0 0 16px rgba(0, 104, 255, 0); }
}
@keyframes fabRingRed {
  0%   { box-shadow: 0 0 0 0 rgba(225, 16, 32, 0.55); }
  70%  { box-shadow: 0 0 0 16px rgba(225, 16, 32, 0); }
  100% { box-shadow: 0 0 0 16px rgba(225, 16, 32, 0); }
}

/* ============================================================
   v36 — Tối ưu bố cục MOBILE (hero, tiêu đề, tabs, slide, footer)
   ============================================================ */
@media (max-width: 760px) {

  /* ---- (1) HERO: 2 nút Xem menu + Tìm cửa hàng cùng 1 hàng ---- */
  .hero-buttons { flex-direction: row !important; flex-wrap: nowrap; gap: 10px; width: 100%; }
  .hero-buttons .btn { flex: 1 1 50%; min-width: 0; padding: 13px 8px; font-size: 14px; }

  /* ---- (2) HERO: bớt dày chữ, thoáng hơn; mô tả tối đa 2 dòng ---- */
  .hero-inner { gap: 8px !important; padding-top: 18px !important; }
  .hero-copy { gap: 4px; }
  .hero-badge { margin-bottom: 6px; padding: 7px 14px; font-size: 12px; }
  .script { font-size: clamp(22px, 6.6vw, 32px); margin: 0 0 2px; }
  .hero h1 { font-size: clamp(28px, 7.6vw, 40px); line-height: 1.08; }
  .hero h2 { font-size: 12.5px; margin: 7px 0 5px; }
  .lede {
    font-size: 13.5px; line-height: 1.5; margin: 0 auto 14px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  }
  .stats { gap: 16px; margin-top: 12px; }
  .stats b { font-size: 24px; }

  /* ---- (3) Tiêu đề section nhỏ lại cho thoáng ---- */
  .section-head { margin-bottom: 22px; }
  .section-head h2 { font-size: clamp(21px, 5.8vw, 28px) !important; line-height: 1.16; }
  .section-head .section-sub { font-size: 14px; }
  .page-hero h1 { font-size: clamp(23px, 6.4vw, 30px); }
  .cat-title { font-size: 21px; }

  /* ---- (4) Tabs danh mục: nhỏ, ~4 nút/hàng (dài quá thì 3) ---- */
  .tabs { gap: 8px; }
  .tabs button { flex: 1 1 21%; min-width: 74px; padding: 9px 6px; font-size: 12px; border-radius: 12px; }
  .cat-nav-inner { gap: 8px; }
  .cat-nav-inner a { padding: 8px 12px; font-size: 12.5px; }

  /* ---- (4) Món ăn hiển thị dạng SLIDE (vuốt ngang) ---- */
  .menu-grid {
    display: flex !important; grid-template-columns: none !important;
    flex-wrap: nowrap; overflow-x: auto; gap: 12px;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    padding-bottom: 10px; scrollbar-width: none;
  }
  .menu-grid::-webkit-scrollbar { display: none; }
  .menu-grid > * { flex: 0 0 76%; scroll-snap-align: center; }

  /* ---- (5) Tất cả slider: vuốt ngang native ---- */
  .slider-viewport { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .slider-viewport::-webkit-scrollbar { display: none; }
  .slider-track { transform: none !important; }
  .slider-track > * { scroll-snap-align: center; }

  /* ---- (6) Combo/News: mũi tên nhỏ, box to như sản phẩm ---- */
  .slider-nav { width: 38px; height: 38px; font-size: 21px; flex: 0 0 38px; }
  .combo-slider .slider-track > *, .news-slider .slider-track > * { flex: 0 0 82%; }

  /* ---- (7) CTA "Sẵn sàng...": chữ 7 cấp độ lệch sang phải ---- */
  .cta-home .cta-title { justify-content: flex-start; gap: 4px; }
  .cta-home .cta-title .l1 { flex: 1 1 100%; }
  .cta-home .cta-title .l2 { flex: 0 0 auto; margin-left: auto; padding-right: 0.15em; font-size: clamp(38px, 11vw, 64px); }

  /* ---- (8) Footer: căn giữa toàn bộ ---- */
  .footer-grid { text-align: center; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; }
  .footer .footer-logo-img { margin: 0 auto 6px; }
  .footer .social { justify-content: center; }
  .footer-col { display: flex; flex-direction: column; align-items: center; }
  .footer-hotline { align-items: center; text-align: center; }
  .footer-hotline .btn-block { align-self: stretch; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 6px; }
}
