/* ==========================================================================
   Laffet Shawarma - Official Stylesheet
   Modern, responsive, authentic Syrian bistro & fast-casual restaurant styling
   ========================================================================== */

:root {
  /* Brand Color Palette */
  --primary: #c2410c;         /* Charred Amber Shawarma Orange */
  --primary-hover: #9a3412;
  --primary-light: #ffedd5;
  --secondary: #15803d;       /* Syrian Olive Green */
  --secondary-hover: #166534;
  --secondary-light: #dcfce7;
  --accent: #e11d48;          /* Pomegranate Molasses Ruby */
  --accent-light: #ffe4e6;
  --foodora: #d70f64;         /* Foodora Magenta */
  --foodora-hover: #b00d52;

  /* Neutral Dark & Surface Tones */
  --bg-body: #faf8f5;         /* Warm Cream background */
  --bg-surface: #ffffff;
  --bg-surface-elevated: #ffffff;
  --bg-card-alt: #f5f2eb;
  --bg-dark: #18181b;         /* Charcoal spice black */
  --bg-dark-surface: #27272a;
  
  /* Text Colors */
  --text-main: #1c1917;
  --text-muted: #57534e;
  --text-light: #a8a29e;
  --text-inverse: #fcfbf9;

  /* Borders & Shadows */
  --border-light: #e7e5e0;
  --border-focus: #ea580c;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-card: 0 10px 30px -5px rgba(194, 65, 12, 0.08);

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Fonts */
  --font-heading: 'Cabinet Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Header Height */
  --header-height: 80px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 40px);
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  transition: all 0.2s ease;
}

input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center {
  text-align: center;
}

/* Typography Helpers */
.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  background-color: var(--primary-light);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, #ea580c 50%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Icons */
.icon-sm {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
}
.icon {
  width: 22px;
  height: 22px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.btn-lg {
  padding: 0.9rem 1.75rem;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

.btn-sm {
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
}
.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px -4px rgba(194, 65, 12, 0.35);
}

.btn-secondary {
  background-color: #ffffff;
  color: var(--text-main);
  border: 1px solid var(--border-light);
}
.btn-secondary:hover {
  background-color: var(--bg-card-alt);
  border-color: #d6d3d1;
  transform: translateY(-2px);
}

.btn-foodora {
  background-color: var(--foodora);
  color: #ffffff;
}
.btn-foodora:hover {
  background-color: var(--foodora-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px -4px rgba(215, 15, 100, 0.35);
}

.btn-outline-white {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   Announcement Bar
   ========================================================================== */
.announcement-bar {
  background-color: var(--bg-dark);
  color: #d4d4d8;
  font-size: 0.85rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.announcement-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #22c55e;
}
.status-dot.pulse {
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulseGreen 2s infinite;
}
.status-dot.closed {
  background-color: #ef4444;
  box-shadow: none;
  animation: none;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.announcement-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.top-contact-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: #fb923c;
  font-weight: 600;
}
.top-contact-link:hover {
  color: #fed7aa;
}
.divider-dot {
  color: #52525b;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(231, 229, 224, 0.8);
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-badge {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary) 0%, #b91c1c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 4px 10px rgba(194, 65, 12, 0.25);
}

.logo-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--primary);
}

.brand-sub {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--text-main);
}

.brand-tagline {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--secondary);
  font-style: italic;
  margin-top: 2px;
}

.desktop-nav {
  display: none;
}

@media (min-width: 992px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 1.75rem;
  }

  .nav-item {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    position: relative;
    padding: 0.5rem 0;
  }

  .nav-item:hover, .nav-item.active {
    color: var(--primary);
  }

  .nav-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    border-radius: 2px;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cart-trigger-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  box-shadow: var(--shadow-sm);
}
.cart-trigger-btn:hover {
  background-color: var(--bg-card-alt);
  color: var(--primary);
  transform: scale(1.05);
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: var(--primary);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
}

.btn-call-desktop {
  display: none;
}
@media (min-width: 768px) {
  .btn-call-desktop {
    display: inline-flex;
  }
}

.mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 36px;
  height: 36px;
  padding: 6px;
  border-radius: var(--radius-sm);
  background-color: #ffffff;
  border: 1px solid var(--border-light);
}

@media (min-width: 992px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: all 0.25s ease;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-height));
  background-color: rgba(24, 24, 27, 0.6);
  backdrop-filter: blur(8px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-drawer.open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer-inner {
  background-color: #ffffff;
  width: 100%;
  max-width: 360px;
  height: 100%;
  margin-left: auto;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  box-shadow: -10px 0 25px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-nav-link {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-light);
}
.mobile-nav-link:hover {
  color: var(--primary);
}

.mobile-drawer-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

.mobile-drawer-info {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 3rem 0 4rem;
  overflow: hidden;
}

.hero-backdrop-glow {
  position: absolute;
  top: -100px;
  right: -50px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.15) 0%, rgba(245, 158, 11, 0.05) 50%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  .hero-container {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    padding: 2rem 0 3rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-main);
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-features {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.hero-feature-item {
  display: flex;
  flex-direction: column;
}

.feature-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
}

.feature-lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.feature-divider {
  width: 1px;
  height: 36px;
  background-color: var(--border-light);
}

/* Hero Media Stack */
.hero-card-stack {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid #ffffff;
}

.hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 50%);
}

.floating-dish-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(24, 24, 27, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
}

.badge-title {
  font-weight: 700;
  font-size: 0.95rem;
}
.badge-price {
  font-weight: 800;
  color: #fb923c;
  font-size: 1.1rem;
}

.floating-review-card {
  position: absolute;
  top: -20px;
  right: -15px;
  background-color: #ffffff;
  border-radius: var(--radius-md);
  padding: 0.85rem 1.1rem;
  box-shadow: var(--shadow-lg);
  max-width: 230px;
  border: 1px solid var(--border-light);
  animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.floating-review-card .stars {
  color: #f59e0b;
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}
.floating-review-card .review-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.35;
  margin-bottom: 0.35rem;
}
.floating-review-card .reviewer-meta {
  font-size: 0.7rem;
  color: var(--text-light);
}

.floating-stamp {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background-color: var(--primary);
  color: #ffffff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 10px 20px -4px rgba(194, 65, 12, 0.4);
  border: 2px solid #ffffff;
}
.stamp-icon {
  font-size: 1.5rem;
}
.stamp-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.stamp-text strong {
  font-size: 0.85rem;
}
.stamp-text small {
  font-size: 0.7rem;
  opacity: 0.9;
}

/* ==========================================================================
   Quick Info Section
   ========================================================================== */
.quick-info-section {
  padding: 1.5rem 0 3rem;
}

.info-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .info-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .info-cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.info-card {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #d6d3d1;
}

.info-card-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.info-card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.info-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
  padding: 5rem 0;
  background-color: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.about-media {
  position: relative;
}

.about-image-collage {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
}

.about-img-primary {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.experience-card {
  position: absolute;
  bottom: -25px;
  left: 20px;
  background-color: var(--bg-dark);
  color: #ffffff;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border-left: 4px solid var(--primary);
  max-width: 280px;
}

.exp-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.exp-desc {
  font-size: 0.85rem;
  color: #a1a1aa;
}

.about-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pillar-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.pillar-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background-color: var(--bg-card-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  border: 1px solid var(--border-light);
}

.pillar-text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.pillar-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Special Highlight Banner: Mix Shawarma Box
   ========================================================================== */
.box-highlight-section {
  padding: 5rem 0;
}

.box-banner-card {
  position: relative;
  background: linear-gradient(135deg, #18181b 0%, #27272a 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .box-banner-card {
    padding: 3.5rem;
  }
}

.box-banner-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  background-color: var(--primary);
  color: #ffffff;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.box-banner-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .box-banner-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.box-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: #ffffff;
}

.box-desc {
  font-size: 1.1rem;
  color: #d4d4d8;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.box-includes-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .box-includes-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.box-includes-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: #e4e4e7;
}

.box-includes-list li span {
  color: #22c55e;
  font-weight: 800;
}

.box-pricing-action {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.box-price-tag {
  display: flex;
  flex-direction: column;
}

.box-price-label {
  font-size: 0.8rem;
  color: #a1a1aa;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.box-price-val {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 900;
  color: #fb923c;
  line-height: 1;
}

.box-banner-media {
  position: relative;
}

.box-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.15);
}

/* ==========================================================================
   Menu Section & Filters
   ========================================================================== */
.menu-section {
  padding: 5rem 0;
  background-color: var(--bg-body);
}

.menu-controls {
  margin-bottom: 2.5rem;
}

.search-bar-wrapper {
  position: relative;
  max-width: 540px;
  margin: 0 auto 2rem;
}

.search-bar-wrapper input {
  width: 100%;
  padding: 0.9rem 2.8rem 0.9rem 3rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-light);
  background-color: #ffffff;
  color: var(--text-main);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.search-bar-wrapper input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(194, 65, 12, 0.15);
}

.search-icon {
  position: absolute;
  left: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--text-light);
  pointer-events: none;
}

.clear-search-btn {
  position: absolute;
  right: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 1rem;
  padding: 0.25rem;
}
.clear-search-btn:hover {
  color: var(--text-main);
}

/* Category Tabs */
.category-tabs-scroll {
  overflow-x: auto;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
}

.category-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-start;
  min-width: max-content;
  margin: 0 auto;
  padding: 0.25rem;
}

@media (min-width: 992px) {
  .category-tabs {
    justify-content: center;
  }
}

.tab-btn {
  padding: 0.6rem 1.15rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  white-space: nowrap;
  transition: all 0.2s ease;
}

.tab-btn:hover {
  background-color: var(--bg-card-alt);
  color: var(--text-main);
}

.tab-btn.active {
  background-color: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 10px rgba(194, 65, 12, 0.25);
}

/* Menu Grid */
.menu-items-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .menu-items-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .menu-items-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.menu-item-card {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
}

.menu-item-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #d6d3d1;
}

.menu-item-badge-top {
  position: absolute;
  top: -10px;
  right: 15px;
  background-color: var(--accent);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  box-shadow: 0 2px 6px rgba(225, 29, 72, 0.3);
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}

.dish-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.25;
}

.dish-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--primary);
  white-space: nowrap;
}

.dish-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.menu-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  border-top: 1px dashed var(--border-light);
  gap: 0.5rem;
}

.dish-category-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
}

.add-to-order-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background-color: var(--primary-light);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.add-to-order-btn:hover {
  background-color: var(--primary);
  color: #ffffff;
  transform: scale(1.03);
}

/* No Results */
.no-results {
  text-align: center;
  padding: 4rem 1.5rem;
  background-color: #ffffff;
  border-radius: var(--radius-md);
  border: 1px dashed var(--border-light);
  max-width: 500px;
  margin: 2rem auto;
}

.no-results-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

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

.no-results p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   Catering Section
   ========================================================================== */
.catering-section {
  padding: 5rem 0;
  background-color: #ffffff;
  border-top: 1px solid var(--border-light);
}

.catering-card {
  background-color: var(--bg-card-alt);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem;
  border: 1px solid var(--border-light);
}

@media (min-width: 768px) {
  .catering-card {
    padding: 3.5rem;
  }
}

.catering-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .catering-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.catering-perks {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.perk {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.perk-bullet {
  color: var(--primary);
  font-size: 1.25rem;
  line-height: 1;
}

.perk strong {
  display: block;
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 0.2rem;
}

.perk p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.catering-form-wrapper {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.form-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.form-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.form-field-group {
  margin-bottom: 1.15rem;
}

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

@media (min-width: 640px) {
  .form-field-row {
    grid-template-columns: 1fr 1fr;
  }
}

.catering-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.35rem;
}

.catering-form input,
.catering-form select,
.catering-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  background-color: #ffffff;
  color: var(--text-main);
  transition: all 0.2s ease;
}

.catering-form input:focus,
.catering-form select:focus,
.catering-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(194, 65, 12, 0.15);
}

.form-submit-btn {
  margin-top: 0.75rem;
}

/* ==========================================================================
   Location & Contact Section
   ========================================================================== */
.contact-section {
  padding: 5rem 0;
  background-color: var(--bg-body);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 1.1fr;
  }
}

.contact-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-detail-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.detail-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.contact-detail-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.contact-detail-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.detail-link {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 0.35rem;
}
.detail-link:hover {
  text-decoration: underline;
}

.instagram-link {
  color: #e1306c;
  font-weight: 700;
}

.hours-list {
  list-style: none;
  font-size: 0.9rem;
  margin-top: 0.35rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.2rem 0;
  border-bottom: 1px dotted var(--border-light);
}

.hours-note {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

.phone-link {
  color: var(--primary);
  font-weight: 700;
}
.phone-link:hover {
  text-decoration: underline;
}

/* Map Card */
.map-card {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-header {
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
}

.map-header strong {
  display: block;
  font-size: 0.95rem;
}

.map-header span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.map-footer-links {
  padding: 0.85rem 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--border-light);
  background-color: #fafaf9;
}

.map-footer-links a {
  color: var(--primary);
  font-weight: 600;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background-color: var(--bg-dark);
  color: #d4d4d8;
  padding-top: 4rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3.5rem;
}

@media (min-width: 640px) {
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-main {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }
}

.footer-logo .brand-name {
  color: #fb923c;
}
.footer-logo .brand-sub {
  color: #ffffff;
}

.footer-tagline {
  font-size: 0.9rem;
  color: #a1a1aa;
  margin: 1rem 0 1.5rem;
  line-height: 1.6;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fed7aa;
  font-size: 0.85rem;
  font-weight: 600;
}
.footer-socials a:hover {
  color: #ffffff;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: #a1a1aa;
}
.footer-links a:hover {
  color: #fb923c;
  padding-left: 4px;
}

.footer-col p {
  font-size: 0.9rem;
  color: #a1a1aa;
  margin-bottom: 0.5rem;
}
.footer-col p a {
  color: #fb923c;
  font-weight: 600;
}

.footer-foodora-btn {
  margin-top: 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  font-size: 0.85rem;
  color: #71717a;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.agency-credit a {
  color: #a1a1aa;
  font-weight: 600;
}
.agency-credit a:hover {
  color: #ffffff;
}

/* ==========================================================================
   Mobile Quick Bar
   ========================================================================== */
.mobile-quick-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0.5rem 0.25rem calc(0.5rem + env(safe-area-inset-bottom));
  z-index: 95;
}

@media (min-width: 992px) {
  .mobile-quick-bar {
    display: none;
  }
}

.quick-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  flex: 1;
  text-align: center;
  padding: 0.25rem 0;
}

.quick-action-btn.call-action {
  color: var(--primary);
  font-weight: 700;
}

.quick-action-btn.foodora-action {
  color: var(--foodora);
  font-weight: 800;
}

/* ==========================================================================
   Cart Modal (<dialog>)
   ========================================================================== */
.cart-modal {
  margin: auto;
  padding: 0;
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  max-width: 500px;
  width: calc(100% - 2rem);
  background-color: #ffffff;
  color: var(--text-main);
  overflow: hidden;
}

.cart-modal::backdrop {
  background-color: rgba(24, 24, 27, 0.65);
  backdrop-filter: blur(4px);
}

.cart-modal-inner {
  display: flex;
  flex-direction: column;
  max-height: 85vh;
}

.cart-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-light);
  background-color: var(--bg-card-alt);
}

.cart-modal-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.cart-modal-title h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
}

.close-modal-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.close-modal-btn:hover {
  background-color: var(--bg-card-alt);
  color: var(--text-main);
}

.cart-modal-body {
  padding: 1.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.empty-cart-msg {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  padding: 2rem 0;
}

.cart-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-light);
}

.cart-item-info strong {
  display: block;
  font-size: 0.95rem;
}
.cart-item-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.cart-qty-btn {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  background-color: var(--bg-card-alt);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

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

.cart-modal-footer {
  padding: 1.25rem 1.5rem;
  background-color: var(--bg-card-alt);
  border-top: 1px solid var(--border-light);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cart-total-price {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  color: var(--primary);
}

.cart-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.cart-disclaimer {
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 0.75rem;
}

/* ==========================================================================
   Toast
   ========================================================================== */
.toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background-color: var(--bg-dark);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  z-index: 110;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  white-space: nowrap;
}

@media (min-width: 992px) {
  .toast {
    bottom: 30px;
  }
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
