:root {
  /* Primary — Saffron orange (replaces red) */
  --red:        #F97316;
  --red-dark:   #C2410C;
  --red-light:  #FB923C;

  /* Accent — Amber gold */
  --gold:       #F59E0B;

  /* Backgrounds */
  --dark:       #18120A;
  --dark2:      #2D1E0F;
  --dark3:      #3D2510;
  --mid:        #4A2E14;
  --light:      #FFFBF5;
  --cream:      #FFF7ED;

  /* Text */
  --text:       #3B2010;
  --muted:      #9A6840;
  --text-muted: #9A6840;

  /* Misc */
  --white:      #FFFFFF;
  --border:     rgba(249, 116, 22, 0.579);

  /* Shadows */
  --shadow-sm:  0 2px 12px rgba(249,115,22,0.09);
  --shadow:     0 8px 32px rgba(24,18,10,0.10);
  --shadow-lg:  0 20px 60px rgba(24,18,10,0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ── TOP BAR ── */
.topbar { background: var(--red); color: rgba(255,255,255,0.9); font-size: 12.5px; padding: 8px 0; letter-spacing: 0.02em; }
.topbar-inner { max-width: 1280px; margin: auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.topbar a { color: rgba(255,255,255,0.9); text-decoration: none; }
.topbar a:hover { color: white; }
.topbar-left { display: flex; gap: 20px; align-items: center; }
.topbar-right { display: flex; gap: 16px; align-items: center; }
.topbar-right a { display: flex; align-items: center; gap: 5px; }
.store-status-indicator { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; padding: 4px 12px; border-radius: 20px; background: rgba(0,0,0,0.35); white-space: nowrap; border: 1px solid rgba(255,255,255,0.25); }
.store-status-indicator span { color: #fff !important; font-weight: 700; text-shadow: 0 1px 2px rgba(0,0,0,0.3); }
.store-status-indicator .status-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; flex-shrink: 0; animation: statusPulse 2s infinite; }
.store-status-indicator .status-dot.dot-open { background: #10B981; box-shadow: 0 0 6px #10B981; }
.store-status-indicator .status-dot.dot-closing { background: #F59E0B; box-shadow: 0 0 6px #F59E0B; }
.store-status-indicator .status-dot.dot-closed { background: #EF4444; box-shadow: 0 0 6px #EF4444; }
@keyframes statusPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

/* Social Media Icons in Topbar */
.topbar-social { display: flex; gap: 12px; align-items: center; margin-left: 4px; }
.topbar-social a { color: rgba(255,255,255,0.9); font-size: 13px; transition: all 0.2s; }
.topbar-social a:hover { color: white; transform: scale(1.1); }

/* ── NAVBAR ── */
.navbar { background: var(--white); box-shadow: 0 2px 20px rgba(0,0,0,0.08); position: sticky; top: 0; z-index: 1000; }
.navbar-inner { max-width: 1280px; margin: auto; padding: 0 24px; display: flex; align-items: center; gap: 24px; height: 68px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.logo-icon { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; }
.logo-icon img { width: 100%; height: 100%; object-fit: contain; }
.logo-text { line-height: 1; }
.logo-text span:first-child { display: block; font-family: 'Syne', sans-serif; font-size: 22px; color: var(--dark); letter-spacing: 0.05em; }
.logo-text span:last-child { font-size: 10px; color: var(--muted); font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; }

.search-bar { flex: 1; max-width: 440px; display: flex; border: 2px solid #E5E5E5; border-radius: 8px; overflow: hidden; transition: border-color 0.2s; }
.search-bar:focus-within { border-color: var(--red); }
.search-bar input { flex: 1; border: none; outline: none; padding: 10px 14px; font-family: 'DM Sans', sans-serif; font-size: 14px; background: transparent; }
.search-bar button { background: var(--red); border: none; color: white; padding: 0 18px; cursor: pointer; font-size: 15px; transition: background 0.2s; }
.search-bar button:hover { background: var(--red-dark); }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin-left: auto; }
.nav-links a { text-decoration: none; color: var(--text); font-size: 14px; font-weight: 500; padding: 8px 12px; border-radius: 6px; transition: all 0.2s; white-space: nowrap; }
.nav-links a:hover { background: #FFF0EC; color: var(--red); }
.nav-links a.active { color: var(--red); font-weight: 600; }

.mobile-order-btn { display: none; }
.order-btn-mobile { background: var(--red); color: white; border: none; padding: 10px 20px; border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 7px; transition: all 0.2s; white-space: nowrap; }
.order-btn-mobile:hover { background: var(--red-dark); }

.nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-icon-btn { width: 42px; height: 42px; border-radius: 8px; border: 2px solid #E5E5E5; background: transparent; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 17px; color: var(--text); position: relative; transition: all 0.2s; text-decoration: none; }
.nav-icon-btn:hover { border-color: var(--red); color: var(--red); }

/* Mobile Sidebar Menu Overlay */
.mobile-menu-overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.5); z-index: 99; display: none; opacity: 0; transition: opacity 0.3s ease; }
.mobile-menu-overlay.show { display: block; opacity: 1; }

/* Mobile Sidebar Menu */
.mobile-menu-sidebar { position: fixed; top: 0; left: 0; bottom: 0; width: 280px; background: white; z-index: 9999; transform: translateX(-100%); transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 2px 0 16px rgba(0, 0, 0, 0.15); display: none; flex-direction: column; }
.mobile-menu-sidebar.show { transform: translateX(0); }
.mobile-menu-header { padding: 20px 16px; border-bottom: 1px solid #F0F0F0; display: flex; align-items: center; justify-content: space-between; }
.mobile-menu-header h3 { font-size: 18px; font-weight: 700; color: var(--dark); }
.mobile-menu-close { width: 36px; height: 36px; border: 1px solid #E5E5E5; background: transparent; border-radius: 8px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 18px; color: var(--text); transition: all 0.2s; }
.mobile-menu-close:hover { background: #FFF0EC; color: var(--red); border-color: var(--red); }
.mobile-menu-body { flex: 1; overflow-y: auto; padding: 0; display: flex; flex-direction: column; }
.mobile-menu-links { list-style: none; padding: 0; margin: 0; }
.mobile-menu-links li { border-bottom: 1px solid #F0F0F0; }
.mobile-menu-links a { display: flex; align-items: center; gap: 12px; padding: 14px 16px; color: var(--text); text-decoration: none; font-size: 14px; font-weight: 500; transition: all 0.2s; }
.mobile-menu-links a:hover { background: #FFF0EC; color: var(--red); }
.mobile-menu-links a.active { color: var(--red); font-weight: 600; }
.mobile-menu-links i { font-size: 16px; color: var(--red); }
.mobile-menu-footer { padding: 16px; border-top: 1px solid #F0F0F0; }
.badge { position: absolute; top: -6px; right: -6px; background: var(--red); color: white; font-size: 10px; font-weight: 700; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 2px solid white; }
.order-btn { background: var(--red); color: white; border: none; padding: 10px 20px; border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 7px; transition: all 0.2s; white-space: nowrap; }
.order-btn:hover { background: var(--red-dark); transform: translateY(-1px); }

/* ── MOBILE SEARCH ROW (below navbar on phones) ── */
.mobile-search-row {
  display: none;
  padding: 10px 14px 12px;
  background: var(--white);
  border-top: 1px solid #F0F0F0;
}
.mobile-search-bar {
  display: flex;
  align-items: center;
  background: #F7F7F7;
  border: 1.5px solid #E5E5E5;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.mobile-search-bar:focus-within { border-color: var(--red); }
.mobile-search-bar > i {
  padding: 0 12px;
  color: var(--muted);
  font-size: 14px;
  flex-shrink: 0;
}
.mobile-search-bar input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  padding: 11px 0;
  color: var(--text);
  min-width: 0;
}
.mobile-search-bar input::placeholder { color: var(--muted); }
.mobile-search-bar button {
  background: var(--red);
  border: none;
  color: white;
  padding: 0 16px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s;
  flex-shrink: 0;
}
.mobile-search-bar button:hover { background: var(--red-dark); }

/* Show mobile search row only on small screens where main search bar is hidden */
@media(max-width: 480px) {
  .mobile-search-row { display: block; }
  /* Hide the main search bar inside navbar on ≤480px (mobile-search-row replaces it) */
  .navbar-inner .search-bar { display: none !important; }
}

/* ── CATEGORY NAV ── */
.cat-nav { background: var(--cream); border-bottom: 1px solid rgba(249,115,22,0.12); }
.cat-nav-inner { max-width: 1280px; margin: auto; padding: 0 24px; display: flex; align-items: center; gap: 0; overflow-x: auto; scrollbar-width: none; }
.cat-nav-inner::-webkit-scrollbar { display: none; }
.cat-link { color: var(--text); text-decoration: none; font-size: 13px; font-weight: 500; padding: 13px 18px; white-space: nowrap; display: flex; align-items: center; gap: 7px; transition: all 0.2s; border-bottom: 2px solid transparent; letter-spacing: 0.01em; }
.cat-link:hover, .cat-link.active { color: var(--red); border-bottom-color: var(--red); }
.cat-link i { font-size: 14px; color: var(--red); }

/* ── HERO ── */
.hero { position: relative; overflow: hidden; min-height: 560px; display: flex; align-items: center; background: linear-gradient(135deg, #2D1E0F 0%, #18120A 55%, #3D2510 100%); }
.hero-bg-video { position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%; width: auto; height: auto; transform: translate(-50%, -50%); object-fit: cover; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.6) 100%); z-index: 1; pointer-events: none; }
.hero-inner { max-width: 1280px; margin: auto; padding: 80px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; position: relative; z-index: 2; width: 100%; }
.hero-content { color: white; text-align: left; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25); color: white; font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 14px; border-radius: 20px; margin-bottom: 20px; backdrop-filter: blur(4px); }
.hero h1 { font-family: 'Syne', sans-serif; font-size: clamp(52px, 7vw, 88px); line-height: 0.92; letter-spacing: 0.02em; margin-bottom: 20px; color: white; }
.hero h1 span { color: var(--red); }
.hero p { color: rgba(255,255,255,0.8); font-size: 16px; line-height: 1.7; max-width: 500px; margin: 0 0 32px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary { background: var(--red); color: white; padding: 14px 28px; border-radius: 8px; font-weight: 600; font-size: 15px; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all 0.25s; }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,40,11,0.35); }
.btn-outline { background: rgba(255,255,255,0.1); color: white; padding: 14px 28px; border-radius: 8px; font-weight: 600; font-size: 15px; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; border: 2px solid rgba(255,255,255,0.3); transition: all 0.25s; backdrop-filter: blur(4px); }
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.2); }
.hero-stats { display: flex; gap: 32px; margin-top: 36px; }
.stat { border-left: 3px solid var(--red); padding-left: 14px; text-align: left; }
.stat-num { font-family: 'Syne', sans-serif; font-size: 30px; line-height: 1; color: white; }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.6); letter-spacing: 0.05em; text-transform: uppercase; }

/* ── HERO RIGHT (COMBO SLIDER) ── */
.hero-right { display: flex; flex-direction: column; gap: 14px; max-width: 480px; margin-left: auto; overflow: hidden; }
.hero-slider-header { display: flex; align-items: center; justify-content: space-between; }
.hero-slider-label { display: inline-flex; align-items: center; gap: 8px; color: white; font-size: 15px; font-weight: 700; letter-spacing: 0.03em; }
.hero-slider-label i { color: var(--red); font-size: 16px; }
.hero-slider-nav { display: flex; gap: 6px; }
.hero-slider-arrow { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25); background: rgba(255,255,255,0.08); color: white; font-size: 12px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; backdrop-filter: blur(4px); }
.hero-slider-arrow:hover { background: rgba(255,255,255,0.25); border-color: rgba(255,255,255,0.5); }
.hero-slider-viewport { overflow: hidden; border-radius: 16px; position: relative; }
.hero-slider-track { display: flex; gap: 16px; transition: transform 0.5s cubic-bezier(.4,0,.2,1); }
.hero-combo-card { width: calc(50% - 8px); min-width: calc(50% - 8px); flex-shrink: 0; background: rgba(255,255,255,0.10); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.18); border-radius: 16px; transition: background 0.3s, border-color 0.3s, box-shadow 0.3s; }
.hero-combo-card:hover { background: rgba(255,255,255,0.20); border-color: rgba(255,255,255,0.4); box-shadow: 0 8px 28px rgba(0,0,0,0.3); }
.hero-combo-img { width: 100%; height: 150px; overflow: hidden; border-radius: 16px 16px 0 0; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; }
.hero-combo-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-combo-img span { font-size: 42px; }
.hero-combo-info { padding: 12px 14px 14px; }
.hero-combo-info h4 { font-size: 14px; font-weight: 700; color: white; line-height: 1.3; margin-bottom: 10px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hero-combo-bottom { display: flex; align-items: center; justify-content: space-between; }
.hero-combo-price { font-family: 'DM Sans', sans-serif; font-size: 22px; color: var(--gold); }
.hero-combo-btn { width: 34px; height: 34px; border-radius: 50%; border: none; background: var(--red); color: white; font-size: 13px; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.2s; position: relative; z-index: 10; pointer-events: auto; }
.hero-combo-btn:hover { background: var(--red-dark); transform: scale(1.15); }

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr !important; text-align: center; }
  .hero-content { text-align: center; }
  .hero p { margin: 0 auto 32px; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-right { max-width: 100%; margin-left: 0; }
  .hero-combo-card { width: calc(50% - 8px); min-width: calc(50% - 8px); }
  .hero-combo-img { height: 120px; }
}
@media (max-width: 480px) {
  .hero-combo-card { width: 100%; min-width: 100%; }
}

/* ── FEATURES STRIP ── */
.features { background: var(--white); border-bottom: 1px solid #EDEDED; }
.features-inner { max-width: 1280px; margin: auto; padding: 0 24px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.feature { display: flex; align-items: center; gap: 14px; padding: 22px 20px; border-right: 1px solid #EDEDED; }
.feature:last-child { border-right: none; }
.feature-icon { width: 46px; height: 46px; background: #FFF0EC; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; color: var(--red); }
.feature h4 { font-size: 14px; font-weight: 700; color: var(--dark); }
.feature p { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ── OFFERS CAROUSEL ── */
.ofc { background: linear-gradient(170deg, var(--cream) 0%, var(--light) 50%, var(--cream) 100%); position: relative; overflow: hidden; padding: 48px 0 44px; }
.ofc-bg-glow { position: absolute; top: -120px; right: -120px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(249,115,22,0.1) 0%, transparent 65%); pointer-events: none; }
.ofc-wrap { max-width: 1280px; margin: auto; padding: 0 24px; position: relative; z-index: 1; }

/* Header */
.ofc-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.ofc-header-left { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.ofc-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--red); color: white; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 14px; border-radius: 20px; animation: ofcPulse 2s ease-in-out infinite; }
@keyframes ofcPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(232,40,11,0.4); } 50% { box-shadow: 0 0 0 8px rgba(232,40,11,0); } }
.ofc-heading { font-family: 'Syne', sans-serif; font-size: clamp(28px, 4vw, 40px); color: var(--dark); letter-spacing: 0.03em; line-height: 1; }
.ofc-heading span { color: var(--gold); }

/* Nav arrows + counter */
.ofc-nav { display: flex; align-items: center; gap: 12px; }
.ofc-arr { width: 44px; height: 44px; border-radius: 12px; background: white; border: 1px solid rgba(249,115,22,0.15); color: var(--text); font-size: 14px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.25s; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.ofc-arr:hover { background: var(--red); border-color: var(--red); color: white; box-shadow: 0 4px 20px rgba(232,40,11,0.35); transform: scale(1.05); }
.ofc-counter { font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 700; color: var(--muted); min-width: 48px; text-align: center; }
.ofc-counter span:first-child { color: var(--dark); font-size: 18px; }

/* Progress bar */
.ofc-progress { height: 3px; background: rgba(0,0,0,0.08); border-radius: 3px; margin-bottom: 28px; overflow: hidden; }
.ofc-progress-bar { height: 100%; background: linear-gradient(90deg, var(--red), var(--gold)); border-radius: 3px; width: 25%; transition: width 0.4s ease; }

/* Viewport */
.ofc-viewport { overflow: hidden; border-radius: 20px; }
.ofc-track { display: flex; transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); will-change: transform; }
.ofc-slide { min-width: 100%; flex-shrink: 0; border-radius: 20px; aspect-ratio: 1055 / 350; position: relative; overflow: hidden; }

/* Card base */
.ofc-card { display: grid; grid-template-columns: 1fr auto; align-items: center; min-height: 280px; border-radius: 20px; padding: 44px 48px; position: relative; overflow: hidden; }
.ofc-card-orb { position: absolute; width: 350px; height: 350px; border-radius: 50%; pointer-events: none; }
.ofc-card-orb--2 { width: 200px; height: 200px; }

/* Color themes */
.ofc-card--red { background: linear-gradient(135deg, #C72008 0%, #8B1406 100%); }
.ofc-card--red .ofc-card-orb { background: radial-gradient(circle, rgba(255,100,60,0.25) 0%, transparent 70%); top: -80px; right: -60px; }
.ofc-card--red .ofc-card-orb--2 { background: radial-gradient(circle, rgba(245,166,35,0.15) 0%, transparent 70%); bottom: -40px; left: -30px; }

.ofc-card--gold { background: linear-gradient(135deg, #D4940A 0%, #9A6B00 100%); }
.ofc-card--gold .ofc-card-orb { background: radial-gradient(circle, rgba(255,220,100,0.2) 0%, transparent 70%); top: -80px; right: -60px; }
.ofc-card--gold .ofc-card-orb--2 { background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%); bottom: -40px; left: -30px; }

.ofc-card--green { background: linear-gradient(135deg, #0D7C36 0%, #065A24 100%); }
.ofc-card--green .ofc-card-orb { background: radial-gradient(circle, rgba(34,197,94,0.2) 0%, transparent 70%); top: -80px; right: -60px; }
.ofc-card--green .ofc-card-orb--2 { background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%); bottom: -40px; left: -30px; }

.ofc-card--purple { background: linear-gradient(135deg, #6D28D9 0%, #4C1D95 100%); }
.ofc-card--purple .ofc-card-orb { background: radial-gradient(circle, rgba(167,139,250,0.2) 0%, transparent 70%); top: -80px; right: -60px; }
.ofc-card--purple .ofc-card-orb--2 { background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%); bottom: -40px; left: -30px; }

/* Card body */
.ofc-card-body { position: relative; z-index: 1; }
.ofc-card-tag { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.15); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.2); color: white; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 14px; border-radius: 20px; margin-bottom: 16px; }
.ofc-card-title { font-family: 'Syne', sans-serif; font-size: clamp(38px, 5vw, 56px); color: white; line-height: 0.95; letter-spacing: 0.02em; margin-bottom: 12px; }
.ofc-card-title span { color: rgba(255,255,255,0.7); }
.ofc-card--gold .ofc-card-title span { color: rgba(0,0,0,0.35); }
.ofc-card-desc { color: rgba(255,255,255,0.7); font-size: 15px; line-height: 1.65; margin-bottom: 16px; max-width: 380px; }
.ofc-card-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; flex-wrap: wrap; }
.ofc-card-save { display: inline-flex; align-items: center; gap: 6px; background: rgba(0,0,0,0.2); color: var(--gold); font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 8px; }
.ofc-card--gold .ofc-card-save { background: rgba(0,0,0,0.15); color: white; }

/* CTA button */
.ofc-card-btn { display: inline-flex; align-items: center; gap: 8px; background: white; color: var(--dark); padding: 13px 28px; border-radius: 12px; font-size: 14px; font-weight: 700; font-family: 'DM Sans', sans-serif; text-decoration: none; transition: all 0.3s; box-shadow: 0 4px 20px rgba(0,0,0,0.2); position: relative; overflow: hidden; }
.ofc-card-btn::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--red), var(--gold)); opacity: 0; transition: opacity 0.3s; }
.ofc-card-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.3); color: white; }
.ofc-card-btn:hover::before { opacity: 1; }
.ofc-card-btn i, .ofc-card-btn span { position: relative; z-index: 1; }
.ofc-card-btn i { font-size: 12px; transition: transform 0.3s; }
.ofc-card-btn:hover i { transform: translateX(4px); }
.ofc-card-btn--dark { background: var(--dark); color: white; }
.ofc-card-btn--dark::before { background: linear-gradient(135deg, var(--gold), #E09000); }
.ofc-card-btn--dark:hover { color: var(--dark); }

/* Visual / emoji */
.ofc-card-visual { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; width: 200px; height: 200px; flex-shrink: 0; justify-self: end; }
.ofc-card-emoji { font-size: 100px; filter: drop-shadow(0 12px 32px rgba(0,0,0,0.3)); animation: ofcFloat 4s ease-in-out infinite; position: relative; z-index: 1; }
.ofc-card-banner { width: 180px; height: 180px; object-fit: fill; border-radius: 16px; box-shadow: 0 12px 32px rgba(0,0,0,0.3); animation: ofcFloat 4s ease-in-out infinite; position: relative; z-index: 1; }
/* Pure image slide — fills box exactly */
.ofc-slide-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: fill; object-position: center; border-radius: 20px; display: block; }
@keyframes ofcFloat { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-14px) scale(1.04); } }
.ofc-card-ring { position: absolute; inset: 0; border: 2px dashed rgba(255,255,255,0.12); border-radius: 50%; animation: ofcSpin 20s linear infinite; }
@keyframes ofcSpin { to { transform: rotate(360deg); } }

/* Responsive */
@media(max-width: 900px) {
  .ofc-slide { aspect-ratio: 900 / 360; }
  .ofc-card { grid-template-columns: 1fr; text-align: center; padding: 32px 28px; min-height: auto; }
  .ofc-card-body { order: 2; }
  .ofc-card-visual { order: 1; justify-self: center; width: 140px; height: 140px; margin-bottom: 8px; }
  .ofc-card-emoji { font-size: 72px; }
  .ofc-card-desc { max-width: 100%; margin-left: auto; margin-right: auto; }
  .ofc-card-meta { justify-content: center; }
  .ofc-card--has-banner .ofc-card-banner { min-height: 220px; }
}
@media(max-width: 600px) {
  .ofc-slide { aspect-ratio: 600 / 280; }
  .ofc { padding: 24px 0 20px; }
  .ofc-card { padding: 24px 20px; }
  .ofc-card-title { font-size: 32px; }
  .ofc-arr { width: 38px; height: 38px; }
  .ofc-card--has-banner .ofc-card-banner { min-height: 180px; }
}
@media(max-width: 480px) {
  .ofc-slide { aspect-ratio: 480 / 480; }
}
@media(max-width: 360px) {
  .ofc-slide { aspect-ratio: 360 / 360; }
}

/* ── SECTION LAYOUT ── */
.section { max-width: 1280px; margin: auto; padding: 56px 24px; }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 32px; gap: 16px; flex-wrap: wrap; position: relative; z-index: 1; }
.section-title .eyebrow { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--red); margin-bottom: 6px; }
.section-title h2 { font-family: 'Bebas', sans-serif; font-size: clamp(24px, 3vw, 34px); font-weight: 800; color: var(--dark); line-height: 1.1; }
.view-all { color: var(--red); font-size: 13px; font-weight: 600; text-decoration: none; display: flex; align-items: center; gap: 6px; white-space: nowrap; transition: gap 0.2s; cursor: pointer; position: relative; z-index: 1; }
.view-all:hover { gap: 10px; }

/* ── CATEGORY CARDS ── */
.cat-cards { display: flex; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 16px; justify-items: center; }
.cat-card { background: var(--white); border-radius: 18px; padding: 28px 16px 22px; text-align: center; text-decoration: none; color: var(--text); border: 2px solid transparent; transition: all 0.3s ease; box-shadow: 0 2px 12px rgba(0,0,0,0.06); width: 100%; max-width: 200px; position: relative; overflow: hidden; }
.cat-card::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 80%; height: 3px; background: var(--red); border-radius: 0 0 4px 4px; opacity: 0; transition: opacity 0.3s; }
.cat-card:hover::before, .cat-card.active::before { opacity: 1; }
.cat-card:hover, .cat-card.active { border-color: var(--red); transform: translateY(-6px); box-shadow: 0 14px 28px rgba(232,40,11,0.14); }
.cat-card .emoji { font-size: 42px; display: flex; align-items: center; justify-content: center; width: 72px; height: 72px; margin: 0 auto 14px; background: linear-gradient(135deg, #FFF0EC, #FFE4D6); border-radius: 16px; transition: transform 0.3s, background 0.3s; }
.cat-card:hover .emoji { transform: scale(1.1); background: linear-gradient(135deg, #FFE4D6, #FFD0C0); }
.cat-card h4 { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 4px; line-height: 1.3; }
.cat-card .count { font-size: 11px; color: var(--muted); font-weight: 500; letter-spacing: 0.02em; }

/* ── PRODUCT GRID ── */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: all 0.3s; border: 1px solid #F0F0F0; position: relative; }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
.product-img { width: 100%; height: 200px; display: flex; align-items: center; justify-content: center; font-size: 70px; position: relative; background: linear-gradient(135deg, #FFF0EC, #FFE4D6); overflow: hidden; }
.product-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; z-index: 0; }
.product-img .product-badge, .product-img .product-wishlist { z-index: 1; }
.product-badge { position: absolute; top: 12px; left: 12px; background: var(--red); color: white; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.05em; }
.product-badge.green { background: #16A34A; }
.product-badge.gold { background: var(--gold); color: var(--dark); }
.product-badge.gf-badge { left: auto; right: 12px; top: 12px; background: #16A34A; color: #fff; }
.product-wishlist { position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 15px; color: #CCC; cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,0.1); transition: all 0.2s; border: none; }
.product-wishlist:hover { color: var(--red); transform: scale(1.1); }
.product-body { padding: 18px; }
.product-cat { font-size: 11px; font-weight: 600; color: var(--red); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.product-name { font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; line-height: 1.3; text-decoration: none; display: block; }
.product-name:hover { color: var(--red); }
a.product-img { display: block; text-decoration: none; }
.product-desc { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.product-price { font-family: 'DM Sans', sans-serif; font-size: 20px; font-weight: 800; color: var(--dark); }
.add-btn { background: var(--red); color: white; border: none; padding: 9px 16px; border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; display: flex; align-items: center; gap: 6px; transition: all 0.2s; font-family: 'DM Sans', sans-serif; }
.add-btn:hover { background: var(--red-dark); transform: scale(1.05); }

/* ── PROMO BANNER ── */
.promo-banner { background: linear-gradient(135deg, var(--cream) 0%, #FFE8CC 100%); border: 1px solid rgba(249,115,22,0.15); border-radius: 20px; overflow: hidden; position: relative; margin: 0 24px; max-width: calc(1280px - 48px); margin-left: auto; margin-right: auto; }
.promo-banner::before { content: ''; position: absolute; right: -80px; top: -80px; width: 360px; height: 360px; background: radial-gradient(circle, rgba(249,115,22,0.12) 0%, transparent 70%); }
.promo-inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 40px; padding: 48px; position: relative; z-index: 1; }
.promo-content h2 { font-family: 'Syne', sans-serif; font-size: clamp(36px, 5vw, 60px); color: var(--dark); line-height: 0.95; letter-spacing: 0.02em; margin-bottom: 16px; }
.promo-content h2 span { color: var(--red); }
.promo-content p { color: var(--muted); font-size: 15px; line-height: 1.7; margin-bottom: 28px; }
.promo-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.promo-item { background: white; border: 1px solid rgba(249,115,22,0.15); border-radius: 14px; padding: 20px 16px; text-align: center; transition: all 0.3s; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.promo-item:hover { background: rgba(249,115,22,0.08); border-color: var(--red); transform: translateY(-3px); }
.promo-item .emoji { font-size: 34px; display: block; margin-bottom: 10px; }
.promo-item h4 { color: var(--dark); font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.promo-item p { color: var(--gold); font-size: 15px; font-weight: 800; }

/* ── COMBO SECTION ── */
.combo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.combo-card { background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%); border-radius: 18px; overflow: hidden; text-align: center; border: 1.5px solid #f0f0f0; transition: all 0.3s cubic-bezier(0.4,0,0.2,1); position: relative; box-shadow: 0 4px 16px rgba(0,0,0,0.08); display: flex; flex-direction: column; }
.combo-card:hover { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(232,40,11,0.2); border-color: var(--red); }
.combo-card-img { width: 100%; height: 180px; overflow: hidden; background: #f5f5f5; display: flex; align-items: center; justify-content: center; text-decoration: none; }
.combo-card-img img { width: 100%; height: 100%; object-fit: fill; transition: transform 0.4s; }
.combo-card:hover .combo-card-img img { transform: scale(1.05); }
.combo-card-img .combo-emoji { font-size: 56px; }
.combo-card h3, .combo-card-name { font-family: 'DM Sans', sans-serif; font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 6px; padding: 16px 20px 0; text-decoration: none; display: block; }
.combo-card-name:hover { color: var(--red); }
.combo-desc { font-size: 13px; font-family: 'DM Sans', sans-serif; color: var(--muted); margin-bottom: 16px; padding: 0 20px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.combo-price { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 16px; padding: 0 20px; }
.combo-price .original { font-size: 13px; color: #ccc; text-decoration: line-through; }
.combo-price .deal { font-family: 'DM Sans', sans-serif; font-size: 24px; font-weight: 800; color: var(--red); }
.btn-combo { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: var(--red); color: white; padding: 12px 24px; border-radius: 10px; font-size: 13px; font-weight: 700; font-family: 'DM Sans', sans-serif; text-decoration: none; transition: all 0.2s; cursor: pointer; border: none; margin: auto 20px 20px; }
.btn-combo:hover { background: var(--red-dark); transform: scale(1.05); }

/* ── GLUTEN-FREE SECTION ── */
.glutenfree-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; margin-bottom: 40px; }
.gf-card { background: white; border-radius: 16px; padding: 28px 24px; border: 1.5px solid #f0f0f0; transition: all 0.3s; box-shadow: 0 2px 12px rgba(0,0,0,0.05); display: flex; flex-direction: column; }
.gf-card:hover { border-color: #90EE90; box-shadow: 0 12px 32px rgba(144,238,144,0.15); transform: translateY(-4px); }
.gf-icon { font-size: 48px; margin-bottom: 16px; }
.gf-card h3 { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.gf-card > p { font-size: 14px; font-family: 'DM Sans', sans-serif; color: var(--text-muted); line-height: 1.6; margin-bottom: 18px; }
.gf-list { list-style: none; padding: 0; margin: 0 0 20px 0; flex: 1; }
.gf-list li { font-size: 13px; font-family: 'DM Sans', sans-serif; color: var(--text); padding: 6px 0; display: flex; align-items: center; gap: 8px; }
.gf-list i { color: #28A745; font-size: 12px; }
.gf-note { background: linear-gradient(135deg, #f0ffe6 0%, #f9fff0 100%); border-left: 4px solid #28A745; border-radius: 12px; padding: 20px; display: flex; gap: 16px; align-items: flex-start; }
.gf-note-icon { font-size: 22px; color: #28A745; flex-shrink: 0; margin-top: 2px; }
.gf-note-content { font-size: 13px; font-family: 'DM Sans', sans-serif; color: #2d5a2d; line-height: 1.6; }
.gf-note-content strong { color: #1a4d1a; }

/* ── CUSTOMER REVIEWS ── */
.rv-section { background: linear-gradient(135deg, var(--light) 0%, var(--cream) 100%); color: var(--dark); padding: 80px 0 56px; overflow: hidden; position: relative; }
.rv-section::before { content: ''; position: absolute; right: -100px; top: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(249,115,22,0.08) 0%, transparent 65%); pointer-events: none; }
.rv-section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(56px, 10vw, 110px); font-weight: 200; color: var(--dark); text-transform: uppercase; text-align: center; line-height: 1; letter-spacing: 0.03em; margin-bottom: 10px; }
.rv-section-title span { color: var(--red); }
.rv-section-sub { text-align: center; font-size: 15px; color: var(--muted); margin-bottom: 36px; }
.rv-meta-row { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 48px; }
.rv-score-pill { display: flex; align-items: center; gap: 12px; background: white; border: 1px solid rgba(249,115,22,0.15); border-radius: 12px; padding: 12px 20px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.rv-score-big { font-family: 'DM Sans', sans-serif; font-size: 34px; font-weight: 800; color: var(--dark); line-height: 1; }
.rv-score-stars-wrap { display: flex; flex-direction: column; gap: 4px; }
.rv-score-stars { display: flex; gap: 3px; }
.rv-score-stars i { font-size: 13px; color: var(--gold); }
.rv-score-stars i.rs-empty { color: #D1D5DB; }
.rv-score-count { font-size: 12px; color: var(--muted); }
.rv-leave-btn { display: inline-flex; align-items: center; gap: 8px; background: white; color: var(--dark); padding: 12px 22px; border-radius: 10px; font-size: 13px; font-weight: 700; font-family: 'DM Sans', sans-serif; text-decoration: none; transition: all 0.2s; white-space: nowrap; box-shadow: 0 4px 16px rgba(0,0,0,0.25); }
.rv-leave-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.35); }
.rv-leave-btn i { color: #4285F4; }

/* Carousel Track */
.rv-track { display: flex; align-items: center; gap: 48px; padding: 32px 24px; overflow-x: hidden; }
.rv-track::-webkit-scrollbar { display: none; }

/* Card */
.rv-card { width: 320px; flex-shrink: 0; background: white; border: 1px solid rgba(249,115,22,0.1); border-radius: 16px; padding: 24px; display: flex; flex-direction: column; gap: 14px; transition: transform 0.5s ease-in-out, border-color 0.3s; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.rv-card.active { transform: translateY(-8px) scale(1.06); border-color: var(--red); background: rgba(249,115,22,0.04); }
.rv-card-head { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.rv-stars { display: flex; gap: 4px; flex-shrink: 0; }
.rv-stars i { font-size: 14px; color: var(--gold); }
.rv-stars i.rs-empty { color: #D1D5DB; }
/* Source badge */
.rv-source-badge { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 600; color: var(--muted); background: var(--light); border: 1px solid rgba(249,115,22,0.1); border-radius: 20px; padding: 3px 8px; }
/* Review text */
.rv-text { font-size: 14px; color: var(--text); line-height: 1.75; flex: 1; display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; font-style: italic; }
/* Author row */
.rv-author { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 4px; border-top: 1px solid #F0F0F0; }
.rv-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid rgba(249,115,22,0.12); }
.rv-avatar-init { width: 40px; height: 40px; border-radius: 50%; background: var(--red); display: flex; align-items: center; justify-content: center; font-family: 'DM Sans', sans-serif; font-weight: 800; font-size: 16px; color: white; flex-shrink: 0; }
.rv-author-info { display: flex; flex-direction: column; gap: 2px; }
.rv-name { font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 700; color: var(--dark); line-height: 1.2; }
.rv-date { font-size: 12px; color: var(--muted); }

/* Controls + dots */
.rv-controls { display: flex; justify-content: center; align-items: center; gap: 20px; padding: 8px 0; }
.rv-controls button {border: 1px solid rgba(249,115,22,0.2); border-radius: 8px; background: white; color: var(--text); font-size: 15px; cursor: pointer; transition: all 0.2s; outline: none; }
.rv-controls [data-rv-btn] { padding: 5px 8px; }
.rv-controls button:hover { background: var(--red); border-color: var(--red); box-shadow: 0 4px 16px rgba(232,40,11,0.35); }
.rv-controls button:active { transform: scale(0.88); background: var(--red-dark); }
.rv-dots { display: flex; gap: 7px; align-items: center; }
.rv-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(0,0,0,0.15); border: none; cursor: pointer; padding: 7px; transition: background 0.25s, transform 0.25s; }
.rv-dot.active { background: var(--red); transform: scale(1.35); }
.rv-controls .rv-dot { padding: 7px; }

/* Footer link */
.rv-see-all { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--muted); text-decoration: none; padding: 10px 24px; border-radius: 10px; border: 1px solid rgba(249,115,22,0.15); transition: all 0.25s; }
.rv-see-all:hover { color: var(--dark); border-color: rgba(249,115,22,0.3); background: rgba(249,115,22,0.05); }
.rv-see-all i { font-size: 12px; transition: transform 0.25s; }
.rv-see-all:hover i { transform: translateX(4px); }

/* Mobile */
@media(max-width: 400px) { .rv-card { width: 100%; } }

/* ── WHATSAPP CHAT WIDGET ── */
.wa-widget { position: fixed; bottom: 28px; left: 28px; z-index: 9999; display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
/* Popup card */
.wa-popup { background: white; border-radius: 16px; box-shadow: 0 8px 40px rgba(0,0,0,0.18); width: 300px; overflow: hidden; opacity: 0; transform: translateY(12px) scale(0.97); pointer-events: none; transition: opacity 0.25s ease, transform 0.25s ease; }
.wa-popup.wa-popup-open { opacity: 1; transform: translateY(0) scale(1); pointer-events: all; }
.wa-popup-header { background: #25D366; padding: 14px 16px; display: flex; align-items: center; gap: 10px; }
.wa-popup-avatar { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.25); display: flex; align-items: center; justify-content: center; font-size: 20px; color: white; flex-shrink: 0; }
.wa-popup-info { flex: 1; }
.wa-popup-info strong { display: block; color: white; font-size: 14px; font-weight: 700; font-family: 'DM Sans', sans-serif; }
.wa-popup-info span { font-size: 11px; color: rgba(255,255,255,0.85); display: flex; align-items: center; gap: 5px; margin-top: 2px; }
.wa-popup-close { background: rgba(255,255,255,0.2); border: none; color: white; width: 26px; height: 26px; border-radius: 50%; cursor: pointer; font-size: 13px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.2s; }
.wa-popup-close:hover { background: rgba(255,255,255,0.35); }
.wa-popup-body { background: #ECE5DD; padding: 16px; }
.wa-bubble { background: white; border-radius: 0 12px 12px 12px; padding: 12px 14px; box-shadow: 0 1px 3px rgba(0,0,0,0.08); font-size: 13.5px; color: #111; line-height: 1.6; }
.wa-popup-footer { padding: 14px 14px; }
.wa-start-btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 12px; background: #25D366; color: white; font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 14px; border-radius: 10px; text-decoration: none; transition: background 0.2s; }
.wa-start-btn:hover { background: #1EBE5D; }
.wa-start-btn i { font-size: 18px; }
/* Trigger button */
.wa-trigger { width: 56px; height: 56px; border-radius: 50%; background: #25D366; border: none; color: white; font-size: 26px; cursor: pointer; box-shadow: 0 4px 20px rgba(37,211,102,0.45); display: flex; align-items: center; justify-content: center; transition: transform 0.2s, box-shadow 0.2s; position: relative; }
.wa-trigger:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.55); }
.wa-trigger-icon { display: flex; align-items: center; justify-content: center; }
.wa-trigger-notif { position: absolute; top: -3px; right: -3px; background: var(--red); color: white; border-radius: 50%; width: 18px; height: 18px; font-size: 11px; font-weight: 700; display: none; align-items: center; justify-content: center; border: 2px solid white; }
@media(max-width:600px) { .wa-widget { bottom: 18px; left: 14px; } .wa-popup { width: calc(100vw - 28px); } }

/* ── INSTA GRID ── */
.insta-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.insta-item { border-radius: 14px; overflow: hidden; background: linear-gradient(135deg, #FFF0EC, #FFE4D6); height: 200px; display: flex; align-items: center; justify-content: center; font-size: 56px; position: relative; cursor: pointer; transition: all 0.3s; text-decoration: none; color: inherit; }
.insta-item:hover { transform: scale(1.03); }
.insta-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); transition: all 0.3s; display: flex; align-items: center; justify-content: center; }
.insta-item:hover .insta-overlay { background: rgba(0,0,0,0.35); }
.insta-overlay i { color: white; font-size: 24px; opacity: 0; transition: opacity 0.3s; }
.insta-item:hover .insta-overlay i { opacity: 1; }

/* ── SOCIAL MEDIA SECTION ── */
.social-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.social-card { display: flex; align-items: center; gap: 16px; padding: 20px 22px; border-radius: 18px; text-decoration: none; color: #fff; transition: transform 0.25s, box-shadow 0.25s; position: relative; overflow: hidden; }
.social-card::before { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0.08); opacity: 0; transition: opacity 0.25s; }
.social-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.18); }
.social-card:hover::before { opacity: 1; }
.social-card-icon { font-size: 36px; flex-shrink: 0; line-height: 1; }
.social-card-info { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.social-card-name { font-weight: 700; font-size: 17px; }
.social-card-handle { font-size: 12px; opacity: 0.82; }
.social-card-btn { font-size: 12px; font-weight: 700; letter-spacing: 0.04em; padding: 7px 16px; border-radius: 24px; background: rgba(255,255,255,0.22); white-space: nowrap; flex-shrink: 0; transition: background 0.2s; }
.social-card:hover .social-card-btn { background: rgba(255,255,255,0.35); }
.social-card--instagram { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-card--facebook  { background: linear-gradient(135deg, #1877F2, #0a5dc8); }
.social-card--twitter   { background: linear-gradient(135deg, #1a1a1a, #434343); }
.social-card--tiktok    { background: linear-gradient(135deg, #010101, #2a2a2a); }
.social-card--whatsapp  { background: linear-gradient(135deg, #25D366, #128C7E); }

/* ── FIND US / LOCATION ── */
.location-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 28px; align-items: stretch; }
.location-map { border-radius: 20px; overflow: hidden; min-height: 400px; box-shadow: 0 4px 24px rgba(0,0,0,0.1); border: 2px solid #F0F0F0; }
.location-map iframe { width: 100%; height: 100%; display: block; }
.location-info { display: flex; flex-direction: column; gap: 16px; }
.location-card { display: flex; align-items: flex-start; gap: 16px; background: var(--white); border-radius: 14px; padding: 20px; border: 1px solid #F0F0F0; transition: all 0.3s; box-shadow: 0 2px 10px rgba(0,0,0,0.04); }
.location-card:hover { border-color: var(--red); transform: translateX(4px); box-shadow: 0 6px 20px rgba(232,40,11,0.1); }
.location-card-icon { width: 48px; height: 48px; background: linear-gradient(135deg, #FFF0EC, #FFD0C0); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--red); flex-shrink: 0; }
.location-card h4 { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.location-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.location-card p a { color: var(--red); text-decoration: none; font-weight: 600; transition: color 0.2s; }
.location-card p a:hover { color: var(--red-dark); text-decoration: underline; }

/* Landing Page Opening Hours List */
.landing-hours-list { list-style: none; padding: 0; margin: 4px 0 0; display: flex; flex-direction: column; gap: 4px; }
.landing-hours-list li { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--muted); padding: 4px 8px; border-radius: 6px; }
.landing-hours-list li.lh-today { background: #FEF3C7; font-weight: 600; color: var(--dark); }
.landing-hours-list li.lh-closed .lh-time { color: #EF4444; font-weight: 600; }
.landing-hours-list .lh-day { min-width: 70px; font-weight: 600; color: var(--dark); }
.landing-hours-list .lh-time { flex: 1; }
.landing-hours-list .lh-badge { font-size: 9px; background: var(--red); color: #fff; padding: 2px 6px; border-radius: 8px; font-weight: 700; text-transform: uppercase; }

.location-directions-btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; width: 100%; background: var(--red); color: white; padding: 16px 28px; border-radius: 12px; font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 700; text-decoration: none; transition: all 0.25s; margin-top: auto; box-shadow: 0 4px 16px rgba(232,40,11,0.25); }
.location-directions-btn:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,40,11,0.35); }
.location-directions-btn i { font-size: 18px; }

/* ── FAQ ── */
.faq-layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border: 1.5px solid #F0F0F0; border-radius: 16px; overflow: hidden; transition: border-color 0.25s, box-shadow 0.25s; }
.faq-item:hover { border-color: #FFD0C0; box-shadow: 0 4px 18px rgba(249,115,22,0.07); }
.faq-item.open { border-color: var(--red); box-shadow: 0 6px 24px rgba(249,115,22,0.12); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; background: none; border: none; cursor: pointer; font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: var(--dark); text-align: left; transition: color 0.2s; }
.faq-item.open .faq-q { color: var(--red); }
.faq-icon { flex-shrink: 0; font-size: 13px; color: var(--red); transition: transform 0.3s ease; }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s ease; padding: 0 24px; }
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 20px; }
.faq-a p { font-size: 14px; color: var(--muted); line-height: 1.75; margin: 0; }
.faq-a p a { color: var(--red); text-decoration: none; font-weight: 600; }
.faq-a p a:hover { text-decoration: underline; }
/* FAQ CTA card */
.faq-cta { position: sticky; top: 100px; }
.faq-cta-inner { background: linear-gradient(145deg, #FFF7F3, #e8a87c); border: 1.5px solid #FFD0C0; border-radius: 20px; padding: 36px 28px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.faq-cta-icon { font-size: 52px; line-height: 1; }
.faq-cta-inner h3 { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 800; color: var(--dark); margin: 0; }
.faq-cta-inner p { font-size: 13.5px; color: var(--muted); line-height: 1.65; margin: 0; }

/* ── WHY US ── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card { background: var(--white); border-radius: 20px; padding: 32px; border: 1px solid #F0F0F0; transition: all 0.3s; text-align: center; }
.why-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); border-color: #FFD0C0; }
.why-icon { width: 64px; height: 64px; background: linear-gradient(135deg, #FFF0EC, #FFD0C0); border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 18px; color: var(--red); }
.why-card h3 { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── NEWSLETTER ── */
.newsletter { background: var(--red); position: relative; overflow: hidden; }
.newsletter::before { content: ''; position: absolute; right: -100px; top: -100px; width: 400px; height: 400px; background: rgba(255,255,255,0.07); border-radius: 50%; }
.newsletter::after { content: ''; position: absolute; left: -60px; bottom: -60px; width: 260px; height: 260px; background: rgba(255,255,255,0.05); border-radius: 50%; }
.newsletter-inner { max-width: 1280px; margin: auto; padding: 56px 24px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; position: relative; z-index: 1; }
.newsletter-content h2 { font-family: 'Syne', sans-serif; font-size: 42px; color: white; letter-spacing: 0.02em; line-height: 1; margin-bottom: 8px; }
.newsletter-content p { color: rgba(255,255,255,0.75); font-size: 15px; }
.newsletter-form-wrap { max-width: 440px; width: 100%; }
.newsletter-form { display: flex; gap: 0; width: 100%; border-radius: 10px; overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.newsletter-form input { flex: 1; border: none; outline: none; padding: 14px 18px; font-family: 'DM Sans', sans-serif; font-size: 14px; }
.newsletter-form input:disabled { background: #f5f5f5; color: #999; }
.newsletter-form button { background: var(--dark); color: white; border: none; padding: 14px 24px; font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600; cursor: pointer; transition: background 0.2s; white-space: nowrap; min-width: 110px; display: flex; align-items: center; justify-content: center; }
.newsletter-form button:hover:not(:disabled) { background: #000; }
.newsletter-form button:disabled { opacity: 0.7; cursor: not-allowed; }
.newsletter-hint { color: rgba(255,255,255,0.5); font-size: 12px; margin-top: 10px; display: flex; align-items: center; gap: 6px; }
.newsletter-hint i { font-size: 10px; }
.newsletter-success { display: none; align-items: center; gap: 12px; background: rgba(255,255,255,0.15); border-radius: 10px; padding: 16px 20px; animation: fadeSlideIn 0.4s ease; }
.newsletter-success i { font-size: 24px; color: #fff; flex-shrink: 0; }
.newsletter-success span { color: white; font-size: 15px; font-weight: 600; }

/* ── FOOTER ── */
footer { background: var(--dark); color: rgba(255,255,255,0.55); border-top: 1px solid rgba(255,255,255,0.08); }
.footer-main { max-width: 1280px; margin: auto; padding: 56px 24px 40px; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-brand .logo-text span:first-child { color: white; }
.footer-brand .logo-text span:last-child { color: rgba(255,255,255,0.35); }
.footer-brand p { font-size: 13.5px; line-height: 1.75; margin: 18px 0 22px; color: rgba(255,255,255,0.5); }
.social-links { display: flex; gap: 8px; }
.social-link { width: 38px; height: 38px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 15px; text-decoration: none; transition: all 0.2s; }
.social-link:hover { color: white; transform: translateY(-2px); }
.sl-facebook:hover  { background: #1877F2; border-color: #1877F2; }
.sl-instagram:hover { background: linear-gradient(135deg,#f09433,#dc2743,#bc1888); border-color: #dc2743; }
.sl-twitter:hover   { background: #1a1a1a; border-color: #555; }
.sl-tiktok:hover    { background: #010101; border-color: #69C9D0; }
.sl-whatsapp:hover  { background: #25D366; border-color: #25D366; }
.footer-col h4 { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; color: white; margin-bottom: 18px; letter-spacing: 0.02em; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 13.5px; transition: color 0.2s; display: flex; align-items: center; gap: 8px; }
.footer-links a:hover { color: var(--gold); }
.footer-links a i { font-size: 11px; color: var(--red); }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.contact-list li { display: flex; gap: 10px; font-size: 13.5px; color: rgba(255,255,255,0.5); align-items: flex-start; }
.contact-list li i { color: var(--red); margin-top: 2px; flex-shrink: 0; }

/* Footer Opening Hours List */
.footer-hours-list { list-style: none; padding: 0; margin: 10px 0 0; display: flex; flex-direction: column; gap: 6px; }
.footer-hours-list li { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: rgba(255,255,255,0.55); padding: 5px 8px; border-radius: 6px; transition: background 0.2s; }
.footer-hours-list li.today { background: rgba(255,255,255,0.08); color: #fff; font-weight: 600; }
.footer-hours-list .fh-day { min-width: 70px; font-weight: 600; color: rgba(255,255,255,0.75); }
.footer-hours-list li.today .fh-day { color: #fff; }
.footer-hours-list .fh-time { flex: 1; }
.footer-hours-list .fh-time.fh-closed { color: #EF4444; font-weight: 600; }
.footer-hours-list .fh-badge { font-size: 9px; background: var(--gold); color: #000; padding: 2px 6px; border-radius: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); max-width: 1280px; margin: 0 auto; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.footer-bottom-links a:hover { color: white; }

/* ── CART TOAST ── */
.toast { position: fixed; bottom: 24px; right: 24px; background: var(--dark); color: white; padding: 14px 20px; border-radius: 12px; font-size: 14px; font-weight: 500; display: flex; align-items: center; gap: 10px; z-index: 9999; box-shadow: 0 8px 24px rgba(0,0,0,0.25); transform: translateY(80px); opacity: 0; transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }
.toast.show { transform: translateY(0); opacity: 1; }
.toast i { color: #22C55E; font-size: 18px; }

/* ── BG sections ── */
.bg-light { background: var(--light); }
.bg-white { background: var(--white); }
.bg-dark { background: var(--dark); }

/* ══════════════════════════════
   FULL MENU SECTION STYLES
══════════════════════════════ */
.menu-section-header { margin-bottom: 10px; }
.menu-subtitle { color: var(--muted); font-size: 15px; margin-top: 8px; max-width: 600px; }

.menu-controls { display: flex; align-items: center; gap: 12px; margin: 24px 0 16px; flex-wrap: wrap; }
.menu-search-wrap { flex: 1; min-width: 220px; max-width: 380px; position: relative; display: flex; align-items: center; }
.menu-search-wrap > i { position: absolute; left: 14px; color: var(--muted); font-size: 14px; pointer-events: none; }
.menu-search-wrap input { width: 100%; border: 2px solid #E5E5E5; border-radius: 10px; padding: 11px 40px 11px 40px; font-family: 'DM Sans', sans-serif; font-size: 14px; outline: none; transition: border-color 0.2s; background: white; }
.menu-search-wrap input:focus { border-color: var(--red); }
.menu-search-clear { position: absolute; right: 12px; background: none; border: none; color: var(--muted); cursor: pointer; font-size: 14px; padding: 4px; transition: color 0.2s; }
.menu-search-clear:hover { color: var(--red); }

.menu-sort-wrap { display: flex; align-items: center; gap: 8px; background: white; border: 2px solid #E5E5E5; border-radius: 10px; padding: 0 14px; height: 44px; transition: border-color 0.2s; }
.menu-sort-wrap:focus-within { border-color: var(--red); }
.menu-sort-wrap label { color: var(--muted); font-size: 14px; display: flex; align-items: center; }
.menu-sort-wrap select { border: none; outline: none; font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--text); background: transparent; cursor: pointer; flex: 1; }

.menu-view-wrap { display: flex; gap: 4px; background: white; border: 2px solid #E5E5E5; border-radius: 10px; padding: 4px; }
.view-toggle { width: 34px; height: 34px; border-radius: 7px; border: none; background: transparent; color: var(--muted); font-size: 15px; cursor: pointer; transition: all 0.2s; display: flex; align-items: center; justify-content: center; }
.view-toggle.active { background: var(--red); color: white; }

.menu-filter-bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.filter-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.fpill { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: 30px; border: 2px solid #E5E5E5; background: white; font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600; color: var(--text); cursor: pointer; transition: all 0.2s; white-space: nowrap; }
.fpill:hover { border-color: var(--red); color: var(--red); }
.fpill.active { background: var(--red); border-color: var(--red); color: white; }
.pill-count { background: rgba(0,0,0,0.08); border-radius: 10px; padding: 1px 7px; font-size: 11px; }
.fpill.active .pill-count { background: rgba(255,255,255,0.25); }

.filter-tags-right { display: flex; gap: 10px; flex-wrap: wrap; }
.tag-toggle { display: flex; align-items: center; gap: 0; cursor: pointer; }
.tag-toggle input { display: none; }
.tag-toggle span { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: 30px; border: 2px solid #E5E5E5; background: white; font-size: 13px; font-weight: 600; color: var(--text); transition: all 0.2s; white-space: nowrap; }
.tag-toggle input:checked + span { background: var(--dark); border-color: var(--dark); color: white; }
.tag-toggle span i { color: var(--gold); font-size: 12px; }

.menu-result-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; font-size: 13px; color: var(--muted); }
.clear-filters-btn { background: none; border: 1px solid #E5E5E5; border-radius: 20px; padding: 5px 12px; font-size: 12px; color: var(--red); cursor: pointer; display: flex; align-items: center; gap: 5px; font-family: 'DM Sans', sans-serif; font-weight: 600; transition: all 0.2s; }
.clear-filters-btn:hover { background: #FFF0EC; border-color: var(--red); }

/* ── Category Sections (All Items view) ─────────────────── */
.menu-cat-sections { display: flex; flex-direction: column; gap: 48px; }
.menu-cat-section { }
.menu-cat-heading { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 12px; }
.menu-cat-emoji { font-size: 28px; line-height: 1; flex-shrink: 0; }
.menu-cat-title { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700; color: var(--text); margin: 0; white-space: nowrap; }
.menu-cat-count { font-size: 12px; font-weight: 600; color: var(--muted); background: #F5F5F5; border-radius: 20px; padding: 3px 10px; white-space: nowrap; flex-shrink: 0; }
.menu-cat-line { flex: 1; height: 2px; background: linear-gradient(to right, #F0F0F0, transparent); border-radius: 2px; }
.menu-cat-line--left { background: linear-gradient(to left, #F0F0F0, transparent); }
.menu-cat-subheading { text-align: center; font-size: 13px; color: var(--muted); font-style: italic; margin: 0 0 20px; }

.menu-product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; transition: all 0.3s; }
.menu-product-grid.list-view { grid-template-columns: 1fr; }

.menu-card { background: white; border-radius: 16px; border: 1px solid #F0F0F0; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.05); transition: all 0.3s; display: flex; flex-direction: column; animation: fadeUp 0.4s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.menu-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(0,0,0,0.1); }

.menu-card .mc-img { height: 260px; display: flex; align-items: center; justify-content: center; font-size: 58px; position: relative; background: linear-gradient(135deg, #FFF0EC, #FFE4D6); flex-shrink: 0; overflow: hidden; }
.menu-card .mc-img img { position: absolute; inset: 0; width: 100%; height: 100%; display: block; z-index: 0; }
.menu-card .mc-img .mc-badge, .menu-card .mc-img .mc-wish { z-index: 1; }
.mc-badge { position: absolute; top: 10px; left: 10px; padding: 3px 9px; border-radius: 20px; font-size: 10px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.mc-badge.red { background: var(--red); color: white; }
.mc-badge.green { background: #16A34A; color: white; }

/* Out of Stock card styling */
.out-of-stock-card { opacity: 0.7; position: relative; }
.out-of-stock-card .mc-img::after, .out-of-stock-card .product-img::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.08); z-index: 2; pointer-events: none; }
.mc-badge.gold { background: var(--gold); color: var(--dark); }
.mc-badge.gf-badge { left: auto; right: 10px; top: 10px; background: #16A34A; color: #fff; }
.mc-wish { position: absolute; top: 10px; right: 10px; width: 32px; height: 32px; border-radius: 50%; background: white; border: none; display: flex; align-items: center; justify-content: center; font-size: 14px; color: #CCC; cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,0.1); transition: all 0.2s; }
.mc-wish:hover { color: var(--red); transform: scale(1.1); }
.mc-wish.wished { color: var(--red); }

/* Promo offer ribbon on menu cards */
.mc-promo-strip { background: linear-gradient(90deg, #7C3AED 0%, #4F46E5 100%); color: #fff; font-size: 11px; font-weight: 700; padding: 6px 12px; text-align: center; letter-spacing: 0.03em; display: flex; align-items: center; justify-content: center; gap: 6px; line-height: 1.3; min-height: 28px; overflow: hidden; }
.mc-promo-strip i { font-size: 10px; opacity: 0.85; flex-shrink: 0; }
.mc-promo-strip .mc-promo-text { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }

/* List view: promo strip spans full width at top */
.menu-product-grid.list-view .mc-promo-strip { position: absolute; top: 0; left: 0; right: 0; border-radius: 14px 14px 0 0; z-index: 2; font-size: 10px; padding: 4px 10px; }
.menu-product-grid.list-view .menu-card { position: relative; }

/* Promo strip responsive - allow wrapping on small cards */
@media (max-width: 768px) {
  .mc-promo-strip { font-size: 10px; padding: 5px 10px; }
  .mc-promo-strip .mc-promo-text { white-space: normal; }
}

.menu-card .mc-body { padding: 14px 16px 16px; flex: 1; display: flex; flex-direction: column; }
.mc-cat { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); margin-bottom: 4px; }
.mc-name { font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 6px; line-height: 1.3; text-decoration: none; display: block; }
.mc-name:hover { color: var(--red); }
a.mc-img { display: block; text-decoration: none; }
.mc-desc { font-size: 12px; color: var(--muted); line-height: 1.55; flex: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 12px; }
.mc-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.mc-price { font-family: 'DM Sans', sans-serif; font-size: 18px; font-weight: 800; color: var(--dark); }
.mc-qty-ctrl { display: flex; align-items: center; gap: 0; border: 2px solid #E5E5E5; border-radius: 8px; overflow: hidden; }
.mc-qty-btn { width: 30px; height: 30px; border: none; background: white; font-size: 13px; font-weight: 700; color: var(--text); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.15s; }
.mc-qty-btn:hover { background: var(--red); color: white; }
.mc-qty-num { min-width: 28px; text-align: center; font-size: 13px; font-weight: 700; color: var(--dark); border-left: 1px solid #E5E5E5; border-right: 1px solid #E5E5E5; height: 30px; display: flex; align-items: center; justify-content: center; }
.mc-add-btn { background: var(--red); color: white; border: none; padding: 8px 14px; border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; display: flex; align-items: center; gap: 5px; transition: all 0.2s; font-family: 'DM Sans', sans-serif; white-space: nowrap; }
.mc-add-btn:hover { background: var(--red-dark); }
.mc-unavailable { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600; color: #9CA3AF; background: #F3F4F6; border-radius: 8px; padding: 7px 10px; white-space: nowrap; cursor: default; user-select: none; }

/* LIST VIEW overrides — modern horizontal card layout */
.menu-product-grid.list-view .menu-card { flex-direction: row; border-radius: 16px; animation: fadeUp 0.4s ease both; overflow: hidden; border: 1px solid #F0F0F0; transition: all 0.3s ease; cursor: pointer; }
.menu-product-grid.list-view .menu-card:hover { transform: translateY(-2px) scale(1.005); box-shadow: 0 12px 32px rgba(0,0,0,0.08); border-color: rgba(249,115,22,0.15); }
.menu-product-grid.list-view .mc-img { width: 160px; min-height: 130px; height: auto; border-radius: 0; font-size: 44px; flex-shrink: 0; overflow: hidden; position: relative; }
.menu-product-grid.list-view .mc-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.menu-product-grid.list-view .mc-body { flex-direction: row; align-items: center; gap: 20px; padding: 18px 20px; flex: 1; min-width: 0; }
.menu-product-grid.list-view .mc-info { flex: 1; min-width: 0; }
.menu-product-grid.list-view .mc-name { font-size: 15px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.menu-product-grid.list-view .mc-desc { -webkit-line-clamp: 1; margin-bottom: 0; font-size: 12px; }
.menu-product-grid.list-view .mc-cat { margin-bottom: 2px; }
.menu-product-grid.list-view .mc-footer { flex-shrink: 0; flex-direction: column; align-items: flex-end; gap: 10px; }
.menu-product-grid.list-view .mc-price { font-size: 17px; }
.menu-product-grid.list-view .mc-promo-strip { position: static; border-radius: 0; font-size: 10px; padding: 4px 10px; min-height: 22px; }

/* List view: promo strip as left accent on image */
@media(min-width: 769px) {
  .menu-product-grid.list-view .mc-promo-strip { position: absolute; top: auto; bottom: 0; left: 0; right: auto; width: 160px; border-radius: 0; z-index: 2; font-size: 9px; padding: 3px 8px; }
}

/* Tablet list view (481px - 768px) */
@media(max-width: 768px) and (min-width: 481px) {
  .menu-product-grid.list-view .menu-card { flex-direction: row; }
  .menu-product-grid.list-view .mc-img { width: 120px; min-height: 110px; }
  .menu-product-grid.list-view .mc-body { gap: 14px; padding: 14px 16px; }
  .menu-product-grid.list-view .mc-name { font-size: 14px; }
  .menu-product-grid.list-view .mc-desc { -webkit-line-clamp: 1; }
  .menu-product-grid.list-view .mc-footer { gap: 8px; }
  .menu-product-grid.list-view .mc-price { font-size: 16px; }
}

/* Mobile list view — compact horizontal card */
@media(max-width: 480px) {
  .menu-product-grid.list-view .menu-card { flex-direction: row; border-radius: 12px; }
  .menu-product-grid.list-view .mc-img { width: 100px; min-height: 100px; border-radius: 0; }
  .menu-product-grid.list-view .mc-body { flex-direction: column; align-items: flex-start; gap: 8px; padding: 12px 14px; }
  .menu-product-grid.list-view .mc-info { width: 100%; }
  .menu-product-grid.list-view .mc-name { font-size: 13px; white-space: normal; -webkit-line-clamp: 2; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; }
  .menu-product-grid.list-view .mc-desc { -webkit-line-clamp: 1; margin-bottom: 0; font-size: 11px; }
  .menu-product-grid.list-view .mc-footer { flex-direction: row; align-items: center; justify-content: space-between; width: 100%; gap: 8px; }
  .menu-product-grid.list-view .mc-price { font-size: 15px; }
  .menu-product-grid.list-view .mc-promo-strip { position: absolute; top: 0; left: 0; right: 0; border-radius: 12px 12px 0 0; }
}

.menu-empty { text-align: center; padding: 60px 20px; }
.menu-empty h3 { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.menu-empty p { color: var(--muted); font-size: 15px; }

/* ── CART DRAWER ── */
.drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 2000; opacity: 0; pointer-events: none; transition: opacity 0.3s; backdrop-filter: blur(2px); }
.drawer-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: 420px; background: var(--white); z-index: 2001; display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1); box-shadow: -8px 0 32px rgba(0,0,0,0.15); }
.cart-drawer.open { transform: translateX(0); }
.drawer-header { padding: 20px 24px; border-bottom: 1px solid #F0F0F0; display: flex; align-items: center; justify-content: space-between; }
.drawer-header h3 { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 800; color: var(--dark); }
.drawer-close { width: 36px; height: 36px; border-radius: 8px; border: 1px solid #E5E5E5; background: transparent; display: flex; align-items: center; justify-content: center; font-size: 15px; cursor: pointer; color: var(--text); transition: all 0.2s; }
.drawer-close:hover { background: #FFF0EC; color: var(--red); border-color: var(--red); }
.drawer-body { flex: 1; overflow-y: auto; padding: 16px 24px; display: flex; flex-direction: column; gap: 12px; }
.cart-empty { text-align: center; margin: auto; }
.cart-empty h4 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.cart-empty p { font-size: 14px; color: var(--muted); }
.cart-item { display: flex; gap: 14px; align-items: flex-start; background: #FAFAFA; border-radius: 12px; padding: 14px; border: 1px solid #F0F0F0; animation: slideIn 0.3s ease; }
@keyframes slideIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
.ci-emoji { font-size: 36px; flex-shrink: 0; width: 48px; text-align: center; }
.ci-thumb { flex-shrink: 0; width: 60px; height: 60px; border-radius: 10px; overflow: hidden; background: #F5F5F5; }
.ci-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ci-info { flex: 1; }
.ci-name { font-weight: 700; font-size: 14px; color: var(--dark); margin-bottom: 3px; }
.ci-toppings { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 4px; }
.ci-topping-tag { font-size: 10px; background: #FFF0EC; color: var(--red); padding: 2px 8px; border-radius: 6px; font-weight: 600; }
.ci-price { font-size: 13px; color: var(--red); font-weight: 600; }
.ci-controls { display: flex; align-items: center; gap: 8px; margin-top: 10px; }
.qty-btn { width: 28px; height: 28px; border-radius: 6px; border: 1px solid #E5E5E5; background: white; display: flex; align-items: center; justify-content: center; font-size: 13px; cursor: pointer; font-weight: 700; color: var(--dark); transition: all 0.2s; }
.qty-btn:hover { background: var(--red); color: white; border-color: var(--red); }
.qty-val { font-weight: 700; font-size: 14px; min-width: 20px; text-align: center; }
.ci-remove { background: none; border: none; color: #CCC; font-size: 15px; cursor: pointer; padding: 4px; transition: color 0.2s; margin-left: auto; }
.ci-remove:hover { color: var(--red); }
/* Offer min-qty nudge in cart drawer */
.ci-offer-nudge { font-size: 12px; color: var(--red-dark, #C2410C); margin-top: 7px; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.ci-offer-nudge-btn { background: var(--red, #F97316); color: #fff; border: none; border-radius: 6px; padding: 3px 9px; font-size: 11px; font-weight: 700; cursor: pointer; transition: background .2s; }
.ci-offer-nudge-btn:hover { background: var(--red-dark, #C2410C); }

/* ── Toppings Panel (Zomato/Swiggy style) ── */
.ci-toppings-toggle {
  display: inline-flex; align-items: center; gap: 5px; margin-top: 8px; padding: 5px 12px;
  border-radius: 8px; border: 1px dashed var(--red); background: #FFF8F6; color: var(--red);
  font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 700; cursor: pointer;
  transition: all 0.2s;
}
.ci-toppings-toggle:hover { background: #FFF0EC; border-style: solid; }
.ci-toppings-panel {
  margin-top: 8px; padding: 12px; background: #FFFAF8; border-radius: 10px;
  border: 1px solid #FFE5D9; animation: slideIn 0.2s ease;
}
.ci-toppings-open { display: block; }
.ci-toppings-common { margin-top: 12px; border: 1px dashed var(--red); background: #FFFAF8; }
.ci-toppings-loading { font-size: 12px; color: var(--muted); text-align: center; padding: 8px 0; }
.ci-selected-toppings { margin-top: 10px; padding: 10px 12px; background: #FFF8F6; border-radius: 10px; border: 1px solid #FFE5D9; }
.ci-selected-title { font-size: 11px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.ci-selected-row { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); padding: 2px 0; }
.ci-selected-row span:last-child { font-weight: 700; color: var(--red); }
.ci-selected-total { border-top: 1px solid #FFE5D9; margin-top: 4px; padding-top: 4px; font-weight: 700; color: var(--dark); }
.ci-selected-total span:last-child { color: var(--dark); }
.oms-toppings-section { padding: 8px 0; border-top: 1px dashed #F0F0F0; margin-top: 4px; }
.oms-toppings-label { font-size: 11px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.cd-toppings-label span { font-weight: 700; font-size: 12px; }
.cd-topping span:first-child { padding-left: 12px; font-size: 12px; color: var(--muted); }
.ci-toppings-title {
  font-size: 11px; font-weight: 700; color: var(--dark); margin-bottom: 8px;
  display: flex; align-items: center; gap: 6px;
}
.ci-toppings-title i { color: var(--red); font-size: 13px; }
.ci-toppings-grid { display: flex; flex-direction: column; gap: 4px; }
.ci-topping-option {
  display: flex; align-items: center; gap: 8px; padding: 7px 10px;
  border-radius: 8px; background: white; border: 1px solid #F0F0F0;
  cursor: pointer; transition: all 0.15s; user-select: none;
}
.ci-topping-option:hover { border-color: #FFD0C0; background: #FFFAF8; }
.ci-topping-option.selected { border-color: var(--red); background: #FFF0EC; }
.ci-topping-check { font-size: 14px; color: #DDD; flex-shrink: 0; transition: color 0.15s; }
.ci-topping-option.selected .ci-topping-check { color: var(--red); }
.ci-topping-info { flex: 1; display: flex; justify-content: space-between; align-items: center; min-width: 0; }
.ci-topping-name { font-size: 12px; font-weight: 600; color: var(--dark); }
.ci-topping-price { font-size: 11px; font-weight: 700; color: var(--red); flex-shrink: 0; }

.drawer-footer { padding: 16px 24px; border-top: 1px solid #F0F0F0; }
.cart-summary { margin-bottom: 14px; }
.summary-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--muted); margin-bottom: 8px; }
.summary-row.total { font-weight: 800; font-size: 18px; color: var(--dark); border-top: 1px solid #F0F0F0; padding-top: 10px; margin-top: 4px; }
.checkout-btn { width: 100%; background: var(--red); color: white; border: none; padding: 14px; border-radius: 10px; font-family: 'DM Sans',sans-serif; font-size: 15px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: all 0.25s; margin-bottom: 10px; text-decoration: none; }
.checkout-btn:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,40,11,0.3); }
.continue-btn { width: 100%; background: transparent; color: var(--muted); border: none; padding: 10px; font-family: 'DM Sans',sans-serif; font-size: 13px; cursor: pointer; transition: color 0.2s; }
.continue-btn:hover { color: var(--red); }

/* ── CHECKOUT MODAL ── */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 3000; display: none; align-items: center; justify-content: center; padding: 20px; backdrop-filter: blur(3px); }
.modal-overlay.open { display: flex; }
.modal-box { background: white; border-radius: 20px; width: 100%; max-width: 560px; max-height: 90vh; overflow-y: auto; box-shadow: 0 24px 64px rgba(0,0,0,0.25); animation: modalIn 0.35s cubic-bezier(0.34,1.56,0.64,1); }
@keyframes modalIn { from { opacity: 0; transform: scale(0.9) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.steps-bar { display: flex; align-items: center; justify-content: center; gap: 0; padding: 20px 32px 0; }
.step { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: #CCC; }
.step span { width: 28px; height: 28px; border-radius: 50%; background: #E5E5E5; color: #AAA; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; }
.step.active { color: var(--red); }
.step.active span { background: var(--red); color: white; }
.step.done { color: #16A34A; }
.step.done span { background: #16A34A; color: white; }
.step-line { flex: 1; height: 2px; background: #E5E5E5; margin: 0 8px; max-width: 60px; }
.modal-step { padding: 24px 32px 28px; }
.modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.modal-header h2 { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; color: var(--dark); }
.modal-close { width: 36px; height: 36px; border-radius: 8px; border: 1px solid #E5E5E5; background: transparent; display: flex; align-items: center; justify-content: center; font-size: 15px; cursor: pointer; color: var(--text); transition: all 0.2s; }
.modal-close:hover { background: #FFF0EC; color: var(--red); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--dark); }
.form-group input, .form-group textarea, .form-group select { border: 2px solid #E5E5E5; border-radius: 8px; padding: 11px 14px; font-family: 'DM Sans',sans-serif; font-size: 14px; outline: none; width: 100%; transition: border-color 0.2s; resize: none; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--red); }
.form-group input.error { border-color: #EF4444; background: #FFF5F5; }
.form-group input.valid { border-color: #16A34A; background: #F0FDF4; }
.order-type-btns { display: flex; gap: 10px; }
.type-btn { flex: 1; padding: 11px; border-radius: 8px; border: 2px solid #E5E5E5; background: white; font-family: 'DM Sans',sans-serif; font-size: 14px; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: all 0.2s; color: var(--text); }
.type-btn.active { border-color: var(--red); background: #FFF0EC; color: var(--red); }
.modal-footer { display: flex; gap: 12px; justify-content: flex-end; margin-top: 22px; padding-top: 18px; border-top: 1px solid #F0F0F0; }
.btn-ghost { padding: 12px 20px; border-radius: 8px; border: 2px solid #E5E5E5; background: transparent; font-family: 'DM Sans',sans-serif; font-size: 14px; font-weight: 600; cursor: pointer; color: var(--text); display: flex; align-items: center; gap: 7px; transition: all 0.2s; }
.btn-ghost:hover { border-color: var(--red); color: var(--red); }
.btn-next { padding: 12px 24px; border-radius: 8px; border: none; background: var(--red); color: white; font-family: 'DM Sans',sans-serif; font-size: 14px; font-weight: 700; cursor: pointer; display: flex; align-items: center; gap: 8px; transition: all 0.25s; }
.btn-next:hover { background: var(--red-dark); transform: translateY(-1px); }

.order-mini-summary { background: #FAFAFA; border-radius: 12px; border: 1px solid #F0F0F0; padding: 14px 16px; margin-bottom: 18px; font-size: 13px; }
.oms-row { display: flex; justify-content: space-between; color: var(--muted); margin-bottom: 5px; }
.oms-row.total { font-weight: 800; font-size: 15px; color: var(--dark); border-top: 1px solid #E5E5E5; padding-top: 8px; margin-top: 6px; }
.oms-item { padding: 10px 0; border-bottom: 1px solid #F0F0F0; }
.oms-item:last-of-type { border-bottom: none; }
.oms-item-top { display: flex; align-items: flex-start; gap: 10px; }
.oms-thumb { width: 48px; height: 48px; border-radius: 8px; object-fit: cover; flex-shrink: 0; background: #F5F5F5; }
.oms-emoji { font-size: 28px; flex-shrink: 0; width: 48px; text-align: center; line-height: 48px; }
.oms-item-info { flex: 1; min-width: 0; }
.oms-item-name { font-weight: 700; font-size: 13px; color: var(--dark); display: block; }
.oms-qty { font-weight: 600; color: var(--muted); font-size: 12px; }
.oms-item-price { font-weight: 800; font-size: 14px; color: var(--dark); flex-shrink: 0; white-space: nowrap; }
.oms-toppings { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 5px; }
.oms-topping-tag { display: inline-flex; align-items: center; gap: 3px; font-size: 10px; background: #FFF0EC; color: var(--red); padding: 3px 8px; border-radius: 6px; font-weight: 600; }
.oms-topping-price { font-weight: 700; opacity: 0.8; }
.pm-label { font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 10px; }
.pm-options { display: flex; gap: 10px; margin-bottom: 18px; flex-wrap: wrap; }
.pm-option { flex: 1; min-width: 100px; border: 2px solid #E5E5E5; border-radius: 10px; padding: 12px 10px; cursor: pointer; text-align: center; transition: all 0.2s; background: white; }
.pm-option i:first-child { font-size: 22px; display: block; margin-bottom: 5px; color: var(--muted); }
.pm-option span { font-size: 12px; font-weight: 600; display: block; margin-bottom: 4px; color: var(--dark); }
.pm-option .pm-icons { font-size: 18px; color: #CCC; }
.pm-option.active { border-color: var(--red); background: #FFF0EC; }
.pm-option.active i:first-child { color: var(--red); }
.card-input-wrap { position: relative; }
.card-input-wrap input { padding-right: 40px; }
.card-icon { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); color: var(--muted); font-size: 16px; }
.secure-badge { display: flex; align-items: center; gap: 8px; font-size: 12px; background: #F0FFF4; border: 1px solid #BBF7D0; border-radius: 8px; padding: 10px 14px; margin-top: 16px; color: #16A34A; font-weight: 500; }
.paypal-box { text-align: center; padding: 24px 0; }
.confirm-box { text-align: center; padding: 16px 0 8px; }
.confirm-icon { font-size: 64px; margin-bottom: 16px; animation: popIn 0.5s cubic-bezier(0.34,1.56,0.64,1); }
@keyframes popIn { from { transform: scale(0); } to { transform: scale(1); } }
.confirm-box h2 { font-family: 'Syne',sans-serif; font-size: 26px; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.confirm-box p { color: var(--muted); font-size: 15px; margin-bottom: 16px; }
.order-ref { display: inline-block; background: #FFF0EC; border: 1px solid #FFD0C0; padding: 8px 20px; border-radius: 20px; font-size: 14px; font-weight: 700; color: var(--red); margin-bottom: 20px; }
.confirm-details { background: #FAFAFA; border-radius: 12px; border: 1px solid #F0F0F0; padding: 14px 16px; text-align: left; margin-bottom: 16px; font-size: 14px; }
.cd-row { display: flex; justify-content: space-between; margin-bottom: 6px; color: var(--muted); }
.cd-row:last-child { font-weight: 700; color: var(--dark); border-top: 1px solid #E5E5E5; padding-top: 8px; margin-top: 4px; margin-bottom: 0; }
.eta-box { display: flex; align-items: center; gap: 12px; background: #FFFBEB; border: 1px solid #FDE68A; border-radius: 12px; padding: 14px 16px; }
.processing-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 9999; display: none; align-items: center; justify-content: center; backdrop-filter: blur(4px); }
.processing-overlay.open { display: flex; }
.processing-box { background: white; border-radius: 20px; padding: 40px 48px; text-align: center; box-shadow: 0 24px 64px rgba(0,0,0,0.3); }
.processing-box h3 { font-family: 'Syne',sans-serif; font-size: 20px; margin: 16px 0 6px; }
.processing-box p { color: var(--muted); font-size: 14px; }
.spinner { width: 52px; height: 52px; border: 4px solid #F0F0F0; border-top-color: var(--red); border-radius: 50%; margin: 0 auto; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── ABOUT PAGE ── */
/* Hero */
.abt-hero { background: linear-gradient(145deg, #FFF7ED 0%, #FFE8CC 45%, #FFD4A8 80%, #FFF0DC 100%); position: relative; overflow: hidden; min-height: 480px; display: flex; align-items: center; }
.abt-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(249,115,22,0.1) 0%, transparent 60%); }
.abt-hero-pattern { position: absolute; inset: 0; opacity: 0.03; background-image: repeating-linear-gradient(45deg, #F97316 0, #F97316 1px, transparent 0, transparent 50%); background-size: 20px 20px; }
.abt-hero-orb { position: absolute; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(249,115,22,0.1) 0%, transparent 65%); top: -100px; right: -80px; pointer-events: none; }
.abt-hero-orb--2 { width: 250px; height: 250px; background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 65%); bottom: -60px; left: -40px; top: auto; right: auto; }
.abt-hero-inner { max-width: 1280px; margin: auto; padding: 60px 24px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; position: relative; z-index: 1; width: 100%; }
.abt-hero-content { color: var(--dark); }
.abt-hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(249,115,22,0.1); border: 1px solid rgba(249,115,22,0.25); color: var(--red-dark); font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 14px; border-radius: 20px; margin-bottom: 20px; }
.abt-hero-content h1 { font-family: 'Syne', sans-serif; font-size: clamp(48px, 7vw, 80px); line-height: 0.95; letter-spacing: 0.02em; margin-bottom: 18px; }
.abt-hero-content p { color: var(--muted); font-size: 17px; line-height: 1.7; max-width: 440px; margin-bottom: 32px; }
.abt-hero-stats { display: flex; gap: 32px; }
.abt-stat { border-left: 3px solid var(--red); padding-left: 14px; }
.abt-stat-num { font-family: 'Syne', sans-serif; font-size: 30px; line-height: 1; color: var(--dark); }
.abt-stat-label { font-size: 12px; color: var(--muted); letter-spacing: 0.05em; text-transform: uppercase; }
.abt-hero-visual { display: flex; justify-content: center; align-items: center; }
.abt-hero-emoji-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; max-width: 300px; width: 100%; }
.abt-emoji-card { background: white; border: 1px solid rgba(249,115,22,0.12); border-radius: 20px; padding: 28px 20px; text-align: center; transition: all 0.3s; animation: float 3s ease-in-out infinite; box-shadow: 0 4px 16px rgba(0,0,0,0.05); }
.abt-emoji-card:nth-child(2) { animation-delay: 0.5s; margin-top: 20px; }
.abt-emoji-card:nth-child(3) { animation-delay: 1s; margin-top: -20px; }
.abt-emoji-card:nth-child(4) { animation-delay: 1.5s; }
.abt-emoji-card:hover { background: rgba(249,115,22,0.08); border-color: var(--red); }
.abt-emoji-card span { font-size: 48px; display: block; }

/* Story */
.abt-story-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: center; }
.abt-story-visual { display: flex; justify-content: center; align-items: center; }
.abt-story-img-wrap { position: relative; width: 280px; height: 280px; display: flex; align-items: center; justify-content: center; }
.abt-story-emoji { font-size: 120px; position: relative; z-index: 1; filter: drop-shadow(0 12px 32px rgba(0,0,0,0.15)); animation: float 4s ease-in-out infinite; }
.abt-story-accent { position: absolute; inset: 0; background: linear-gradient(135deg, #FFF0EC, #FFD0C0); border-radius: 50%; z-index: 0; }
.abt-story-accent::after { content: ''; position: absolute; inset: -12px; border: 2px dashed rgba(232,40,11,0.2); border-radius: 50%; animation: ofcSpin 25s linear infinite; }
.abt-story-content .eyebrow { margin-bottom: 8px; }
.abt-story-content .eyebrow i { margin-right: 6px; }
.abt-story-content h2 { font-family: 'Syne', sans-serif; font-size: clamp(26px, 3vw, 36px); font-weight: 800; color: var(--dark); line-height: 1.15; margin-bottom: 20px; }
.abt-story-content p { font-size: 15px; color: var(--muted); line-height: 1.85; }

/* Mission & Vision */
.abt-mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.abt-mv-card { background: var(--white); border-radius: 24px; padding: 40px 32px; border: 1px solid #F0F0F0; position: relative; overflow: hidden; transition: all 0.3s; }
.abt-mv-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.08); }
.abt-mv-accent { position: absolute; top: 0; left: 0; width: 100%; height: 4px; border-radius: 0 0 4px 4px; }
.abt-mv-card--mission .abt-mv-accent { background: linear-gradient(90deg, var(--red), var(--gold)); }
.abt-mv-card--vision .abt-mv-accent { background: linear-gradient(90deg, var(--gold), var(--red)); }
.abt-mv-icon { width: 60px; height: 60px; background: linear-gradient(135deg, #FFF0EC, #FFD0C0); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 26px; color: var(--red); margin-bottom: 20px; }
.abt-mv-card--vision .abt-mv-icon { background: linear-gradient(135deg, #FFF8E1, #FFE0B2); color: #D4940A; }
.abt-mv-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.abt-mv-card--vision .abt-mv-tag { color: #D4940A; }
.abt-mv-card h3 { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 14px; line-height: 1.2; }
.abt-mv-card p { font-size: 14px; color: var(--muted); line-height: 1.8; }

/* Values */
.abt-values-section { background: linear-gradient(135deg, var(--light) 0%, var(--cream) 50%, var(--light) 100%); position: relative; overflow: hidden; }
.abt-values-orb { position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(249,115,22,0.08) 0%, transparent 65%); top: -150px; left: 50%; transform: translateX(-50%); pointer-events: none; }
.abt-values-header { text-align: center; margin-bottom: 44px; }
.abt-values-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(249,115,22,0.1); border: 1px solid rgba(249,115,22,0.25); color: var(--red-dark); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 7px 16px; border-radius: 22px; margin-bottom: 16px; }
.abt-values-title { font-family: 'Syne', sans-serif; font-size: clamp(36px, 5vw, 56px); color: var(--dark); line-height: 1; letter-spacing: 0.02em; }
.abt-values-title span { color: var(--red); }
.abt-values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.abt-value-card { background: white; border: 1px solid rgba(249,115,22,0.12); border-radius: 20px; padding: 32px 24px; text-align: center; transition: all 0.3s; box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
.abt-value-card:hover { background: rgba(249,115,22,0.05); border-color: rgba(249,115,22,0.25); transform: translateY(-6px); }
.abt-value-icon { width: 56px; height: 56px; background: rgba(249,115,22,0.1); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--red); margin: 0 auto 18px; transition: transform 0.3s; }
.abt-value-card:hover .abt-value-icon { transform: scale(1.1); }
.abt-value-card h4 { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.abt-value-card p { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* CTA Banner */
.abt-cta-banner { background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%); position: relative; overflow: hidden; }
.abt-cta-banner::before { content: ''; position: absolute; right: -80px; top: -80px; width: 350px; height: 350px; background: rgba(255,255,255,0.08); border-radius: 50%; }
.abt-cta-banner::after { content: ''; position: absolute; left: -40px; bottom: -40px; width: 200px; height: 200px; background: rgba(255,255,255,0.05); border-radius: 50%; }
.abt-cta-inner { max-width: 1280px; margin: auto; padding: 56px 24px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; position: relative; z-index: 1; }
.abt-cta-content h2 { font-family: 'Syne', sans-serif; font-size: clamp(32px, 4vw, 48px); color: white; line-height: 1; letter-spacing: 0.02em; margin-bottom: 8px; }
.abt-cta-content h2 span { color: var(--gold); }
.abt-cta-content p { color: rgba(255,255,255,0.7); font-size: 15px; }
.abt-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.abt-cta-actions .btn-primary { background: white; color: var(--red); }
.abt-cta-actions .btn-primary:hover { background: var(--gold); color: var(--dark); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.abt-cta-actions .btn-outline { color: white; border-color: rgba(255,255,255,0.4); }
.abt-cta-actions .btn-outline:hover { color: white; background: rgba(255,255,255,0.15); border-color: white; }

/* Responsive */
@media(max-width:900px) { .abt-hero-inner { grid-template-columns: 1fr; text-align: center; } .abt-hero-content p { max-width: 100%; margin-left: auto; margin-right: auto; } .abt-hero-stats { justify-content: center; } .abt-hero-visual { display: none; } .abt-story-grid { grid-template-columns: 1fr; text-align: center; } .abt-story-visual { order: -1; } .abt-story-img-wrap { width: 200px; height: 200px; } .abt-story-emoji { font-size: 80px; } .abt-values-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:600px) { .abt-mv-grid { grid-template-columns: 1fr; } .abt-values-grid { grid-template-columns: 1fr; } .abt-mv-card { padding: 32px 24px; } .abt-cta-inner { text-align: center; justify-content: center; } .abt-cta-actions { justify-content: center; } }

/* ── PRODUCT DETAIL PAGE ── */
.pd-breadcrumb-wrap { background: var(--light); border-bottom: 1px solid #eee; }
.pd-breadcrumb { max-width: 1280px; margin: auto; padding: 14px 24px; display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); flex-wrap: wrap; }
.pd-breadcrumb a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.pd-breadcrumb a:hover { color: var(--red); }
.pd-breadcrumb i { font-size: 9px; color: #ccc; }
.pd-breadcrumb span { color: var(--dark); font-weight: 600; }

.pd-section { background: white; padding: 48px 0 60px; }
.pd-inner { max-width: 1280px; margin: auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }

/* Image */
.pd-image-col { position: sticky; top: 100px; }
.pd-image-box { position: relative; border-radius: 20px; overflow: hidden; background: var(--light); aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.pd-main-img { width: 100%; height: 100%; object-fit: cover; }
.pd-emoji-img { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 120px; }
.pd-badge { position: absolute; top: 16px; left: 16px; padding: 6px 14px; border-radius: 20px; font-size: 11px; font-weight: 700; letter-spacing: 0.05em; color: white; }
.pd-badge-red { background: var(--red); }
.pd-badge-green { background: #22c55e; }
.pd-badge-gold { background: #f59e0b; }

/* Details */
.pd-details-col { padding-top: 8px; }
.pd-category { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.pd-category > span:first-child { font-size: 13px; color: var(--muted); font-weight: 500; }
.pd-gf-tag { display: inline-flex; align-items: center; gap: 4px; background: #f0fdf4; color: #22c55e; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; border: 1px solid #bbf7d0; }
.pd-new-tag { background: #fffbeb; color: #f59e0b; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; border: 1px solid #fde68a; }
.pd-title { font-family: 'Syne', sans-serif; font-size: 32px; font-weight: 800; color: var(--dark); margin-bottom: 12px; line-height: 1.2; }
.pd-description { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }

/* Product page — active promotions block */
.pd-offer-banners { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.pd-offer-banner { display: flex; align-items: flex-start; gap: 12px; background: linear-gradient(135deg, #F5F3FF, #EDE9FE); border: 1px solid #C4B5FD; border-radius: 12px; padding: 12px 14px; }
.pd-offer-icon { width: 34px; height: 34px; border-radius: 50%; background: #7C3AED; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.pd-offer-text { display: flex; flex-direction: column; gap: 3px; }
.pd-offer-title { font-size: 13px; font-weight: 700; color: #3B0764; line-height: 1.3; }
.pd-offer-desc { font-size: 12px; color: #6D28D9; line-height: 1.5; }
.pd-offer-code { font-size: 11px; color: #7C3AED; display: flex; align-items: center; gap: 4px; }
.pd-offer-code strong { font-weight: 700; color: #4C1D95; background: #DDD6FE; padding: 1px 6px; border-radius: 4px; }
.pd-offer-code i { color: #16A34A; }

.pd-price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 28px; }
.pd-price { font-family: 'DM Sans', sans-serif; font-size: 40px; color: var(--red); line-height: 1; }
.pd-price small { font-size: 14px; font-family: 'DM Sans', sans-serif; }
.pd-price-note { font-size: 13px; color: var(--muted); }

/* Quantity */
.pd-qty-row { display: flex; align-items: center; gap: 20px; margin-bottom: 28px; }
.pd-label { font-size: 14px; font-weight: 600; color: var(--dark); }
.pd-qty-ctrl { display: flex; align-items: center; gap: 0; border: 2px solid #eee; border-radius: 10px; overflow: hidden; }
.pd-qty-btn { width: 40px; height: 40px; border: none; background: var(--light); color: var(--dark); font-size: 14px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.pd-qty-btn:hover { background: var(--red); color: white; }
.pd-qty-num { width: 48px; height: 40px; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; color: var(--dark); background: white; }

/* Toppings */
.pd-toppings { margin-bottom: 28px; }
.pd-section-title { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.pd-section-title i { color: var(--red); font-size: 15px; }
.pd-topping-group { margin-bottom: 16px; }
.pd-topping-group-label { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.pd-topping-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 8px; }
.pd-topping-item { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border: 1.5px solid #f0f0f0; border-radius: 10px; cursor: pointer; transition: all 0.2s; user-select: none; background: white; }
.pd-topping-item:hover { border-color: #ddd; background: #fafafa; }
.pd-topping-cb { display: none; }
.pd-topping-cb:checked ~ .pd-topping-check { background: var(--red); border-color: var(--red); }
.pd-topping-cb:checked ~ .pd-topping-check i { opacity: 1; }
.pd-topping-cb:checked ~ .pd-topping-name { color: var(--dark); font-weight: 600; }
.pd-topping-item:has(.pd-topping-cb:checked), .pd-topping-item.selected { border-color: var(--red); background: #fff5f3; }
.pd-topping-check { width: 20px; height: 20px; border-radius: 5px; border: 2px solid #ddd; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.2s; }
.pd-topping-check i { font-size: 10px; color: white; opacity: 0; transition: opacity 0.15s; }
.pd-topping-emoji { font-size: 18px; flex-shrink: 0; }
.pd-topping-name { font-size: 13px; color: var(--text); flex: 1; min-width: 0; transition: all 0.2s; }
.pd-topping-price { font-size: 12px; font-weight: 700; color: var(--red); flex-shrink: 0; }

/* Notes */
.pd-notes { margin-bottom: 28px; }
.pd-notes-input { width: 100%; padding: 12px 14px; border: 1.5px solid #eee; border-radius: 10px; font-family: 'DM Sans', sans-serif; font-size: 14px; resize: vertical; transition: border-color 0.2s; color: var(--dark); background: white; }
.pd-notes-input:focus { outline: none; border-color: var(--red); }

/* Total & Actions */
.pd-total-bar { background: var(--light); border-radius: 16px; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; position: sticky; bottom: 0; z-index: 10; border: 1px solid #eee; }
.pd-total-label { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.pd-total-amount { font-family: 'DM Sans', sans-serif; font-size: 36px; color: var(--dark); line-height: 1; }
.pd-action-btns { display: flex; gap: 10px; }
.pd-add-btn { background: var(--dark); color: white; padding: 14px 24px; border-radius: 10px; font-size: 14px; font-weight: 700; border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; transition: all 0.2s; font-family: 'DM Sans', sans-serif; }
.pd-add-btn:hover { background: #333; transform: translateY(-2px); }
.pd-buy-btn { background: var(--red); color: white; padding: 14px 24px; border-radius: 10px; font-size: 14px; font-weight: 700; border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; transition: all 0.2s; font-family: 'DM Sans', sans-serif; }
.pd-buy-btn:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,40,11,0.3); }

/* Related Products */
.pd-related-section { background: var(--light); padding: 60px 0 48px; }
.pd-related-inner { max-width: 1280px; margin: auto; padding: 0 24px; }
.pd-related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 24px; }
.pd-related-card { background: white; border-radius: 16px; overflow: hidden; border: 1.5px solid #f0f0f0; transition: all 0.3s; text-decoration: none; display: flex; flex-direction: column; }
.pd-related-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); border-color: var(--red); }
.pd-related-img { height: 200px; overflow: hidden; position: relative; background: var(--light); display: flex; align-items: center; justify-content: center; }
.pd-related-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.pd-related-card:hover .pd-related-img img { transform: scale(1.05); }
.pd-related-emoji { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 56px; }
.pd-rbadge { position: absolute; top: 12px; left: 12px; padding: 4px 12px; border-radius: 16px; font-size: 10px; font-weight: 700; color: white; }
.pd-related-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.pd-related-cat { font-size: 12px; color: var(--muted); margin-bottom: 6px; }
.pd-related-body h4 { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.pd-related-body p { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin-bottom: 14px; flex: 1; }
.pd-related-bottom { display: flex; align-items: center; justify-content: space-between; }
.pd-related-price { font-family: 'DM Sans', sans-serif; font-size: 22px; color: var(--red); }
.pd-related-link { font-size: 12px; font-weight: 700; color: var(--red); display: inline-flex; align-items: center; gap: 4px; }

/* PD Responsive */
@media (max-width: 768px) {
  .pd-inner { grid-template-columns: 1fr; gap: 32px; }
  .pd-image-col { position: static; }
  .pd-image-box { aspect-ratio: 4/3; }
  .pd-title { font-size: 26px; }
  .pd-price { font-size: 32px; }
  .pd-total-bar { flex-direction: column; text-align: center; position: fixed; bottom: 0; left: 0; right: 0; border-radius: 16px 16px 0 0; z-index: 999; background: white; box-shadow: 0 -4px 20px rgba(0,0,0,0.1); padding: 16px 20px; }
  .pd-action-btns { width: 100%; }
  .pd-add-btn, .pd-buy-btn { flex: 1; justify-content: center; padding: 12px 16px; font-size: 13px; }
  .pd-topping-list { grid-template-columns: 1fr; }
  .pd-topping-item { padding: 12px 14px; -webkit-tap-highlight-color: transparent; }
  .pd-related-grid { grid-template-columns: 1fr 1fr; }
  .pd-related-section { padding-bottom: 120px; }
  .pd-section { padding-bottom: 100px; }
  .pd-notes-input { font-size: 16px; }
}
@media (max-width: 480px) {
  .pd-related-grid { grid-template-columns: 1fr; }
  .pd-action-btns { flex-direction: column; }
  .pd-add-btn, .pd-buy-btn { padding: 14px 16px; font-size: 14px; }
  .pd-total-bar { padding: 14px 16px; gap: 12px; }
  .pd-total-amount { font-size: 28px; }
}

/* ── CONTACT PAGE ── */
.contact-hero { background: linear-gradient(145deg, #FFF7ED 0%, #FFE8CC 45%, #FFD4A8 80%, #FFF0DC 100%); padding: 80px 24px; text-align: center; color: var(--dark); position: relative; overflow: hidden; }
.contact-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(249,115,22,0.1) 0%, transparent 60%); }
.contact-hero h1 { font-family: 'Syne', sans-serif; font-size: clamp(42px, 6vw, 72px); position: relative; z-index: 1; margin-bottom: 10px; }
.contact-hero p { color: var(--muted); font-size: 18px; position: relative; z-index: 1; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 1000px; margin: 0 auto; padding: 56px 24px; }
.contact-info-card { background: var(--white); border-radius: 16px; padding: 32px; border: 1px solid #F0F0F0; }
.contact-info-card h3 { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 800; color: var(--dark); margin-bottom: 20px; }
.contact-info-item { display: flex; gap: 14px; margin-bottom: 18px; }
.contact-info-item i { color: var(--red); font-size: 18px; margin-top: 3px; }
.contact-info-item h4 { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.contact-info-item p { font-size: 14px; color: var(--muted); }
.contact-form-card { background: var(--white); border-radius: 16px; padding: 32px; border: 1px solid #F0F0F0; }
.contact-form-card h3 { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 800; color: var(--dark); margin-bottom: 20px; }

/* ── REVIEW SUBMIT ── */
.rv-review-section { background: linear-gradient(135deg, var(--light) 0%, var(--cream) 50%, var(--light) 100%); position: relative; overflow: hidden; padding: 0; }
.rv-review-bg-orb { position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(249,115,22,0.08) 0%, transparent 65%); top: -120px; right: -100px; pointer-events: none; }
.rv-review-bg-orb--2 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(245,166,35,0.06) 0%, transparent 65%); bottom: -80px; left: -60px; top: auto; right: auto; }
.rv-review-header { text-align: center; margin-bottom: 44px; }
.rv-review-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(249,115,22,0.1); border: 1px solid rgba(249,115,22,0.25); color: var(--red-dark); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 7px 16px; border-radius: 22px; margin-bottom: 16px; }
.rv-review-title { font-family: 'Syne', sans-serif; font-size: clamp(36px, 5vw, 56px); color: var(--dark); line-height: 1; letter-spacing: 0.02em; margin-bottom: 12px; }
.rv-review-title span { color: var(--red); }
.rv-review-subtitle { color: var(--muted); font-size: 15px; }

.rv-review-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 28px; max-width: 1000px; margin: 0 auto; }

/* Google Card */
.rv-review-google-card { background: white; border: 1px solid rgba(249,115,22,0.12); border-radius: 24px; padding: 40px 32px; text-align: center; position: relative; overflow: hidden; display: flex; flex-direction: column; align-items: center; justify-content: center; transition: border-color 0.3s; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.rv-review-google-card:hover { border-color: rgba(249,115,22,0.3); }
.rv-review-google-glow { position: absolute; bottom: -60px; left: 50%; transform: translateX(-50%); width: 300px; height: 200px; background: radial-gradient(ellipse, rgba(66,133,244,0.12) 0%, transparent 70%); pointer-events: none; }
.rv-review-google-inner { position: relative; z-index: 1; }
.rv-review-google-icon { width: 72px; height: 72px; background: rgba(249,115,22,0.06); border: 1px solid rgba(249,115,22,0.12); border-radius: 20px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; transition: transform 0.3s; }
.rv-review-google-card:hover .rv-review-google-icon { transform: scale(1.08); }
.rv-review-google-card h3 { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.rv-review-google-card p { color: var(--muted); font-size: 14px; line-height: 1.7; margin-bottom: 20px; max-width: 280px; margin-left: auto; margin-right: auto; }
.rv-review-google-stars { display: flex; gap: 6px; justify-content: center; margin-bottom: 28px; }
.rv-review-google-stars i { font-size: 22px; color: var(--gold); animation: rvStarPop 0.4s ease backwards; }
.rv-review-google-stars i:nth-child(2) { animation-delay: 0.08s; }
.rv-review-google-stars i:nth-child(3) { animation-delay: 0.16s; }
.rv-review-google-stars i:nth-child(4) { animation-delay: 0.24s; }
.rv-review-google-stars i:nth-child(5) { animation-delay: 0.32s; }
@keyframes rvStarPop { from { opacity: 0; transform: scale(0.5); } to { opacity: 1; transform: scale(1); } }
.rv-review-google-btn { display: inline-flex; align-items: center; gap: 10px; background: white; color: var(--dark); padding: 14px 28px; border-radius: 14px; font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 700; text-decoration: none; transition: all 0.3s; box-shadow: 0 4px 20px rgba(0,0,0,0.25); position: relative; overflow: hidden; }
.rv-review-google-btn::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, #4285F4, #34A853); opacity: 0; transition: opacity 0.3s; }
.rv-review-google-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.35); color: white; }
.rv-review-google-btn:hover::before { opacity: 1; }
.rv-review-google-btn i, .rv-review-google-btn span { position: relative; z-index: 1; }
.rv-review-google-btn .fab { color: #4285F4; transition: color 0.3s; }
.rv-review-google-btn:hover .fab { color: white; }
.rv-review-google-btn .fa-arrow-right { font-size: 12px; transition: transform 0.3s; }
.rv-review-google-btn:hover .fa-arrow-right { transform: translateX(4px); }

/* Form Card */
.rv-review-form-card { background: white; border: 1px solid rgba(249,115,22,0.12); border-radius: 24px; padding: 36px 32px; transition: border-color 0.3s; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.rv-review-form-card:hover { border-color: rgba(249,115,22,0.3); }
.rv-review-form-header { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid rgba(249,115,22,0.1); }
.rv-review-form-icon { width: 52px; height: 52px; background: linear-gradient(135deg, var(--red), var(--red-dark)); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; color: white; flex-shrink: 0; }
.rv-review-form-header h3 { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 800; color: var(--dark); margin-bottom: 3px; }
.rv-review-form-header p { font-size: 13px; color: var(--muted); }

.rv-review-form-group { margin-bottom: 20px; }
.rv-review-form-group label { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 8px; letter-spacing: 0.02em; }
.rv-review-form-group label i { font-size: 12px; color: var(--red); }
.rv-review-form-group input,
.rv-review-form-group textarea { width: 100%; background: white; border: 1px solid #E5E5E5; border-radius: 12px; padding: 14px 16px; font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--dark); outline: none; transition: border-color 0.2s, background 0.2s; resize: vertical; }
.rv-review-form-group input::placeholder,
.rv-review-form-group textarea::placeholder { color: var(--muted); }
.rv-review-form-group input:focus,
.rv-review-form-group textarea:focus { border-color: var(--red); background: white; }

.rv-star-rating { display: flex; align-items: center; gap: 8px; }
.rv-star-rating i[data-val] { font-size: 30px; color: #E0E0E0; cursor: pointer; transition: color 0.2s, transform 0.2s; }
.rv-star-rating i[data-val].active { color: var(--gold); }
.rv-star-rating i[data-val]:hover { transform: scale(1.2); }
.rv-star-label { font-size: 13px; font-weight: 600; color: var(--gold); margin-left: 8px; transition: opacity 0.2s; }

.rv-review-submit-btn { width: 100%; background: linear-gradient(135deg, var(--red), var(--red-dark)); color: white; border: none; padding: 16px 28px; border-radius: 14px; font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; transition: all 0.3s; box-shadow: 0 4px 20px rgba(232,40,11,0.3); }
.rv-review-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(232,40,11,0.45); }
.rv-review-submit-btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

@media(max-width:800px) { .rv-review-grid { grid-template-columns: 1fr; } .rv-review-google-card { padding: 32px 24px; } .rv-review-form-card { padding: 28px 24px; } }
@media(max-width:500px) { .rv-review-form-card { padding: 24px 18px; } .rv-review-google-card { padding: 28px 18px; } .rv-star-rating i[data-val] { font-size: 26px; } }

.google-review-cta { display: flex; align-items: center; gap: 18px; background: var(--white); border: 2px solid #F0F0F0; border-radius: 16px; padding: 28px 24px; text-decoration: none; color: var(--dark); transition: border-color 0.2s, box-shadow 0.2s; align-self: start; }
.google-review-cta:hover { border-color: var(--red); box-shadow: 0 4px 20px rgba(232,40,11,0.1); }
.google-review-cta-icon { width: 52px; height: 52px; border-radius: 50%; background: #FFF0EE; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.google-review-cta-icon i { font-size: 22px; color: var(--red); }
.google-review-cta-text { flex: 1; }
.google-review-cta-text strong { display: block; font-size: 16px; font-weight: 700; font-family: 'DM Sans', sans-serif; margin-bottom: 4px; }
.google-review-cta-text span { font-size: 13px; color: var(--muted); }
.google-review-cta-arrow { color: var(--muted); font-size: 14px; transition: transform 0.2s; }
.google-review-cta:hover .google-review-cta-arrow { transform: translateX(4px); color: var(--red); }
.review-form-card { background: var(--white); border: 1px solid #F0F0F0; border-radius: 16px; padding: 32px; }
.review-form-card h3 { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.review-form-card h3 i { color: var(--red); margin-right: 6px; }
.star-rating-input { display: flex; gap: 6px; margin-top: 6px; }
.star-rating-input i { font-size: 26px; color: #E0E0E0; cursor: pointer; transition: color 0.15s, transform 0.15s; }
.star-rating-input i.active, .star-rating-input i:hover { color: var(--gold); transform: scale(1.15); }
@media(max-width:800px) { .review-submit-wrap { grid-template-columns: 1fr; } }

/* ── SUCCESS/ERROR MSG ── */
.alert { padding: 14px 18px; border-radius: 10px; margin-bottom: 20px; font-size: 14px; font-weight: 500; }
.alert-success { background: #F0FFF4; border: 1px solid #BBF7D0; color: #16A34A; }
.alert-error { background: #FFF5F5; border: 1px solid #FECACA; color: #EF4444; }

/* ══════════════════════════════════════════════════════════════════
   AI CHATBOT WIDGET
   ══════════════════════════════════════════════════════════════════ */
.chatbot-widget { position: fixed; bottom: 28px; right: 100px; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.chatbot-widget.chatbot-expanded { z-index: 9998; }

/* Trigger button */
.chatbot-trigger { position: fixed; bottom: 28px; right: 100px;z-index: 9; width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--red), #FF6B4A); border: none; color: white; font-size: 24px; cursor: pointer; box-shadow: 0 4px 20px rgba(232,40,11,0.45); display: flex; align-items: center; justify-content: center; transition: transform 0.2s, box-shadow 0.2s;  }
.chatbot-trigger::after { content: 'Chat with us'; position: absolute; right: calc(100% + 12px); top: 50%; transform: translateY(-50%); background: rgba(25,25,25,0.92); color: #fff; font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 600; white-space: nowrap; padding: 6px 12px; border-radius: 6px; pointer-events: none; opacity: 0; transition: opacity 0.2s; }
.chatbot-trigger:hover::after { opacity: 1; }
.chatbot-trigger-icon { display: flex; align-items: center; justify-content: center; }
.chatbot-notif { position: absolute; top: -4px; right: -4px; background: var(--gold); color: var(--dark); font-size: 10px; font-weight: 800; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 2px solid white; animation: chatbotPulse 2s ease-in-out infinite; }
@keyframes chatbotPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.2); } }

/* Chat window */
.chatbot-window { width: 360px; max-height: 520px; background: white; border-radius: 20px; box-shadow: 0 12px 48px rgba(0,0,0,0.18); display: flex; flex-direction: column; overflow: hidden; opacity: 0; transform: translateY(16px) scale(0.97); pointer-events: none; transition: opacity 0.25s ease, transform 0.25s ease; }
.chatbot-window.chatbot-open { opacity: 1; transform: translateY(0) scale(1); pointer-events: all;position: fixed; bottom: 88px; right: 120px; z-index: 9; }

/* Header */
.chatbot-header { background: linear-gradient(135deg, var(--red), #FF6B4A); padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; }
.chatbot-header-info { display: flex; align-items: center; gap: 10px; }
.chatbot-avatar { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.chatbot-header-info strong { display: block; color: white; font-size: 14px; font-weight: 700; font-family: 'DM Sans', sans-serif; }
.chatbot-header-info span { font-size: 11px; color: rgba(255,255,255,0.85); display: flex; align-items: center; gap: 5px; margin-top: 2px; }
.chatbot-close-btn { background: rgba(255,255,255,0.2); border: none; color: white; width: 28px; height: 28px; border-radius: 50%; cursor: pointer; font-size: 13px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.2s; }
.chatbot-close-btn:hover { background: rgba(255,255,255,0.35); }

/* Messages */
.chatbot-messages { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 12px; background: #F9F9F9; scrollbar-width: thin; }
.chatbot-messages::-webkit-scrollbar { width: 4px; }
.chatbot-messages::-webkit-scrollbar-thumb { background: #DDD; border-radius: 4px; }
.chatbot-msg { display: flex; flex-direction: column; max-width: 85%; }
.chatbot-msg.user { align-self: flex-end; align-items: flex-end; }
.chatbot-msg.bot { align-self: flex-start; align-items: flex-start; }
.chatbot-bubble { padding: 10px 14px; border-radius: 16px; font-size: 13.5px; line-height: 1.55; white-space: pre-wrap; word-break: break-word; }
.chatbot-msg.bot .chatbot-bubble { background: white; color: var(--text); border: 1px solid #EBEBEB; border-radius: 4px 16px 16px 16px; box-shadow: 0 1px 4px rgba(0,0,0,0.06); }
.chatbot-msg.user .chatbot-bubble { background: linear-gradient(135deg, var(--red), #FF6B4A); color: white; border-radius: 16px 4px 16px 16px; }
.chatbot-time { font-size: 10px; color: var(--muted); margin-top: 4px; }
.chatbot-typing { display: flex; align-items: center; gap: 5px; padding: 10px 14px; background: white; border: 1px solid #EBEBEB; border-radius: 4px 16px 16px 16px; width: fit-content; }
.chatbot-typing span { width: 7px; height: 7px; border-radius: 50%; background: #CCC; display: inline-block; animation: chatbotDot 1.2s ease-in-out infinite; }
.chatbot-typing span:nth-child(2) { animation-delay: 0.2s; }
.chatbot-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes chatbotDot { 0%,80%,100% { transform: scale(0.7); background: #CCC; } 40% { transform: scale(1); background: var(--red); } }

/* Suggestion chips */
.chatbot-suggestions { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 4px; }
.chatbot-chip { background: white; border: 1.5px solid #E5E5E5; color: var(--text); border-radius: 20px; padding: 6px 12px; font-size: 12px; font-family: 'DM Sans', sans-serif; font-weight: 600; cursor: pointer; transition: all 0.2s; white-space: nowrap; }
.chatbot-chip:hover { border-color: var(--red); color: var(--red); background: #FFF0EC; }

/* Footer / input */
.chatbot-footer { padding: 12px 14px; border-top: 1px solid #F0F0F0; background: white; flex-shrink: 0; }
.chatbot-input-wrap { display: flex; gap: 8px; align-items: center; background: #F7F7F7; border: 1.5px solid #E5E5E5; border-radius: 24px; padding: 6px 6px 6px 14px; transition: border-color 0.2s; }
.chatbot-input-wrap:focus-within { border-color: var(--red); }
.chatbot-input-wrap input { flex: 1; border: none; background: transparent; outline: none; font-family: 'DM Sans', sans-serif; font-size: 13.5px; color: var(--text); }
.chatbot-input-wrap input::placeholder { color: #AAAAAA; }
.chatbot-send-btn { width: 34px; height: 34px; border-radius: 50%; background: var(--red); border: none; color: white; font-size: 13px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s, transform 0.2s; flex-shrink: 0; }
.chatbot-send-btn:hover { background: var(--red-dark); transform: scale(1.05); }
.chatbot-send-btn:disabled { background: #CCC; transform: none; cursor: not-allowed; }

/* Responsive */
@media(max-width: 480px) {
  /* Push chatbot trigger above the FAB wheel so they don't overlap */
  .chatbot-widget { bottom: 76px; right: 16px; }
  .chatbot-window { width: calc(100vw - 32px); max-height: 70vh; }
}

/* ══════════════════════════════════════════════════════════════════
   COMPREHENSIVE RESPONSIVE DESIGN - MOBILE FIRST APPROACH
   ══════════════════════════════════════════════════════════════════ */

/* ── EXTRA SMALL DEVICES (320px - 480px) ── */
@media(max-width: 480px) {
  /* Global */
  body { font-size: 13px; }
  
  /* Topbar */
  .topbar { padding: 6px 0; font-size: 10.5px; }
  .topbar-inner { padding: 0 12px; flex-direction: column; gap: 8px; }
  .topbar-left, .topbar-right { flex-direction: column; gap: 8px; }
  .topbar-social { gap: 10px; margin-left: 0; }
  .topbar-social a { font-size: 12px; }
  
  /* Navbar */
  .navbar-inner { padding: 0 12px; height: 56px; gap: 12px; }
  .logo-text span:first-child { font-size: 18px; }
  .logo-text span:last-child { font-size: 8px; }
  .search-bar { max-width: 100%; display: none; }
  .nav-links { gap: 0; margin-left: 0; flex: 1; display: none; }
  .nav-links a { padding: 6px 8px; font-size: 12px; }
  .nav-actions { display: none; }
  .order-btn { padding: 8px 12px; font-size: 12px; gap: 4px; display: none; }
  
  /* Category Navigation */
  .cat-nav-inner { padding: 0 12px; }
  .cat-link { padding: 10px 12px; font-size: 12px; gap: 5px; }
  
  /* What Are You Craving Section */
  .cat-cards { display: flex; flex-direction: column; gap: 10px; padding: 0 8px; }
  .cat-card { display: flex; align-items: center; gap: 14px; padding: 12px 12px; max-width: 100%; border-radius: 12px; flex-direction: row; background: var(--white); border: 1px solid #F0F0F0; }
  .cat-card .emoji { width: 44px; height: 44px; font-size: 22px; margin: 0; flex-shrink: 0; background: linear-gradient(135deg, #FFF0EC, #FFE4D6); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
  .cat-card h4 { font-size: 12px; margin-bottom: 0; flex: 1; }
  .cat-card .count { font-size: 10px; margin-left: auto; }
  
  /* Best Sellers / Product Grid - List View */
  .product-grid { display: flex; flex-direction: column; gap: 12px; padding: 0 8px; }
  .product-card { display: flex; flex-direction: row; gap: 12px; border-radius: 12px; overflow: visible; padding: 0; }
  .product-img { width: 100px; height: 100px; flex-shrink: 0; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 40px; }
  .product-body { padding: 12px 12px 12px 0; flex: 1; display: flex; flex-direction: column; }
  .product-name { font-size: 13px; margin-bottom: 4px; }
  .product-desc { font-size: 11px; -webkit-line-clamp: 1; margin-bottom: 8px; }
  .product-price { font-size: 16px; }
  .product-footer { flex-direction: row; gap: 8px; margin-top: auto; }
  .add-btn { padding: 7px 12px; font-size: 12px; }
  
  /* Hero */
  .hero { min-height: 420px; padding: 30px 0; }
  .hero-inner { padding: 30px 12px; }
  .hero-tag { font-size: 10px; padding: 5px 10px; margin-bottom: 12px; }
  .hero h1 { font-size: 40px; margin-bottom: 14px; }
  .hero p { font-size: 14px; margin-bottom: 18px; }
  .hero-btns { gap: 8px; }
  .btn-primary, .btn-outline { padding: 10px 16px; font-size: 13px; gap: 6px; }
  .hero-stats { flex-direction: column; gap: 16px; margin-top: 20px; }
  .stat-num { font-size: 24px; }
  .stat-label { font-size: 10px; }
  
  /* Features */
  .features-inner { grid-template-columns: 1fr 1fr; gap: 0; }
  .feature { padding: 16px 12px; gap: 10px; border-right: 1px solid #EDEDED; }
  .feature:nth-child(odd) { border-right: none; }
  .feature-icon { width: 40px; height: 40px; font-size: 16px; }
  .feature h4 { font-size: 12px; }
  .feature p { font-size: 10px; }
  
  /* Products (duplicate removed — see Best Sellers block above) */
  .product-cat { font-size: 9px; }
  .product-price { font-size: 16px; margin-bottom: auto; }
  .product-footer { flex-direction: row; gap: 8px; align-items: flex-end; }
  .add-btn { padding: 7px 10px; font-size: 11px; }
  
  .menu-cat-sections { gap: 32px; }
  .menu-cat-emoji { font-size: 22px; }
  .menu-cat-title { font-size: 17px; }
  .menu-product-grid { grid-template-columns: 1fr; gap: 12px; }
  .mc-img { height: 140px; font-size: 50px; }
  .mc-body { padding: 12px 12px 14px; }
  .mc-cat { font-size: 9px; }
  .mc-name { font-size: 13px; margin-bottom: 4px; }
  .mc-desc { font-size: 11px; margin-bottom: 10px; }
  .mc-price { font-size: 16px; }
  .mc-add-btn { padding: 7px 10px; font-size: 11px; }
  
  /* Combo Grid */
  .combo-grid { grid-template-columns: 1fr; gap: 12px; }
  .combo-emoji { width: 100px; font-size: 44px; }
  .combo-body { padding: 14px; }
  .combo-body h4 { font-size: 14px; }
  
  /* Offers Carousel */
  .ofc { padding: 24px 0 20px; }
  .ofc-wrap { padding: 0 12px; }
  .ofc-header { padding: 0; }
  .ofc-heading { font-size: 24px; }
  .ofc-card { padding: 20px 16px; min-height: auto; }
  .ofc-card-title { font-size: 28px; margin-bottom: 8px; }
  .ofc-card-desc { font-size: 13px; margin-bottom: 12px; max-width: 100%; }
  .ofc-card-visual { width: 120px; height: 120px; }
  .ofc-card-emoji { font-size: 64px; }
  .ofc-card-btn { padding: 11px 18px; font-size: 13px; }
  .ofc-arr { width: 36px; height: 36px; }
  .ofc-card--has-banner .ofc-card-banner { min-height: 160px; }
  
  /* Section */
  .section { padding: 40px 12px; }
  .section-header { margin-bottom: 20px; }
  .section-title h2 { font-size: 24px; }
  
  /* Promo Banner */
  .promo-banner { margin: 0 12px; max-width: calc(100% - 24px); border-radius: 12px; }
  .promo-inner { grid-template-columns: 1fr; gap: 20px; padding: 28px 16px; }
  .promo-content h2 { font-size: 32px; margin-bottom: 12px; }
  .promo-content p { font-size: 13px; margin-bottom: 16px; }
  .promo-visual { grid-template-columns: 1fr 1fr; gap: 8px; }
  .promo-item { padding: 14px 10px; border-radius: 10px; }
  .promo-item .emoji { font-size: 28px; margin-bottom: 6px; }
  .promo-item h4 { font-size: 11px; }
  .promo-item p { font-size: 13px; }
  
  /* Reviews */
  .rv-section-title { font-size: 48px; }
  .rv-card { width: 280px; padding: 16px; }
  .rv-track { gap: 32px; padding: 20px 12px; }
  .rv-controls { gap: 12px; padding: 6px 0; }
  .rv-controls [data-rv-btn] { padding: 5px 8px; font-size: 13px; }
  .rv-dots { gap: 6px; }
  .rv-score-pill { padding: 10px 14px; }
  .rv-score-big { font-size: 28px; }
  
  /* Menu Section */
  .menu-section-header .section-title h2 { font-size: 24px; }
  .menu-subtitle { font-size: 13px; }
  .menu-controls { gap: 8px; margin: 14px 0 12px; flex-direction: column; }
  .menu-search-wrap { min-width: auto; max-width: 100%; flex: 1; width: 100%; }
  .menu-search-wrap input { font-size: 13px; padding: 9px 36px 9px 36px; }
  .menu-sort-wrap { width: 100%; height: 40px; padding: 0 10px; }
  .menu-sort-wrap label { font-size: 12px; }
  .menu-sort-wrap select { font-size: 12px; }
  .menu-view-wrap { width: 100%; }
  .view-toggle { width: 40px; height: 40px; font-size: 14px; }
  .menu-filter-bar { flex-direction: column; gap: 10px; margin-bottom: 10px; }
  .filter-pills { gap: 6px; margin-bottom: 0; overflow-x: auto; overflow-y: hidden; padding-bottom: 4px; -webkit-overflow-scrolling: touch; }
  .filter-pills::-webkit-scrollbar { display: none; }
  .fpill { padding: 6px 10px; font-size: 11px; gap: 4px; border-radius: 20px; flex-shrink: 0; }
  .pill-count { font-size: 9px; padding: 0 5px; }
  .filter-tags-right { display: none; width: 100%; gap: 6px; flex-direction: column; }
  .tag-toggle span { font-size: 11px; padding: 6px 10px; gap: 4px; }
  .menu-result-bar { font-size: 12px; margin-bottom: 12px; gap: 8px; flex-direction: column; }
  .clear-filters-btn { font-size: 11px; padding: 5px 10px; }
  .menu-cat-sections { gap: 32px; }
  .menu-cat-emoji { font-size: 22px; }
  .menu-cat-title { font-size: 17px; }
  .menu-product-grid { grid-template-columns: 1fr; gap: 12px; }
  .menu-card { border-radius: 12px; }
  .mc-img { height: 140px; font-size: 50px; }
  .mc-body { padding: 12px 12px 14px; }
  .mc-name { font-size: 13px; }
  .mc-desc { font-size: 11px; }
  .mc-price { font-size: 16px; }
  .mc-add-btn { padding: 7px 10px; font-size: 11px; }
  .mc-qty-ctrl { gap: 0; }
  .mc-qty-btn { width: 28px; height: 28px; font-size: 12px; }
  .mc-qty-num { font-size: 12px; min-width: 26px; }
  .menu-empty { padding: 40px 12px; }
  .menu-empty h3 { font-size: 18px; }
  .menu-empty p { font-size: 13px; }
  
  /* Newsletter */
  .newsletter-form-wrap { max-width: 100%; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input, .newsletter-form button { width: 100%; min-width: auto; }
  
  /* Insta Grid */
  .insta-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .insta-item { height: 140px; font-size: 40px; }
  
  /* Footer */
  .footer-main { grid-template-columns: 1fr; gap: 28px; padding: 36px 12px 24px; }
  .footer-col h4 { font-size: 13px; margin-bottom: 12px; }
  .footer-links a { font-size: 12px; }
  .footer-bottom { padding: 14px 12px; flex-direction: column; }
  .footer-bottom-links { gap: 10px; }
  
  /* Newsletter */
  .newsletter-inner { flex-direction: column; gap: 24px; padding: 32px 12px; }
  .newsletter-content h2 { font-size: 32px; text-align: center; }
  .newsletter-content p { text-align: center; font-size: 14px; }
  .newsletter-form-wrap { max-width: 100%; }
  
  /* Footer */
  .footer-main { grid-template-columns: 1fr; gap: 28px; padding: 36px 12px 24px; }
  .footer-col h4 { font-size: 13px; margin-bottom: 12px; }
  .footer-links a { font-size: 12px; }
  .footer-bottom { padding: 14px 12px; flex-direction: column; }
  .footer-bottom-links { gap: 10px; }
  
  /* Cart Drawer */
  .cart-drawer { width: 100%; }
  .drawer-header { padding: 16px 16px; }
  .drawer-header h3 { font-size: 18px; }
  .drawer-body { padding: 12px 16px; gap: 10px; }
  
  /* Modal */
  .modal-box { max-height: calc(100vh - 20px); border-radius: 16px; }
  .modal-step { padding: 16px 20px; }
  .modal-header h2 { font-size: 18px; }
  .form-grid { grid-template-columns: 1fr; gap: 12px; }
  .form-group label { font-size: 12px; }
  .form-group input, .form-group textarea, .form-group select { padding: 9px 12px; font-size: 13px; }
  .steps-bar { padding: 12px 16px 0; gap: 0; }
  .step { font-size: 11px; }
  .step span { width: 24px; height: 24px; font-size: 11px; }
  .step-line { max-width: 40px; }
  
  /* Menu Controls */
  .menu-controls { flex-direction: column; margin: 16px 0 12px; }
  .menu-search-wrap { min-width: auto; max-width: 100%; }
  .menu-sort-wrap, .menu-view-wrap { width: 100%; }
  .menu-view-wrap { justify-content: space-around; }
  
  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-info-card, .contact-form-card { padding: 20px 14px; }
  .contact-info-card h3, .contact-form-card h3 { font-size: 16px; }
}

/* ── SMALL DEVICES (480px - 768px) ── */
@media(max-width: 768px) {
  /* Topbar */
  .topbar-social { gap: 12px; }
  .topbar-social a { font-size: 13px; }
  
  /* Navbar */
  .navbar-inner { padding: 0 16px; }
  .search-bar { max-width: 280px; }
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .nav-links a { padding: 8px 10px; font-size: 13px; }
  .mobile-menu-sidebar { display: flex; }
  .order-btn-mobile { background: var(--red); color: white; padding: 12px 16px; font-size: 13px; width: 100%; border-radius: 8px; justify-content: center; }
  .order-btn { padding: 9px 16px; font-size: 13px; }
  
  /* Hero */
  .hero { min-height: 440px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; padding: 40px 16px; }
  .hero h1 { font-size: 48px; margin-bottom: 16px; }
  .hero p { font-size: 15px; margin-bottom: 20px; max-width: 100%; }
  .hero-btns { flex-wrap: wrap; gap: 10px; }
  .hero-stats { gap: 24px; margin-top: 28px; flex-wrap: wrap; }
  .hero-visual { display: none !important; }
  
  /* Features */
  .features-inner { grid-template-columns: 1fr 1fr; gap: 0; }
  .feature { padding: 18px 16px; border-right: 1px solid #EDEDED; border-bottom: 1px solid #EDEDED; }
  .feature:nth-child(odd) { border-right: none; }
  .feature:nth-child(n+3) { border-bottom: none; }
  
  /* Category Cards — 2 columns for 480-768px */
  .cat-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 14px; }
  .cat-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 16px 11px 12px; border-radius: 14px; background: var(--white); border: 1px solid #F0F0F0; }
  .cat-card .emoji { width: 52px; height: 52px; font-size: 26px; margin: 0 auto 8px; flex-shrink: 0; }
  .cat-card h4 { font-size: 11px; margin-bottom: 2px; }
  .cat-card .count { font-size: 9px; }
  
  /* Products */
  .product-grid { display: grid; grid-template-columns: repeat(1, 1fr); gap: 14px; padding: 10px; }
  .product-card { display: flex; flex-direction: column; gap: 0; overflow: hidden; padding: 0; }
  .product-img { width: 100%; height: 160px; flex-shrink: 0; border-radius: 14px 14px 0 0; }
  .product-body { padding: 14px; flex: 1; display: flex; flex-direction: column; }
  .product-name { font-size: 13px; margin-bottom: 6px; }
  .product-desc { font-size: 12px; -webkit-line-clamp: 2; margin-bottom: 10px; }
  .product-price { font-size: 18px; }
  .product-footer { gap: 10px; margin-top: auto; }
  .add-btn { padding: 8px 12px; font-size: 12px; }
  
  .menu-product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .mc-img { height: 160px; }
  
  /* Menu Section */
  .menu-controls { gap: 10px; flex-wrap: wrap; margin: 18px 0 14px; }
  .menu-search-wrap { min-width: 180px; max-width: 100%; flex: 1; }
  .menu-search-wrap input { font-size: 13px; }
  .menu-sort-wrap { height: 42px; padding: 0 12px; font-size: 12px; }
  .menu-sort-wrap select { font-size: 12px; }
  .menu-view-wrap { flex-shrink: 0; }
  .view-toggle { width: 38px; height: 38px; }
  .menu-filter-bar { gap: 12px; margin-bottom: 12px; }
  .filter-pills { gap: 7px; flex-wrap: wrap; overflow-x: visible; padding-bottom: 0; }
  .fpill { padding: 7px 12px; font-size: 12px; flex-shrink: 1; }
  .pill-count { font-size: 10px; }
  .filter-tags-right { display: flex; gap: 8px; flex-direction: row; width: auto; }
  .tag-toggle span { font-size: 12px; padding: 7px 12px; }
  .menu-result-bar { font-size: 12px; margin-bottom: 14px; }
  .clear-filters-btn { font-size: 12px; padding: 6px 12px; }
  .menu-card { border-radius: 14px; }
  .mc-img { height: 150px; font-size: 50px; }
  .mc-body { padding: 13px 14px 15px; }
  .mc-name { font-size: 13px; }
  .mc-desc { font-size: 12px; }
  .mc-price { font-size: 17px; }
  .mc-add-btn { padding: 8px 12px; font-size: 12px; }
  .menu-empty { padding: 50px 16px; }
  .menu-empty h3 { font-size: 20px; }
  .menu-empty p { font-size: 14px; }
  
  /* Combo */
  .combo-grid { grid-template-columns: 1fr; gap: 14px; }
  
  /* Gluten-Free */
  .glutenfree-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  
  /* Offers Carousel */
  .ofc-wrap { padding: 0 16px; }
  .ofc-card { grid-template-columns: 1fr; text-align: center; padding: 24px 18px; }
  .ofc-card-visual { justify-self: center; width: 140px; height: 140px; margin-bottom: 12px; }
  .ofc-card-emoji { font-size: 72px; }
  .ofc-card-title { font-size: 36px; }
  .ofc-card-desc { max-width: 100%; }
  .ofc-card-meta { justify-content: center; }
  .ofc-card--has-banner .ofc-card-banner { min-height: 220px; }
  
  /* Promo Banner */
  .promo-inner { grid-template-columns: 1fr; gap: 24px; padding: 32px 20px; }
  .promo-visual { grid-template-columns: 1fr 1fr; gap: 10px; }
  
  /* Section */
  .section { padding: 48px 16px; }
  
  /* Reviews Section */
  .rv-section-title { font-size: 64px; }
  .rv-track { gap: 40px; padding: 28px 16px; }
  .rv-card { width: 300px; }
  .rv-controls { gap: 14px; padding: 8px 0; }
  .rv-controls [data-rv-btn] { padding: 5px 8px; font-size: 14px; }
  .rv-dots { gap: 8px; }
  
  /* Footer */
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; padding: 44px 16px 32px; }
  .footer-bottom { flex-direction: column; }
  
  /* Cart Drawer */
  .cart-drawer { width: 380px; }
  
  /* Modal */
  .modal-box { width: calc(100% - 40px); max-width: 540px; }
  .modal-step { padding: 20px 24px; }
  .form-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .form-group.full { grid-column: 1 / -1; }
  
  /* Menu */
  .menu-controls { flex-direction: column; gap: 12px; }
  .menu-search-wrap { min-width: auto; max-width: 100%; }
  .menu-filter-bar { margin-bottom: 12px; }
  .filter-pills, .filter-tags-right { flex-wrap: wrap; }
  .fpill, .tag-toggle span { font-size: 12px; padding: 7px 12px; }
  
  /* About Page (Tablet) */
  .abt-hero-inner { padding: 52px 18px; gap: 32px; grid-template-columns: 1fr; text-align: center; }
  .abt-hero-content h1 { font-size: 52px; }
  .abt-hero-content p { max-width: 100%; font-size: 16px; }
  .abt-hero-visual { display: none; }
  .abt-hero-stats { justify-content: center; }
  .abt-story-grid { grid-template-columns: 1fr; gap: 28px; padding: 48px 18px; }
  .abt-story-visual { order: -1; }
  .abt-story-img-wrap { width: 200px; height: 200px; margin: 0 auto; }
  .abt-story-emoji { font-size: 72px; }
  .abt-story-content { text-align: center; max-width: 100%; }
  .abt-values-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; padding: 48px 18px; }
  .abt-value-card { padding: 24px 18px; text-align: center; }
  .abt-value-icon { margin: 0 auto 12px; }
  .abt-value-card h4 { font-size: 16px; }
  
  /* Contact Page (Tablet) */
  .contact-hero { padding: 72px 18px; }
  .contact-hero h1 { font-size: 44px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; padding: 52px 18px; }
  .contact-info-card, .contact-form-card { padding: 28px 24px; }
  .contact-info-card h3, .contact-form-card h3 { font-size: 18px; }
  .contact-info-item { gap: 14px; margin-bottom: 18px; }
  .contact-info-item h4 { font-size: 14px; }
  .contact-info-item p { font-size: 14px; }
  .form-group label { font-size: 13px; }
  .form-group input, .form-group textarea { font-size: 14px; padding: 11px 14px; }
  
  /* Why Us Grid (Tablet) */
  .why-grid { grid-template-columns: repeat(1, 1fr); gap: 20px; padding: 48px 18px; }
  .why-card { padding: 28px 20px; }
  .why-icon { width: 60px; height: 60px; font-size: 26px; }
  .why-card h3 { font-size: 17px; }
  .why-card p { font-size: 14px; }
  
  /* Location Cards (Tablet) */
  .location-grid { grid-template-columns: 1fr 1fr; gap: 28px; padding: 48px 18px; align-items: stretch; }
  .location-map { display: block; }
  .location-info { gap: 16px; }
  .location-card { padding: 20px; gap: 14px; }
  .location-card-icon { width: 48px; height: 48px; font-size: 20px; }
  .location-card h4 { font-size: 14px; }
  .location-card p { font-size: 13px; }
  .location-directions-btn { padding: 15px 24px; font-size: 15px; }
  
  /* Instagram Grid (Tablet) */
  .insta-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .insta-item { height: 180px; font-size: 52px; }
  
  /* Newsletter (Tablet) */
  .newsletter-inner { flex-direction: row; align-items: center; gap: 32px; padding: 48px 18px; }
  .newsletter-content h2 { font-size: 40px; text-align: left; }
  .newsletter-content p { text-align: left; font-size: 15px; }
  .newsletter-form-wrap { max-width: 400px; }
}

/* ── EXTRA SMALL DEVICES CONTINUED (320px - 480px) ── */
@media(max-width: 480px) {
  /* About Page */
  .abt-hero-inner { padding: 48px 16px; gap: 24px; }
  .abt-hero-content h1 { font-size: 44px; }
  .abt-hero-content p { font-size: 15px; max-width: 100%; }
  .abt-hero-stats { gap: 20px; flex-wrap: wrap; }
  .abt-stat-num { font-size: 24px; }
  .abt-story-grid { gap: 20px; padding: 40px 16px; }
  .abt-story-content { text-align: center; }
  .abt-story-img-wrap { width: 160px; height: 160px; }
  .abt-story-emoji { font-size: 64px; }
  .abt-values-grid { grid-template-columns: 1fr; gap: 16px; padding: 16px; }
  .abt-value-card { padding: 20px 16px; }
  .abt-value-icon { width: 48px; height: 48px; font-size: 24px; }
  .abt-value-card h4 { font-size: 15px; }
  .abt-value-card p { font-size: 13px; }
  
  /* Category Cards — restore list-view on mobile (overrides 768px block above) */
  .cat-cards { display: flex; flex-direction: column; gap: 10px; padding: 0 8px; }
  .cat-card { display: flex; align-items: center; gap: 14px; padding: 12px; max-width: 100%; border-radius: 12px; flex-direction: row; background: var(--white); border: 1px solid #F0F0F0; }
  .cat-card .emoji { width: 44px; height: 44px; font-size: 22px; margin: 0; flex-shrink: 0; background: linear-gradient(135deg, #FFF0EC, #FFE4D6); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
  .cat-card h4 { font-size: 12px; margin-bottom: 0; flex: 1; }
  .cat-card .count { font-size: 10px; margin-left: auto; }
  
  /* Why Us Grid */
  .why-card { padding: 24px 16px; text-align: center; }
  .why-icon { width: 56px; height: 56px; font-size: 24px; margin: 0 auto 12px; }
  .why-card h3 { font-size: 16px; margin-bottom: 8px; }
  .why-card p { font-size: 13px; }
  
  /* Location Cards - Single column, hide map on mobile */
  .location-grid { grid-template-columns: 1fr; gap: 16px; padding: 0 8px; }
  .location-map { display: none; }
  .location-info { gap: 12px; }
  .location-card { padding: 16px; gap: 12px; }
  .location-card-icon { width: 44px; height: 44px; font-size: 18px; }
  .location-card h4 { font-size: 13px; }
  .location-card p { font-size: 12px; }
  .location-directions-btn { padding: 14px 20px; font-size: 14px; margin-top: 12px; }
  
  /* FAQ */
  .faq-layout { grid-template-columns: 1fr; gap: 28px; }
  .faq-cta { position: static; }
  .faq-q { padding: 16px 18px; font-size: 14px; }
  .faq-a { padding: 0 18px; }
  .faq-item.open .faq-a { padding: 0 18px 16px; }
  
  /* Contact Page */
  .contact-hero { padding: 60px 16px; }
  .contact-hero h1 { font-size: 36px; }
  .contact-hero p { font-size: 15px; }
  .contact-grid { grid-template-columns: 1fr; gap: 24px; padding: 40px 16px; }
  .contact-info-card, .contact-form-card { padding: 20px 16px; }
  .contact-info-card h3, .contact-form-card h3 { font-size: 16px; margin-bottom: 16px; }
  .contact-info-item { gap: 12px; margin-bottom: 16px; }
  .contact-info-item i { font-size: 16px; }
  .contact-info-item h4 { font-size: 13px; }
  .contact-info-item p { font-size: 13px; }
  .form-group label { font-size: 12px; }
  .form-group input, .form-group textarea { font-size: 13px; padding: 10px 12px; }
  .submit-btn { padding: 11px 20px; font-size: 14px; }
}

/* ── TABLET DEVICES (768px - 1024px) ── */
@media(max-width: 1024px) and (min-width: 769px) {
  /* Navbar */
  .navbar-inner { padding: 0 18px; }
  .search-bar { max-width: 340px; }
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .mobile-menu-sidebar { display: flex; }
  .mobile-order-btn { display: none; }
  .order-btn-mobile { background: var(--red); color: white; padding: 14px 16px; font-size: 13px; width: 100%; border-radius: 8px; justify-content: center; }
  
  /* Hero */
  .hero-inner { grid-template-columns: 1.1fr 1fr; gap: 36px; padding: 50px 18px; }
  .hero p { font-size: 15px; }
  .hero-food-grid { display: grid; max-width: 300px; }
  
  /* Category Cards */
  .cat-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; padding: 0 16px; }
  .cat-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 19px 12px 15px; border-radius: 16px; background: var(--white); border: 2px solid transparent; }
  .cat-card .emoji { width: 58px; height: 58px; font-size: 30px; margin: 0 auto 10px; flex-shrink: 0; }
  .cat-card h4 { font-size: 12px; margin-bottom: 0; }
  .cat-card .count { font-size: 10px; margin-left: 0; }
  
  /* Features */
  .features-inner { grid-template-columns: repeat(2, 1fr); }
  
  /* Menu Section */
  .menu-controls { gap: 12px; margin: 20px 0 14px; }
  .menu-search-wrap { min-width: 200px; max-width: 100%; }
  .menu-sort-wrap { height: 42px; }
  .menu-view-wrap { flex-shrink: 0; }
  .menu-filter-bar { gap: 14px; }
  .filter-pills { gap: 8px; }
  .fpill { padding: 8px 13px; font-size: 12px; }
  .filter-tags-right { gap: 10px; }
  .tag-toggle span { font-size: 12px; padding: 8px 13px; }
  .menu-result-bar { font-size: 13px; margin-bottom: 16px; }
  .menu-card { border-radius: 14px; }
  .mc-img { height: 150px; font-size: 52px; }
  .mc-body { padding: 14px 15px 16px; }
  .mc-name { font-size: 14px; }
  .mc-desc { font-size: 12px; }
  .mc-price { font-size: 18px; }
  .mc-add-btn { padding: 9px 13px; font-size: 12px; }
  
  /* Products */
  .product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 0 16px; }
  .product-card { display: flex; flex-direction: column; overflow: hidden; border-radius: 14px; }
  .product-img { width: 100%; height: 160px; object-fit: cover; border-radius: 14px 14px 0 0; }
  .product-body { padding: 12px 12px 14px; flex: 1; display: flex; flex-direction: column; }
  .menu-product-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  
  /* Section */
  .section { padding: 52px 18px; }
  
  /* Footer */
  .footer-main { grid-template-columns: 2fr 1fr 1fr 1.5fr; padding: 48px 18px 36px; gap: 32px; }
  
  /* Offers */
  .ofc-card { grid-template-columns: 1fr 1.2fr; gap: 28px; padding: 36px 32px; }
  .ofc-card-visual { width: 180px; height: 180px; }
  
  /* Reviews */
  .rv-section-title { font-size: 80px; }
  .rv-controls { gap: 16px; padding: 8px 0; }
  .rv-controls [data-rv-btn] { padding: 5px 8px; font-size: 15px; }
  .rv-dots { gap: 10px; }
  
  /* Modal */
  .modal-box { max-width: 520px; }
}

/* ── MEDIUM SCREENS (1024px - 1200px) ── */
@media(min-width: 1025px) and (max-width: 1200px) {
  .navbar-inner { padding: 0 18px; }
  .search-bar { max-width: 380px; }
  .nav-links { display: flex !important; }
  .nav-actions { display: flex !important; }
  .mobile-menu-sidebar { display: none !important; }
  .mobile-order-btn { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
  .section { padding: 52px 18px; }
  
  /* Category Cards */
  .cat-cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; padding: 0 18px; }
  .cat-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 20px 13px 16px; border-radius: 17px; max-width: none; background: var(--white); border: 2px solid transparent; }
  .cat-card .emoji { width: 62px; height: 62px; font-size: 32px; margin: 0 auto 12px; flex-shrink: 0; }
  .cat-card h4 { font-size: 13px; margin-bottom: 4px; }
  .cat-card .count { font-size: 11px; }
  
  .menu-section-header { margin-bottom: 24px; }
  .menu-controls { gap: 12px; margin: 22px 0 16px; }
  .menu-search-wrap { min-width: 240px; max-width: 380px; }
  .menu-sort-wrap { height: 44px; }
  .menu-filter-bar { gap: 14px; margin-bottom: 16px; }
  .filter-pills { gap: 8px; }
  .fpill { padding: 8px 14px; font-size: 13px; }
  .menu-result-bar { font-size: 13px; margin-bottom: 16px; }
  .menu-product-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .menu-card { border-radius: 14px; }
  .mc-img { height: 160px; }
  .mc-body { padding: 15px 16px; }
  .mc-name { font-size: 14px; }
  .mc-desc { font-size: 12px; }
  .mc-price { font-size: 18px; }
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .footer-main { gap: 28px; }
  
  /* About Page (Medium) */
  .abt-hero-inner { padding: 60px 18px; grid-template-columns: 1.2fr 1fr; gap: 40px; text-align: left; }
  .abt-hero-stats { justify-content: flex-start; gap: 28px; }
  .abt-hero-visual { display: flex; }
  .abt-hero-emoji-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .abt-story-grid { grid-template-columns: 1fr 1.2fr; gap: 32px; padding: 56px 18px; text-align: left; }
  .abt-story-visual { order: 0; }
  .abt-emoji-card:nth-child(2) { margin-top: 0; }
  .abt-emoji-card:nth-child(3) { margin-top: 0; }
  .abt-values-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 56px 18px; }
  .abt-value-card { padding: 28px 20px; text-align: left; }
  .abt-value-icon { margin: 0 0 16px 0; }
  .abt-value-card h4 { font-size: 16px; }
  
  /* Contact Page (Medium) */
  .contact-hero { padding: 80px 18px; }
  .contact-hero h1 { font-size: 52px; }
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 42px; padding: 56px 18px; }
  .contact-info-card, .contact-form-card { padding: 32px 28px; }
  .contact-info-card h3, .contact-form-card h3 { font-size: 20px; }
  
  /* Why Us Grid (Medium) */
  /* .why-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } */
  .why-card { text-align: center; }
  .why-icon { margin: 0 auto 18px; }
  .why-card h3 { font-size: 18px; }
  .why-card p { font-size: 14px; }
  
  /* Location Cards (Medium) */
  .location-grid { grid-template-columns: 1fr; gap: 28px; padding: 56px 18px; }
  .location-map { min-height: 400px; }
  .location-info { gap: 16px; }
  
  /* Instagram Grid (Medium) */
  .insta-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .insta-item { height: 200px; font-size: 56px; }
  
  /* Newsletter (Medium) */
  .newsletter-inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 40px; padding: 56px 18px; }
  .newsletter-content h2 { font-size: 36px; text-align: left; margin-bottom: 8px; }
  .newsletter-form-wrap { max-width: 380px; width: 100%; }
  .newsletter-form { flex-direction: row; }
}

/* ── LARGE SCREENS (1200px+) ── */
@media(min-width: 1201px) {
  .navbar-inner { padding: 0 24px; }
  .nav-links { display: flex !important; }
  .nav-actions { display: flex !important; }
  .mobile-menu-sidebar { display: none !important; }
  .mobile-order-btn { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
  .product-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  
  /* Category Cards */
  .cat-cards { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; padding: 0 24px; }
  .cat-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 24px 14px 18px; border-radius: 18px; max-width: none; background: var(--white); border: 2px solid transparent; }
  .cat-card .emoji { width: 70px; height: 70px; font-size: 36px; margin: 0 auto 14px; flex-shrink: 0; }
  .cat-card h4 { font-size: 14px; margin-bottom: 5px; }
  .cat-card .count { font-size: 12px; }
  
  .menu-product-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .menu-section-header { margin-bottom: 28px; }
  .menu-controls { gap: 14px; margin: 24px 0 18px; }
  .menu-search-wrap { min-width: 280px; max-width: 440px; }
  .menu-sort-wrap { height: 44px; }
  .menu-filter-bar { gap: 16px; margin-bottom: 18px; }
  .filter-pills { gap: 10px; }
  .fpill { padding: 9px 15px; font-size: 13px; }
  .filter-tags-right { gap: 12px; }
  .tag-toggle span { font-size: 13px; padding: 9px 15px; }
  .menu-result-bar { font-size: 14px; margin-bottom: 20px; }
  .menu-card { border-radius: 16px; }
  .mc-img { height: 180px; font-size: 60px; }
  .mc-body { padding: 18px 18px 20px; }
  .mc-name { font-size: 15px; margin-bottom: 8px; }
  .mc-desc { font-size: 13px; margin-bottom: 12px; }
  .mc-price { font-size: 20px; }
  .mc-add-btn { padding: 10px 16px; font-size: 14px; }
  .mc-qty-ctrl { gap: 0; }
  .mc-qty-btn { width: 32px; height: 32px; font-size: 13px; }
  .mc-qty-num { font-size: 14px; min-width: 30px; }
  
  /* About Page (Large) */
  .abt-hero-inner { padding: 70px 24px; grid-template-columns: 1.2fr 1fr; gap: 48px; }
  .abt-hero-content h1 { font-size: 80px; }
  .abt-hero-content p { font-size: 17px; max-width: 440px; }
  .abt-hero-stats { gap: 32px; }
  .abt-hero-emoji-grid { gap: 14px; max-width: 350px; }
  .abt-story-grid { grid-template-columns: 1fr 1.2fr; gap: 48px; padding: 70px 24px; }
  .abt-story-img-wrap { width: 260px; height: 260px; }
  .abt-story-emoji { font-size: 90px; }
  .abt-values-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; padding: 70px 24px; }
  .abt-value-card { padding: 32px 24px; }
  .abt-value-icon { width: 64px; height: 64px; font-size: 32px; }
  .abt-value-card h4 { font-size: 18px; }
  
  /* Contact Page (Large) */
  .contact-hero { padding: 100px 24px; }
  .contact-hero h1 { font-size: 72px; }
  .contact-hero p { font-size: 18px; }
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 48px; padding: 70px 24px; }
  .contact-info-card, .contact-form-card { padding: 40px 32px; }
  .contact-info-card h3, .contact-form-card h3 { font-size: 22px; }
  .contact-info-item h4 { font-size: 15px; }
  
  /* Why Us Grid (Large) */
  /* .why-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; } */
  .why-card { padding: 36px 28px; }
  .why-icon { width: 72px; height: 72px; font-size: 32px; margin-bottom: 20px; }
  .why-card h3 { font-size: 18px; margin-bottom: 12px; }
  .why-card p { font-size: 15px; }
  
  /* Location Cards (Large) */
  .location-grid { grid-template-columns: 1.2fr 1fr; gap: 32px; padding: 70px 24px; }
  .location-map { min-height: 450px; }
  .location-info { gap: 20px; }
  .location-card { padding: 24px; }
  .location-card-icon { width: 52px; height: 52px; font-size: 24px; }
  .location-card h4 { font-size: 16px; }
  .location-card p { font-size: 14px; }
  
  /* Instagram Grid (Large) */
  .insta-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .insta-item { height: 220px; font-size: 60px; border-radius: 16px; }
  
  /* Newsletter (Large) */
  .newsletter-inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 56px; padding: 70px 24px; }
  .newsletter-content h2 { font-size: 42px; margin-bottom: 8px; }
  .newsletter-content p { font-size: 15px; }
  .newsletter-form-wrap { max-width: 440px; }
  .newsletter-form { gap: 2px; }
  .newsletter-form input { padding: 14px 18px; font-size: 14px; }
  .newsletter-form button { padding: 14px 28px; }
  
  /* Reviews (Large) */
  .rv-controls { gap: 20px; padding: 10px 0; }
  .rv-controls [data-rv-btn] { padding: 5px 8px; font-size: 15px; }
  .rv-dots { gap: 12px; }
}

/* ── LANDSCAPE MODE ADJUSTMENTS ── */
@media(max-height: 600px) and (orientation: landscape) {
  .hero { min-height: 380px; }
  .hero-inner { padding: 30px 24px; }
  .section { padding: 32px 24px; }
}

/* ── HIGH DPI (RETINA) ADJUSTMENTS ── */
@media(min-width: 1920px) {
  body { font-size: 15px; }
  .navbar-inner { height: 72px; }
  .section { padding: 64px 24px; }
  .container { max-width: 1440px; }
}

/* ── PRINT STYLES ── */
@media print {
  .topbar, .navbar, .fab-wrapper, .toast, .cart-drawer { display: none !important; }
  body { background: white; color: black; }
  a { text-decoration: underline; }
}

/* ── MOBILE MENU TOGGLE ── */
.mobile-menu-toggle { 
  display: none; 
  flex-direction: column; 
  gap: 6px; 
  background: transparent; 
  border: none; 
  cursor: pointer; 
  padding: 8px; 
  flex-shrink: 0; 
  margin-left: auto; 
}
.mobile-menu-toggle span { 
  width: 24px; 
  height: 2.5px; 
  background: var(--text); 
  border-radius: 2px; 
  transition: all 0.3s ease; 
}
.mobile-menu-toggle.active span:nth-child(1) { 
  transform: rotate(45deg) translate(10px, 10px); 
}
.mobile-menu-toggle.active span:nth-child(2) { 
  opacity: 0; 
}
.mobile-menu-toggle.active span:nth-child(3) { 
  transform: rotate(-45deg) translate(8px, -8px); 
}

@media(max-width: 900px) {
  .mobile-menu-toggle { display: flex; }
  .nav-actions { display: none; }
  .nav-links { display: none; }
  .navbar-inner { position: relative; }
  
  /* Show mobile sidebar menu */
  .mobile-menu-sidebar { display: flex; }
  
  /* Show and handle Order Now button in mobile menu */
  .mobile-order-btn { display: none; }
  .order-btn-mobile { width: 100%; border-radius: 8px; padding: 12px 16px; justify-content: center; background: var(--red); color: white; }
  .order-btn-mobile:hover { background: var(--red-dark); }
}

/* ── FLOATING ACTION BUTTONS (FAB WHEEL) ── */
.fab-wrapper { position: fixed; bottom: 28px; right: 28px; z-index: 9999; }
.fab-checkbox { display: none; }

/* Main trigger button */
.fab-main { display: flex; align-items: center; justify-content: center; gap: 5px; width: 56px; height: 56px; border-radius: 50%; background: var(--red); box-shadow: 0 4px 20px rgba(232,40,11,0.42); cursor: pointer; position: relative; z-index: 2; transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.2s; }
.fab-main::after { content: 'Quick Contact'; position: absolute; right: calc(100% + 12px); top: 50%; transform: translateY(-50%); background: rgba(25,25,25,0.92); color: #fff; font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 600; white-space: nowrap; padding: 6px 12px; border-radius: 6px; pointer-events: none; opacity: 0; transition: opacity 0.2s; }
.fab-wrapper:hover .fab-main::after { opacity: 1; }
.fab-checkbox:checked ~ .fab-main { transform: rotate(90deg); box-shadow: 0 6px 28px rgba(232,40,11,0.58); }

/* Three dots */
.fab-dots { display: block; width: 6px; height: 6px; border-radius: 50%; background: #fff; transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.25s; }
.fab-checkbox:checked ~ .fab-main .fab-dots-1 { transform: translateY(5px) rotate(45deg) scaleX(1.6); }
.fab-checkbox:checked ~ .fab-main .fab-dots-2 { transform: scale(0); opacity: 0; }
.fab-checkbox:checked ~ .fab-main .fab-dots-3 { transform: translateY(-5px) rotate(-45deg) scaleX(1.6); }

/* Wheel container */
.fab-wheel { position: absolute; bottom: 0; right: 0; width: 56px; height: 56px; pointer-events: none; }

/* Each action */
.fab-action { position: absolute; bottom: 4px; right: 4px; width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 19px; text-decoration: none; box-shadow: 0 3px 14px rgba(0,0,0,0.22); opacity: 0; transform: scale(0.4); transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.3s, box-shadow 0.2s; pointer-events: none; }
.fab-action:hover { box-shadow: 0 6px 22px rgba(0,0,0,0.32); }

/* Open state — fan out in an upward arc */
.fab-checkbox:checked ~ .fab-wheel { pointer-events: all; }
.fab-checkbox:checked ~ .fab-wheel .fab-action { opacity: 1; pointer-events: all; }
.fab-checkbox:checked ~ .fab-wheel .fab-action-1 { transform: translate(-4px, -78px);  transition-delay: 0s; }
.fab-checkbox:checked ~ .fab-wheel .fab-action-2 { transform: translate(-66px, -44px); transition-delay: 0.05s; }
.fab-checkbox:checked ~ .fab-wheel .fab-action-3 { transform: translate(-78px, 12px);  transition-delay: 0.1s; }

/* Closing: reverse delay order */
.fab-wheel .fab-action-1 { transition-delay: 0.1s; }
.fab-wheel .fab-action-2 { transition-delay: 0.05s; }
.fab-wheel .fab-action-3 { transition-delay: 0s; }

/* Tooltips */
.fab-action::after { content: attr(aria-label); position: absolute; right: calc(100% + 10px); top: 50%; transform: translateY(-50%); background: rgba(25,25,25,0.88); color: #fff; font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 600; white-space: nowrap; padding: 5px 11px; border-radius: 6px; pointer-events: none; opacity: 0; transition: opacity 0.18s; }
.fab-action:hover::after { opacity: 1; }

/* Action colours */
.fab-whatsapp { background: #25D366; color: #fff; }
.fab-call     { background: var(--red); color: #fff; }
.fab-google   { background: #fff; border: 1.5px solid #E8E8E8; }

/* ── FAB RESPONSIVE ── */

/* Tablet (481px – 768px): slightly tighter spacing */
@media(max-width: 768px) {
  .fab-wrapper { bottom: 22px; right: 18px; }
}

/* Mobile (≤ 480px): smaller buttons, adjusted arc, no tooltips */
@media(max-width: 480px) {
  .fab-wrapper   { bottom: 16px; right: 16px; }

  /* Smaller trigger */
  .fab-main      { width: 50px; height: 50px; }
  .fab-dots      { width: 5px; height: 5px; }

  /* Smaller wheel container */
  .fab-wheel     { width: 50px; height: 50px; }

  /* Smaller action buttons — still 44px (minimum touch target) */
  .fab-action    { width: 44px; height: 44px; font-size: 17px; bottom: 3px; right: 3px; }

  /* Re-calculated arc for 50px trigger */
  .fab-checkbox:checked ~ .fab-wheel .fab-action-1 { transform: translate(-2px, -68px); }
  .fab-checkbox:checked ~ .fab-wheel .fab-action-2 { transform: translate(-58px, -36px); }
  .fab-checkbox:checked ~ .fab-wheel .fab-action-3 { transform: translate(-68px, 10px); }

  /* Hide tooltips — no hover on touch devices */
  .fab-action::after { display: none; }

  /* Combo cards mobile responsive */
  .combo-grid { grid-template-columns: 1fr; }
  /* .combo-card { padding: 20px; } */
  .combo-emoji { font-size: 40px; }
  .combo-card h3 { font-size: 16px; }
  
  /* Gluten-free cards mobile responsive */
  .glutenfree-grid { grid-template-columns: 1fr; gap: 16px; }
  .gf-card { padding: 20px; }
  .gf-icon { font-size: 40px; margin-bottom: 12px; }
  .gf-card h3 { font-size: 16px; }
  .gf-note { padding: 16px; gap: 12px; }
}

/* ── COMBO POPUP ── */
.combo-popup-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 9998; opacity: 0; visibility: hidden; transition: all 0.3s; backdrop-filter: blur(4px); }
.combo-popup-overlay.open { opacity: 1; visibility: visible; }

.combo-popup { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.9); z-index: 9999; background: white; border-radius: 20px; width: 92%; max-width: 560px; max-height: 90vh; overflow-y: auto; box-shadow: 0 32px 80px rgba(0,0,0,0.3); opacity: 0; visibility: hidden; transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1); }
.combo-popup.open { opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1); }

.combo-popup-close { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; border-radius: 50%; border: none; background: rgba(0,0,0,0.06); color: #666; font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; z-index: 2; }
.combo-popup-close:hover { background: var(--red); color: white; }

.combo-popup-header { text-align: center; padding: 28px 24px 16px; }
.combo-popup-tag { display: inline-flex; align-items: center; gap: 6px; background: linear-gradient(135deg, #FF6B35, #E8280B); color: white; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 14px; border-radius: 20px; margin-bottom: 12px; animation: pulse-tag 2s ease-in-out infinite; }
@keyframes pulse-tag { 0%,100% { box-shadow: 0 0 0 0 rgba(232,40,11,0.4); } 50% { box-shadow: 0 0 0 8px rgba(232,40,11,0); } }
.combo-popup-header h2 { font-family: 'Syne', sans-serif; font-size: 28px; color: var(--dark); letter-spacing: 0.02em; margin-bottom: 4px; }
.combo-popup-header p { color: var(--muted); font-size: 13px; }

.combo-popup-items { padding: 0 20px 16px; display: flex; flex-direction: column; gap: 10px; }

.combo-popup-card { display: flex; align-items: center; gap: 14px; padding: 12px; border-radius: 14px; border: 2px solid #f0f0f0; transition: all 0.25s; cursor: pointer; }
.combo-popup-card:hover { border-color: var(--red); background: #FFF8F6; }
.combo-popup-card.added { border-color: #22C55E; background: #F0FFF4; }

.combo-popup-img { width: 70px; height: 70px; border-radius: 12px; overflow: hidden; flex-shrink: 0; background: #FFF0EC; display: flex; align-items: center; justify-content: center; }
.combo-popup-img img { width: 100%; height: 100%; object-fit: cover; }
.combo-popup-emoji { font-size: 32px; }

.combo-popup-info { flex: 1; min-width: 0; }
.combo-popup-info h4 { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.combo-popup-desc { font-size: 11px; color: var(--muted); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.combo-popup-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; }
.combo-popup-price { font-family: 'DM Sans', sans-serif; font-size: 20px; color: var(--red); }

.combo-popup-add { display: inline-flex; align-items: center; gap: 5px; background: var(--red); color: white; border: none; padding: 7px 14px; border-radius: 8px; font-size: 12px; font-weight: 700; cursor: pointer; transition: all 0.2s; font-family: 'DM Sans', sans-serif; }
.combo-popup-add:hover { background: var(--red-dark); transform: translateY(-1px); }
.combo-popup-add.added { background: #22C55E; }
.combo-popup-add.added:hover { background: #16A34A; }

.combo-popup-footer { padding: 16px 20px 20px; border-top: 1px solid #f0f0f0; animation: slideUp 0.3s ease; }
@keyframes slideUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.combo-popup-cart-summary { background: #FAFAFA; border-radius: 10px; padding: 12px 14px; margin-bottom: 12px; font-size: 13px; }
.combo-popup-cart-summary .cp-summary-row { display: flex; justify-content: space-between; padding: 3px 0; color: var(--text); }
.combo-popup-cart-summary .cp-summary-row.total { font-weight: 800; font-size: 15px; color: var(--dark); border-top: 1px solid #e5e5e5; padding-top: 8px; margin-top: 4px; }

.combo-popup-actions { display: flex; gap: 10px; }
.combo-btn-checkout { flex: 1; background: var(--red); color: white; border: none; padding: 13px 16px; border-radius: 10px; font-size: 14px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: all 0.25s; font-family: 'DM Sans', sans-serif; }
.combo-btn-checkout:hover { background: var(--red-dark); transform: translateY(-1px); }
.combo-btn-continue { flex: 1; background: transparent; color: var(--dark); border: 2px solid #e5e5e5; padding: 13px 16px; border-radius: 10px; font-size: 14px; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: all 0.25s; font-family: 'DM Sans', sans-serif; }
.combo-btn-continue:hover { border-color: var(--dark); background: rgba(0,0,0,0.03); }

@media (max-width: 600px) {
  .combo-popup { width: 96%; border-radius: 16px; max-height: 85vh; }
  .combo-popup-header { padding: 22px 16px 12px; }
  .combo-popup-header h2 { font-size: 24px; }
  .combo-popup-items { padding: 0 14px 12px; }
  .combo-popup-card { padding: 10px; gap: 10px; }
  .combo-popup-img { width: 56px; height: 56px; }
  .combo-popup-info h4 { font-size: 13px; }
  .combo-popup-actions { flex-direction: column; }
}

/* ════════════════════════════════════════════════════════════
   CRITICAL RESPONSIVE FIXES — Mobile & Tablet
   ════════════════════════════════════════════════════════════ */

/* ── 1. Always show cart icon in mobile/tablet navbar ──────────
   nav-actions was display:none at all mobile breakpoints,
   making the cart completely inaccessible on mobile devices. */
@media(max-width: 1024px) {
  .nav-actions { display: flex !important; gap: 4px; }
  /* Hide wishlist on mobile, keep only the cart */
  .nav-actions .nav-icon-btn:not(.cart-trigger) { display: none !important; }
}

/* ── 2. Compact topbar on phones — single horizontal row ─────
   Previous styles stacked topbar-left and topbar-right in separate
   columns, consuming too much vertical space on small screens. */
@media(max-width: 640px) {
  .topbar-inner { flex-direction: row !important; flex-wrap: nowrap !important; justify-content: space-between; align-items: center; padding: 0 14px; gap: 6px; }
  .topbar-left { flex-direction: row !important; gap: 12px; }
  .topbar-left > span:first-child { display: none; } /* hide long address text */
  .topbar-right { flex-direction: row !important; gap: 10px; }
  .topbar-right > a { display: none; } /* hide text links on mobile */
  .topbar-right .store-status-indicator { display: inline-flex; } /* always show status */
  .topbar-right .topbar-social { display: flex; }
}
@media(max-width: 380px) {
  .topbar-left > a { display: none; } /* hide Call Us on very small, social remains */
}

/* ── 3. Show search bar on tablets (481-900px) ───────────────
   Search bar was hidden below 480px; show a compact version on
   mid-size phones and tablets. */
@media(min-width: 481px) and (max-width: 900px) {
  .search-bar { display: flex !important; max-width: 220px; flex: 1; }
}

/* ── 4. Product cards: 2-column grid on phones 481-767px ─────
   Single column was too sparse on larger phones. */
@media(min-width: 481px) and (max-width: 767px) {
  .product-grid { grid-template-columns: repeat(2, 1fr) !important; padding: 0 14px; }
  .product-card { flex-direction: column !important; }
  .product-img { width: 100% !important; height: 270px !important; border-radius: 14px 14px 0 0 !important; }
  .product-body { padding: 12px !important; }
}

/* ── 5. FAQ: single column on tablet ────────────────────────── */
@media(min-width: 481px) and (max-width: 1024px) {
  .faq-layout { grid-template-columns: 1fr; gap: 24px; }
  .faq-cta { position: static; }
}

/* ── 6. Newsletter: stack vertically on phones ───────────────
   Previously set row layout via tablet block; override for mobile. */
@media(max-width: 640px) {
  .newsletter-inner { flex-direction: column !important; gap: 28px; padding: 36px 16px !important; text-align: center; }
  .newsletter-content h2 { text-align: center !important; }
  .newsletter-content p { text-align: center !important; }
  .newsletter-form-wrap { max-width: 100% !important; }
  .newsletter-form { flex-direction: column !important; border-radius: 10px; }
  .newsletter-form input { border-radius: 8px 8px 0 0; }
  .newsletter-form button { border-radius: 0 0 8px 8px; width: 100%; }
}

/* ── 7. Cart drawer: full width on phones ─────────────────────
   Ensure cart drawer fills screen on small devices. */
@media(max-width: 440px) {
  .cart-drawer { width: 100vw !important; }
  .drawer-header { padding: 16px; }
  .drawer-body { padding: 12px 14px; }
  .drawer-footer { padding: 12px 14px; }
}

/* ── 8. Location: always show map on tablets ─────────────────
   Map was hidden at 480px via location-grid: 1fr, display:none.
   Override to show it on 481-768px with stacked layout. */
@media(min-width: 481px) and (max-width: 768px) {
  .location-map { display: block !important; min-height: 280px; }
  .location-grid { grid-template-columns: 1fr !important; gap: 20px; }
}

/* ── 9. Why-us grid: 2-col on tablet ─────────────────────────
   Was set to 1-col at 768px; 2-col looks better on mid tablets. */
@media(min-width: 600px) and (max-width: 768px) {
  .why-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ── 10. About: mission/vision cards stacked on tablets ───────
   Side-by-side on tablets where screen is wide enough. */
@media(min-width: 600px) and (max-width: 900px) {
  .abt-mv-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ── 11. Mobile modal: full height, better scroll ────────────
   Prevent modal from being cut off on small phones. */
@media(max-width: 640px) {
  .modal-overlay { padding: 0; align-items: flex-end; }
  .modal-box { border-radius: 20px 20px 0 0; max-height: 95vh; width: 100%; max-width: 100%; }
}

/* ── 12. Offers carousel header: stack nav on phones ─────────
   Counter and arrows don't fit next to heading on small screens. */
@media(max-width: 480px) {
  .ofc-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .ofc-nav { align-self: flex-end; }
}

/* ── 13. Section header: stack on phones ─────────────────────
   "View All" link wraps awkwardly next to title on small screens. */
@media(max-width: 480px) {
  .section-header { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ── 14. Footer brand: full width, centred on phones ─────────
   Footer brand column takes 2fr which breaks on narrow screens. */
@media(max-width: 640px) {
  .footer-main { grid-template-columns: 1fr !important; }
  .footer-brand { text-align: center; }
  .social-links { justify-content: center; }
}

/* ── 15. Feature strip — prevent overflow on phones ──────────
   Ensure feature text doesn't overflow narrow cells. */
@media(max-width: 360px) {
  .feature h4 { font-size: 11px; }
  .feature p { font-size: 9px; }
  .feature-icon { width: 36px; height: 36px; font-size: 14px; }
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE CARD SYSTEM — COMPLETE OVERHAUL
   ──────────────────────────────────────────────────────────────
   Mobile  (≤480px)  : Horizontal LIST   — 1 column
   S-Tablet(481-767px): Vertical grid    — 2 columns
   Tablet  (768-1024px): Vertical grid  — 3 columns
   Desktop (≥1025px) : Vertical grid    — 4 columns
   ════════════════════════════════════════════════════════════════ */

/* ┌──────────────────────────────────────────────────────────────
   │  SHARED CARD AESTHETICS (all sizes)
   └────────────────────────────────────────────────────────────── */
.product-card,
.menu-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}
.product-card:hover,
.menu-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12) !important;
}

/* ┌──────────────────────────────────────────────────────────────
   │  PRODUCT CARDS  (homepage: Best Sellers, Today's Specials)
   └────────────────────────────────────────────────────────────── */

/* ── Desktop ≥1025px — 4 columns ─────────────────────────────── */
@media(min-width: 1025px) {
  .product-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    padding: 0 !important;
  }
  .product-card {
    display: flex !important;
    flex-direction: column !important;
    border-radius: 16px !important;
    overflow: hidden !important;
  }
  .product-img {
    width: 100% !important;
    height: 200px !important;
    min-height: 200px !important;
    border-radius: 0 !important;
    flex-shrink: unset !important;
  }
  .product-body { padding: 18px !important; }
  .product-name { font-size: 16px !important; }
  .product-price { font-size: 20px !important; }
  .add-btn { padding: 9px 16px !important; font-size: 13px !important; }
}

/* ── Tablet landscape 769px–1024px — 3 columns ───────────────── */
@media(min-width: 769px) and (max-width: 1024px) {
  .product-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px !important;
    padding: 0 !important;
  }
  .product-card {
    display: flex !important;
    flex-direction: column !important;
    border-radius: 16px !important;
    overflow: hidden !important;
  }
  .product-img {
    width: 100% !important;
    height: 185px !important;
    min-height: 185px !important;
    border-radius: 0 !important;
    flex-shrink: unset !important;
  }
  .product-body { padding: 15px !important; }
  .product-name { font-size: 15px !important; }
  .product-price { font-size: 19px !important; }
  .add-btn { padding: 8px 14px !important; font-size: 13px !important; }
}

/* ── Small tablet 481px–768px — 2 columns ───────────────────── */
@media(min-width: 481px) and (max-width: 768px) {
  .product-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
    padding: 0 !important;
  }
  .product-card {
    display: flex !important;
    flex-direction: column !important;
    border-radius: 16px !important;
    overflow: hidden !important;
  }
  .product-img {
    width: 100% !important;
    height: 270px !important;
    min-height: 165px !important;
    border-radius: 0 !important;
    flex-shrink: unset !important;
  }
  .product-body { padding: 13px !important; }
  .product-name { font-size: 14px !important; }
  .product-price { font-size: 18px !important; }
  .add-btn { padding: 8px 13px !important; font-size: 12px !important; }
}

/* ── Mobile ≤480px — Single column grid (original card design) ── */
@media(max-width: 480px) {
  .product-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    padding: 0 !important;
  }
  .product-card {
    display: flex !important;
    flex-direction: column !important;
    border-radius: 16px !important;
    overflow: hidden !important;
  }
  .product-img {
    width: 100% !important;
    height: 270px !important;
    min-height: 180px !important;
    border-radius: 0 !important;
    flex-shrink: unset !important;
  }
  .product-body { padding: 14px !important; }
  .product-name { font-size: 15px !important; }
  .product-price { font-size: 19px !important; }
  .add-btn { padding: 8px 14px !important; font-size: 13px !important; }
}


/* ┌──────────────────────────────────────────────────────────────
   │  MENU PAGE CARDS  (.menu-product-grid / .menu-card)
   └────────────────────────────────────────────────────────────── */

/* ── Desktop ≥1025px — 4 columns ─────────────────────────────── */
@media(min-width: 1025px) {
  .menu-product-grid:not(.list-view) {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 18px !important;
  }
  .menu-product-grid:not(.list-view) .menu-card {
    display: flex !important;
    flex-direction: column !important;
    border-radius: 16px !important;
    overflow: hidden !important;
  }
  .menu-product-grid:not(.list-view) .mc-img { height: 185px !important; border-radius: 0 !important; }
  .menu-product-grid:not(.list-view) .mc-body { padding: 14px 16px 16px !important; }
  .menu-product-grid:not(.list-view) .mc-name { font-size: 15px !important; }
  .menu-product-grid:not(.list-view) .mc-price { font-size: 19px !important; }
}

/* ── Tablet landscape 769px–1024px — 3 columns ───────────────── */
@media(min-width: 769px) and (max-width: 1024px) {
  .menu-product-grid:not(.list-view) {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px !important;
  }
  .menu-product-grid:not(.list-view) .menu-card {
    display: flex !important;
    flex-direction: column !important;
    border-radius: 16px !important;
    overflow: hidden !important;
  }
  .menu-product-grid:not(.list-view) .mc-img { height: 170px !important; border-radius: 0 !important; }
  .menu-product-grid:not(.list-view) .mc-body { padding: 13px 14px 15px !important; }
  .menu-product-grid:not(.list-view) .mc-name { font-size: 14px !important; }
  .menu-product-grid:not(.list-view) .mc-price { font-size: 18px !important; }
  .menu-product-grid:not(.list-view) .mc-add-btn { padding: 8px 13px !important; font-size: 12px !important; }
}

/* ── Small tablet 481px–768px — 2 columns ───────────────────── */
@media(min-width: 481px) and (max-width: 768px) {
  .menu-product-grid:not(.list-view) {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 13px !important;
  }
  .menu-product-grid:not(.list-view) .menu-card {
    display: flex !important;
    flex-direction: column !important;
    border-radius: 14px !important;
    overflow: hidden !important;
  }
  .menu-product-grid:not(.list-view) .mc-img { height: 155px !important; border-radius: 0 !important; }
  .menu-product-grid:not(.list-view) .mc-body { padding: 12px 12px 14px !important; }
  .menu-product-grid:not(.list-view) .mc-name { font-size: 13px !important; }
  .menu-product-grid:not(.list-view) .mc-price { font-size: 17px !important; }
  .menu-product-grid:not(.list-view) .mc-add-btn { padding: 7px 11px !important; font-size: 12px !important; }
}

/* ── Mobile ≤480px — Single column grid (original card design) ── */
@media(max-width: 480px) {
  .menu-product-grid:not(.list-view) {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .menu-product-grid:not(.list-view) .menu-card {
    display: flex !important;
    flex-direction: column !important;
    border-radius: 16px !important;
    overflow: hidden !important;
  }
  .menu-product-grid:not(.list-view) .mc-img { height: 270px !important; border-radius: 0 !important; }
  .menu-product-grid:not(.list-view) .mc-body { padding: 14px 15px 16px !important; }
  .menu-product-grid:not(.list-view) .mc-name { font-size: 15px !important; }
  .menu-product-grid:not(.list-view) .mc-price { font-size: 18px !important; }
  .menu-product-grid:not(.list-view) .mc-add-btn { padding: 8px 13px !important; font-size: 13px !important; }
}


/* ┌──────────────────────────────────────────────────────────────
   │  CATEGORY CARDS  (.cat-cards / .cat-card)
   └────────────────────────────────────────────────────────────── */

/* Desktop ≥1025px — 6 columns */
@media(min-width: 1025px) {
  .cat-cards {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 16px !important;
    padding: 0 !important;
  }
  .cat-card {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 24px 14px 18px !important;
    border-radius: 18px !important;
    max-width: none !important;
  }
  .cat-card .emoji { width: 70px !important; height: 70px !important; font-size: 36px !important; margin: 0 auto 14px !important; flex-shrink: 0 !important; }
  .cat-card h4 { font-size: 14px !important; margin-bottom: 5px !important; }
  .cat-card .count { font-size: 12px !important; margin-left: 0 !important; }
}

/* Tablet landscape 769px–1024px — 4 columns */
@media(min-width: 769px) and (max-width: 1024px) {
  .cat-cards {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 14px !important;
    padding: 0 !important;
  }
  .cat-card {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 20px 12px 16px !important;
    border-radius: 16px !important;
    max-width: none !important;
  }
  .cat-card .emoji { width: 62px !important; height: 62px !important; font-size: 31px !important; margin: 0 auto 11px !important; flex-shrink: 0 !important; }
  .cat-card h4 { font-size: 13px !important; margin-bottom: 3px !important; }
  .cat-card .count { font-size: 11px !important; margin-left: 0 !important; }
}

/* Small tablet 481px–768px — 3 columns */
@media(min-width: 481px) and (max-width: 768px) {
  .cat-cards {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 12px !important;
    padding: 0 !important;
  }
  .cat-card {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 18px 10px 14px !important;
    border-radius: 14px !important;
    max-width: none !important;
  }
  .cat-card .emoji { width: 56px !important; height: 56px !important; font-size: 28px !important; margin: 0 auto 9px !important; flex-shrink: 0 !important; }
  .cat-card h4 { font-size: 12px !important; margin-bottom: 2px !important; }
  .cat-card .count { font-size: 10px !important; margin-left: 0 !important; }
}

/* Mobile ≤480px — 2 columns (vertical cards, compact) */
@media(max-width: 480px) {
  .cat-cards {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    padding: 0 !important;
  }
  .cat-card {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 18px 10px 14px !important;
    border-radius: 14px !important;
    max-width: none !important;
    border: 2px solid transparent !important;
  }
  .cat-card .emoji { width: 54px !important; height: 54px !important; font-size: 27px !important; margin: 0 auto 10px !important; flex-shrink: 0 !important; }
  .cat-card h4 { font-size: 13px !important; margin-bottom: 2px !important; }
  .cat-card .count { font-size: 11px !important; margin-left: 0 !important; }
}


/* ┌──────────────────────────────────────────────────────────────
   │  COMBO CARDS (.combo-grid / .combo-card)
   └────────────────────────────────────────────────────────────── */

/* Desktop ≥1025px — auto-fit, 3-4 per row */
@media(min-width: 1025px) {
  .combo-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
    gap: 24px !important;
  }
}
/* Tablet 769px–1024px — 3 columns */
@media(min-width: 769px) and (max-width: 1024px) {
  .combo-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 18px !important;
  }
}
/* Small tablet 481px–768px — 2 columns */
@media(min-width: 481px) and (max-width: 768px) {
  .combo-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }
  .combo-card-img { height: 270px !important; }
}
/* Mobile ≤480px — 1 column */
@media(max-width: 480px) {
  .combo-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }
  .combo-card-img { height: 270px !important; }
}


/* ┌──────────────────────────────────────────────────────────────
   │  SECTION PADDING — tighter on mobile, comfortable on desktop
   └────────────────────────────────────────────────────────────── */
@media(max-width: 480px) {
  .section { padding: 32px 14px !important; }
  .section-header { margin-bottom: 18px !important; }
}
@media(min-width: 481px) and (max-width: 768px) {
  .section { padding: 40px 16px !important; }
}
@media(min-width: 769px) and (max-width: 1024px) {
  .section { padding: 48px 20px !important; }
}
@media(min-width: 1025px) {
  .section { padding: 56px 24px !important; }
}

/* ═══════════════════════════════════════════════════
   USER ORDER NOTIFICATION BELL
   ═══════════════════════════════════════════════════ */
.user-notif-wrapper {
  position: relative;
}

.user-notif-btn {
  font-size: 17px !important;
}

/* Ringing animation for new notification */
@keyframes userBellRing {
  0%   { transform: rotate(0); }
  15%  { transform: rotate(20deg); }
  30%  { transform: rotate(-18deg); }
  45%  { transform: rotate(14deg); }
  60%  { transform: rotate(-10deg); }
  75%  { transform: rotate(6deg); }
  100% { transform: rotate(0); }
}

.user-notif-btn.ringing i {
  animation: userBellRing 0.6s ease;
  display: inline-block;
}

/* Dropdown panel */
.user-notif-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: -8px;
  width: 320px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  z-index: 9999;
  border: 1px solid #F0F0F0;
  overflow: hidden;
}

.user-notif-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  border-bottom: 1px solid #F5F5F5;
  background: #FAFAFA;
}

.user-notif-header span {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--dark);
}

.user-notif-clear-btn {
  background: none;
  border: none;
  color: var(--red);
  font-size: 11px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.15s;
}

.user-notif-clear-btn:hover {
  background: #FFF0F0;
}

.user-notif-list {
  max-height: 310px;
  overflow-y: auto;
}

.user-notif-list::-webkit-scrollbar { width: 4px; }
.user-notif-list::-webkit-scrollbar-thumb { background: #DDD; border-radius: 4px; }

.user-notif-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid #F7F7F7;
  text-decoration: none;
  color: var(--text);
  transition: background 0.15s;
  cursor: pointer;
}

.user-notif-item:hover {
  background: #FFF8F6;
}

.user-notif-item.unread {
  background: #FFF5F0;
}

.user-notif-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  flex-shrink: 0;
}

.user-notif-item.unread .user-notif-icon {
  background: #FF6B35;
}

.user-notif-body {
  flex: 1;
  min-width: 0;
}

.user-notif-body strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-notif-body small {
  font-size: 12px;
  color: var(--muted);
  display: block;
}

.user-notif-body .est-time {
  font-size: 11px;
  color: #D97706;
  font-weight: 600;
  margin-top: 2px;
  display: block;
}

.user-notif-status-pill {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  flex-shrink: 0;
  white-space: nowrap;
}

.user-notif-empty {
  padding: 32px 16px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

.user-notif-empty i {
  font-size: 26px;
  margin-bottom: 8px;
  display: block;
  color: #E0E0E0;
}

.user-notif-empty p {
  margin: 0;
}

.user-notif-footer {
  padding: 10px 16px;
  text-align: center;
  border-top: 1px solid #F0F0F0;
  background: #FAFAFA;
}

.user-notif-footer a {
  font-size: 12px;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
}

.user-notif-footer a:hover {
  text-decoration: underline;
}

/* Live estimation banner on track page */
.track-live-estimate {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #FFFBEB, #FEF3C7);
  border: 1px solid #FDE68A;
  border-radius: 10px;
  padding: 10px 16px;
  margin-top: 10px;
  font-size: 13px;
  color: #92400E;
  font-weight: 600;
}

.track-live-estimate i {
  color: #D97706;
  font-size: 16px;
  flex-shrink: 0;
}

/* Pulse animation for live indicator dot */
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.85); }
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  display: inline-block;
  animation: livePulse 1.4s ease-in-out infinite;
  flex-shrink: 0;
}

/* Mobile: keep notification bell visible alongside cart */
@media (max-width: 768px) {
  .user-notif-wrapper {
    display: none !important;
  }
}

/* ══════════════════════════════════════════════════════════════════
   TOPPING SUGGESTION POPUP (Flavors-style bottom sheet)
   ══════════════════════════════════════════════════════════════════ */
#toppingsSuggestPopup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}
#toppingsSuggestPopup.open {
  display: block;
}
.tsp-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(3px);
}
.tsp-sheet {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark, #18120A);
  border-radius: 20px 20px 0 0;
  padding: 32px 22px 40px;
  max-height: 82vh;
  overflow-y: auto;
  animation: tspSlideUp .32s cubic-bezier(.4,0,.2,1);
  color: #fff;
  max-width: 540px;
  margin: 0 auto;
}
@keyframes tspSlideUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}

/* Handle bar */
.tsp-sheet::before {
  content: '';
  display: block;
  width: 36px;
  height: 4px;
  background: rgba(255,255,255,.2);
  border-radius: 2px;
  margin: -14px auto 20px;
}

.tsp-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: rgba(255,255,255,.1);
  border: none;
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.tsp-close:hover { background: rgba(255,255,255,.22); }

.tsp-header { margin-bottom: 20px; padding-right: 40px; }
.tsp-item-name {
  font-size: 19px;
  font-weight: 800;
  color: var(--gold, #F59E0B);
  margin-bottom: 4px;
  font-family: 'DM Sans', sans-serif;
}
.tsp-subtitle {
  font-size: 13px;
  color: rgba(255,255,255,.6);
}

.tsp-toppings {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.tsp-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.14);
  border-radius: 40px;
  padding: 9px 15px 9px 11px;
  cursor: pointer;
  transition: background .18s, border-color .18s;
  color: #fff;
  font-size: 13px;
  user-select: none;
}
.tsp-chip:hover {
  border-color: var(--red, #F97316);
  background: rgba(249,115,22,.1);
}
.tsp-chip.selected {
  background: var(--red, #F97316);
  border-color: var(--red, #F97316);
}
.tsp-chip-emoji { font-size: 18px; line-height: 1; }
.tsp-chip-name  { font-weight: 600; }
.tsp-chip-price {
  color: var(--gold, #F59E0B);
  font-size: 12px;
  font-weight: 700;
}
.tsp-chip.selected .tsp-chip-price { color: rgba(255,255,255,.85); }
.tsp-chip-check { margin-left: 2px; font-size: 14px; opacity: .65; }
.tsp-chip.selected .tsp-chip-check { opacity: 1; }

.tsp-footer {
  display: flex;
  gap: 10px;
}
.tsp-skip {
  flex: 1;
  padding: 14px;
  border: 1.5px solid rgba(255,255,255,.18);
  background: transparent;
  color: rgba(255,255,255,.65);
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  transition: border-color .2s, color .2s;
}
.tsp-skip:hover { border-color: rgba(255,255,255,.45); color: #fff; }
.tsp-add {
  flex: 2;
  padding: 14px;
  background: var(--red, #F97316);
  border: none;
  color: #fff;
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  transition: background .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.tsp-add:hover { background: #e0620a; }

/* Mobile: full-width sheet */
@media (max-width: 540px) {
  .tsp-sheet { border-radius: 18px 18px 0 0; padding: 28px 16px 34px; }
}


