/* =========================================================================
   MR. KHAN BURGER HOUSE — Stylesheet
   res/mrkhan.css
   Table of contents:
     1. CSS Variables & Reset
     2. Base / Typography
     3. Utility Classes
     4. Navigation
     5. Floating WhatsApp Button
     6. Hero
     7. Section Header / Buttons
     8. Speciality Cards
     9. Why Choose Us
     10. Testimonials Slider
     11. CTA Banner
     12. Menu Page (search, categories, food cards)
     13. Cart Sidebar
     14. Checkout Modal
     15. About Page (story, gallery, lightbox, map, contact)
     16. Footer
     17. Toast Notifications
     18. Animations
     19. Responsive
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. CSS Variables & Reset
   ------------------------------------------------------------------------- */
:root {
  /* Brand palette — pulled from the Mr. Khan logo (black / gold / red) */
  --primary: #ffcc00;
  /* warm gold */
  --primary-hover: #e6b800;
  --accent: #c1272d;
  /* signature red */
  --accent-hover: #9f1f24;
  --whatsapp: #25D366;
  --whatsapp-hover: #1ebe5a;

  --bg: #0a0a0a;
  --surface: #121212;
  --surface-2: #171717;
  --surface-hover: #1e1e1e;
  --border: rgba(255, 255, 255, 0.08);
  --border-soft: rgba(255, 255, 255, 0.05);

  --text: #ffffff;
  --text-muted: #a8a8ad;
  --text-faint: #6f6f75;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-md: 0 20px 40px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 30px 70px rgba(0, 0, 0, 0.6);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: 'Anton', 'Inter', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 15% 0%, rgba(240, 165, 44, 0.06), transparent 45%),
    radial-gradient(circle at 85% 20%, rgba(193, 39, 45, 0.07), transparent 40%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

/* -------------------------------------------------------------------------
   2. Base / Typography
   ------------------------------------------------------------------------- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.3px;
  line-height: 1.15;
}

p {
  color: var(--text-muted);
}

.text-primary {
  color: var(--primary);
}

.text-accent {
  color: var(--accent);
}

/* -------------------------------------------------------------------------
   3. Utility Classes
   ------------------------------------------------------------------------- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
}

.section {
  padding: 6rem 5%;
}

.section-tight {
  padding: 4rem 5%;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--primary);
  color: #000;
  padding: 0.75rem 1.25rem;
  z-index: 5000;
  border-radius: 0 0 10px 0;
  font-weight: 700;
}

.skip-link:focus {
  left: 0;
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.btn {
  padding: 1rem 2rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.btn-primary {
  background: var(--primary);
  color: #0a0a0a;
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 204, 0, 0.3);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
}

.btn-accent:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(193, 39, 45, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--text);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
}

.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 0.65rem 1.3rem;
  font-size: 0.9rem;
}

/* -------------------------------------------------------------------------
   4. Navigation
   ------------------------------------------------------------------------- */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0.85rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-brand img {
  height: 90px;
  width: 90px;
  border-radius: 50%;
  object-fit: contain;
}

.nav-brand-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.nav-brand-text span {
  display: block;
  color: var(--primary);
  font-size: 0.65rem;
  letter-spacing: 2px;
  font-family: var(--font-body);
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 2.25rem;
  align-items: center;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  transition: color 0.3s;
  position: relative;
  padding: 0.3rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.cart-btn {
  position: relative;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform 0.2s;
}

.cart-btn:hover {
  transform: scale(1.1);
  color: var(--primary);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 78%;
  max-width: 320px;
  height: 100vh;
  background: #0d0d0d;
  border-left: 1px solid var(--border);
  z-index: 1500;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  padding: 6rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu a {
  color: var(--text);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.5px;
}

.mobile-menu a.active {
  color: var(--primary);
}

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  color: var(--text);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1499;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* -------------------------------------------------------------------------
   5. Floating WhatsApp Button
   ------------------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 1600;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--whatsapp);
  color: #fff;
  text-decoration: none;
  padding: 0.9rem 1.3rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s;
  animation: wa-pulse 2.6s ease-in-out infinite;
}

.whatsapp-float i {
  font-size: 1.35rem;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
  background: var(--whatsapp-hover);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.55);
}

@keyframes wa-pulse {

  0%,
  100% {
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  }

  50% {
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.75), 0 0 0 8px rgba(37, 211, 102, 0.08);
  }
}

/* -------------------------------------------------------------------------
   6. Hero
   ------------------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 5% 3rem;
  gap: 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(circle, rgba(255, 204, 0, 0.08), transparent 65%);
  pointer-events: none;
  z-index: 1;
}

/* Hero background video */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 1;
  /* filter: brightness(0.55) saturate(0.7); */
  pointer-events: none;
}

/* Dark overlay on top of the video */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5, 5, 5, 0.82) 0%,
    rgba(10, 10, 10, 0.60) 50%,
    rgba(5, 5, 5, 0.75) 100%
  );
  z-index: 0;
  pointer-events: none;
}


.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 204, 0, 0.1);
  border: 1px solid rgba(255, 204, 0, 0.3);
  color: var(--primary);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-content h1 span {
  color: var(--primary);
}

.hero-content h1 .accent-word {
  color: var(--accent);
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 500px;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-image .img-frame {
  position: relative;
  width: 100%;
  max-width: 540px;
}

.hero-image img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid rgba(255, 204, 0, 0.15);
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.8));
  animation: float 6s ease-in-out infinite;
}

.hero-badge {
  position: absolute;
  bottom: 6%;
  left: -6%;
  background: var(--accent);
  color: #fff;
  padding: 1rem 1.3rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  line-height: 1.1;
}

.hero-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.hero-badge span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.85;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-22px) rotate(1.5deg);
  }

  100% {
    transform: translateY(0) rotate(0deg);
  }
}

/* -------------------------------------------------------------------------
   7. Section Header
   ------------------------------------------------------------------------- */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.8rem;
  display: block;
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.section-header h2 span {
  color: var(--primary);
}

.section-header p {
  font-size: 1.05rem;
}

/* -------------------------------------------------------------------------
   8. Speciality Cards
   ------------------------------------------------------------------------- */
.speciality {
  background: var(--surface);
}

.speciality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.speciality-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  transition: all 0.4s var(--ease);
}

.speciality-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 204, 0, 0.3);
  box-shadow: var(--shadow-md);
}

.speciality-img {
  height: 220px;
  overflow: hidden;
}

.speciality-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.speciality-card:hover .speciality-img img {
  transform: scale(1.1);
}

.speciality-body {
  padding: 1.5rem;
}

.speciality-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.speciality-body p {
  font-size: 0.92rem;
}

/* -------------------------------------------------------------------------
   9. Why Choose Us
   ------------------------------------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
}

.why-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: all 0.35s var(--ease);
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 204, 0, 0.3);
  background: var(--surface-hover);
}

.why-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.25rem;
  border-radius: 16px;
  background: rgba(255, 204, 0, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.why-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.why-card p {
  font-size: 0.9rem;
}

/* -------------------------------------------------------------------------
   10. Testimonials Slider
   ------------------------------------------------------------------------- */
.testimonials {
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.testimonial-track-wrap {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s var(--ease);
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 0.5rem;
}

.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
}

.testimonial-stars {
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  letter-spacing: 3px;
}

.testimonial-quote {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.75rem;
  font-style: italic;
}

.testimonial-person {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.testimonial-role {
  font-size: 0.82rem;
  color: var(--text-faint);
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial-arrow {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}

.testimonial-arrow:hover {
  background: var(--primary);
  color: #0a0a0a;
  border-color: var(--primary);
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}

.testimonial-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

/* -------------------------------------------------------------------------
   11. CTA Banner
   ------------------------------------------------------------------------- */
.cta-banner {
  background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../assets/gallery/bg.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 5.5rem 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: #fff;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  margin-bottom: 2.25rem;
}

.cta-banner .btn-primary {
  background: #25d366;
  color: white;
}


/* -------------------------------------------------------------------------
   12. Menu Page
   ------------------------------------------------------------------------- */
.menu-hero {
  padding: 9rem 5% 3rem;
  text-align: center;
  background: var(--surface);
  border-bottom: 1px solid var(--border-soft);
}

.menu-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.menu-hero h1 span {
  color: var(--primary);
}

.menu-hero p {
  max-width: 560px;
  margin: 0 auto;
}

.menu-page {
  padding: 4rem 5% 6rem;
}

.search-bar {
  max-width: 480px;
  margin: 0 auto 2.5rem;
  position: relative;
}

.search-bar i {
  position: absolute;
  left: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-faint);
}

.search-bar input {
  width: 100%;
  padding: 1.05rem 1.5rem 1.05rem 3rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

.search-bar input:focus {
  border-color: var(--primary);
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 0 4px rgba(255, 204, 0, 0.12);
}

.categories {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.category-btn {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 600;
  font-size: 0.9rem;
}

.category-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.category-btn.active {
  background: var(--primary);
  color: #0a0a0a;
  border-color: var(--primary);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 2rem;
}

.no-results {
  text-align: center;
  grid-column: 1 / -1;
  padding: 3.5rem 1rem;
}

.no-results h3 {
  margin-bottom: 0.5rem;
}

.food-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  border: 1px solid var(--border-soft);
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}

.food-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 204, 0, 0.3);
  box-shadow: var(--shadow-md);
}

.food-image-container {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  background: var(--surface-2);
  overflow: hidden;
  position: relative;
}

.food-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.food-card:hover .food-image-container img {
  transform: scale(1.08);
}

.food-category-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(10, 10, 10, 0.75);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}

.food-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.food-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
}

.food-info p {
  font-size: 0.87rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-soft);
}

.price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
}

.add-to-cart {
  background: var(--surface-hover);
  border: none;
  color: var(--text);
  padding: 0.6rem 1.15rem;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 700;
  font-size: 0.85rem;
}

.food-card:hover .add-to-cart {
  background: var(--primary);
  color: #0a0a0a;
}

.add-to-cart:active {
  transform: scale(0.95);
}

/* -------------------------------------------------------------------------
   13. Cart Sidebar
   ------------------------------------------------------------------------- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 100vw;
  height: 100vh;
  background: #0d0d0d;
  border-left: 1px solid var(--border);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.6);
}

.cart-sidebar.open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--border-soft);
}

.cart-header h2 {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.cart-header h2 span {
  color: var(--primary);
}

.cart-close {
  background: rgba(255, 255, 255, 0.06);
  border: none;
  color: var(--text);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.cart-close:hover {
  background: rgba(255, 204, 0, 0.15);
  color: var(--primary);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem 1.75rem;
}

.cart-items::-webkit-scrollbar {
  width: 4px;
}

.cart-items::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 1rem;
  color: var(--text-muted);
  text-align: center;
}

.cart-empty i {
  font-size: 3.2rem;
  color: rgba(255, 204, 0, 0.25);
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-soft);
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.cart-item-img {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--surface);
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.25rem;
}

.cart-item-price {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.88rem;
}

.cart-remove {
  background: none;
  border: none;
  color: var(--text-faint);
  font-size: 0.8rem;
  cursor: pointer;
  margin-top: 0.3rem;
}

.cart-remove:hover {
  color: var(--accent);
}

.cart-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.qty-btn {
  background: rgba(255, 255, 255, 0.07);
  border: none;
  color: var(--text);
  width: 26px;
  height: 26px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.qty-btn:hover {
  background: var(--primary);
  color: #0a0a0a;
}

.qty-num {
  font-weight: 700;
  min-width: 18px;
  text-align: center;
  font-size: 0.9rem;
}

.cart-footer {
  padding: 1.5rem 1.75rem;
  border-top: 1px solid var(--border-soft);
  background: #0d0d0d;
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.cart-subtotal span:first-child {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.cart-subtotal .total-price {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--primary);
}

.checkout-btn {
  width: 100%;
  padding: 1rem;
  background: var(--primary);
  color: #0a0a0a;
  border: none;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: all 0.3s;
}

.checkout-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 204, 0, 0.3);
}

.clear-cart {
  width: 100%;
  margin-top: 0.75rem;
  padding: 0.65rem;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}

.clear-cart:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* -------------------------------------------------------------------------
   14. Checkout Modal
   ------------------------------------------------------------------------- */
.checkout-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.checkout-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.checkout-modal {
  background: #111;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: translateY(30px) scale(0.97);
  transition: transform 0.4s var(--ease);
  scrollbar-width: none;
}

.checkout-modal::-webkit-scrollbar {
  display: none;
}

.checkout-overlay.open .checkout-modal {
  transform: translateY(0) scale(1);
}

.checkout-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border-soft);
  position: sticky;
  top: 0;
  background: #111;
  z-index: 1;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.checkout-modal-header h2 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.checkout-modal-header h2 i {
  color: var(--primary);
}

.modal-close {
  background: rgba(255, 255, 255, 0.06);
  border: none;
  color: var(--text);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.modal-close:hover {
  background: rgba(255, 204, 0, 0.15);
  color: var(--primary);
}

.checkout-body {
  padding: 1.75rem 2rem;
}

.checkout-section-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  margin-bottom: 1.25rem;
  margin-top: 1.5rem;
}

.checkout-section-title:first-child {
  margin-top: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  color: var(--text);
  font-size: 0.95rem;
  outline: none;
  transition: all 0.25s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: rgba(255, 204, 0, 0.05);
  box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.form-group select option {
  background: #1a1a1a;
  color: #fff;
}

.form-group textarea {
  resize: none;
  height: 80px;
}

.field-hint {
  font-size: 0.78rem;
  color: var(--text-faint);
  margin-top: 2px;
}

.order-summary-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-soft);
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-item .item-name {
  font-weight: 500;
  color: var(--text);
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-weight: 800;
}

.summary-total .total-label {
  font-size: 1rem;
}

.summary-total .total-amount {
  font-size: 1.3rem;
  color: var(--primary);
}

.place-order-btn {
  width: 100%;
  padding: 1.1rem;
  background: var(--whatsapp);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: all 0.3s;
  letter-spacing: 0.3px;
}

.place-order-btn:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
}

.input-error {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(193, 39, 45, 0.15) !important;
}

.payment-note {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 204, 0, 0.08);
  border: 1px solid rgba(255, 204, 0, 0.25);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  color: var(--primary);
}

/* -------------------------------------------------------------------------
   15. About Page
   ------------------------------------------------------------------------- */
.page-hero {
  padding: 9rem 5% 3rem;
  text-align: center;
  background: var(--surface);
  border-bottom: 1px solid var(--border-soft);
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.page-hero h1 span {
  color: var(--primary);
}

.page-hero p {
  max-width: 600px;
  margin: 0 auto;
}

.about-story {
  display: flex;
  align-items: center;
  gap: 5rem;
  padding: 6rem 5%;
}

.about-image {
  flex: 1;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s;
  aspect-ratio: 4/5;
}

.about-image:hover img {
  transform: scale(1.03);
}

/* ---- New stacked About layout with slideshow ---- */
.about-story-new {
  padding: 4rem 5% 5rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* Slideshow */
.about-slideshow {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/7;
  background: var(--surface-2);
  margin-bottom: 3.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.slideshow-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10,10,10,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.25s;
  backdrop-filter: blur(4px);
}

.slide-btn:hover {
  background: var(--primary);
  color: #0a0a0a;
  border-color: var(--primary);
}

.slide-prev { left: 1rem; }
.slide-next { right: 1rem; }

.slide-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.slide-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.slide-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

/* Text below slideshow */
.about-content-below {
  text-align: left;
}

.about-content-below h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.about-content-below h2 span {
  color: var(--primary);
}

.about-content-below > p {
  margin-bottom: 1.25rem;
  line-height: 1.85;
  max-width: 780px;
}


.about-content {
  flex: 1.2;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.about-content h2 span {
  color: var(--primary);
}

.about-content p {
  margin-bottom: 1.25rem;
  line-height: 1.85;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
}

.value-icon {
  background: rgba(255, 204, 0, 0.1);
  color: var(--primary);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.value-item h4 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.value-item p {
  font-size: 0.88rem;
  margin-bottom: 0;
}

.gallery-section {
  background: var(--surface);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1/1;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.12);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  font-weight: 700;
  font-size: 0.9rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 2rem;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90vw;
  max-height: 82vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.lightbox-caption {
  text-align: center;
  margin-top: 1rem;
  color: var(--text-muted);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--primary);
  color: #0a0a0a;
}

.lightbox-close {
  top: 1.75rem;
  right: 1.75rem;
}

.lightbox-prev {
  left: 1.75rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 1.75rem;
  top: 50%;
  transform: translateY(-50%);
}

.map-section {
  padding: 0;
}

.map-embed {
  width: 100%;
  height: 420px;
  border: 0;
  filter: grayscale(0.3) contrast(1.1);
}

.contact-strip {
  background: var(--surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.75rem;
}

.contact-card {
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s var(--ease);
  text-decoration: none;
}

.contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 204, 0, 0.3);
}

.contact-card i {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.contact-card h4 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.contact-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* -------------------------------------------------------------------------
   16. Footer
   ------------------------------------------------------------------------- */
footer {
  background: var(--surface);
  padding: 5rem 5% 0;
  border-top: 1px solid var(--border-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
  text-decoration: none;
}

.footer-brand img {
  height: 110px;
  width: 110px;
  border-radius: 50%;
  object-fit: contain;
}

.footer-brand-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.footer-brand-text span {
  display: block;
  color: var(--primary);
  font-size: 0.65rem;
  letter-spacing: 2px;
  font-family: var(--font-body);
  font-weight: 700;
}

.footer-col h4 {
  font-size: 1.05rem;
  margin-bottom: 1.4rem;
  color: var(--text);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col p,
.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  transition: color 0.3s;
  font-size: 0.92rem;
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-col i {
  color: var(--primary);
  margin-top: 3px;
  width: 16px;
  flex-shrink: 0;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  background: rgba(255, 255, 255, 0.05);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text);
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--primary);
  color: #0a0a0a;
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  padding: 1.75rem 0;
  border-top: 1px solid var(--border-soft);
  color: var(--text-faint);
  font-size: 0.85rem;
}

.footer-powered {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text-faint);
  transition: color 0.3s;
}

.footer-powered:hover {
  color: var(--primary);
}

.footer-powered img {
  height: 40px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  opacity: 1;
}

/* -------------------------------------------------------------------------
   17. Toast Notifications
   ------------------------------------------------------------------------- */
.toast-container {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 9999;
}

.toast {
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  color: var(--text);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 1rem;
  transform: translateX(-120%);
  opacity: 0;
  transition: all 0.4s var(--ease);
  max-width: 320px;
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

/* -------------------------------------------------------------------------
   18. Misc animations
   ------------------------------------------------------------------------- */
@keyframes popIn {
  from {
    transform: scale(0.5);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.confirm-checkmark {
  animation: popIn 0.5s var(--ease);
}

/* -------------------------------------------------------------------------
   19. Responsive
   ------------------------------------------------------------------------- */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 8rem;
    gap: 2.5rem;
  }

  .hero-content p {
    margin: 0 auto 2rem;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-badge {
    left: 3%;
  }

  .about-story {
    flex-direction: column;
    gap: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .hero-content h1 {
    font-size: 2.6rem;
  }

  .section,
  .menu-page {
    padding: 4rem 5%;
  }

  .categories {
    gap: 0.5rem;
  }

  .category-btn {
    padding: 0.6rem 1.15rem;
    font-size: 0.85rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    padding: 0.9rem;
    border-radius: 50%;
  }

  .whatsapp-float i {
    font-size: 1.5rem;
  }

  .about-image img {
    aspect-ratio: 16/10;
  }

  .toast-container {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }

  .toast {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .cart-sidebar {
    width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-badge {
    position: static;
    margin-top: 1.25rem;
    display: inline-block;
  }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}