/* =====================================================
   PIZZAHUT - Premium Restaurant Website Styles
   Color: #e31837 (Red) | #222 (Dark) | #ffc107 (Accent)
   Fonts: Poppins (headings) | Open Sans (body)
   ===================================================== */

/* ---- CSS Variables ---- */
:root {
  --primary: #e31837;
  --primary-dark: #b5122b;
  --primary-light: #ff4d6d;
  --secondary: #222222;
  --accent: #ffc107;
  --accent-dark: #e6ac00;
  --bg: #f8f8f8;
  --white: #ffffff;
  --light-gray: #f1f1f1;
  --mid-gray: #999;
  --dark-gray: #444;
  --text: #333333;
  --text-light: #666;
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --shadow-red: 0 8px 30px rgba(227, 24, 55, 0.35);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --navbar-height: 80px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--secondary);
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p { color: var(--text-light); }

.section-subtitle {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 0.6rem;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-title span { color: var(--primary); }
.section-desc {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 520px;
}

/* ---- Utility Classes ---- */
.section-padding { padding: 100px 0; }
.section-padding-sm { padding: 60px 0; }
.text-center .section-desc { margin: 0 auto; }
.text-primary-custom { color: var(--primary) !important; }
.text-accent { color: var(--accent) !important; }
.bg-primary-custom { background-color: var(--primary) !important; }
.bg-dark-custom { background-color: var(--secondary) !important; }

/* ---- Gradient Buttons ---- */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white) !important;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  box-shadow: var(--shadow-red);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-primary-custom::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}
.btn-primary-custom:hover::before { opacity: 1; }
.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(227, 24, 55, 0.5);
  color: var(--white) !important;
}
.btn-primary-custom:active { transform: translateY(-1px); }

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 34px;
  background: transparent;
  color: var(--white) !important;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.8);
  transition: var(--transition);
}
.btn-outline-custom:hover {
  background: var(--white);
  color: var(--primary) !important;
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--secondary) !important;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 8px 25px rgba(255,193,7,0.4);
  transition: var(--transition);
}
.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255,193,7,0.55);
}

.btn-dark-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: var(--secondary);
  color: var(--white) !important;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: var(--transition);
}
.btn-dark-custom:hover {
  background: transparent;
  border-color: var(--secondary);
  color: var(--secondary) !important;
  transform: translateY(-3px);
}

/* ---- Glass Card ---- */
.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.glass-card-dark {
  background: rgba(34, 34, 34, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ---- Section Curve ---- */
.curve-top {
  position: relative;
}
.curve-top::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  height: 80px;
  background: inherit;
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 1;
}
.curve-bottom::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 0;
  right: 0;
  height: 80px;
  background: inherit;
  clip-path: ellipse(55% 100% at 50% 0%);
  z-index: 1;
}

/* ---- Divider ---- */
.divider-red {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 10px;
  margin: 12px 0 24px;
}
.divider-red.center { margin-left: auto; margin-right: auto; }

/* ---- Star Rating ---- */
.stars { color: var(--accent); font-size: 0.9rem; letter-spacing: 2px; }
.rating-text { font-size: 0.85rem; color: var(--mid-gray); margin-left: 6px; }

/* ---- Veg / Non-Veg Indicator ---- */
.veg-badge, .nonveg-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  border: 1.5px solid #00aa00;
  flex-shrink: 0;
}
.veg-badge::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00aa00;
}
.nonveg-badge {
  border-color: #cc0000;
}
.nonveg-badge::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 9px solid #cc0000;
}

/* =====================================================
   NAVBAR
   ===================================================== */
#mainNavbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  height: var(--navbar-height);
  transition: var(--transition);
  background: transparent;
  padding: 0 0;
}
#mainNavbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  height: 68px;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 24px;
  max-width: 1400px;
  margin: 0 auto;
}
/* Logo */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.logo-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  box-shadow: var(--shadow-red);
  flex-shrink: 0;
  transition: var(--transition);
}
.logo-icon:hover { transform: rotate(20deg) scale(1.1); }
.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  transition: var(--transition);
  line-height: 1;
}
.logo-text span { color: var(--accent); }
#mainNavbar.scrolled .logo-text { color: var(--secondary); }
#mainNavbar.scrolled .logo-text span { color: var(--primary); }

/* Nav Links */
.navbar-nav-custom {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.navbar-nav-custom li a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}
.navbar-nav-custom li a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transition: var(--transition);
}
.navbar-nav-custom li a:hover::after,
.navbar-nav-custom li a.active::after { transform: scaleX(1); }
.navbar-nav-custom li a:hover,
.navbar-nav-custom li a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
#mainNavbar.scrolled .navbar-nav-custom li a { color: var(--secondary); }
#mainNavbar.scrolled .navbar-nav-custom li a:hover,
#mainNavbar.scrolled .navbar-nav-custom li a.active {
  color: var(--primary);
  background: rgba(227, 24, 55, 0.08);
}
.nav-order-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: 50px !important;
  box-shadow: 0 4px 15px rgba(227, 24, 55, 0.4);
}
.nav-order-btn:hover {
  box-shadow: 0 6px 25px rgba(227, 24, 55, 0.6) !important;
  transform: translateY(-2px);
  background: rgba(255,255,255,0.08) !important;
}
.nav-order-btn::after { display: none !important; }

/* Cart Icon */
.navbar-cart {
  position: relative;
  cursor: pointer;
  color: var(--white);
  font-size: 1.4rem;
  transition: var(--transition);
  padding: 8px;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar-cart:hover {
  background: rgba(255,255,255,0.15);
  transform: scale(1.1);
}
#mainNavbar.scrolled .navbar-cart { color: var(--secondary); }
#mainNavbar.scrolled .navbar-cart:hover { background: rgba(227, 24, 55, 0.1); color: var(--primary); }
.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--accent);
  color: var(--secondary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.65rem;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  transition: var(--transition);
}
.cart-badge.bounce { animation: cartBounce 0.4s ease; }
@keyframes cartBounce {
  0%, 100% { transform: scale(1); }
  40% { transform: scale(1.6); }
  70% { transform: scale(0.9); }
}

/* Hamburger */
.navbar-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.navbar-hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 4px;
  transition: var(--transition);
}
#mainNavbar.scrolled .navbar-hamburger span { background: var(--secondary); }
.navbar-hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.navbar-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar-hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile Nav Panel */
.mobile-nav-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 90vw);
  height: 100vh;
  background: var(--white);
  box-shadow: -10px 0 40px rgba(0,0,0,0.15);
  z-index: 10000;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
  overflow-y: auto;
}
.mobile-nav-panel.open { right: 0; }
.mobile-nav-panel .nav-links li {
  border-bottom: 1px solid var(--light-gray);
  padding: 2px 0;
}
.mobile-nav-panel .nav-links li a {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--secondary);
  padding: 13px 0;
  transition: var(--transition);
}
.mobile-nav-panel .nav-links li a:hover { color: var(--primary); padding-left: 8px; }
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: all; }
.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  color: var(--secondary);
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--light-gray);
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0a0e 0%, #2d0f15 40%, #1a0a0e 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1513104890138-7c749659a591?w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.35;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(0,0,0,0.8) 0%,
    rgba(227,24,55,0.25) 50%,
    rgba(0,0,0,0.6) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--navbar-height);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,193,7,0.15);
  border: 1.5px solid rgba(255,193,7,0.5);
  border-radius: 50px;
  padding: 6px 16px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.7; }
}
.hero-title {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title .line-red { color: var(--primary); display: block; }
.hero-title .line-accent { color: var(--accent); display: block; }
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 50px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat .num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  color: var(--white);
  display: block;
  line-height: 1;
}
.hero-stat .num span { color: var(--accent); }
.hero-stat .label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.2);
  align-self: stretch;
}
/* Floating pizza image on hero */
.hero-image-wrap {
  position: relative;
  z-index: 2;
}
.hero-pizza-img {
  width: 100%;
  max-width: 560px;
  border-radius: 50%;
  animation: float-pizza 4s ease-in-out infinite;
  box-shadow: 0 30px 80px rgba(227, 24, 55, 0.4);
  border: 6px solid rgba(255,255,255,0.1);
}
@keyframes float-pizza {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-22px) rotate(2deg); }
}
.hero-pizza-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-pizza-badge.b1 { top: 10%; right: -10%; animation: float-badge1 3s ease-in-out infinite; }
.hero-pizza-badge.b2 { bottom: 15%; left: -8%; animation: float-badge2 3.5s ease-in-out infinite; }
@keyframes float-badge1 {
  0%, 100% { transform: translateY(0) rotate(3deg); }
  50% { transform: translateY(-12px) rotate(3deg); }
}
@keyframes float-badge2 {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-10px) rotate(-2deg); }
}
.hero-pizza-badge .badge-icon { font-size: 1.8rem; }
.hero-pizza-badge .badge-text { line-height: 1.2; }
.hero-pizza-badge .badge-text strong { display: block; font-size: 0.95rem; color: var(--secondary); }
.hero-pizza-badge .badge-text span { font-size: 0.75rem; color: var(--text-light); }
/* Scroll Indicator */
.hero-scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2; }
.scroll-mouse {
  width: 28px; height: 46px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 14px;
  margin: 0 auto 8px;
  position: relative;
}
.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.7);
  border-radius: 4px;
  animation: scroll-down 1.5s ease infinite;
}
@keyframes scroll-down {
  0% { top: 6px; opacity: 1; }
  80% { top: 26px; opacity: 0; }
  100% { top: 6px; opacity: 0; }
}
.scroll-text { font-size: 0.7rem; color: rgba(255,255,255,0.5); text-align: center; letter-spacing: 2px; }

/* =====================================================
   CATEGORIES SECTION
   ===================================================== */
.categories-section { background: var(--white); }
.category-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  text-align: center;
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  opacity: 0;
  transition: var(--transition);
  z-index: 0;
}
.category-card:hover::before { opacity: 1; }
.category-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-red); border-color: var(--primary); }
.category-card:hover .cat-icon,
.category-card:hover .cat-title,
.category-card:hover .cat-count { color: var(--white) !important; }
.category-card > * { position: relative; z-index: 1; }
.cat-icon {
  font-size: 3rem;
  margin-bottom: 14px;
  display: block;
  transition: var(--transition);
  color: var(--primary);
}
.cat-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--secondary);
  margin-bottom: 4px;
  transition: var(--transition);
}
.cat-count { font-size: 0.8rem; color: var(--mid-gray); transition: var(--transition); }

/* =====================================================
   FOOD CARDS / BEST SELLERS
   ===================================================== */
.food-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0,0,0,0.04);
}
.food-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.food-card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
  background: linear-gradient(135deg, #fff5f5 0%, #fff0f0 100%);
}
.food-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.food-card:hover .food-card-img-wrap img { transform: scale(1.12); }
.food-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 1px;
}
.food-card-badge.bestseller { background: var(--accent); color: var(--secondary); }
.food-card-badge.new { background: #22c55e; }
.food-card-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition);
  color: var(--mid-gray);
  font-size: 1rem;
}
.food-card-wishlist:hover { background: var(--primary); color: var(--white); transform: scale(1.1); }
.food-card-body {
  padding: 18px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.food-card-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; margin-bottom: 6px; }
.food-card-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--secondary);
  line-height: 1.3;
}
.food-card-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.5;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.food-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  gap: 8px;
}
.food-card-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--primary);
}
.food-card-price .original {
  font-size: 0.85rem;
  color: var(--mid-gray);
  text-decoration: line-through;
  font-weight: 400;
  margin-left: 5px;
}
.btn-add-cart {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 9px 18px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(227, 24, 55, 0.3);
}
.btn-add-cart:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(227, 24, 55, 0.45);
}
.btn-add-cart.added { background: #22c55e; }

/* =====================================================
   DEALS SECTION
   ===================================================== */
.deals-section { background: linear-gradient(135deg, var(--secondary) 0%, #1a0a0e 50%, #2d0f15 100%); position: relative; }
.deals-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e31837' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.deal-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  height: 100%;
}
.deal-card:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(227, 24, 55, 0.5);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.deal-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.deal-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.deal-card:hover .deal-card-img img { transform: scale(1.1); }
.deal-card-save {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(227, 24, 55, 0.4);
  animation: pulse-badge 2s ease infinite;
}
@keyframes pulse-badge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.deal-card-body { padding: 22px; }
.deal-card-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 8px;
}
.deal-card-desc { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.deal-timer { display: flex; gap: 8px; margin-bottom: 16px; }
.timer-block {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  padding: 8px 4px;
  text-align: center;
}
.timer-block .num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--accent);
  display: block;
  line-height: 1;
}
.timer-block .label { font-size: 0.65rem; color: rgba(255,255,255,0.4); text-transform: uppercase; }
.deal-price-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.deal-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--accent);
}
.deal-price-old {
  font-size: 1rem;
  color: rgba(255,255,255,0.35);
  text-decoration: line-through;
}
.btn-deal {
  display: block;
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  box-shadow: var(--shadow-red);
}
.btn-deal:hover { transform: translateY(-2px); box-shadow: 0 10px 35px rgba(227, 24, 55, 0.5); }

/* =====================================================
   CHEF SPECIAL SECTION
   ===================================================== */
.chef-special-section { background: var(--bg); position: relative; overflow: hidden; }
.chef-special-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(227, 24, 55, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.chef-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.chef-img-wrap::before {
  content: '';
  position: absolute;
  inset: 20px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  z-index: 0;
  opacity: 0.1;
}
.chef-img {
  position: relative;
  z-index: 1;
  max-width: 480px;
  width: 100%;
  border-radius: 50%;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
  border: 8px solid var(--white);
  animation: float-pizza 5s ease-in-out infinite;
}

/* =====================================================
   WHY CHOOSE US
   ===================================================== */
.why-section { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); position: relative; overflow: hidden; }
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='40' cy='40' r='6'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.why-card {
  text-align: center;
  padding: 36px 24px;
  position: relative;
  z-index: 1;
}
.why-icon-wrap {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.2);
  transition: var(--transition);
}
.why-card:hover .why-icon-wrap {
  background: rgba(255,255,255,0.2);
  transform: scale(1.1) rotate(5deg);
  border-color: rgba(255,255,255,0.4);
}
.why-card h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 10px; }
.why-card p { color: rgba(255,255,255,0.75); font-size: 0.9rem; max-width: 200px; margin: 0 auto; }

/* =====================================================
   VIDEO SECTION
   ===================================================== */
.video-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--secondary);
}
.video-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1571091718767-18b5b1457add?w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.25;
}
.video-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.65); }
.video-content { position: relative; z-index: 2; text-align: center; }
.play-btn {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  cursor: pointer;
  font-size: 1.8rem;
  color: var(--white);
  box-shadow: 0 0 0 0 rgba(227, 24, 55, 0.6);
  animation: pulse-ring 2s ease infinite;
  transition: var(--transition);
  border: none;
}
.play-btn:hover { transform: scale(1.1); }
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(227, 24, 55, 0.6); }
  70% { box-shadow: 0 0 0 28px rgba(227, 24, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(227, 24, 55, 0); }
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials-section { background: var(--white); }
.testimonial-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: var(--shadow-sm);
  position: relative;
  height: 100%;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.12;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-text { font-size: 0.95rem; color: var(--text); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
  flex-shrink: 0;
}
.testimonial-name { font-family: var(--font-heading); font-weight: 700; font-size: 0.95rem; color: var(--secondary); }
.testimonial-role { font-size: 0.8rem; color: var(--mid-gray); }

/* =====================================================
   APP PROMO SECTION
   ===================================================== */
.app-section {
  background: linear-gradient(135deg, var(--secondary) 0%, #111 100%);
  position: relative;
  overflow: hidden;
}
.app-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(227, 24, 55, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.app-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,193,7,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.app-content { position: relative; z-index: 1; }
.app-phones {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: -30px;
}
.app-phone {
  width: clamp(140px, 20vw, 200px);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border: 3px solid rgba(255,255,255,0.15);
  animation: float-pizza 4s ease-in-out infinite;
}
.app-phone:first-child { margin-right: -30px; z-index: 0; opacity: 0.85; animation-delay: 0.5s; }
.app-phone:last-child { z-index: 2; }
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  transition: var(--transition);
  backdrop-filter: blur(10px);
  min-width: 180px;
}
.store-btn:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
  color: var(--white);
}
.store-btn i { font-size: 1.8rem; }
.store-btn-text small { display: block; font-size: 0.7rem; opacity: 0.7; }
.store-btn-text strong { display: block; font-family: var(--font-heading); font-size: 0.95rem; }

/* =====================================================
   FRANCHISE BANNER
   ===================================================== */
.franchise-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #c0102a 50%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.franchise-banner::before {
  content: '🍕';
  position: absolute;
  font-size: 20rem;
  opacity: 0.05;
  top: -50px;
  right: -30px;
  line-height: 1;
  pointer-events: none;
}

/* =====================================================
   MAP SECTION
   ===================================================== */
.map-section { background: var(--white); }
.map-iframe-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}
.map-iframe-wrap iframe { display: block; width: 100%; height: 420px; }

/* =====================================================
   NEWSLETTER
   ===================================================== */
.newsletter-section {
  background: linear-gradient(135deg, var(--secondary) 0%, #111 100%);
  padding: 80px 0;
  position: relative;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23e31837' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/svg%3E");
}
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 520px;
  margin: 0 auto;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.newsletter-input {
  flex: 1;
  padding: 16px 24px;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: rgba(255,255,255,0.95);
  color: var(--text);
}
.newsletter-btn {
  padding: 16px 28px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.newsletter-btn:hover { background: linear-gradient(135deg, var(--primary-dark), var(--primary-light)); }

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  background: #111111;
  padding-top: 70px;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
}
.footer-logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--white);
}
.footer-logo-text span { color: var(--accent); }
.footer-tagline { font-size: 0.9rem; color: rgba(255,255,255,0.5); margin: 8px 0 16px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  transition: var(--transition);
}
.social-btn:hover { background: var(--primary); border-color: var(--primary); color: var(--white); transform: translateY(-3px); }
.footer-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links li a:hover { color: var(--primary); transform: translateX(4px); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-contact-item .icon {
  width: 32px; height: 32px;
  background: rgba(227, 24, 55, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-item .text { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.5; }
.footer-contact-item .text strong { display: block; color: rgba(255,255,255,0.8); font-size: 0.85rem; margin-bottom: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 22px 0;
  margin-top: 50px;
}
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.35); margin: 0; }
.footer-bottom a { color: var(--primary); }

/* =====================================================
   FLOATING BUTTONS
   ===================================================== */
.floating-btns {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.float-btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
}
.float-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: var(--transition);
  border-radius: 50%;
}
.float-btn:hover::before { opacity: 1; }
.float-btn:hover { transform: scale(1.12); }
.float-wa { background: #25d366; }
.float-call { background: var(--primary); }
.float-top {
  width: 44px; height: 44px;
  background: rgba(34,34,34,0.85);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.float-top.show { opacity: 1; pointer-events: all; }
.float-tooltip {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--secondary);
  color: var(--white);
  font-size: 0.78rem;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.float-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--secondary);
}
.float-btn:hover .float-tooltip { opacity: 1; }

/* =====================================================
   CART OFFCANVAS
   ===================================================== */
.cart-offcanvas {
  position: fixed;
  top: 0;
  right: -420px;
  width: min(420px, 100vw);
  height: 100vh;
  background: var(--white);
  z-index: 100000;
  box-shadow: -10px 0 50px rgba(0,0,0,0.18);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.cart-offcanvas.open { right: 0; }
.cart-offcanvas-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.cart-offcanvas-overlay.open { opacity: 1; pointer-events: all; }
.cart-header {
  padding: 22px 24px;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.cart-header h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--secondary);
  margin: 0;
}
.cart-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--secondary);
  font-size: 1.1rem;
  transition: var(--transition);
}
.cart-close:hover { background: var(--primary); color: var(--white); }
.cart-items-list { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--light-gray);
  animation: fadeInRight 0.3s ease;
}
@keyframes fadeInRight { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
.cart-item-img {
  width: 60px; height: 60px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-family: var(--font-heading); font-weight: 600; font-size: 0.9rem; color: var(--secondary); margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-price { font-family: var(--font-heading); font-weight: 700; font-size: 0.95rem; color: var(--primary); }
.cart-qty-ctrl { display: flex; align-items: center; gap: 8px; }
.qty-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--light-gray);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--secondary);
  transition: var(--transition);
}
.qty-btn:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.qty-num { font-family: var(--font-heading); font-weight: 700; font-size: 0.95rem; min-width: 20px; text-align: center; }
.cart-item-remove { color: var(--mid-gray); cursor: pointer; font-size: 1rem; transition: var(--transition); padding: 4px; }
.cart-item-remove:hover { color: var(--primary); }
.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--light-gray);
  flex-shrink: 0;
  background: var(--white);
}
.cart-row { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 0.9rem; }
.cart-row.total { padding-top: 10px; border-top: 2px solid var(--light-gray); font-family: var(--font-heading); font-weight: 800; font-size: 1.1rem; color: var(--secondary); }
.cart-empty {
  text-align: center;
  padding: 60px 20px;
}
.cart-empty i { font-size: 4rem; color: var(--light-gray); margin-bottom: 16px; }
.cart-empty p { color: var(--mid-gray); font-size: 1rem; }
.cart-checkout-btn {
  display: block;
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  margin-top: 14px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-red);
}
.cart-checkout-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 35px rgba(227,24,55,0.5); }

/* =====================================================
   TOAST NOTIFICATION
   ===================================================== */
.toast-container { position: fixed; bottom: 100px; right: 24px; z-index: 200000; display: flex; flex-direction: column; gap: 10px; }
.toast-msg {
  background: var(--secondary);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  animation: toastIn 0.35s ease forwards;
  min-width: 240px;
  max-width: 320px;
  border-left: 4px solid var(--primary);
}
.toast-msg.success { border-color: #22c55e; }
.toast-msg.fade-out { animation: toastOut 0.35s ease forwards; }
@keyframes toastIn { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes toastOut { to { opacity: 0; transform: translateX(30px); } }

/* =====================================================
   DEAL POPUP MODAL
   ===================================================== */
.deal-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 300000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.deal-popup-overlay.show { opacity: 1; pointer-events: all; }
.deal-popup {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  max-width: 580px;
  width: 100%;
  position: relative;
  transform: scale(0.8);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 40px 100px rgba(0,0,0,0.4);
}
.deal-popup-overlay.show .deal-popup { transform: scale(1); }
.deal-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  color: var(--secondary);
  z-index: 10;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.deal-popup-close:hover { background: var(--primary); color: var(--white); }
.deal-popup-img { height: 240px; overflow: hidden; }
.deal-popup-img img { width: 100%; height: 100%; object-fit: cover; }
.deal-popup-body { padding: 30px 32px; text-align: center; }
.popup-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 14px;
  border-radius: 50px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.deal-popup-body h3 { font-size: 1.8rem; font-weight: 800; color: var(--secondary); margin-bottom: 10px; }
.deal-popup-body p { color: var(--text-light); margin-bottom: 20px; }
.deal-popup-body .promo-code {
  background: var(--bg);
  border: 2px dashed var(--primary);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 4px;
  margin-bottom: 18px;
  cursor: pointer;
  transition: var(--transition);
}
.deal-popup-body .promo-code:hover { background: var(--primary); color: var(--white); }
.popup-skip { font-size: 0.85rem; color: var(--mid-gray); cursor: pointer; }
.popup-skip:hover { color: var(--text-light); }

/* =====================================================
   PAGE HERO BANNER (shared across all inner pages)
   ===================================================== */
.page-hero {
  position: relative;
  padding: 120px 0 70px;
  min-height: 320px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0a0e 0%, #2d0f15 50%, #1a0a0e 100%);
  margin-top: var(--navbar-height);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1513104890138-7c749659a591?w=1600&q=60');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(227,24,55,0.15) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.page-hero-title {
  font-family: var(--font-heading);
  font-weight: 900;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}
.page-hero-breadcrumb a { color: var(--accent); }
.page-hero-breadcrumb a:hover { color: var(--white); }

/* =====================================================
   MENU PAGE
   ===================================================== */
.menu-filter-bar { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.filter-btn {
  padding: 8px 22px;
  border-radius: 50px;
  border: 2px solid rgba(0,0,0,0.1);
  background: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--dark-gray);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(227, 24, 55, 0.3);
}
.filter-btn.veg.active { background: #22c55e; border-color: #22c55e; box-shadow: 0 4px 15px rgba(34,197,94,0.3); }
.category-tab {
  padding: 10px 22px;
  border-radius: 10px;
  border: 2px solid transparent;
  background: transparent;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark-gray);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.category-tab:hover, .category-tab.active {
  color: var(--primary);
  border-color: var(--primary);
  background: rgba(227, 24, 55, 0.05);
}
.menu-search {
  position: relative;
  max-width: 280px;
}
.menu-search input {
  width: 100%;
  padding: 10px 16px 10px 40px;
  border-radius: 50px;
  border: 2px solid rgba(0,0,0,0.08);
  outline: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: var(--white);
  transition: var(--transition);
}
.menu-search input:focus { border-color: var(--primary); }
.menu-search i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--mid-gray);
}
.food-card.hidden { display: none !important; }

/* =====================================================
   FRANCHISE PAGE
   ===================================================== */
.invest-table { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.invest-table table { width: 100%; border-collapse: collapse; }
.invest-table th {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 16px 20px;
  text-align: left;
}
.invest-table td { padding: 14px 20px; border-bottom: 1px solid var(--light-gray); font-size: 0.9rem; color: var(--text); }
.invest-table tr:last-child td { border-bottom: none; }
.invest-table tr:hover td { background: rgba(227, 24, 55, 0.03); }
.req-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--light-gray);
}
.req-item:last-child { border: none; }
.req-icon {
  width: 40px; height: 40px;
  background: rgba(227, 24, 55, 0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}
.req-text { font-size: 0.92rem; color: var(--text); font-weight: 600; }
.profit-stat {
  text-align: center;
  padding: 30px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.profit-stat .num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--primary);
  display: block;
}
.profit-stat .label { font-size: 0.9rem; color: var(--text-light); }

/* =====================================================
   ABOUT PAGE
   ===================================================== */
.timeline { position: relative; padding-left: 30px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), transparent);
}
.timeline-item { position: relative; padding-bottom: 36px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px rgba(227, 24, 55, 0.2);
}
.timeline-year {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.timeline-content h5 { font-size: 1rem; font-weight: 700; color: var(--secondary); margin-bottom: 6px; }
.timeline-content p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }
.chef-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.chef-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.chef-avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary);
  margin: 0 auto 16px;
}
.chef-name { font-family: var(--font-heading); font-weight: 700; font-size: 1rem; color: var(--secondary); margin-bottom: 4px; }
.chef-role { font-size: 0.85rem; color: var(--primary); font-weight: 600; margin-bottom: 12px; }
.chef-bio { font-size: 0.84rem; color: var(--text-light); line-height: 1.6; }
.mission-card {
  padding: 36px 30px;
  border-radius: var(--radius-lg);
  height: 100%;
  box-shadow: var(--shadow-md);
}
.mission-card.mission { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--white); }
.mission-card.vision { background: var(--white); border: 2px solid var(--light-gray); }
.mission-icon { font-size: 3rem; margin-bottom: 16px; }

/* =====================================================
   CONTACT / ORDER PAGE FORMS
   ===================================================== */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--secondary);
  margin-bottom: 6px;
}
.form-control-custom {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-md);
  outline: none;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  -webkit-appearance: none;
}
.form-control-custom:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(227, 24, 55, 0.08); }
.form-control-custom::placeholder { color: var(--mid-gray); }
textarea.form-control-custom { resize: vertical; min-height: 120px; }
select.form-control-custom { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23999' d='M8 10L3 5h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 40px; }
.payment-option { display: flex; gap: 12px; flex-wrap: wrap; }
.payment-radio { display: none; }
.payment-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 2px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--dark-gray);
  transition: var(--transition);
}
.payment-radio:checked + .payment-label {
  border-color: var(--primary);
  background: rgba(227, 24, 55, 0.06);
  color: var(--primary);
}
.order-summary-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: calc(var(--navbar-height) + 20px);
}
.order-sum-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--light-gray);
  margin-bottom: 16px;
}
.order-sum-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--light-gray); font-size: 0.9rem; }
.order-sum-item:last-of-type { border: none; }
.order-sum-total { display: flex; justify-content: space-between; padding-top: 14px; border-top: 2px solid var(--light-gray); font-family: var(--font-heading); font-weight: 800; font-size: 1.15rem; color: var(--secondary); }
.order-sum-empty { text-align: center; padding: 30px; color: var(--mid-gray); font-size: 0.9rem; }
.hours-table { width: 100%; }
.hours-table tr { border-bottom: 1px solid var(--light-gray); }
.hours-table tr:last-child { border: none; }
.hours-table td { padding: 10px 0; font-size: 0.9rem; color: var(--text); }
.hours-table td:first-child { font-weight: 600; color: var(--secondary); }
.hours-table td.closed { color: var(--primary); }
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-top: 4px solid transparent;
}
.contact-info-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-top-color: var(--primary); }
.contact-info-icon {
  width: 64px; height: 64px;
  background: rgba(227, 24, 55, 0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin: 0 auto 16px;
  transition: var(--transition);
}
.contact-info-card:hover .contact-info-icon { background: var(--primary); color: var(--white); }

/* =====================================================
   DEALS PAGE
   ===================================================== */
.deal-hero-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
}
.deal-hero-card:hover { transform: translateY(-8px); box-shadow: 0 30px 80px rgba(0,0,0,0.18); }
.deal-hero-card .deal-img { height: 240px; overflow: hidden; position: relative; }
.deal-hero-card .deal-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.deal-hero-card:hover .deal-img img { transform: scale(1.08); }
.deal-hero-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.deal-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.deal-tag.hot { background: rgba(227, 24, 55, 0.1); color: var(--primary); }
.deal-tag.family { background: rgba(255, 193, 7, 0.15); color: #b8860b; }
.deal-tag.party { background: rgba(107, 33, 168, 0.1); color: #6b21a8; }
.deal-tag.student { background: rgba(34, 197, 94, 0.1); color: #166534; }
.deal-hero-title { font-size: 1.3rem; font-weight: 800; color: var(--secondary); margin-bottom: 8px; }
.deal-hero-desc { font-size: 0.88rem; color: var(--text-light); margin-bottom: 16px; flex: 1; }
.deal-includes { margin-bottom: 16px; }
.deal-includes li { font-size: 0.85rem; color: var(--text); display: flex; align-items: center; gap: 8px; padding: 4px 0; }
.deal-includes li i { color: #22c55e; font-size: 0.8rem; flex-shrink: 0; }
.deal-footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 16px; border-top: 1px solid var(--light-gray); }
.deal-big-price { font-family: var(--font-heading); font-weight: 800; font-size: 1.6rem; color: var(--primary); }
.deal-big-price .old { font-size: 0.9rem; color: var(--mid-gray); text-decoration: line-through; font-weight: 400; margin-left: 6px; }
.deal-saving { font-size: 0.8rem; color: #22c55e; font-weight: 700; display: block; }

/* =====================================================
   SWIPER CUSTOMIZATION
   ===================================================== */
.swiper-pagination-bullet { background: rgba(227, 24, 55, 0.3) !important; opacity: 1 !important; }
.swiper-pagination-bullet-active { background: var(--primary) !important; width: 24px !important; border-radius: 4px !important; }
.swiper-button-next, .swiper-button-prev {
  width: 44px !important; height: 44px !important;
  background: var(--white) !important;
  border-radius: 50% !important;
  box-shadow: var(--shadow-md) !important;
  color: var(--primary) !important;
}
.swiper-button-next::after, .swiper-button-prev::after { font-size: 1rem !important; font-weight: 900 !important; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1200px) {
  .navbar-nav-custom li a { padding: 8px 10px; font-size: 0.85rem; }
}
@media (max-width: 992px) {
  .navbar-nav-custom { display: none; }
  .navbar-hamburger { display: flex; }
  .hero-image-wrap { display: none; }
  .hero-title { font-size: clamp(2.2rem, 6vw, 3.2rem); }
  :root { --navbar-height: 70px; }
}
@media (max-width: 768px) {
  :root { --navbar-height: 65px; }
  .section-padding { padding: 70px 0; }
  .hero-stat-divider { display: none; }
  .hero-stats { gap: 20px; }
  .newsletter-form { flex-direction: column; border-radius: var(--radius-lg); }
  .newsletter-input { border-radius: var(--radius-lg); }
  .newsletter-btn { border-radius: var(--radius-lg); padding: 14px 20px; }
  .deal-popup-body { padding: 20px; }
  .cart-offcanvas { width: 100vw; right: -100vw; }
  .cart-offcanvas.open { right: 0; }
  .app-phones { flex-direction: row; }
  .page-hero { margin-top: var(--navbar-height); }
}
@media (max-width: 576px) {
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .hero-buttons a { width: 100%; justify-content: center; }
  .play-btn { width: 72px; height: 72px; font-size: 1.4rem; }
  .floating-btns { right: 16px; bottom: 20px; }
  .float-btn { width: 48px; height: 48px; font-size: 1.1rem; }
  .food-card-img-wrap { height: 180px; }
  .deal-timer { gap: 4px; }
}

/* ---- Order Summary (os-*) ---- */
.os-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--light-gray);
  gap: 8px;
}
.os-row:last-child { border-bottom: none; }
.os-row.total {
  border-top: 2px solid var(--light-gray);
  border-bottom: none;
  padding-top: 14px;
  margin-top: 4px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--secondary);
}
.os-empty {
  text-align: center;
  padding: 30px 16px;
  color: var(--mid-gray);
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.os-footer { padding-top: 8px; }

/* ---- Pizza Select Grid ---- */
.pizza-selector-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 16px; }
.pizza-select-item {
  cursor: pointer;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-md);
  padding: 14px;
  text-align: center;
  transition: var(--transition);
  background: var(--white);
  user-select: none;
}
.pizza-select-item:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.pizza-select-item.selected { border-color: var(--primary); background: rgba(227,24,55,.06); box-shadow: var(--shadow-red); }
.pizza-select-item img { width: 80px; height: 80px; object-fit: cover; border-radius: 50%; margin: 0 auto 10px; }
.pizza-select-item .ps-name { font-weight: 700; font-size: .85rem; color: var(--secondary); }
.pizza-select-item .ps-price { color: var(--primary); font-weight: 700; font-size: .9rem; margin-top: 4px; }
.pizza-select-item .ps-check { display: none; color: var(--primary); font-size: 1.1rem; margin-top: 4px; }
.pizza-select-item.selected .ps-check { display: block; }

/* ---- Deal Timer (countdown rendered by JS) ---- */
.deal-timer-unit { display: inline-flex; flex-direction: column; align-items: center; min-width: 38px; }
.deal-timer-num  { font-size: 1.35rem; font-weight: 800; line-height: 1; color: var(--primary); }
.deal-timer-label { font-size: .56rem; font-weight: 700; letter-spacing: .05em; color: #888; text-transform: uppercase; margin-top: 2px; }
.deal-timer-sep  { font-size: 1.2rem; font-weight: 900; color: var(--primary); align-self: flex-start; margin-top: 2px; padding: 0 4px; }

/* ---- Toast ---- */
.pizza-toast {
  background: var(--white);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 13px 18px;
  font-size: .87rem;
  font-family: var(--font-body);
  max-width: 320px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

/* ---- Back To Top show state ---- */
.float-top { opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s; transform: translateY(10px); }
.float-top.show { opacity: 1; pointer-events: all; transform: translateY(0); }

/* ---- Cart Badge Bounce ---- */
@keyframes cartBounce {
  0%,100% { transform: scale(1); }
  30%     { transform: scale(1.5); }
  60%     { transform: scale(0.88); }
  80%     { transform: scale(1.15); }
}
.cart-badge.bounce { animation: cartBounce .45s ease; }

/* ---- Mobile Nav Panel active link ---- */
.mobile-nav-panel .nav-links li a.active { color: var(--primary); }

/* ---- Was-validated form feedback ---- */
.was-validated .form-control-custom:invalid { border-color: #dc3545 !important; }
.was-validated .form-control-custom:valid   { border-color: #22c55e !important; }
