/* ==========================================================================
   Cee Me Cafe - Complete Stylesheet
   Caribbean Fusion Restaurant - Miami, FL
   ========================================================================== */

/* -------------------------- CSS Variables / Themes ----------------------- */
:root {
  /* Default Theme: Tropical Sunset */
  --primary-color: #00A8A8;
  --primary-dark: #007a7a;
  --primary-light: #4fd6d6;
  --secondary-color: #FF6B6B;
  --secondary-dark: #e04e4e;
  --accent-color: #FFD93D;
  --accent-warm: #FF8C42;
  --brand-red: #C8102E;
  --brand-black: #0a0a0a;

  --bg: #ffffff;
  --bg-alt: #f7f9fc;
  --bg-dark: #0f1724;
  --surface: #ffffff;
  --surface-alt: #f1f5f9;
  --text: #1a1a1a;
  --text-muted: #566072;
  --text-light: #ffffff;
  --border: #e6ebf1;
  --shadow-sm: 0 2px 6px rgba(12, 20, 34, 0.06);
  --shadow-md: 0 10px 30px rgba(12, 20, 34, 0.08);
  --shadow-lg: 0 20px 55px rgba(12, 20, 34, 0.18);

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', 'Segoe UI', Roboto, Arial, sans-serif;
  --font-script: 'Brush Script MT', 'Lucida Handwriting', cursive;

  --transition: 260ms cubic-bezier(.2,.9,.25,1);
  --max-width: 1240px;
  --header-height: 84px;

  --gradient-hero: linear-gradient(135deg, rgba(0,168,168,.92) 0%, rgba(255,107,107,.85) 55%, rgba(255,140,66,.9) 100%);
  --gradient-accent: linear-gradient(135deg, #FF6B6B 0%, #FFD93D 100%);
  --gradient-brand: linear-gradient(135deg, #00A8A8 0%, #00607a 100%);
}

/* Theme: Ocean Breeze */
[data-theme="ocean"] {
  --primary-color: #0ea5e9;
  --primary-dark: #0369a1;
  --primary-light: #7dd3fc;
  --secondary-color: #22d3ee;
  --accent-color: #a7f3d0;
  --accent-warm: #38bdf8;
  --gradient-hero: linear-gradient(135deg, rgba(14,165,233,.92), rgba(6,182,212,.85) 55%, rgba(167,243,208,.85) 100%);
  --gradient-accent: linear-gradient(135deg, #0ea5e9 0%, #22d3ee 100%);
  --gradient-brand: linear-gradient(135deg, #0369a1 0%, #0ea5e9 100%);
}

/* Theme: Island Night (dark) */
[data-theme="night"] {
  --primary-color: #f59e0b;
  --primary-dark: #b45309;
  --primary-light: #fcd34d;
  --secondary-color: #e11d48;
  --accent-color: #a78bfa;
  --accent-warm: #f97316;
  --bg: #0b1020;
  --bg-alt: #0f172a;
  --surface: #111a2e;
  --surface-alt: #15223d;
  --text: #f1f5f9;
  --text-muted: #9aa6bd;
  --border: #1f2a44;
  --shadow-md: 0 10px 30px rgba(0,0,0,.6);
  --shadow-lg: 0 30px 80px rgba(0,0,0,.7);
  --gradient-hero: linear-gradient(135deg, rgba(245,158,11,.85), rgba(225,29,72,.78) 55%, rgba(167,139,250,.82) 100%);
  --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #e11d48 100%);
  --gradient-brand: linear-gradient(135deg, #1f2a44 0%, #f59e0b 100%);
}

/* Theme: Fusion Modern */
[data-theme="fusion"] {
  --primary-color: #C8102E;
  --primary-dark: #8c0b20;
  --primary-light: #ef4c6b;
  --secondary-color: #111111;
  --accent-color: #FFD93D;
  --accent-warm: #FF6B6B;
  --gradient-hero: linear-gradient(135deg, rgba(200,16,46,.92), rgba(17,17,17,.9) 55%, rgba(255,217,61,.85) 100%);
  --gradient-accent: linear-gradient(135deg, #C8102E 0%, #FFD93D 100%);
  --gradient-brand: linear-gradient(135deg, #111111 0%, #C8102E 100%);
}

/* -------------------------- Base / Reset --------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--primary-color); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--text); line-height: 1.2; margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 4.2vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; color: var(--text-muted); }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
section { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 14px; }
.section-subtitle { text-align: center; color: var(--text-muted); max-width: 680px; margin: 0 auto 56px; font-size: 1.05rem; }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
:focus-visible { outline: 3px solid var(--primary-color); outline-offset: 3px; border-radius: 4px; }

/* -------------------------- Buttons -------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 26px; border-radius: var(--radius-pill); border: 2px solid transparent;
  font: 600 .95rem/1 var(--font-body); cursor: pointer; transition: all var(--transition);
  text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--gradient-accent); color: #fff; box-shadow: 0 8px 22px rgba(255,107,107,.35); }
.btn-primary:hover { transform: translateY(-2px); color:#fff; box-shadow: 0 14px 30px rgba(255,107,107,.45); }
.btn-secondary { background: var(--surface); color: var(--primary-color); border-color: var(--primary-color); }
.btn-secondary:hover { background: var(--primary-color); color: #fff; }
.btn-outline { background: transparent; color: var(--text-light); border-color: rgba(255,255,255,.8); }
.btn-outline:hover { background: #fff; color: var(--primary-color); }
.btn-ghost { background: transparent; color: var(--text); padding: 8px 14px; }
.btn-ghost:hover { background: var(--surface-alt); }
.btn-small { padding: 8px 16px; font-size: .85rem; }
.btn-block { width: 100%; }

/* -------------------------- Tooltips ------------------------------------- */
[data-tooltip] { position: relative; }
[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute; bottom: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) scale(.8); transform-origin: bottom center;
  background: #111; color: #fff; padding: 6px 12px; font-size: .75rem;
  border-radius: 6px; white-space: nowrap; pointer-events: none;
  opacity: 0; transition: opacity var(--transition), transform var(--transition);
  z-index: 9999;
}
[data-tooltip]::before {
  content: ""; position: absolute; bottom: calc(100% + 4px); left: 50%;
  transform: translateX(-50%); border: 6px solid transparent; border-top-color: #111;
  opacity: 0; transition: opacity var(--transition); z-index: 9999;
}
[data-tooltip]:hover::after, [data-tooltip]:hover::before,
[data-tooltip]:focus-visible::after, [data-tooltip]:focus-visible::before { opacity: 1; transform: translateX(-50%) scale(1); }

/* -------------------------- Top bar / Announcement ----------------------- */
.topbar {
  background: var(--brand-black); color: #fff; font-size: .85rem;
  padding: 8px 20px; display: flex; justify-content: space-between;
  gap: 12px; flex-wrap: wrap; align-items: center;
}
.topbar a { color: var(--accent-color); }
.topbar .topbar-right { display: flex; align-items: center; gap: 16px; }

/* -------------------------- Language Selector ---------------------------- */
.language-selector {
  position: relative; display: inline-block;
}
.language-btn {
  background: transparent; border: 1px solid rgba(255,255,255,.3); color: #fff;
  padding: 4px 12px; border-radius: var(--radius-pill); cursor: pointer;
  font-size: .8rem; display: inline-flex; align-items: center; gap: 6px;
  transition: all var(--transition);
}
.language-btn:hover { background: rgba(255,255,255,.15); }
.language-dropdown {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--surface); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); min-width: 180px;
  padding: 6px 0; opacity: 0; visibility: hidden;
  transform: translateY(-10px); transition: all var(--transition); z-index: 1000;
}
.language-dropdown.active { opacity:1; visibility:visible; transform: translateY(0); }
.language-dropdown button {
  width: 100%; text-align: left; padding: 10px 16px;
  background: transparent; border: none; cursor: pointer; color: var(--text);
  display: flex; align-items: center; gap: 10px; font-size: .9rem;
}
.language-dropdown button:hover { background: var(--surface-alt); }
.language-dropdown button.active { color: var(--primary-color); font-weight: 600; }
.flag { font-size: 1.2rem; }

/* -------------------------- Navigation ----------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(150%) blur(18px);
  -webkit-backdrop-filter: saturate(150%) blur(18px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
[data-theme="night"] .site-header { background: rgba(15,23,42,.85); }
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-height); gap: 20px;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--text); flex-shrink: 0;
}
.logo img { height: 58px; width: auto; transition: transform var(--transition); }
.logo:hover img { transform: scale(1.05) rotate(-3deg); }
.logo-text { display: none; }
.nav-links {
  display: flex; gap: 4px; list-style: none; margin: 0; padding: 0;
  align-items: center;
}
.nav-links > li { position: relative; }
.nav-links a {
  color: var(--text); font-weight: 500; font-size: .95rem;
  padding: 10px 14px; border-radius: var(--radius-sm);
  display: inline-flex; align-items: center; gap: 4px;
}
.nav-links a:hover, .nav-links a.active { background: var(--surface-alt); color: var(--primary-color); }
.nav-links .has-dropdown > a::after { content: "\25BE"; font-size: .7rem; margin-left: 2px; }

.dropdown {
  position: absolute; top: 100%; left: 0; min-width: 220px;
  background: var(--surface); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 8px 0;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all var(--transition); list-style: none; margin: 8px 0 0;
}
.nav-links li:hover > .dropdown,
.nav-links li:focus-within > .dropdown { opacity:1; visibility:visible; transform: translateY(0); }
.dropdown a { padding: 10px 20px; display: block; border-radius: 0; }
.dropdown a:hover { background: var(--surface-alt); }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-icon-btn {
  background: transparent; border: none; cursor: pointer;
  width: 42px; height: 42px; border-radius: 50%; color: var(--text);
  display: inline-flex; align-items: center; justify-content: center;
  position: relative; transition: background var(--transition);
}
.nav-icon-btn:hover { background: var(--surface-alt); color: var(--primary-color); }
.nav-icon-btn svg { width: 22px; height: 22px; }
.cart-badge {
  position: absolute; top: 2px; right: 2px; min-width: 20px; height: 20px;
  padding: 0 5px; border-radius: 999px; background: var(--secondary-color);
  color: #fff; font-size: .7rem; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  transform: scale(0); transition: transform var(--transition);
}
.cart-badge.show { transform: scale(1); }
.cart-badge.bounce { animation: bounce .5s ease; }

.mobile-toggle {
  display: none; background: transparent; border: none; cursor: pointer;
  width: 42px; height: 42px; border-radius: 50%;
  align-items: center; justify-content: center;
}
.mobile-toggle span {
  display: block; width: 22px; height: 2px; background: var(--text);
  position: relative; transition: all var(--transition);
}
.mobile-toggle span::before, .mobile-toggle span::after {
  content: ""; position: absolute; left: 0; width: 22px; height: 2px;
  background: var(--text); transition: all var(--transition);
}
.mobile-toggle span::before { top: -7px; }
.mobile-toggle span::after { top: 7px; }
.mobile-toggle.active span { background: transparent; }
.mobile-toggle.active span::before { top: 0; transform: rotate(45deg); }
.mobile-toggle.active span::after { top: 0; transform: rotate(-45deg); }

/* -------------------------- Hero ---------------------------------------- */
.hero {
  position: relative; min-height: 85vh;
  display: flex; align-items: center; justify-content: center;
  color: #fff; text-align: center; overflow: hidden;
  padding: 120px 20px 80px;
  background: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.35)),
    url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: var(--gradient-hero); opacity: .55; mix-blend-mode: multiply;
}
.hero-content { position: relative; z-index: 2; max-width: 900px; }
.hero-eyebrow {
  display: inline-block; font-size: .85rem; letter-spacing: 3px;
  text-transform: uppercase; background: rgba(255,255,255,.15);
  padding: 8px 18px; border-radius: var(--radius-pill);
  backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.25);
  margin-bottom: 20px; color: #fff; animation: fadeInUp .8s ease both;
}
.hero h1 {
  color: #fff; margin-bottom: 18px; animation: fadeInUp .8s ease both .1s;
  text-shadow: 0 4px 20px rgba(0,0,0,.5);
}
.hero h1 .accent { color: var(--accent-color); font-family: var(--font-script); font-style: italic; }
.hero p {
  font-size: 1.2rem; color: rgba(255,255,255,.95);
  max-width: 660px; margin: 0 auto 34px; animation: fadeInUp .8s ease both .2s;
}
.hero-ctas {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: fadeInUp .8s ease both .3s;
}
.hero-stats {
  margin-top: 60px; display: flex; gap: 40px; justify-content: center;
  flex-wrap: wrap; animation: fadeInUp .8s ease both .4s;
}
.hero-stat { text-align: center; }
.hero-stat strong { display:block; font-size: 2.2rem; font-family: var(--font-display); color: var(--accent-color); }
.hero-stat span { font-size: .85rem; letter-spacing: 2px; text-transform: uppercase; opacity: .8; }

.scroll-down {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 3;
  color: #fff; font-size: .8rem; letter-spacing: 2px; text-transform: uppercase;
  animation: bounce 2s infinite;
}

/* -------------------------- Features ------------------------------------ */
.features { background: var(--bg-alt); }
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--surface); padding: 36px 26px; border-radius: var(--radius-lg);
  text-align: center; box-shadow: var(--shadow-sm);
  transition: all var(--transition); border: 1px solid transparent;
}
.feature-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}
.feature-icon {
  width: 70px; height: 70px; margin: 0 auto 18px; border-radius: 50%;
  background: var(--gradient-accent); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 2rem;
}
.feature-card h3 { margin-bottom: 8px; }

/* -------------------------- Dishes Grid --------------------------------- */
.dishes-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.dish-card {
  background: var(--surface); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all var(--transition);
  display: flex; flex-direction: column; position: relative;
}
.dish-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.dish-img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  transition: transform .6s ease;
}
.dish-card:hover .dish-img { transform: scale(1.08); }
.dish-img-wrap { position: relative; overflow: hidden; }
.dish-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--secondary-color); color: #fff;
  padding: 4px 12px; border-radius: var(--radius-pill);
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
}
.dish-badge.new { background: var(--accent-color); color: #111; }
.dish-badge.popular { background: var(--secondary-color); }
.dish-badge.spicy { background: #e11d48; }

.dish-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.dish-title { font-size: 1.15rem; margin-bottom: 6px; }
.dish-desc { font-size: .9rem; color: var(--text-muted); margin-bottom: 14px; flex: 1; }
.dish-foot { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.dish-price { font-size: 1.25rem; font-weight: 700; color: var(--primary-color); }
.dish-rating { color: #F5A623; font-size: .85rem; display: inline-flex; gap: 4px; align-items: center; }

/* -------------------------- Events ------------------------------------- */
.events { background: var(--bg-alt); }
.events-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.event-card {
  background: var(--surface); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all var(--transition);
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.event-img { width: 100%; height: 200px; object-fit: cover; }
.event-body { padding: 22px; }
.event-date {
  color: var(--secondary-color); font-weight: 700; font-size: .85rem;
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px;
}
.event-tag {
  display: inline-block; padding: 3px 10px; border-radius: var(--radius-pill);
  background: var(--primary-color); color: #fff;
  font-size: .7rem; font-weight: 600; margin-bottom: 10px;
}

/* -------------------------- Testimonials -------------------------------- */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.testimonial {
  background: var(--surface); padding: 30px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); border-top: 4px solid var(--primary-color);
}
.testimonial-stars { color: #F5A623; margin-bottom: 10px; }
.testimonial-body { font-style: italic; color: var(--text); }
.testimonial-author {
  display: flex; align-items: center; gap: 12px; margin-top: 16px;
}
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gradient-accent); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem;
}
.testimonial-author strong { display: block; }
.testimonial-author span { font-size: .85rem; color: var(--text-muted); }

/* -------------------------- CTA Band ------------------------------------ */
.cta-band {
  background: var(--gradient-brand); color: #fff; text-align: center; padding: 80px 20px;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=1600&q=60');
  background-size: cover; opacity: .12; mix-blend-mode: overlay;
}
.cta-band h2 { color: #fff; position: relative; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 600px; margin: 0 auto 28px; position: relative; }
.cta-band .btn { position: relative; }

/* -------------------------- Footer -------------------------------------- */
.site-footer {
  background: var(--brand-black); color: #cbd5e1;
  padding: 70px 20px 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr) 1.1fr 1.1fr;
  gap: 32px;
  max-width: var(--max-width);
  margin: 0 auto;
}
@media (max-width: 1280px) {
  .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr) 1.1fr; }
}
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.site-footer h4 { color: #fff; font-family: var(--font-body); font-size: 1rem; margin-bottom: 18px; letter-spacing: 1px; text-transform: uppercase; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer a { color: #cbd5e1; font-size: .9rem; }
.site-footer a:hover { color: var(--accent-color); }
.footer-brand img { height: 70px; margin-bottom: 14px; }
.footer-brand p { color: #94a3b8; font-size: .9rem; }
.social-links { display: flex; gap: 10px; margin-top: 16px; }
.social-links a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.1); display: inline-flex;
  align-items: center; justify-content: center; color: #fff;
  transition: all var(--transition);
}
.social-links a:hover { background: var(--gradient-accent); transform: translateY(-3px); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; margin-bottom: 12px; }
.footer-contact-item svg { flex-shrink: 0; width: 18px; height: 18px; color: var(--accent-color); margin-top: 3px; }
.footer-bottom {
  margin-top: 50px; padding-top: 24px; text-align: center;
  border-top: 1px solid rgba(255,255,255,.1); font-size: .85rem; color: #94a3b8;
}

/* -------------------------- Cart Sidebar -------------------------------- */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 1000;
  opacity: 0; visibility: hidden; transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.cart-overlay.active { opacity: 1; visibility: visible; }
.cart-sidebar {
  position: fixed; top: 0; right: 0; height: 100vh; width: 420px; max-width: 100%;
  background: var(--surface); z-index: 1001; box-shadow: var(--shadow-lg);
  transform: translateX(100%); transition: transform var(--transition);
  display: flex; flex-direction: column;
}
.cart-sidebar.active { transform: translateX(0); }
.cart-header {
  padding: 22px 24px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.cart-header h3 { margin: 0; }
.cart-close { background: transparent; border: none; font-size: 1.8rem; cursor: pointer; color: var(--text-muted); line-height: 1; }
.cart-close:hover { color: var(--secondary-color); }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-empty { text-align: center; padding: 40px 20px; color: var(--text-muted); }
.cart-empty svg { width: 80px; height: 80px; color: var(--border); margin: 0 auto 14px; }
.cart-item {
  display: flex; gap: 14px; padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item-img { width: 72px; height: 72px; border-radius: var(--radius-sm); object-fit: cover; background: var(--surface-alt); flex-shrink: 0; }
.cart-item-body { flex: 1; }
.cart-item-title { font-weight: 600; font-size: .95rem; margin-bottom: 4px; }
.cart-item-mods { font-size: .8rem; color: var(--text-muted); margin-bottom: 6px; }
.cart-item-foot { display: flex; justify-content: space-between; align-items: center; }
.qty-control { display: inline-flex; align-items: center; border: 1px solid var(--border); border-radius: var(--radius-pill); overflow: hidden; }
.qty-control button { background: var(--surface-alt); border: none; width: 28px; height: 28px; cursor: pointer; font-size: 1rem; color: var(--text); }
.qty-control button:hover { background: var(--primary-color); color: #fff; }
.qty-control span { padding: 0 10px; min-width: 28px; text-align: center; font-weight: 600; font-size: .9rem; }
.cart-item-remove { background: transparent; border: none; cursor: pointer; color: var(--text-muted); font-size: .8rem; text-decoration: underline; }
.cart-item-remove:hover { color: var(--secondary-color); }

.cart-footer { border-top: 1px solid var(--border); padding: 20px 24px; background: var(--bg-alt); }
.cart-totals > div { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: .9rem; color: var(--text-muted); }
.cart-totals .cart-total { font-size: 1.2rem; font-weight: 700; color: var(--text); margin-top: 10px; padding-top: 10px; border-top: 1px dashed var(--border); }

/* -------------------------- Chat Widget -------------------------------- */
.chat-widget { position: fixed; bottom: 24px; right: 24px; z-index: 950; }
.chat-toggle {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--gradient-accent); color: #fff; border: none; cursor: pointer;
  box-shadow: var(--shadow-lg); display: inline-flex; align-items: center; justify-content: center;
  position: relative; transition: all var(--transition);
}
.chat-toggle:hover { transform: scale(1.1) rotate(8deg); }
.chat-toggle svg { width: 28px; height: 28px; }
.chat-toggle::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 0 var(--secondary-color); animation: pulse 2s infinite;
}
.chat-window {
  position: absolute; bottom: 74px; right: 0; width: 340px; max-width: calc(100vw - 40px); height: 480px;
  background: var(--surface); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  display: none; flex-direction: column; overflow: hidden;
  transform-origin: bottom right;
}
.chat-window.active { display: flex; animation: slideIn .3s ease; }
.chat-header {
  background: var(--gradient-brand); color: #fff; padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
}
.chat-avatar { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.2); display:inline-flex; align-items:center; justify-content:center; }
.chat-title { font-weight: 700; margin: 0; font-size: .95rem; }
.chat-status { font-size: .75rem; opacity: .9; display: flex; align-items: center; gap: 6px; }
.status-dot { width: 8px; height: 8px; background: #4ade80; border-radius: 50%; display: inline-block; animation: pulse 2s infinite; }
.chat-close-btn { margin-left: auto; background: transparent; border: none; color: #fff; cursor: pointer; font-size: 1.4rem; line-height: 1; }
.chat-messages { flex: 1; overflow-y: auto; padding: 16px; background: var(--bg-alt); }
.chat-msg { max-width: 85%; padding: 10px 14px; border-radius: 16px; margin-bottom: 10px; font-size: .9rem; line-height: 1.4; animation: fadeInUp .3s ease; }
.chat-msg.bot { background: var(--surface); color: var(--text); border-bottom-left-radius: 4px; box-shadow: var(--shadow-sm); }
.chat-msg.user { background: var(--gradient-accent); color: #fff; margin-left: auto; border-bottom-right-radius: 4px; }
.chat-typing { padding: 10px 14px; background: var(--surface); border-radius: 16px; display: inline-block; box-shadow: var(--shadow-sm); }
.chat-typing span { display: inline-block; width: 6px; height: 6px; background: var(--text-muted); border-radius: 50%; margin: 0 2px; animation: typing 1.2s infinite; }
.chat-typing span:nth-child(2) { animation-delay: .2s; }
.chat-typing span:nth-child(3) { animation-delay: .4s; }
.chat-quick-replies { padding: 8px 16px; display: flex; gap: 6px; flex-wrap: wrap; background: var(--surface); border-top: 1px solid var(--border); }
.chat-quick-replies button { background: var(--surface-alt); border: 1px solid var(--border); padding: 4px 12px; border-radius: var(--radius-pill); font-size: .75rem; cursor: pointer; color: var(--text); transition: all var(--transition); }
.chat-quick-replies button:hover { background: var(--primary-color); color: #fff; border-color: var(--primary-color); }
.chat-input-form { display: flex; padding: 12px 16px; background: var(--surface); border-top: 1px solid var(--border); gap: 8px; }
.chat-input { flex: 1; border: 1px solid var(--border); border-radius: var(--radius-pill); padding: 10px 16px; background: var(--bg-alt); color: var(--text); font-family: inherit; }
.chat-input:focus { outline: none; border-color: var(--primary-color); }
.chat-send { width: 40px; height: 40px; border-radius: 50%; background: var(--gradient-accent); color: #fff; border: none; cursor: pointer; display: inline-flex; align-items:center; justify-content:center; }

/* -------------------------- Theme Switcher ------------------------------ */
.theme-fab {
  position: fixed; bottom: 24px; left: 24px; z-index: 950;
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--surface); box-shadow: var(--shadow-md);
  border: 1px solid var(--border); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--primary-color); transition: all var(--transition);
}
.theme-fab:hover { transform: scale(1.08) rotate(20deg); }
.theme-panel {
  position: fixed; bottom: 90px; left: 24px; z-index: 951;
  background: var(--surface); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 16px;
  display: none; min-width: 220px; border: 1px solid var(--border);
}
.theme-panel.active { display: block; animation: slideIn .3s ease; }
.theme-panel h4 { font-family: var(--font-body); font-size: .85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; color: var(--text-muted); }
.theme-option {
  display: flex; align-items: center; gap: 10px; padding: 8px;
  background: var(--surface-alt); border-radius: var(--radius-sm);
  cursor: pointer; margin-bottom: 6px; border: 2px solid transparent;
  transition: all var(--transition);
}
.theme-option:hover, .theme-option.active { border-color: var(--primary-color); }
.theme-swatch { width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0; box-shadow: inset 0 0 0 2px rgba(255,255,255,.5); }

/* -------------------------- Menu Page ------------------------------------ */
.page-header {
  padding: calc(var(--header-height) + 80px) 20px 80px;
  color: #fff; text-align: center;
  position: relative; overflow: hidden;
  background: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.35)),
    url('https://images.unsplash.com/photo-1555939594-58d7cb561ad1?auto=format&fit=crop&w=2000&q=60') center/cover;
}
.page-header::after {
  content: ""; position: absolute; inset: 0;
  background: var(--gradient-hero); opacity: .45; mix-blend-mode: multiply;
}
.page-header > * { position: relative; z-index: 2; }
.page-header h1 { color: #fff; margin-bottom: 10px; }
.page-header p { color: rgba(255,255,255,.9); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.breadcrumb { font-size: .85rem; opacity: .85; }
.breadcrumb a { color: #fff; text-decoration: underline; }

.menu-tabs {
  display: flex; gap: 8px; overflow-x: auto; padding: 20px 0;
  scrollbar-width: thin; position: sticky; top: var(--header-height);
  z-index: 50; background: var(--bg); border-bottom: 1px solid var(--border);
}
.menu-tab {
  background: var(--surface-alt); border: 1px solid transparent;
  padding: 10px 20px; border-radius: var(--radius-pill);
  cursor: pointer; white-space: nowrap; font-size: .9rem;
  color: var(--text); font-weight: 600; transition: all var(--transition);
  flex-shrink: 0;
}
.menu-tab:hover { background: var(--surface); border-color: var(--primary-color); color: var(--primary-color); }
.menu-tab.active { background: var(--gradient-accent); color: #fff; border-color: transparent; }
.menu-section { padding: 40px 0; }
.menu-section h2 { margin-bottom: 6px; }
.menu-section .section-intro { color: var(--text-muted); margin-bottom: 30px; }
.menu-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* -------------------------- Modal --------------------------------------- */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.65);
  z-index: 1100; display: none; align-items: center; justify-content: center;
  padding: 20px; backdrop-filter: blur(6px);
}
.modal-overlay.active { display: flex; animation: fadeInUp .3s ease; }
.modal {
  background: var(--surface); border-radius: var(--radius-lg);
  max-width: 520px; width: 100%; max-height: 90vh; overflow-y: auto;
  animation: slideIn .3s ease;
}
.modal-header { padding: 20px 24px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.modal-close { background: transparent; border: none; font-size: 1.8rem; cursor: pointer; color: var(--text-muted); line-height: 1; }
.modal-body { padding: 24px; }
.modal-body img { width: 100%; border-radius: var(--radius); margin-bottom: 16px; max-height: 200px; object-fit: cover; }
.modal-footer { padding: 16px 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; gap: 10px; background: var(--bg-alt); position: sticky; bottom: 0; }
.option-group { margin-bottom: 18px; }
.option-group h4 { margin-bottom: 8px; font-family: var(--font-body); font-size: 1rem; }
.option-group small { color: var(--text-muted); font-weight: 400; margin-left: 6px; }
.option-item { display: flex; align-items: center; padding: 10px 12px; background: var(--surface-alt); border-radius: var(--radius-sm); margin-bottom: 6px; cursor: pointer; }
.option-item:hover { background: var(--primary-light); color: #fff; }
.option-item input { accent-color: var(--primary-color); margin-right: 10px; }
.option-label { flex: 1; }
.option-price { color: var(--text-muted); font-size: .85rem; }

/* -------------------------- Gallery ------------------------------------- */
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.gallery-item {
  aspect-ratio: 1; overflow: hidden; border-radius: var(--radius);
  cursor: pointer; position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item::after {
  content: "\1F50D"; position: absolute; inset: 0;
  background: rgba(0,0,0,.4); color: #fff; font-size: 2rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition);
}
.gallery-item:hover::after { opacity: 1; }

/* -------------------------- Forms --------------------------------------- */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.form-control {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); background: var(--surface); color: var(--text);
  font-family: inherit; font-size: .95rem; transition: all var(--transition);
}
.form-control:focus { outline: none; border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(0,168,168,.15); }
.form-control.textarea { min-height: 110px; resize: vertical; }
.form-hint { font-size: .8rem; color: var(--text-muted); margin-top: 4px; }

/* -------------------------- About / Story ------------------------------- */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.split-grid img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }

/* -------------------------- Chef Cards --------------------------------- */
.chef-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; }
.chef-card { background: var(--surface); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); text-align: center; transition: all var(--transition); }
.chef-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.chef-img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.chef-body { padding: 22px; }
.chef-name { font-size: 1.2rem; margin-bottom: 2px; }
.chef-role { color: var(--primary-color); font-size: .85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }

/* -------------------------- Contact Map -------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: start; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; height: 420px; box-shadow: var(--shadow-md); }
.map-wrap iframe { width: 100%; height: 100%; border: none; }
.hours-card { background: var(--surface); padding: 24px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); margin-bottom: 18px; }
.hours-card h4 { margin-bottom: 12px; }
.hours-row { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px dashed var(--border); font-size: .92rem; }
.hours-row:last-child { border: none; }

/* -------------------------- Toast Notifications ------------------------- */
.toast-container { position: fixed; top: 24px; right: 24px; z-index: 2000; display: flex; flex-direction: column; gap: 10px; }
.toast {
  background: var(--surface); border-left: 4px solid var(--primary-color);
  padding: 14px 20px; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  max-width: 320px; display: flex; align-items: center; gap: 10px;
  animation: slideIn .3s ease;
}
.toast.success { border-left-color: #22c55e; }
.toast.error { border-left-color: #ef4444; }
.toast.warning { border-left-color: #f59e0b; }

/* -------------------------- Animations --------------------------------- */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255,107,107,.7); } 70% { box-shadow: 0 0 0 14px rgba(255,107,107,0); } 100% { box-shadow: 0 0 0 0 rgba(255,107,107,0); } }
@keyframes typing { 0%, 60%, 100% { transform: translateY(0); opacity: .4; } 30% { transform: translateY(-6px); opacity: 1; } }
@keyframes spin { to { transform: rotate(360deg); } }

.reveal { opacity: 0; transform: translateY(30px); transition: all .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* -------------------------- Rewards / Loyalty -------------------------- */
.rewards-hero {
  background: linear-gradient(135deg, rgba(255,107,107,.95), rgba(255,217,61,.9)),
    url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=1600&q=60') center/cover;
  color:#fff; padding: 60px 30px; border-radius: var(--radius-lg); text-align:center; margin-bottom: 30px;
}
.rewards-hero h1, .rewards-hero h2 { color:#fff; }
.points-display { font-size: 4rem; font-weight: 800; font-family: var(--font-display); line-height: 1; }
.points-label { font-size: 1rem; letter-spacing: 3px; text-transform: uppercase; opacity: .85; }
.tier-card {
  background: var(--surface); border-radius: var(--radius-lg); padding: 24px;
  box-shadow: var(--shadow-sm); text-align:center; border-top: 5px solid;
  transition: all var(--transition);
}
.tier-card.active { border-top-width: 8px; transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tier-card h3 { font-family: var(--font-display); }
.tier-min { font-size: .8rem; color: var(--text-muted); letter-spacing: 1.5px; text-transform: uppercase; }
.tier-progress {
  background: var(--surface-alt); height: 10px; border-radius: var(--radius-pill);
  overflow: hidden; margin: 16px 0 6px;
}
.tier-progress-bar { height:100%; background: var(--gradient-accent); border-radius: var(--radius-pill); transition: width .6s ease; }
.catalog-grid {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap: 18px;
}
.catalog-card {
  background: var(--surface); border-radius: var(--radius-lg); padding: 20px; text-align:center;
  box-shadow: var(--shadow-sm); transition: all var(--transition);
}
.catalog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.catalog-card .big-icon { font-size:2.5rem; margin-bottom: 8px; }
.catalog-card .cost { color: var(--primary-color); font-weight: 700; margin-bottom: 12px; }
.catalog-card button:disabled { opacity: .4; cursor: not-allowed; }

.rewards-badge-nav {
  display:inline-flex; align-items:center; gap:6px;
  padding: 6px 12px; border-radius: var(--radius-pill);
  background: var(--gradient-accent); color:#fff !important;
  font-size:.8rem; font-weight:700;
}

/* -------------------------- Reviews Widget ----------------------------- */
.reviews-summary {
  display:flex; justify-content: space-between; align-items:center; flex-wrap:wrap;
  gap: 20px; margin-bottom: 30px; padding: 24px;
  background: var(--surface); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
}
.reviews-rating { display:flex; align-items: center; gap: 14px; }
.reviews-number { font-size: 3rem; font-weight: 800; font-family: var(--font-display); color: var(--primary-color); line-height: 1; }
.reviews-stars { color: #F5A623; font-size: 1.3rem; display:block; }
.reviews-count { color: var(--text-muted); font-size: .9rem; }
.reviews-sources { display:flex; gap:20px; flex-wrap:wrap; font-size:.9rem; }
.reviews-scroller {
  display:grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px;
}
.review-card {
  background: var(--surface); border-radius: var(--radius); padding: 20px;
  box-shadow: var(--shadow-sm); border-top: 3px solid var(--primary-color);
}
.review-head { display:flex; justify-content: space-between; margin-bottom: 6px; font-size: .9rem; }
.review-source { background: var(--surface-alt); padding: 2px 10px; border-radius: var(--radius-pill); font-size: .75rem; color: var(--text-muted); }
.review-stars { color: #F5A623; margin-bottom: 8px; }
.review-card p { font-style: italic; color: var(--text); font-size: .9rem; }
.review-date { color: var(--text-muted); font-size: .75rem; }

/* -------------------------- Gift Cards / Shop ------------------------- */
.giftcard-preview {
  background: linear-gradient(135deg, var(--brand-black), var(--primary-dark));
  color: #fff; border-radius: var(--radius-lg); padding: 30px;
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
  min-height: 210px; display:flex; flex-direction: column; justify-content: space-between;
}
.giftcard-preview::before {
  content:""; position: absolute; top:-50px; right:-50px; width: 200px; height: 200px;
  background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%); opacity: .3;
}
.giftcard-preview img { width: 60px; position: relative; }
.giftcard-amount { font-size: 2.5rem; font-weight: 800; font-family: var(--font-display); position: relative; }
.giftcard-name { font-family: var(--font-script); font-size: 1.4rem; position: relative; }
.amount-btns { display:flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.amount-btns button {
  padding: 10px 18px; border-radius: var(--radius-pill);
  border: 2px solid var(--border); background: var(--surface);
  cursor: pointer; font-weight: 600;
}
.amount-btns button.active { background: var(--gradient-accent); color:#fff; border-color: transparent; }

.shop-card {
  background: var(--surface); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all var(--transition);
  display:flex; flex-direction: column;
}
.shop-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.shop-img { aspect-ratio: 1; object-fit: cover; width: 100%; }
.shop-body { padding: 20px; flex: 1; display:flex; flex-direction:column; }
.shop-title { margin-bottom:4px; }
.shop-desc { color: var(--text-muted); font-size: .85rem; flex: 1; }
.shop-price { font-size: 1.3rem; font-weight: 700; color: var(--primary-color); margin: 10px 0; }

/* -------------------------- Exit Intent Modal ------------------------ */
.exit-banner {
  background: var(--gradient-accent); color: #fff; text-align: center;
  padding: 14px 20px; font-weight: 700;
  position: fixed; bottom: 0; left:0; right:0; z-index: 500;
  display:none;
}
.exit-banner.active { display:block; animation: slideIn .4s ease; }

.discount-code {
  display:inline-block; background: var(--gradient-accent); color:#fff;
  padding: 10px 24px; border-radius: var(--radius-pill); font-weight:800;
  font-size: 1.1rem; letter-spacing: 3px; margin: 12px 0;
}

/* -------------------------- Corporate Portal -------------------------- */
.corp-hero {
  background: linear-gradient(135deg, rgba(0,168,168,.95), rgba(0,96,122,.95)),
    url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1600&q=60') center/cover;
  color:#fff; padding: 60px 30px; border-radius: var(--radius-lg); margin-bottom: 30px;
}
.corp-hero h2 { color:#fff; }
.corp-benefit {
  display:flex; gap: 14px; padding: 16px;
  background: var(--surface-alt); border-radius: var(--radius); margin-bottom: 12px;
}
.corp-benefit .ico { font-size: 1.7rem; flex-shrink: 0; }

/* -------------------------- Dietary Tags ------------------------------ */
.dietary-tags { display:flex; gap:6px; flex-wrap:wrap; margin-bottom:8px; min-height: 20px; }
.dietary-tag { font-size:.7rem; padding:2px 8px; border-radius: var(--radius-pill); font-weight:600; display:inline-block; }
.dietary-filter-bar { display:flex; gap:8px; overflow-x:auto; padding: 12px 0; flex-wrap:wrap; }
.dietary-filter-btn {
  border:1.5px solid var(--border); background: var(--surface);
  padding:6px 14px; border-radius: var(--radius-pill); cursor:pointer;
  font-size:.8rem; font-weight:600; color: var(--text); display:inline-flex; align-items:center; gap:5px;
  transition:all var(--transition); white-space:nowrap;
}
.dietary-filter-btn:hover { border-color: var(--primary-color); }
.dietary-filter-btn.active { background: var(--gradient-accent); color:#fff; border-color: transparent; }

/* -------------------------- Promo Banner ----------------------------- */
.promo-banner {
  background: var(--gradient-accent); color:#fff;
  padding: 10px 16px; display:flex; align-items:center; justify-content:center;
  gap: 16px; font-size: .9rem; font-weight: 600; flex-wrap:wrap;
  position: relative; z-index: 1000;
}
.promo-text { flex: 1; text-align:center; min-width:200px; }
.promo-cta {
  background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.4); color:#fff !important;
  padding: 4px 14px; border-radius: var(--radius-pill); text-decoration:none;
  white-space:nowrap; font-weight: 700; transition:all var(--transition);
}
.promo-cta:hover { background:#fff; color: var(--primary-color) !important; }
.promo-close { background:transparent; border:none; color:#fff; cursor:pointer; font-size:1.2rem; opacity:.8; }
.promo-close:hover { opacity:1; }

/* -------------------------- Social Proof Toast ---------------------- */
.social-proof {
  position:fixed; bottom:24px; left:24px; z-index: 940;
  background: var(--surface); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 12px 16px; padding-right:36px;
  display:flex; gap:12px; align-items:center; max-width: 320px;
  font-size:.85rem; line-height:1.4;
  transform: translateX(-120%); transition: transform .4s cubic-bezier(.2,.9,.25,1);
  border-left: 4px solid var(--primary-color);
}
.social-proof.show { transform: translateX(0); }
.social-proof .sp-icon { font-size: 1.8rem; flex-shrink:0; }
.social-proof .sp-close { position:absolute; top:6px; right:8px; background:transparent; border:none; color:var(--text-muted); cursor:pointer; font-size:1.1rem; }
.social-proof .sp-close:hover { color: var(--secondary-color); }
@media (max-width: 640px) { .social-proof { left: 12px; right: 12px; max-width: none; bottom: 90px; } }

/* -------------------------- Order Tracking -------------------------- */
.tracking-timeline {
  display:flex; justify-content: space-between; gap:8px; margin: 30px 0;
  position: relative;
}
.tracking-timeline::before {
  content:""; position: absolute; top: 22px; left: 8%; right: 8%; height: 3px;
  background: var(--surface-alt); z-index:0;
}
.tracking-step { text-align:center; position:relative; flex: 1; z-index: 1; }
.tracking-circle {
  width: 44px; height: 44px; border-radius: 50%; background: var(--surface-alt);
  display: inline-flex; align-items:center; justify-content:center;
  font-size: 1.3rem; margin-bottom: 8px; border: 3px solid var(--surface-alt);
  transition: all var(--transition);
}
.tracking-step.complete .tracking-circle { background: var(--primary-color); color:#fff; border-color: var(--primary-color); }
.tracking-step.active .tracking-circle { background: var(--gradient-accent); color:#fff; border-color: var(--accent-color); animation: pulse 1.5s infinite; }
.tracking-step .label { font-size:.85rem; font-weight:600; color: var(--text-muted); }
.tracking-step.complete .label, .tracking-step.active .label { color: var(--text); }

/* -------------------------- Referral Card -------------------------- */
.referral-card {
  background: linear-gradient(135deg, var(--accent-warm), var(--secondary-color));
  color:#fff; border-radius: var(--radius-lg); padding: 30px;
  text-align:center; box-shadow: var(--shadow-md); margin: 30px 0;
}
.referral-card h3 { color:#fff; }
.referral-link {
  display:flex; gap:8px; max-width: 480px; margin: 16px auto 0;
}
.referral-link input { flex:1; padding: 10px 14px; border-radius: var(--radius-sm); border:none; font-size:.85rem; }
.share-btns { display:flex; gap:10px; justify-content:center; margin-top:14px; flex-wrap:wrap; }
.share-btn {
  background: rgba(255,255,255,.2); color:#fff; border: 1px solid rgba(255,255,255,.3);
  padding: 8px 16px; border-radius: var(--radius-pill); cursor:pointer; font-weight:600;
  display:inline-flex; align-items:center; gap:6px; text-decoration:none;
}
.share-btn:hover { background:#fff; color: var(--secondary-color) !important; }

/* -------------------------- FAQ Accordion -------------------------- */
.faq-item {
  background: var(--surface); border-radius: var(--radius); margin-bottom: 10px;
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.faq-q {
  padding: 18px 22px; display:flex; justify-content:space-between; align-items:center;
  cursor:pointer; font-weight:600; gap: 16px;
}
.faq-q::after { content:"+"; font-size:1.4rem; transition: transform var(--transition); flex-shrink:0; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { padding: 0 22px; max-height: 0; overflow: hidden; transition: all var(--transition); color: var(--text-muted); }
.faq-item.open .faq-a { padding: 0 22px 18px; max-height: 600px; }

/* -------------------------- Blog Cards ----------------------------- */
.blog-grid { display:grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap:24px; }
.blog-card {
  background: var(--surface); border-radius: var(--radius-lg); overflow:hidden;
  box-shadow: var(--shadow-sm); transition:all var(--transition); display:flex; flex-direction:column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card img { width:100%; aspect-ratio:16/9; object-fit:cover; }
.blog-body { padding: 20px; flex:1; display:flex; flex-direction:column; }
.blog-cat { color: var(--primary-color); font-size:.75rem; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; }
.blog-card h3 { margin: 6px 0 8px; font-size: 1.1rem; }
.blog-card p { color: var(--text-muted); font-size: .9rem; flex:1; }
.blog-meta { font-size: .8rem; color: var(--text-muted); margin-top:10px; }

/* -------------------------- PWA Install Bubble ------------------------ */
.install-bubble {
  position: fixed; bottom: 90px; right: 24px; z-index: 945;
  background: var(--surface); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 14px 16px; padding-right: 36px;
  display: flex; align-items: center; gap: 12px; max-width: 360px;
  animation: slideIn .4s ease;
}
.install-bubble img { width: 40px; height: 40px; border-radius: var(--radius-sm); }
.install-bubble .install-dismiss { position:absolute; top:6px; right:8px; background:transparent; border:none; color:var(--text-muted); cursor:pointer; font-size:1.2rem; }
@media (max-width: 640px) { .install-bubble { left: 12px; right: 12px; max-width: none; bottom: 92px; } }

/* -------------------------- Utilities ---------------------------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.flex { display: flex; }
.gap-sm { gap: 10px; }
.gap-md { gap: 20px; }
.hide-mobile { }
.show-mobile { display: none; }

/* -------------------------- Responsive --------------------------------- */
@media (max-width: 968px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split-grid, .contact-grid { grid-template-columns: 1fr; }
  .nav-links {
    position: fixed; top: var(--header-height); right: 0; bottom: 0;
    width: 280px; background: var(--surface); flex-direction: column;
    padding: 20px; gap: 0; align-items: stretch; box-shadow: var(--shadow-lg);
    transform: translateX(100%); transition: transform var(--transition); overflow-y: auto;
  }
  .nav-links.active { transform: translateX(0); }
  .nav-links a { padding: 14px; border-bottom: 1px solid var(--border); }
  .nav-links .has-dropdown .dropdown { position: static; box-shadow: none; opacity: 1; visibility: visible; transform: none; margin: 0 0 0 16px; padding: 0; }
  .nav-links .has-dropdown .dropdown a { border-bottom: none; padding: 10px 14px; font-size: .9rem; }
  .mobile-toggle { display: inline-flex; }
  .hide-mobile { display: none; }
  .show-mobile { display: inline-flex; }
  .hero { min-height: 70vh; }
  .hero-stats { gap: 24px; margin-top: 40px; }
  .hero-stat strong { font-size: 1.7rem; }
  section { padding: 60px 0; }
}

@media (max-width: 640px) {
  .topbar { justify-content: center; font-size: .75rem; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .social-links { justify-content: center; }
  .footer-contact-item { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .chat-window { right: -8px; width: calc(100vw - 32px); }
  .cart-sidebar { width: 100%; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
}

/* -------------------------- Favorites Heart Button -------------------- */
.fav-heart {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  background: rgba(255,255,255,.92); border: none;
  width: 36px; height: 36px; border-radius: 50%;
  cursor: pointer; font-size: 1.2rem; color: var(--text-muted);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all var(--transition); box-shadow: var(--shadow-sm);
}
.fav-heart:hover, .fav-heart.active { color: var(--secondary-color); transform: scale(1.15); }

/* -------------------------- Tip Selector ------------------------------ */
.tip-selector { display:flex; gap:6px; margin: 10px 0; }
.tip-selector button {
  flex:1; padding:8px 4px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--border); background: var(--surface);
  cursor:pointer; font-weight:600; font-size:.85rem; color: var(--text);
  transition:all var(--transition);
}
.tip-selector button:hover { border-color: var(--primary-color); }
.tip-selector button.active { background: var(--gradient-accent); color:#fff; border-color: transparent; }

/* -------------------------- Wait Time Pill --------------------------- */
.wait-pill {
  display:inline-flex; align-items:center; padding:4px 12px;
  background: var(--surface); border-radius: var(--radius-pill);
  font-size:.8rem; font-weight:600; color: var(--text);
  border:1px solid var(--border);
}

/* -------------------------- Instagram Feed --------------------------- */
.insta-grid {
  display:grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr));
  gap: 8px;
}
.insta-tile {
  position:relative; aspect-ratio:1; overflow:hidden; border-radius: var(--radius);
  display:block;
}
.insta-tile img { width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
.insta-tile:hover img { transform: scale(1.1); }
.insta-overlay {
  position:absolute; inset:0; display:flex; flex-direction:column; justify-content:flex-end;
  padding: 14px; color:#fff; opacity:0;
  background: linear-gradient(transparent, rgba(0,0,0,.85));
  transition: opacity var(--transition); font-size:.85rem;
}
.insta-tile:hover .insta-overlay { opacity:1; }
.insta-tile:hover .insta-overlay strong { display:block; }

/* -------------------------- Favorites Bar in nav -------------------- */
.fav-nav-btn { position:relative; }
.fav-nav-badge {
  position:absolute; top:2px; right:2px; min-width:18px; height:18px;
  background: var(--secondary-color); color:#fff; border-radius:999px;
  padding: 0 4px; font-size:.65rem; font-weight:700;
  display: inline-flex; align-items:center; justify-content:center;
}
