/* ============================================
   CRUST & CHILLY v3.0 — Final Theme
   Performance optimized + Mobile responsive
   ============================================ */

:root {
  --red: #D62828;
  --red-dark: #A61F1F;
  --red-soft: #FFE5E5;
  --green: #25D366;
  --gold: #F59E0B;
  --cream: #FBF7F0;
  --cream-2: #F5EFE3;
  --ink: #1C1C1C;
  --ink-2: #2D2D2D;
  --txt: #3D3D3D;
  --txt-2: #6B6B6B;
  --muted: #9A9A9A;
  --line: #E8E2D5;
  --card: #FFFFFF;
  --warm: #FFF8F0;
  --r: 16px;
  --r2: 24px;
  --rf: 999px;
  --sh: 0 10px 40px rgba(28,28,28,0.06);
  --sh-lg: 0 20px 60px rgba(28,28,28,0.1);
  --ff: 'DM Sans', system-ui, -apple-system, sans-serif;
  --fh: 'Fraunces', Georgia, serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
*:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }

html { 
  scroll-behavior: smooth; 
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff);
  color: var(--txt);
  background: var(--cream);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img, svg { max-width: 100%; display: block; }
input, select, button { font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.w-full { width: 100%; }

/* PRELOADER */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.pre-logo {
  font-family: var(--fh);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--cream);
  display: flex;
  gap: 4px;
}
.pre-amp { color: var(--red); font-style: italic; }
.pre-c {
  animation: preBounce 1s infinite alternate;
  display: inline-block;
}
.pre-c:nth-child(3) { animation-delay: 0.3s; }
@keyframes preBounce {
  to { transform: translateY(-12px); }
}
.pre-line {
  width: 60px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  animation: preWidth 1.5s infinite;
}
@keyframes preWidth {
  0%, 100% { transform: scaleX(0.3); }
  50% { transform: scaleX(1); }
}

/* OVERLAY */
.ov {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(28,28,28,0.5);
  z-index: 1050;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  animation: ovFade 0.3s ease;
}
.ov.show { display: block; }
@keyframes ovFade { from { opacity: 0; } to { opacity: 1; } }

/* TOPBAR */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: padding 0.3s ease, background 0.3s ease;
  background: transparent;
}
.topbar.scrolled,
.topbar-solid {
  background: rgba(251,247,240,0.96);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-icon {
  width: 38px;
  height: 38px;
  background: var(--red);
  color: var(--cream);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-weight: 900;
  font-size: 1.15rem;
  box-shadow: 0 4px 12px rgba(214,40,40,0.25);
  flex-shrink: 0;
}
.brand-name strong {
  display: block;
  font-family: var(--fh);
  font-weight: 900;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.1;
  white-space: nowrap;
}
.brand-name small {
  display: block;
  font-size: 0.55rem;
  color: var(--muted);
  letter-spacing: 1.8px;
  font-weight: 700;
  margin-top: 2px;
}

.top-nav {
  display: none;
  gap: 2px;
  align-items: center;
}
.top-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--rf);
  color: var(--txt);
  transition: color 0.2s, background 0.2s;
}
.top-nav a:hover,
.top-nav a.active {
  color: var(--red);
  background: var(--red-soft);
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.action-pill {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: var(--rf);
  background: var(--card);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, transform 0.2s;
}
.action-pill:active { transform: scale(0.95); }
.action-pill:hover { border-color: var(--red); }
.ap-icon {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}
.ap-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  background: var(--red);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 700;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-style: normal;
  padding: 0 4px;
}
.ap-badge.show { display: flex; }

.hide-on-mob { display: none; }

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: var(--rf);
  background: var(--card);
  border: 1px solid var(--line);
  transition: border-color 0.2s;
}
.menu-toggle:hover { border-color: var(--red); }
.menu-toggle span {
  width: 16px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.menu-toggle.on span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.menu-toggle.on span:nth-child(2) { opacity: 0; }
.menu-toggle.on span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

.mob-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px 20px;
  background: var(--cream);
  border-top: 1px solid var(--line);
  max-height: calc(100vh - 60px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mob-nav.open { display: flex; }
.mob-nav a {
  padding: 13px 16px;
  font-size: 0.98rem;
  font-weight: 500;
  border-radius: var(--r);
  transition: background 0.2s, color 0.2s;
  color: var(--txt);
}
.mob-nav a:active { background: var(--card); }
.mn-cta {
  background: var(--red) !important;
  color: #fff !important;
  text-align: center;
  margin-top: 8px;
  font-weight: 700;
}

/* BUTTONS */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--rf);
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  min-height: 44px;
}
.cta-red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 6px 20px rgba(214,40,40,0.25);
}
.cta-red:hover { background: var(--red-dark); transform: translateY(-2px); }
.cta-red:active { transform: translateY(0); }

.cta-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.cta-ghost:hover { background: var(--ink); color: var(--cream); }

.cta-green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,0.25);
}
.cta-green:hover { background: #1DA851; transform: translateY(-2px); }

.cta-white { background: #fff; color: var(--ink); }
.cta-white:hover { transform: translateY(-2px); box-shadow: var(--sh-lg); }

.cta-btn.large { padding: 15px 30px; font-size: 0.98rem; }

.round-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  border: 1px solid var(--line);
}
.round-btn:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

/* HERO */
.hero-mag {
  padding: 90px 0 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  padding: 20px 0 40px;
}
.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.hero-title {
  font-family: var(--fh);
  font-size: clamp(2rem, 9vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.title-script {
  font-style: italic;
  color: var(--red);
  font-weight: 700;
}
.hero-lead {
  font-size: 0.98rem;
  color: var(--txt-2);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 480px;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.hero-cta-row .cta-btn {
  flex: 1;
  min-width: 140px;
}
.hero-stats-row {
  display: flex;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.hs strong {
  display: block;
  font-family: var(--fh);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--ink);
}
.hs span {
  display: block;
  font-size: 0.68rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  margin-top: 16px;
}
.hero-image-card {
  background: var(--card);
  border-radius: var(--r2);
  padding: 20px;
  box-shadow: var(--sh-lg);
  width: 100%;
  max-width: 260px;
  position: relative;
  z-index: 2;
}
.hic-tag {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 5px 11px;
  border-radius: var(--rf);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.hic-emoji {
  font-size: 5.5rem;
  text-align: center;
  padding: 14px 0;
  animation: hicFloat 4s ease-in-out infinite;
}
@keyframes hicFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hic-info strong {
  display: block;
  font-family: var(--fh);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.hic-meta {
  display: flex;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--txt-2);
  font-weight: 600;
}

.hero-small-card {
  position: absolute;
  background: var(--card);
  padding: 9px 13px;
  border-radius: var(--r);
  box-shadow: var(--sh);
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  max-width: 140px;
}
.hero-small-card span {
  font-size: 1.3rem;
  flex-shrink: 0;
}
.hero-small-card strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
}
.hero-small-card small {
  display: block;
  font-size: 0.65rem;
  color: var(--muted);
  margin-top: 2px;
}
.hsc-1 {
  top: 0;
  left: 0;
  animation: hscFloat 5s ease-in-out infinite;
}
.hsc-2 {
  bottom: 0;
  right: 0;
  animation: hscFloat 5s ease-in-out infinite 1.5s;
}
@keyframes hscFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* TICKER */
.ticker {
  background: var(--ink);
  padding: 12px 0;
  overflow: hidden;
  border-top: 1px solid var(--ink-2);
}
.ticker-track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  will-change: transform;
}
.ticker-track span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 1px;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* SECTION HEADERS */
.sec-eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.sec-eyebrow.accent { color: var(--gold); }
.sec-headline {
  font-family: var(--fh);
  font-size: clamp(1.7rem, 7vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -1px;
}
.sec-headline .ital {
  font-style: italic;
  color: var(--red);
  font-weight: 700;
}
.sec-sub {
  font-size: 0.92rem;
  color: var(--txt-2);
  margin-top: 8px;
  line-height: 1.6;
}
.sec-head { margin-bottom: 30px; }
.sec-head.center { text-align: center; }
.center-action {
  text-align: center;
  margin-top: 30px;
}

/* STORY */
.story-sec {
  padding: 60px 0;
  background: var(--card);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
.story-visual {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 16px 0;
}
.sv-frame {
  width: 220px;
  height: 280px;
  background: var(--red-soft);
  border-radius: 160px 160px 18px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.sv-emoji {
  font-size: 6rem;
  animation: svFloat 5s ease-in-out infinite;
}
@keyframes svFloat {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-12px) rotate(3deg); }
}
.sv-stamp {
  position: absolute;
  bottom: 14px;
  right: 5%;
  background: var(--ink);
  color: var(--cream);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--fh);
  transform: rotate(-15deg);
}
.sv-stamp strong {
  font-size: 0.6rem;
  font-weight: 600;
}
.sv-stamp span {
  font-size: 0.78rem;
  font-weight: 900;
  font-style: italic;
  color: var(--red);
}

.story-content { padding: 12px 0; }
.story-text {
  font-size: 0.98rem;
  color: var(--txt-2);
  line-height: 1.8;
  margin-bottom: 14px;
}
.story-features {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sf-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.sf-num {
  font-family: var(--fh);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  flex-shrink: 0;
  min-width: 32px;
}
.sf-item strong {
  display: block;
  font-family: var(--fh);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}
.sf-item small {
  display: block;
  font-size: 0.82rem;
  color: var(--txt-2);
  margin-top: 2px;
  line-height: 1.5;
}

/* CHEF'S PICKS */
.picks-sec {
  padding: 60px 0;
  background: var(--cream);
}
.picks-wrapper {
  margin: 0 -16px;
  padding: 0 16px;
}
.picks-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 10px 0 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.picks-track::-webkit-scrollbar { display: none; }

.pick-card {
  flex: 0 0 240px;
  scroll-snap-align: start;
  background: var(--card);
  border-radius: var(--r2);
  overflow: hidden;
  box-shadow: var(--sh);
  border: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.pick-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }

.pc-vis {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  cursor: pointer;
}
.pc-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--ink);
  color: var(--cream);
  padding: 4px 10px;
  border-radius: var(--rf);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pc-fav {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  box-shadow: var(--sh);
  transition: background 0.2s;
}
.pc-fav.on {
  background: var(--red-soft);
  color: var(--red);
}
.pc-spice {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: flex;
  gap: 3px;
}
.pc-spice i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(214,40,40,0.15);
  display: block;
  font-style: normal;
}
.pc-spice i.on { background: var(--red); }

.pc-body { padding: 14px 16px 16px; }
.pc-rate {
  font-size: 0.74rem;
  color: var(--muted);
  margin-bottom: 4px;
}
.pc-rate b { color: var(--gold); }
.pc-name {
  font-family: var(--fh);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  cursor: pointer;
  line-height: 1.3;
  transition: color 0.2s;
}
.pc-name:hover { color: var(--red); }
.pc-desc {
  font-size: 0.82rem;
  color: var(--txt-2);
  line-height: 1.5;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 36px;
}
.pc-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pc-price {
  font-family: var(--fh);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--red);
}
.pc-price .old {
  font-size: 0.76rem;
  color: var(--muted);
  text-decoration: line-through;
  margin-left: 5px;
  font-weight: 400;
}
.pc-add {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background 0.2s, transform 0.2s;
}
.pc-add:hover {
  background: var(--red);
  transform: scale(1.05);
}

.picks-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}
.pc-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--card);
  border: 1.5px solid var(--line);
  font-size: 1.2rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.pc-btn:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

/* CATEGORIES */
.cats-sec {
  padding: 60px 0;
  background: var(--warm);
}
.cats-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.cat-tile {
  background: var(--card);
  padding: 22px 12px;
  border-radius: var(--r2);
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--line);
  display: block;
}
.cat-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh);
  border-color: var(--red);
}
.ct-emoji {
  font-size: 2rem;
  display: block;
  margin-bottom: 6px;
}
.ct-name {
  font-family: var(--fh);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
}
.ct-count {
  font-size: 0.65rem;
  color: var(--muted);
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* COMBOS */
.combos-feature {
  padding: 60px 0;
  background: var(--ink);
  color: var(--cream);
}
.cf-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}
.cf-header .sec-eyebrow { color: var(--red); }
.cf-header .sec-headline,
.cf-header .sec-headline .ital { color: var(--cream); }
.cf-tagline {
  font-size: 0.92rem;
  color: rgba(251,247,240,0.7);
  line-height: 1.7;
  max-width: 460px;
}
.combos-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.combo-tile {
  background: var(--ink-2);
  border-radius: var(--r2);
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.combo-tile:hover {
  transform: translateY(-3px);
  border-color: var(--red);
}
.ct-stamp {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--red);
  color: #fff;
  padding: 4px 10px;
  border-radius: var(--rf);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.ct-icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
}
.ct-title {
  font-family: var(--fh);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 8px;
}
.ct-desc {
  font-size: 0.85rem;
  color: rgba(251,247,240,0.6);
  line-height: 1.6;
  margin-bottom: 16px;
}
.ct-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.ct-prices b {
  font-family: var(--fh);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--cream);
}
.ct-prices span {
  font-size: 0.78rem;
  color: var(--muted);
  text-decoration: line-through;
  margin-left: 5px;
}
.ct-add {
  background: var(--red);
  color: #fff;
  padding: 9px 16px;
  border-radius: var(--rf);
  font-weight: 700;
  font-size: 0.8rem;
  transition: background 0.2s;
  white-space: nowrap;
}
.ct-add:hover { background: var(--red-dark); }

/* SPECIAL DISH */
.special-sec {
  padding: 60px 0;
  background: var(--warm);
}
.special-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
.special-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 260px;
  padding: 16px 0;
}
.sp-circle {
  width: 220px;
  height: 220px;
  background: linear-gradient(135deg, var(--red), #FF6B35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 22px 44px rgba(214,40,40,0.25);
}
.sp-emoji {
  font-size: 6.5rem;
  animation: spFloat 4s ease-in-out infinite;
}
@keyframes spFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.sp-price-badge {
  position: absolute;
  bottom: 14px;
  right: -6px;
  width: 58px;
  height: 58px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-weight: 900;
  font-size: 0.95rem;
  border: 3px solid var(--cream);
}
.sp-deco {
  position: absolute;
  font-size: 1.8rem;
  animation: spDeco 5s ease-in-out infinite;
}
.sp-d1 { top: 5%; right: 10%; }
.sp-d2 { bottom: 15%; left: 5%; animation-delay: 1s; }
.sp-d3 { top: 40%; left: 0; animation-delay: 2s; font-size: 1.5rem; }
@keyframes spDeco {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-10px) rotate(12deg); }
}

.special-meta {
  display: flex;
  gap: 8px;
  margin: 20px 0;
  flex-wrap: wrap;
}
.sm-item {
  background: var(--card);
  padding: 7px 13px;
  border-radius: var(--rf);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
  border: 1px solid var(--line);
}

/* TESTIMONIALS */
.testimonials-sec {
  padding: 60px 0;
  background: var(--card);
}
.testi-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 10px 4px 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.testi-track::-webkit-scrollbar { display: none; }
.testi-card {
  flex: 0 0 calc(100% - 16px);
  scroll-snap-align: center;
  background: var(--cream);
  padding: 24px;
  border-radius: var(--r2);
  border: 1px solid var(--line);
}
.tc-quote {
  font-family: var(--fh);
  font-size: 3rem;
  color: var(--red);
  opacity: 0.2;
  line-height: 1;
  font-weight: 900;
}
.tc-text {
  font-family: var(--fh);
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.6;
  margin: -14px 0 18px;
  font-style: italic;
  font-weight: 500;
}
.tc-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.tc-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.88rem;
  flex-shrink: 0;
}
.tc-name {
  display: block;
  font-weight: 700;
  color: var(--ink);
  font-size: 0.9rem;
}
.tc-role {
  display: block;
  font-size: 0.74rem;
  color: var(--muted);
}
.testi-bottom {
  text-align: center;
  margin-top: 30px;
}

/* VISIT */
.visit-sec {
  padding: 60px 0;
  background: var(--cream);
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.visit-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vi-card {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  background: var(--card);
  padding: 16px;
  border-radius: var(--r);
  border: 1px solid var(--line);
  transition: transform 0.2s, border-color 0.2s;
}
.vi-card:hover {
  transform: translateX(3px);
  border-color: var(--red);
}
.vi-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.vi-card small {
  display: block;
  font-size: 0.65rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
}
.vi-card strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
}
.vi-green strong { color: var(--green) !important; }
.visit-map {
  border-radius: var(--r2);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 260px;
  box-shadow: var(--sh);
}
.visit-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 260px;
  display: block;
}

/* CTA STRIP */
.cta-strip {
  background: var(--red);
  padding: 40px 0;
}
.cta-strip-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}
.cta-strip h2 {
  font-family: var(--fh);
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 4px;
}
.cta-strip p {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
}

/* FOOTER */
.footer {
  background: var(--ink);
  color: rgba(251,247,240,0.6);
  padding: 40px 0 20px;
}
.footer .brand-name strong { color: var(--cream); }
.footer .brand-name small { color: var(--muted); }
.footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.ft-brand p {
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 10px 0;
  max-width: 320px;
}
.ft-social {
  display: flex;
  gap: 7px;
}
.ft-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ink-2);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s;
}
.ft-social a:hover {
  background: var(--red);
  transform: translateY(-3px);
}
.ft-col h4 {
  color: var(--cream);
  font-family: var(--fh);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.ft-col a,
.ft-col p {
  display: block;
  font-size: 0.82rem;
  color: rgba(251,247,240,0.5);
  margin-bottom: 6px;
  transition: color 0.2s;
}
.ft-col a:hover { color: var(--red); }
.ft-bottom {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 20px;
  border-top: 1px solid var(--ink-2);
  font-size: 0.75rem;
  text-align: center;
}

/* FLOATING */
.float-wa {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 999;
  width: 52px;
  height: 52px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 20px rgba(37,211,102,0.35);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  opacity: 0;
  visibility: hidden;
}
.float-wa.show {
  opacity: 1;
  visibility: visible;
}
.float-wa:hover { transform: scale(1.1); }
.float-wa::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid var(--green);
  animation: floatPing 2s infinite;
}
@keyframes floatPing {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}

.back-top {
  position: fixed;
  bottom: 78px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  transition: opacity 0.3s, visibility 0.3s, background 0.2s, color 0.2s;
  opacity: 0;
  visibility: hidden;
  box-shadow: var(--sh);
}
.back-top.show {
  opacity: 1;
  visibility: visible;
}
.back-top:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

/* SIDE CART */
.side-cart {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100dvh;
  background: var(--cream);
  z-index: 1060;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0,0,0,0.1);
}
.side-cart.open { transform: translateX(0); }
.sc-head {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--card);
}
.sc-head h3 {
  font-family: var(--fh);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
}
.sc-head small {
  color: var(--muted);
  font-size: 0.74rem;
}
.sc-body {
  flex: 1;
  overflow-y: auto;
  padding: 14px;
  -webkit-overflow-scrolling: touch;
}
.sc-empty {
  text-align: center;
  padding: 50px 20px;
}
.sce-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 14px;
  border: 1px solid var(--line);
}
.sc-empty p {
  font-weight: 700;
  color: var(--ink);
  font-size: 1rem;
  margin-bottom: 4px;
}
.sc-empty small {
  color: var(--muted);
  font-size: 0.8rem;
}
.sc-item {
  display: flex;
  gap: 12px;
  padding: 14px;
  background: var(--card);
  border-radius: var(--r);
  margin-bottom: 10px;
  position: relative;
  border: 1px solid var(--line);
}
.sci-img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}
.sci-info {
  flex: 1;
  min-width: 0;
}
.sci-name {
  font-family: var(--fh);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.3;
}
.sci-price {
  font-weight: 800;
  color: var(--red);
  font-size: 0.98rem;
  margin-top: 3px;
}
.sci-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.qb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--cream);
  font-size: 0.95rem;
  transition: border-color 0.2s, color 0.2s;
}
.qb:hover {
  border-color: var(--red);
  color: var(--red);
}
.qn {
  font-weight: 700;
  min-width: 18px;
  text-align: center;
  font-size: 0.9rem;
}
.sci-rm {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--red-soft);
  color: var(--red);
  font-size: 0.7rem;
  transition: background 0.2s, color 0.2s;
}
.sci-rm:hover {
  background: var(--red);
  color: #fff;
}
.sc-foot {
  padding: 16px 18px;
  border-top: 1px solid var(--line);
  background: var(--card);
}
.sc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.92rem;
  color: var(--txt-2);
}
.sc-row b {
  font-family: var(--fh);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--red);
}
.sc-clear {
  width: 100%;
  padding: 10px;
  background: none;
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  margin-top: 10px;
  font-size: 0.84rem;
  color: var(--muted);
  transition: border-color 0.2s, color 0.2s;
}
.sc-clear:hover {
  border-color: var(--red);
  color: var(--red);
}

/* DETAIL MODAL */
.detail-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: calc(100% - 24px);
  max-width: 420px;
  max-height: 90dvh;
  background: var(--cream);
  border-radius: var(--r2);
  z-index: 1070;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s var(--ease);
  overflow-y: auto;
  box-shadow: var(--sh-lg);
  -webkit-overflow-scrolling: touch;
}
.detail-modal.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}
.modal-x {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
}
.dm-vis {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  border-radius: var(--r2) var(--r2) 0 0;
}
.dm-body { padding: 22px; }
.dm-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.dm-pill {
  padding: 5px 10px;
  border-radius: var(--rf);
  font-size: 0.68rem;
  font-weight: 700;
}
.dmp-v { background: rgba(37,211,102,0.1); color: var(--green); }
.dmp-s { background: var(--red-soft); color: var(--red); }
.dm-name {
  font-family: var(--fh);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.2;
}
.dm-rate {
  font-size: 0.85rem;
  color: var(--txt-2);
  margin-bottom: 12px;
}
.dm-desc {
  font-size: 0.92rem;
  color: var(--txt-2);
  line-height: 1.7;
  margin-bottom: 18px;
}
.dm-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.dm-price {
  font-family: var(--fh);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--red);
}
.dm-old {
  font-size: 0.92rem;
  color: var(--muted);
  text-decoration: line-through;
  margin-left: 6px;
}
.dm-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* REVEAL */
[data-anim] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-anim].vis {
  opacity: 1;
  transform: translateY(0);
}
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }

/* MENU PAGE */
.pg-menu { background: var(--cream); }
.menu-header {
  padding: 90px 0 22px;
  text-align: center;
}
.back-arrow {
  display: inline-block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.back-arrow:hover { color: var(--red); }
.menu-header h1 {
  font-family: var(--fh);
  font-size: clamp(1.7rem, 7vw, 3rem);
  font-weight: 900;
  color: var(--ink);
  margin: 8px 0 6px;
}
.menu-header p {
  color: var(--txt-2);
  font-size: 0.9rem;
}
.m-search {
  position: sticky;
  top: 60px;
  z-index: 100;
  background: var(--cream);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.search-wrap {
  display: flex;
  align-items: center;
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: var(--rf);
  padding: 0 14px;
  margin-bottom: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.search-wrap:focus-within {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-soft);
}
.s-icon { font-size: 0.95rem; }
.search-wrap input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 10px;
  font-size: 0.98rem;
  background: transparent;
  font-family: inherit;
  color: var(--ink);
  min-width: 0;
}
.search-wrap input::placeholder { color: var(--muted); }
.s-clear {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.2rem;
  padding: 6px;
  line-height: 1;
}
.search-buttons {
  display: flex;
  gap: 8px;
}
.sb-btn {
  flex: 1;
  padding: 11px 14px;
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: var(--rf);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--txt-2);
  transition: border-color 0.2s, color 0.2s;
  min-height: 42px;
}
.sb-btn:hover,
.sb-btn.on {
  border-color: var(--red);
  color: var(--red);
}

.filter-panel {
  display: none;
  background: var(--card);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.filter-panel.show { display: block; }
.fp-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 12px;
}
.fp-group label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}
.fp-group select {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  font-size: 0.88rem;
  font-family: inherit;
  background: var(--cream);
  color: var(--ink);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231C1C1C' d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
.fp-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.fp-tag {
  padding: 8px 13px;
  border: 1.5px solid var(--line);
  border-radius: var(--rf);
  font-size: 0.78rem;
  font-weight: 600;
  background: var(--cream);
  color: var(--txt-2);
  transition: border-color 0.2s, color 0.2s;
}
.fp-tag.on {
  border-color: var(--red);
  color: var(--red);
}
.fp-clear {
  width: 100%;
  padding: 10px;
  background: none;
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  font-size: 0.84rem;
  color: var(--muted);
}

.cat-chip-bar {
  position: sticky;
  top: 134px;
  z-index: 99;
  background: rgba(251,247,240,0.96);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.cat-chip-track {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 0 16px 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.cat-chip-track::-webkit-scrollbar { display: none; }
.cat-chip {
  padding: 9px 15px;
  border-radius: var(--rf);
  border: 1.5px solid var(--line);
  background: var(--card);
  color: var(--txt-2);
  font-size: 0.83rem;
  font-weight: 600;
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  font-family: inherit;
}
.cat-chip:hover {
  border-color: var(--red);
  color: var(--red);
}
.cat-chip.active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.m-main { padding: 20px 0 60px; }
.m-bar {
  margin-bottom: 14px;
  font-size: 0.85rem;
  color: var(--muted);
}
.m-bar span b { color: var(--ink); }

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.menu-grid .pick-card { flex: none; }

.m-none {
  text-align: center;
  padding: 50px 20px;
}
.mn-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}
.m-none h3 {
  font-family: var(--fh);
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 6px;
}
.m-none p {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 0.9rem;
}

/* TABLET 600px+ */
@media (min-width: 600px) {
  .container { padding: 0 20px; }
  .cats-bento { grid-template-columns: repeat(3, 1fr); }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .fp-row { grid-template-columns: 1fr 1fr 1fr; }
  .pick-card { flex: 0 0 260px; }
  .testi-card { flex: 0 0 calc(50% - 7px); }
}

/* DESKTOP 768px+ */
@media (min-width: 768px) {
  body { font-size: 15px; }
  .container { padding: 0 24px; }
  
  .top-nav { display: flex; }
  .hide-on-mob { display: inline-flex; }
  .menu-toggle { display: none; }
  
  .hero-mag { padding: 120px 0 0; }
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    padding: 30px 0 60px;
    gap: 50px;
  }
  .hero-right {
    min-height: 380px;
    margin-top: 0;
  }
  .hero-image-card {
    max-width: 320px;
    padding: 24px;
  }
  .hic-emoji { font-size: 7rem; }
  .hero-cta-row .cta-btn { flex: none; }
  .hero-small-card {
    max-width: 170px;
    padding: 12px 16px;
  }
  .hero-small-card span { font-size: 1.6rem; }
  .hero-small-card strong { font-size: 0.85rem; }
  .hero-small-card small { font-size: 0.72rem; }
  .hsc-1 { top: 10%; left: -20px; }
  .hsc-2 { bottom: 10%; right: -20px; }
  
  .story-sec { padding: 80px 0; }
  .story-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    padding: 0;
  }
  .sv-frame { width: 280px; height: 340px; }
  .sv-emoji { font-size: 8rem; }
  .sv-stamp {
    width: 90px;
    height: 90px;
    bottom: 20px;
    right: 10%;
  }
  
  .picks-sec, .cats-sec, .combos-feature, .special-sec, .testimonials-sec, .visit-sec {
    padding: 80px 0;
  }
  
  .cats-bento { grid-template-columns: repeat(5, 1fr); }
  
  .cf-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
  }
  
  .combos-cards { grid-template-columns: repeat(3, 1fr); }
  
  .special-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
  .sp-circle { width: 280px; height: 280px; }
  .sp-emoji { font-size: 9rem; }
  
  .visit-grid {
    grid-template-columns: 1fr 1.4fr;
    gap: 30px;
  }
  .visit-map { min-height: 100%; }
  
  .cta-strip-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  .cta-strip h2 { font-size: 2rem; }
  
  .footer { padding: 50px 0 24px; }
  .footer-main {
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 32px;
  }
  .ft-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .menu-grid { grid-template-columns: repeat(3, 1fr); }
  .testi-card { flex: 0 0 calc(50% - 10px); }
  
  .float-wa { bottom: 24px; right: 24px; }
  .back-top { bottom: 88px; right: 28px; }
}

/* LARGE 1024px+ */
@media (min-width: 1024px) {
  .pick-card { flex: 0 0 280px; }
  .testi-card { flex: 0 0 calc(33.33% - 10px); }
  .menu-grid { grid-template-columns: repeat(4, 1fr); }
  .pc-vis { height: 170px; font-size: 4.5rem; }
}

/* PRINT */
@media print {
  .preloader, .topbar, .float-wa, .back-top, .side-cart, .detail-modal, .ov { display: none !important; }
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* SAFE AREA */
@supports(padding: max(0px)) {
  .float-wa {
    bottom: max(16px, env(safe-area-inset-bottom));
  }
  .back-top {
    bottom: max(78px, calc(env(safe-area-inset-bottom) + 62px));
  }
}