/* -------------------------------------------------------------------------- */
/* DESIGN SYSTEM & FONTS                                                      */
/* -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --primary-color: #E53935;
  --primary-gradient: linear-gradient(135deg, #FF3B30 0%, #D32F2F 100%);
  --primary-hover: #C62828;
  --primary-light: rgba(229, 57, 53, 0.08);
  
  --secondary-color: #FF6D00;
  --secondary-gradient: linear-gradient(135deg, #FF9100 0%, #FF6D00 100%);
  
  --accent-gold: #FFD54F;
  --accent-green: #2E7D32;
  --veg-bg: #E8F5E9;
  
  --dark-bg: #0C0E12;
  --dark-surface: #141820;
  --dark-card: #1C222E;
  --dark-border: rgba(255, 255, 255, 0.1);
  
  --light-bg: #F8FAFC;
  --light-surface: #FFFFFF;
  --light-border: #E2E8F0;
  
  --text-main: #0F172A;
  --text-muted: #64748B;
  --text-light: #F8FAFC;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.14);
  --shadow-glow: 0 8px 25px rgba(229, 57, 53, 0.3);
  
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* -------------------------------------------------------------------------- */
/* RESET & BASE                                                               */
/* -------------------------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--light-bg);
}

body {
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

/* -------------------------------------------------------------------------- */
/* SCROLL REVEAL ANIMATIONS (Graceful fallback)                              */
/* -------------------------------------------------------------------------- */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (prefers-reduced-motion: no-preference) {
  .js-reveal {
    opacity: 0;
    transform: translateY(20px);
  }
  .js-reveal.active {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -------------------------------------------------------------------------- */
/* CONTAINER & BUTTONS                                                        */
/* -------------------------------------------------------------------------- */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--primary-gradient);
  color: #FFF;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(229, 57, 53, 0.4);
}

.btn-secondary {
  background: var(--light-surface);
  color: var(--text-main);
  border: 1.5px solid var(--light-border);
}

.btn-secondary:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.btn-dark {
  background: rgba(255, 255, 255, 0.08);
  color: #FFF;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}

.btn-dark:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-accent {
  background: #FFF3E0;
  color: var(--secondary-color);
}

.badge-veg {
  background: var(--veg-bg);
  color: var(--accent-green);
}

.item-number {
  background: #F1F5F9;
  color: #475569;
  padding: 4px 10px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 13px;
}

/* Status Indicator */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  background: rgba(46, 125, 50, 0.12);
  color: #2E7D32;
  border: 1px solid rgba(46, 125, 50, 0.25);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2E7D32;
  box-shadow: 0 0 10px #2E7D32;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(46, 125, 50, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(46, 125, 50, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(46, 125, 50, 0); }
}

/* -------------------------------------------------------------------------- */
/* HEADER & STICKY NAVBAR                                                     */
/* -------------------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-gradient);
  color: white;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: var(--shadow-glow);
}

.logo-text h1 {
  font-size: 22px;
  font-weight: 900;
  color: var(--text-main);
  line-height: 1;
}

.logo-text span {
  font-size: 12px;
  color: var(--primary-color);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-main);
  position: relative;
  transition: var(--transition);
  padding: 4px 0;
}

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

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--primary-light);
  border: 1.5px solid rgba(229, 57, 53, 0.2);
  color: var(--primary-color);
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 15px;
  transition: var(--transition);
}

.phone-badge:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  cursor: pointer;
}

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

/* -------------------------------------------------------------------------- */
/* HERO SECTION                                                               */
/* -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, #090B0E 0%, #161C26 100%);
  color: white;
  padding: 90px 0 110px;
  overflow: hidden;
}

.hero-glow-1 {
  position: absolute;
  top: -150px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(229, 57, 53, 0.28) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 109, 0, 0.2) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content h2 {
  font-size: 52px;
  font-weight: 900;
  color: white;
  margin-top: 16px;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-content h2 span {
  background: linear-gradient(135deg, #FF6B6B, #FFA07A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: 18px;
  color: #94A3B8;
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-features {
  display: flex;
  gap: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 28px;
  flex-wrap: wrap;
}

.hero-feat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #CBD5E1;
  font-weight: 600;
}

.hero-feat-item i {
  color: var(--primary-color);
  font-size: 20px;
}

.hero-media {
  position: relative;
}

.hero-img-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transform: perspective(1000px) rotateY(-5deg);
  transition: var(--transition);
}

.hero-img-card:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.hero-img-card img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

.hero-floating-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: rgba(15, 20, 28, 0.88);
  backdrop-filter: blur(14px);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.floating-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-gradient);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.floating-text strong {
  display: block;
  font-size: 16px;
  color: white;
  font-weight: 800;
}

.floating-text span {
  font-size: 13px;
  color: #94A3B8;
}

/* -------------------------------------------------------------------------- */
/* HIGHLIGHTS SECTION                                                         */
/* -------------------------------------------------------------------------- */
.highlights {
  padding: 80px 0;
  background: white;
  border-bottom: 1px solid var(--light-border);
}

.section-title {
  text-align: center;
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 14px;
  color: var(--text-main);
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 17px;
  margin-bottom: 56px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  justify-content: center;
  align-items: stretch;
}

.highlight-card {
  background: var(--light-bg);
  padding: 32px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  border: 1.5px solid var(--light-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-gradient);
  opacity: 0;
  transition: var(--transition);
}

.highlight-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  background: white;
}

.highlight-card:hover::before {
  opacity: 1;
}

.highlight-icon {
  width: 64px;
  height: 64px;
  background: #FEF2F2;
  color: var(--primary-color);
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 20px;
  transition: var(--transition);
}

.highlight-card:hover .highlight-icon {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1) rotate(-5deg);
}

.highlight-card h4 {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 10px;
}

.highlight-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* -------------------------------------------------------------------------- */
/* MENU SECTION & CONTROLS                                                   */
/* -------------------------------------------------------------------------- */
.menu-section {
  padding: 90px 0;
}

.menu-header-bar {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 48px;
}

.search-filter-row {
  display: flex;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}

.search-box {
  position: relative;
  flex-grow: 1;
}

.search-box input {
  width: 100%;
  padding: 16px 24px 16px 52px;
  border-radius: var(--radius-full);
  border: 2px solid var(--light-border);
  font-size: 16px;
  outline: none;
  transition: var(--transition);
  background: white;
  box-shadow: var(--shadow-sm);
}

.search-box input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 5px rgba(229, 57, 53, 0.12);
}

.search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 20px;
}

.clear-search-btn {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 18px;
  display: none;
  cursor: pointer;
}

.search-box input:not(:placeholder-shown) ~ .clear-search-btn {
  display: block;
}

.category-nav {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 12px 8px 18px;
  justify-content: flex-start;
  align-items: center;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) var(--light-border);
}

.category-nav::-webkit-scrollbar {
  height: 6px;
}

.category-nav::-webkit-scrollbar-track {
  background: var(--light-border);
  border-radius: var(--radius-full);
}

.category-nav::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: var(--radius-full);
}

.cat-pill {
  padding: 12px 24px;
  border-radius: var(--radius-full);
  background: white;
  border: 1.5px solid var(--light-border);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-main);
  white-space: nowrap;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}

.cat-pill i {
  font-size: 16px;
}

.cat-pill:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.cat-pill.active {
  background: var(--primary-gradient);
  color: white;
  border-color: var(--primary-color);
  box-shadow: var(--shadow-glow);
}

.cat-count {
  background: rgba(0, 0, 0, 0.08);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 11px;
}

.cat-pill.active .cat-count {
  background: rgba(255, 255, 255, 0.25);
  color: white;
}

/* MENU GRID & CARDS */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.menu-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1.5px solid var(--light-border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(229, 57, 53, 0.3);
}

.card-header {
  margin-bottom: 14px;
}

.header-badges {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.item-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-main);
}

.item-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex-grow: 1;
  line-height: 1.6;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px dashed var(--light-border);
  padding-top: 20px;
  gap: 12px;
}

.price-container {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-val {
  font-size: 24px;
  font-weight: 900;
  color: var(--primary-color);
}

.price-pill {
  font-size: 13px;
  color: var(--text-muted);
}

.price-pill strong {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 800;
}

.add-btn {
  padding: 10px 20px;
  font-size: 14px;
}

/* Special Custom Pizza Card Glow */
.menu-card.custom-pizza-card {
  background: linear-gradient(135deg, #FFF 0%, #FFF8F8 100%);
  border: 2px solid var(--primary-color);
}

/* Empty Search State */
.empty-search {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  background: white;
  border-radius: var(--radius-md);
  border: 2px dashed var(--light-border);
}

.empty-icon {
  font-size: 64px;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.empty-search h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}

/* -------------------------------------------------------------------------- */
/* ABOUT US SECTION                                                           */
/* -------------------------------------------------------------------------- */
.about-section {
  padding: 90px 0;
  background: white;
  border-top: 1px solid var(--light-border);
}

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

.about-content h2 {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 24px;
}

.about-content p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 18px;
  line-height: 1.7;
}

.about-img-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-img-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-border);
}

.about-img-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: var(--transition);
}

.about-img-card:hover img {
  transform: scale(1.06);
}

/* -------------------------------------------------------------------------- */
/* CONTACT & LOCATION SECTION                                                 */
/* -------------------------------------------------------------------------- */
.contact-section {
  padding: 90px 0;
  background: var(--light-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-card {
  background: white;
  padding: 44px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--light-border);
  box-shadow: var(--shadow-md);
}

.contact-card h3 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 24px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-icon {
  width: 48px;
  height: 48px;
  background: #FEF2F2;
  color: var(--primary-color);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.info-text strong {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.info-text span, .info-text a {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-main);
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--light-border);
  box-shadow: var(--shadow-md);
  height: 100%;
  min-height: 420px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* -------------------------------------------------------------------------- */
/* MODALS                                                                     */
/* -------------------------------------------------------------------------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(6px);
}

.modal-card {
  position: relative;
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  background: white;
  border-radius: var(--radius-lg);
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  z-index: 1;
  transform: scale(0.95);
  transition: var(--transition);
}

.modal.active .modal-card {
  transform: scale(1);
}

.modal-header {
  padding: 28px;
  border-bottom: 1px solid var(--light-border);
}

.modal-header h3 {
  font-size: 24px;
  font-weight: 900;
  margin-top: 8px;
}

.modal-sub {
  font-size: 15px;
  color: var(--text-muted);
}

.modal-body {
  padding: 28px;
}

.option-section {
  margin-bottom: 24px;
}

.option-section h4 {
  font-size: 13px;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.size-display-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
}

.size-option-display {
  border: 2px solid var(--light-border);
  padding: 16px;
  border-radius: var(--radius-md);
  text-align: center;
  background: #F8FAFC;
}

.size-name {
  display: block;
  font-weight: 800;
  font-size: 16px;
}

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

.modal-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--light-bg);
  padding: 18px;
  border-radius: var(--radius-md);
  margin-top: 24px;
  font-weight: 800;
}

.modal-total strong {
  font-size: 22px;
  color: var(--primary-color);
}

.modal-footer {
  padding: 24px 28px;
  border-top: 1px solid var(--light-border);
  display: flex;
  justify-content: flex-end;
  gap: 14px;
}

/* VISUAL PIZZA BUILDER CANVAS */
.pizza-visual-preview {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 20px;
  background: radial-gradient(circle, #FFE082 0%, #FFB74D 70%, #E65100 100%);
  border-radius: 50%;
  border: 6px solid #D84315;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.2), 0 10px 25px rgba(230, 81, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pizza-toppings-layer {
  position: absolute;
  inset: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px;
}

.topping-dot {
  background: rgba(255, 255, 255, 0.9);
  padding: 4px 8px;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 800;
  color: #D32F2F;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
  max-height: 240px;
  overflow-y: auto;
  padding: 4px;
}

.ingredient-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border: 1.5px solid var(--light-border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  background: white;
  transition: var(--transition);
}

.ingredient-pill:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.ingredient-pill.selected {
  border-color: var(--primary-color);
  background: #FEF2F2;
  color: var(--primary-color);
}

.check-icon {
  display: none;
}

.ingredient-pill.selected .check-icon {
  display: block;
}

/* -------------------------------------------------------------------------- */
/* FOOTER                                                                     */
/* -------------------------------------------------------------------------- */
.footer {
  background: #0B0E14;
  color: #94A3B8;
  padding: 80px 0 36px;
  border-top: 1px solid #1E2430;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand h3 {
  color: white;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.7;
}

.footer-col h4 {
  color: white;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #1E2430;
  padding-top: 28px;
  font-size: 14px;
}

/* -------------------------------------------------------------------------- */
/* COMPREHENSIVE RESPONSIVE MEDIA QUERIES                                     */
/* -------------------------------------------------------------------------- */

/* Fluid Typography and Utilities for Small Screens */
@media (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 0 20px;
  }
}

/* Laptops & Tablets Landscape (max-width: 992px) */
@media (max-width: 992px) {
  .nav-container {
    height: 76px;
  }
  
  .hero {
    padding: 60px 0 80px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-content h2 {
    font-size: clamp(2rem, 6vw, 3rem);
    margin-left: auto;
    margin-right: auto;
  }

  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .hero-media {
    max-width: 580px;
    margin: 0 auto;
    width: 100%;
  }

  .hero-img-card {
    transform: none !important;
  }

  .hero-img-card img {
    height: 360px;
  }

  .highlights-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: 20px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .map-container {
    min-height: 350px;
  }

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

/* Tablets Portrait (max-width: 768px) */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 32px 24px;
    border-bottom: 1px solid var(--light-border);
    box-shadow: var(--shadow-lg);
    display: none;
    gap: 20px;
    text-align: center;
  }

  .nav-links.open {
    display: flex;
    animation: slideDown 0.3s ease forwards;
  }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .mobile-toggle {
    display: flex;
  }

  .phone-text {
    display: none;
  }

  .phone-badge {
    padding: 10px;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    justify-content: center;
  }

  .section-title {
    font-size: clamp(1.75rem, 5vw, 2.25rem);
  }

  .section-subtitle {
    font-size: 15px;
    margin-bottom: 36px;
  }

  .menu-grid {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 290px), 1fr));
    gap: 20px;
  }

  .menu-card {
    padding: 20px;
  }

  .contact-card {
    padding: 28px 20px;
  }

  .contact-card h3 {
    font-size: 22px;
  }
}

/* Mobile Devices & Small Phones (max-width: 576px) */
@media (max-width: 576px) {
  .container {
    padding: 0 16px;
  }

  .logo-text h1 {
    font-size: 18px;
  }

  .logo-text span {
    font-size: 10px;
  }

  .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .hero {
    padding: 40px 0 60px;
  }

  .status-pill {
    font-size: 11px;
    padding: 4px 10px;
  }

  .hero-img-card img {
    height: 260px;
  }

  .hero-floating-badge {
    bottom: 14px;
    left: 14px;
    padding: 10px 14px;
    gap: 10px;
  }

  .floating-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .floating-text strong {
    font-size: 13px;
  }

  .floating-text span {
    font-size: 11px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .cat-pill {
    padding: 10px 18px;
    font-size: 13px;
  }

  .search-box input {
    padding: 14px 38px 14px 44px;
    font-size: 14px;
  }

  .card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .card-footer .add-btn {
    width: 100%;
  }

  .about-img-gallery {
    grid-template-columns: 1fr;
  }

  .about-img-card img {
    height: 200px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .modal-card {
    border-radius: var(--radius-md);
    max-width: 95vw;
  }

  .modal-header {
    padding: 20px;
  }

  .modal-body {
    padding: 20px;
  }

  .modal-footer {
    padding: 16px 20px;
    flex-direction: column;
  }

  .modal-footer .btn {
    width: 100%;
  }

  .size-display-grid {
    grid-template-columns: 1fr;
  }

  .ingredients-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }
}
