/*
  Kebab Box - Main Core Stylesheet
  Vanilla CSS Design System
*/

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

/* --- 1. DESIGN SYSTEM SYSTEM TOKENS --- */
:root {
  /* Colors */
  --bg-deep: #0b0b0d;
  --bg-main: #121215;
  --bg-card: #1a1a1f;
  --bg-card-hover: #22222a;
  
  --brand-red: #d12626;
  --brand-red-rgb: 209, 38, 38;
  --brand-orange: #f05a22;
  --brand-orange-rgb: 240, 90, 34;
  --brand-orange-hover: #ff6d38;
  --brand-yellow: #ffa21f;
  
  --text-white: #f7f7f7;
  --text-light: #e2e2e7;
  --text-muted: #9a9ab0;
  --text-dark: #121215;
  
  --accent-green: #22c55e;
  --accent-green-light: rgba(34, 197, 94, 0.1);
  --accent-red: #ef4444;
  --accent-red-light: rgba(239, 68, 68, 0.1);
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Layout */
  --container-max: 1200px;
  --header-height: 90px;
  
  /* Shadows & Glassmorphism */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.7);
  --shadow-orange: 0 8px 30px rgba(240, 90, 34, 0.25);
  
  --glass-bg: rgba(26, 26, 31, 0.75);
  --glass-border: rgba(255, 255, 255, 0.05);
  --glass-blur: blur(12px);
  
  /* Utilities */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-circle: 50%;
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- 2. GLOBAL RESET & BASICS --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  overflow-x: hidden;
  background-color: var(--bg-deep);
  line-height: 1.6;
}

body.no-scroll {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-white);
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}

button {
  cursor: pointer;
}

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- 3. INTRO SPLASH OVERLAY --- */
#splash-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at center, #18181f 0%, #060608 100%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.8s cubic-bezier(0.85, 0, 0.15, 1);
  overflow: hidden;
}

.splash-canvas-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.splash-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 90%;
  max-width: 550px;
  transform: translateY(-6vh); /* Position logo and text slightly higher than dead-center */
}

/* SVG Flame behind logo during intro */
.flame-backing {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -61%);
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(240, 90, 34, 0.4) 0%, rgba(209, 38, 38, 0.1) 45%, rgba(0,0,0,0) 70%);
  filter: blur(20px);
  z-index: -1;
  animation: flameFlicker 2s ease-in-out infinite;
  pointer-events: none;
}

.splash-logo-container {
  width: 100%;
  margin-bottom: 16px; /* Reduced gap under logo */
  display: flex;
  justify-content: center;
  align-items: center;
}

.splash-logo {
  width: 80%;
  max-width: 350px;
  height: auto;
  opacity: 0;
  transform: scale(0.95);
  animation: logoReveal 0.7s cubic-bezier(0.25, 1, 0.5, 1) 0.1s forwards;
}

.splash-tagline {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fffaee; /* Contrast Ivory White */
  margin: 0 0 12px 0; /* Brought much closer to logo and subtitle */
  letter-spacing: 0.05rem;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeIn 0.6s 0.5s forwards;
}

.splash-subtitle {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin: 0; /* Removed default margins */
  opacity: 0;
  transform: translateY(10px);
  animation: fadeIn 0.5s 0.9s forwards;
  font-weight: 600;
}

.skip-intro-btn {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 3;
  padding: 8px 16px;
  border-radius: var(--radius-circle);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  backdrop-filter: blur(4px);
  transition: var(--transition-fast);
  color: var(--text-muted);
}

.skip-intro-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--text-white);
  border-color: var(--brand-orange);
}

/* --- 4. HEADER & NAV NAVIGATION --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 990;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: var(--transition-normal);
}

header.scrolled {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  height: 80px;
  box-shadow: var(--shadow-sm);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo-link {
  display: block;
  width: auto;
}

.logo-link img {
  max-height: 72px;
  width: auto;
  display: block;
  transition: var(--transition-fast);
}

header.scrolled .logo-link img {
  max-height: 62px;
}

.logo-link:hover img {
  transform: scale(1.03);
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-orange);
  transition: var(--transition-normal);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-white);
}

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

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

.cart-toggle-btn {
  position: relative;
  padding: 10px;
  border-radius: var(--radius-circle);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--brand-orange);
  color: var(--text-white);
  font-size: 0.7rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px rgba(240, 90, 34, 0.5);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-orange) 100%);
  color: var(--text-white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 24px;
  border-radius: var(--radius-xl);
  transition: var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
  box-shadow: var(--shadow-orange);
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: var(--text-white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 24px;
  border-radius: var(--radius-xl);
  transition: var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.02);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--brand-orange);
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  color: var(--text-white);
}

/* --- 5. HERO SECTION --- */
#home {
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, rgba(240, 90, 34, 0.08) 0%, rgba(0,0,0,0) 60%),
              radial-gradient(circle at 10% 80%, rgba(209, 38, 38, 0.05) 0%, rgba(0,0,0,0) 50%);
}

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

.hero-tag {
  background: rgba(240, 90, 34, 0.1);
  border: 1px solid rgba(240, 90, 34, 0.2);
  color: var(--brand-orange);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.05rem;
}

.hero-title span {
  background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-partners {
  border-top: 1px solid var(--glass-border);
  padding-top: 24px;
}

.partners-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-weight: 600;
}

.partners-row {
  display: flex;
  align-items: center;
  gap: 32px;
  opacity: 0.75;
}

.partner-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text-white);
}

.partner-logo span {
  color: var(--brand-orange);
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-circle-bg {
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(240, 90, 34, 0.15) 0%, rgba(209, 38, 38, 0) 70%);
  border-radius: var(--radius-circle);
  z-index: -1;
  filter: blur(10px);
}

.hero-food-img {
  width: 100%;
  max-width: 440px;
  object-fit: cover;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.6));
}

.floating-badge {
  position: absolute;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 6;
}

.badge-1 {
  top: 15%;
  right: 0;
  animation: subtleFloat 5s ease-in-out infinite;
}

.badge-2 {
  bottom: 10%;
  left: -20px;
  animation: subtleFloat 6s ease-in-out infinite;
}

.badge-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-circle);
  background: rgba(240, 90, 34, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-orange);
  font-size: 1.1rem;
}

.badge-text h4 {
  font-size: 0.9rem;
  margin-bottom: 2px;
}

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

/* --- 6. PROMISE SECTION (ABOUT US) --- */
.section {
  padding: 90px 0;
}

.section-bg-dark {
  background-color: var(--bg-main);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px auto;
}

.section-subtitle {
  color: var(--brand-orange);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.section-description {
  color: var(--text-muted);
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.promise-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  padding: 32px;
  border-radius: var(--radius-lg);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.promise-card:hover {
  transform: translateY(-5px);
  border-color: rgba(240, 90, 34, 0.25);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-md);
}

.promise-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(240, 90, 34, 0.08);
  border: 1px solid rgba(240, 90, 34, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--brand-orange);
  margin-bottom: 24px;
  transition: var(--transition-fast);
}

.promise-card:hover .promise-icon-wrapper {
  background: var(--brand-orange);
  color: var(--text-white);
  transform: scale(1.05);
}

.promise-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.promise-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.banner-promise {
  background: linear-gradient(135deg, rgba(209, 38, 38, 0.9) 0%, rgba(240, 90, 34, 0.9) 100%),
              url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><path d="M0 0h30v30H0zm30 30h30v30H30z" fill="%23ffffff" fill-opacity=".03"/></svg>');
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin-top: 48px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.banner-promise h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.banner-promise p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}

/* --- 7. PRODUCTS & MENU SECTION --- */
.menu-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.filter-btn:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text-white);
}

.filter-btn.active {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
  color: var(--text-white);
  box-shadow: 0 4px 15px rgba(240, 90, 34, 0.3);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.menu-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}

.menu-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
}

.menu-img-container {
  height: 220px;
  width: 100%;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.menu-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.menu-badges {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}

.tag-diet {
  width: 18px;
  height: 18px;
  border: 2px solid var(--accent-green);
  border-radius: 4px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.tag-diet::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: var(--radius-circle);
}

.tag-diet.non-veg {
  border-color: var(--accent-red);
}

.tag-diet.non-veg::after {
  background: var(--accent-red);
}

.tag-spice {
  background: rgba(209, 38, 38, 0.9);
  color: var(--text-white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}

.menu-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.menu-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.menu-card-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Custom selectors inside menu card */
.menu-options {
  border-top: 1px solid var(--glass-border);
  padding-top: 16px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.option-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.option-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.05rem;
}

.option-select-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.select-btn {
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.01);
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.select-btn:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-white);
}

.select-btn.selected {
  background: rgba(240, 90, 34, 0.15);
  border-color: var(--brand-orange);
  color: var(--brand-orange);
}

.menu-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

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

.price-container .price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-white);
}

.price-container .price-subtext {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-top: -2px;
}

.btn-card-add {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-circle);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-normal);
}

.menu-card:hover .btn-card-add {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
  box-shadow: 0 4px 10px rgba(240, 90, 34, 0.4);
}

.btn-card-add:hover {
  transform: scale(1.1);
}

/* --- 8. LOCATIONS COMPONENT --- */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.location-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.location-card:hover {
  border-color: rgba(240, 90, 34, 0.2);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
}

.location-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.location-icon {
  width: 44px;
  height: 44px;
  background: rgba(240, 90, 34, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-orange);
  font-size: 1.25rem;
}

.status-badge {
  padding: 4px 10px;
  border-radius: var(--radius-xl);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}

.status-badge.open {
  background: var(--accent-green-light);
  color: var(--accent-green);
  animation: statusPulse 2s infinite;
}

.status-badge.closed {
  background: var(--accent-red-light);
  color: var(--accent-red);
  animation: statusPulseClosed 2s infinite;
}

.location-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.location-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.location-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
  border-top: 1px solid var(--glass-border);
  padding-top: 16px;
  font-size: 0.8rem;
}

.location-detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
}

.location-detail-item i {
  color: var(--brand-orange);
}

/* --- 9. FRANCHISE OPPORTUNITY --- */
.franchise-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}

.franchise-benefits {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.benefit-item {
  display: flex;
  gap: 20px;
}

.benefit-num {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-circle);
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-orange) 100%);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
  flex-shrink: 0;
}

.benefit-content h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  font-weight: 600;
}

.benefit-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.franchise-form-container {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.form-title {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-full {
  grid-column: span 2;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.form-control {
  background: rgba(0,0,0,0.15);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--text-white);
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 3px rgba(240, 90, 34, 0.15);
}

textarea.form-control {
  resize: none;
  min-height: 100px;
}

.btn-form-submit {
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-orange) 100%);
  color: var(--text-white);
  font-weight: 600;
  border-radius: var(--radius-md);
  padding: 14px;
  text-align: center;
  transition: var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-form-submit:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

/* --- 10. CONTACT SECTION --- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
}

.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
}

.contact-info-card {
  display: flex;
  gap: 16px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-orange);
  font-size: 1.1rem;
}

.contact-info-content h4 {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 4px;
  font-weight: 600;
}

.contact-info-content p {
  font-size: 1.05rem;
  color: var(--text-light);
}

.social-links {
  display: flex;
  gap: 14px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-circle);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
}

.social-btn:hover {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
  color: var(--text-white);
  transform: translateY(-2px);
}

/* --- 11. SLIDING CART DRAWER --- */
#cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1100;
  pointer-events: none;
  visibility: hidden;
}

#cart-drawer.active {
  pointer-events: auto;
  visibility: visible;
}

.cart-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

#cart-drawer.active .cart-overlay {
  opacity: 1;
}

.cart-content-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background: var(--bg-card);
  border-left: 1px solid var(--glass-border);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

#cart-drawer.active .cart-content-wrapper {
  transform: translateX(0);
}

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

.cart-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
}

.cart-close-btn {
  font-size: 1.5rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
  padding: 4px;
}

.cart-close-btn:hover {
  color: var(--text-white);
}

.cart-items-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.cart-empty i {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.05);
}

/* Cart Item card styling */
.cart-item {
  display: flex;
  gap: 16px;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 20px;
}

.cart-item-details {
  flex-grow: 1;
}

.cart-item-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-white);
}

.cart-item-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.cart-item-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.qty-counter {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.qty-btn {
  padding: 6px 12px;
  font-size: 0.8rem;
  transition: var(--transition-fast);
}

.qty-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
}

.qty-val {
  padding: 0 6px;
  font-size: 0.8rem;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

.cart-item-price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
}

/* Cart Addons checkbox */
.cart-addons {
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid var(--glass-border);
  padding: 16px;
  border-radius: var(--radius-md);
  margin: 0 24px 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.addon-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}

.addon-checkbox {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid var(--glass-border);
  appearance: none;
  background: rgba(0,0,0,0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.addon-checkbox:checked {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
}

.addon-checkbox:checked::after {
  content: '✓';
  color: var(--text-white);
  font-size: 0.7rem;
  font-weight: 800;
}

.cart-footer {
  padding: 24px;
  border-top: 1px solid var(--glass-border);
  background: var(--bg-card);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.summary-row.total {
  font-size: 1.25rem;
  color: var(--text-white);
  font-weight: 700;
  border-top: 1px dashed var(--glass-border);
  padding-top: 12px;
  margin-top: 12px;
}

.summary-row.total .price {
  font-family: var(--font-heading);
  color: var(--brand-orange);
}

.btn-checkout {
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-md);
  font-weight: 700;
  text-align: center;
  font-size: 1rem;
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-orange) 100%);
  color: var(--text-white);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-checkout:hover {
  filter: brightness(1.1);
}

/* --- 12. FLOATING WHATSAPP BUTTON --- */
.whatsapp-float {
  position: fixed;
  bottom: 40px;
  left: 40px;
  z-index: 950;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border-radius: var(--radius-circle);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  cursor: pointer;
  animation: whatsappRadar 2.5s infinite;
  transition: all var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-float:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.5);
  filter: brightness(1.05);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
  flex-shrink: 0;
}

.whatsapp-text {
  display: none;
}

/* --- 13. MOCK ORDER TRACKER SCREEN --- */
.tracker-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  pointer-events: none;
  visibility: hidden;
}

.tracker-modal.active {
  pointer-events: auto;
  visibility: visible;
}

.tracker-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.tracker-modal.active .tracker-overlay {
  opacity: 1;
}

.tracker-card {
  position: relative;
  z-index: 2;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.tracker-modal.active .tracker-card {
  transform: translateY(0);
  opacity: 1;
}

.tracker-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-circle);
  background: rgba(240, 90, 34, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--brand-orange);
  margin: 0 auto 24px auto;
}

.tracker-card h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.tracker-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 32px;
}

.tracker-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
  max-width: 320px;
  margin: 0 auto 32px auto;
}

.tracker-step {
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0.35;
  transition: opacity var(--transition-normal);
}

.tracker-step.active {
  opacity: 1;
}

.tracker-step.completed {
  opacity: 1;
}

.step-bullet {
  width: 24px;
  height: 24px;
  border-radius: var(--radius-circle);
  border: 2px solid var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.tracker-step.active .step-bullet {
  border-color: var(--brand-orange);
  background: var(--brand-orange);
  color: var(--text-white);
  box-shadow: 0 0 10px rgba(240, 90, 34, 0.5);
}

.tracker-step.completed .step-bullet {
  border-color: var(--accent-green);
  background: var(--accent-green);
  color: var(--text-white);
}

.step-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}

.tracker-step.active .step-label {
  color: var(--text-white);
}

.tracker-step.completed .step-label {
  color: var(--text-white);
  text-decoration: line-through;
  opacity: 0.5;
}

.btn-tracker-close {
  width: 100%;
  padding: 12px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 600;
  transition: var(--transition-normal);
}

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

/* --- 14. FOOTER --- */
footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--glass-border);
  padding: 80px 0 40px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h3 {
  font-size: 1.1rem;
  margin-bottom: 24px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}

.footer-about p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

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

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--brand-orange);
  padding-left: 4px;
}

.footer-hours-item {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.02);
  padding-bottom: 8px;
}

.footer-hours-item span.day {
  color: var(--text-light);
  font-weight: 500;
}

.footer-newsletter p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-input {
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.newsletter-input:focus {
  border-color: var(--brand-orange);
}

.newsletter-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--brand-orange);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
}

.newsletter-btn:hover {
  background: var(--brand-orange-hover);
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Toast Message */
.toast-msg {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--bg-card);
  border: 1px solid var(--brand-orange);
  padding: 14px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-msg.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  color: var(--brand-orange);
  font-size: 1.2rem;
}

.toast-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-white);
}

/* --- 15. RESPONSIVE BREAKPOINTS --- */
/* Platform Buttons Poppy Brand Styling */
.platform-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius-xl);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  min-width: 150px;
}

.platform-btn.btn-zomato {
  background: #cb202d; /* Original Zomato Crimson */
  color: var(--text-white);
  box-shadow: 0 4px 15px rgba(203, 32, 45, 0.4);
}

.platform-btn.btn-zomato:hover {
  background: #e23744;
  box-shadow: 0 8px 24px rgba(203, 32, 45, 0.6);
  transform: translateY(-2px);
}

.platform-btn.btn-swiggy {
  background: #fc8019; /* Original Swiggy Orange */
  color: var(--text-white);
  box-shadow: 0 4px 15px rgba(252, 128, 25, 0.4);
}

.platform-btn.btn-swiggy:hover {
  background: #ff9138;
  box-shadow: 0 8px 24px rgba(252, 128, 25, 0.6);
  transform: translateY(-2px);
}

.platform-btn.btn-ownly {
  background: #111116; /* Ownly Sleek Dark Glass */
  color: var(--brand-orange);
  border-color: var(--brand-orange);
  box-shadow: 0 4px 15px rgba(240, 90, 34, 0.2);
}

.platform-btn.btn-ownly:hover {
  background: var(--brand-orange);
  color: var(--text-white);
  box-shadow: 0 8px 24px rgba(240, 90, 34, 0.5);
  transform: translateY(-2px);
}

/* Mobile Sticky Bottom order dock styling */
.mobile-sticky-dock {
  display: none; /* hidden on desktop */
}

/* --- 15. RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1024px) {
  .promise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  body {
    padding-bottom: 72px !important; /* Space for mobile sticky bottom dock */
  }

  nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }

  .logo-link img {
    max-height: 65px !important; /* Larger logo size on mobile */
  }
  
  .header-actions .btn-primary {
    display: none !important; /* Remove Order Now from top mobile header */
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
  }
  
  .hero-title {
    font-size: 2.6rem;
  }
  
  .hero-description {
    margin: 0 auto 32px auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .partners-row {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }
  
  /* Prevent badges from covering food photo on mobile/tablet */
  .hero-image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 20px;
  }
  
  .floating-badge {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    margin: 12px auto !important;
    width: 100% !important;
    max-width: 320px !important;
    animation: none !important;
    transform: none !important;
  }
  
  .whatsapp-float {
    bottom: 95px !important; /* Shift up to clear the mobile bottom dock */
    left: 20px !important;
  }
  
  .promise-grid {
    grid-template-columns: 1fr;
  }
  
  .menu-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
  
  .franchise-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Display mobile sticky bottom dock */
  .mobile-sticky-dock {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 72px;
    background: rgba(18, 18, 21, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    gap: 12px;
    box-sizing: border-box;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.5);
  }

  .mobile-sticky-dock .dock-btn {
    flex: 1;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.02rem;
    box-shadow: var(--shadow-sm);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-fast);
  }

  .mobile-sticky-dock .dock-btn.btn-zomato {
    background: #cb202d;
    box-shadow: 0 4px 12px rgba(203, 32, 45, 0.3);
  }

  .mobile-sticky-dock .dock-btn.btn-swiggy {
    background: #fc8019;
    box-shadow: 0 4px 12px rgba(252, 128, 25, 0.3);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.1rem;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-full {
    grid-column: span 1;
  }
  
  .locations-grid {
    grid-template-columns: 1fr;
  }
}

/* --- 16. MOBILE DRAWER NAVIGATION & RESPONSIVE FIXES --- */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1200;
  pointer-events: none;
  visibility: hidden;
}

.mobile-drawer.active {
  pointer-events: auto;
  visibility: visible;
}

.mobile-drawer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-drawer.active .mobile-drawer-overlay {
  opacity: 1;
}

.mobile-drawer-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 300px;
  height: 100%;
  background: var(--bg-card);
  border-left: 1px solid var(--glass-border);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.mobile-drawer.active .mobile-drawer-content {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
}

.mobile-drawer-close {
  font-size: 2.2rem;
  color: var(--text-muted);
  line-height: 1;
  transition: var(--transition-fast);
}

.mobile-drawer-close:hover {
  color: var(--text-white);
}

.mobile-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: auto;
}

.mobile-drawer-links a {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-light);
  display: block;
  padding: 8px 0;
}

.mobile-drawer-links a:hover {
  color: var(--brand-orange);
}

.mobile-drawer-footer {
  border-top: 1px solid var(--glass-border);
  padding-top: 24px;
}

/* --- 17. MULTI-STEP FRANCHISE FORM STYLES --- */
.step-indicator {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  position: relative;
}

.step-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-card) !important;
  border: 2px solid rgba(255, 255, 255, 0.1) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.step-indicator-item.active .step-circle {
  border-color: var(--brand-orange) !important;
  color: var(--brand-orange) !important;
  box-shadow: 0 0 12px rgba(240, 90, 34, 0.2);
}

.step-indicator-item.completed .step-circle {
  border-color: var(--accent-green) !important;
  background: var(--accent-green) !important;
  color: var(--text-white) !important;
}

.step-indicator-item.active .step-text {
  color: var(--text-white) !important;
}

.step-indicator-item.completed .step-text {
  color: var(--accent-green) !important;
}

.step-panel {
  display: none;
}

.step-panel.active {
  display: block !important;
  animation: fadeIn 0.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

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

/* Spinner for submit button */
.spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 0.8s linear infinite;
  margin-left: 8px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

