/* ============================================================
   INFERNO — Premium Food Delivery Website
   style.css
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --bg:          #0a0a0a;
  --bg-2:        #111111;
  --bg-3:        #161616;
  --surface:     #1a1a1a;
  --surface-2:   #222222;
  --border:      rgba(255,255,255,0.07);
  --border-2:    rgba(255,255,255,0.12);

  --accent:      #ff5c00;
  --accent-2:    #ff8a00;
  --accent-glow: rgba(255, 92, 0, 0.25);

  --text:        #f0ece4;
  --text-muted:  #888884;
  --text-dim:    #555550;

  --font-display: 'Bebas Neue', sans-serif;
  --font-heading: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   28px;

  --shadow:      0 4px 30px rgba(0,0,0,0.5);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.7);
  --shadow-glow: 0 0 40px rgba(255,92,0,0.2);

  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --nav-height:  72px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; }

/* ===== LOADER ===== */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  color: var(--text);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.loader-logo span { color: var(--accent); }
.loader-bar {
  width: 200px;
  height: 3px;
  background: var(--surface-2);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}
.loader-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 2px;
  animation: loaderFill 1.5s ease forwards;
}
@keyframes loaderFill { to { width: 100%; } }

/* ===== CONTAINER ===== */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled { background: rgba(10,10,10,0.97); box-shadow: var(--shadow); }
.nav-container {
  max-width: 1240px; margin: 0 auto; padding: 0 24px;
  height: 100%;
  display: flex; align-items: center; gap: 32px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: var(--text);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-links {
  display: flex; gap: 8px;
  margin-left: auto;
}
.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--text);
  background: var(--surface);
}
.nav-link.active { color: var(--accent); }
.nav-right { display: flex; align-items: center; gap: 12px; margin-left: 16px; }

/* Cart button */
.cart-btn {
  position: relative;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.cart-btn:hover { background: var(--accent); border-color: var(--accent); transform: scale(1.05); }
.cart-count {
  position: absolute; top: -6px; right: -6px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--bg);
  transition: transform 0.2s;
}
.cart-count.bump { animation: bump 0.3s ease; }
@keyframes bump { 0%,100%{transform:scale(1)} 50%{transform:scale(1.5)} }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 40px; height: 40px; align-items: center; justify-content: center;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-primary:hover {
  background: var(--accent-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,92,0,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-2);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn-ghost {
  background: var(--surface);
  color: var(--text-muted);
  border-color: var(--border);
}
.btn-ghost:hover { background: var(--surface-2); color: var(--text); }
.btn-full { width: 100%; justify-content: center; }
.btn-arrow { transition: transform var(--transition); }
.btn:hover .btn-arrow { transform: translateX(4px); }
.btn-sm { padding: 10px 20px; font-size: 0.8rem; }

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.fade-up { opacity: 0; transform: translateY(30px); }
.fade-right { opacity: 0; transform: translateX(50px); }
.fade-up.visible, .fade-right.visible { opacity: 1; transform: none; transition: opacity 0.8s ease, transform 0.8s ease; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-height);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: fixed; inset: 0; z-index: -1;
  background: radial-gradient(ellipse at 70% 30%, rgba(255,92,0,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(255,138,0,0.05) 0%, transparent 50%);
}
.hero-gradient {
  position: absolute; inset: 0;
  background: var(--bg);
}
.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.hero-content { z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.title-line { display: block; }
.hero-title .accent { color: var(--accent); }
.hero-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  font-weight: 300;
  max-width: 440px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex; align-items: center; gap: 24px;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-divider { width: 1px; height: 36px; background: var(--border-2); }

/* Hero Image */
.hero-image-wrap {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}
.hero-glow {
  position: absolute; inset: 10%;
  background: radial-gradient(circle, rgba(255,92,0,0.25) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(30px);
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:0.6;transform:scale(1)} 50%{opacity:1;transform:scale(1.1)} }
.hero-img {
  width: 100%;
  max-width: 550px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  animation: float 4s ease-in-out infinite;
  object-fit: cover;
  aspect-ratio: 4/3;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
.hero-badge-float {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border-2);
  backdrop-filter: blur(20px);
  padding: 10px 16px;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  white-space: nowrap;
  box-shadow: var(--shadow);
}
.badge-float-1 { top: 10%; left: -5%; animation: floatB1 3s ease-in-out infinite; }
.badge-float-2 { bottom: 12%; right: -4%; animation: floatB2 3.5s ease-in-out infinite 0.5s; }
@keyframes floatB1 { 0%,100%{transform:translateY(0) rotate(-2deg)} 50%{transform:translateY(-8px) rotate(-2deg)} }
@keyframes floatB2 { 0%,100%{transform:translateY(0) rotate(2deg)} 50%{transform:translateY(-10px) rotate(2deg)} }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-dim);
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--border-2), transparent);
  animation: scrollHint 2s ease-in-out infinite;
}
@keyframes scrollHint { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* ===== MARQUEE ===== */
.marquee-strip {
  background: var(--accent);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex; gap: 32px;
  animation: marquee 20s linear infinite;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ===== SECTION COMMONS ===== */
.section-header { text-align: center; margin-bottom: 48px; }
.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.section-title .accent { color: var(--accent); }
.section-desc { color: var(--text-muted); font-size: 1rem; max-width: 480px; margin: 0 auto; }

/* ===== MENU SECTION ===== */
.menu-section { padding: 100px 0; }

/* Tabs */
.menu-tabs {
  display: flex; gap: 8px; flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.tab-btn {
  padding: 10px 22px;
  border-radius: 100px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.tab-btn:hover { border-color: var(--accent); color: var(--accent); }
.tab-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px var(--accent-glow);
}

/* Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

/* Menu Card */
.menu-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  animation: cardIn 0.4s ease both;
}
@keyframes cardIn { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:none} }
.menu-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-2);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,92,0,0.1);
}
.menu-card-img-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 16/10;
}
.menu-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.menu-card:hover .menu-card-img { transform: scale(1.07); }
.menu-card-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
}
.menu-card-badge.popular { background: #f59e0b; }
.menu-card-badge.new { background: #10b981; }
.menu-card-badge.spicy { background: #ef4444; }
.menu-card-fav {
  position: absolute; top: 12px; right: 12px;
  width: 34px; height: 34px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid var(--border);
}
.menu-card-fav:hover, .menu-card-fav.active { background: rgba(255,92,0,0.8); transform: scale(1.1); }
.menu-card-body { padding: 20px; }
.menu-card-cat {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 6px;
}
.menu-card-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}
.menu-card-desc {
  font-size: 0.85rem; color: var(--text-muted); line-height: 1.55;
  margin-bottom: 16px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.menu-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.menu-card-rating {
  font-size: 0.78rem; color: #f59e0b;
  font-weight: 600;
}
.menu-card-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
}
.add-to-cart-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 18px;
  background: var(--accent);
  color: #fff;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition);
  white-space: nowrap;
}
.add-to-cart-btn:hover {
  background: var(--accent-2);
  transform: scale(1.04);
  box-shadow: 0 4px 16px var(--accent-glow);
}
.add-to-cart-btn:active { transform: scale(0.97); }
.add-to-cart-btn.added { background: #10b981; }

/* ===== FEATURES SECTION ===== */
.features-section { padding: 80px 0; background: var(--bg-2); }
.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: var(--border-2);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.feature-icon { font-size: 2.5rem; margin-bottom: 16px; }
.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem; font-weight: 700; margin-bottom: 10px;
}
.feature-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ===== ABOUT SECTION ===== */
.about-section { padding: 100px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image-wrap { position: relative; }
.about-img {
  width: 100%; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3; object-fit: cover;
}
.about-badge {
  position: absolute; top: 24px; left: -16px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  padding: 12px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-stat-card {
  position: absolute; bottom: -20px; right: -16px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.asc-num { display: block; font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: var(--accent); }
.asc-label { font-size: 0.75rem; color: var(--text-muted); }
.about-content { padding-left: 20px; }
.about-text { color: var(--text-muted); font-size: 1rem; line-height: 1.75; margin-bottom: 20px; }
.about-values { margin-bottom: 32px; display: grid; gap: 10px; }
.value-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.9rem; color: var(--text-muted);
}
.value-icon { color: var(--accent); font-weight: 700; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 100px 0; background: var(--bg-2); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}
.testimonial-card:hover {
  border-color: var(--border-2);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.stars { color: #f59e0b; font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p {
  font-size: 0.95rem; color: var(--text-muted); line-height: 1.7;
  margin-bottom: 24px; font-style: italic;
}
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.reviewer strong { display: block; font-size: 0.9rem; font-weight: 700; margin-bottom: 2px; }
.reviewer span { font-size: 0.78rem; color: var(--text-muted); }

/* ===== CONTACT SECTION ===== */
.contact-section { padding: 100px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.contact-info p { color: var(--text-muted); margin-bottom: 36px; line-height: 1.7; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; }
.cd-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.contact-detail strong { display: block; font-weight: 700; margin-bottom: 2px; font-size: 0.9rem; }
.contact-detail span { font-size: 0.85rem; color: var(--text-muted); }

/* Form */
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input, .form-group textarea {
  width: 100%; padding: 14px 18px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-group input.error, .form-group textarea.error { border-color: #ef4444; }
.form-error { display: block; font-size: 0.78rem; color: #ef4444; margin-top: 6px; height: 18px; }
.form-success {
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: var(--radius);
  color: #10b981;
  font-size: 0.9rem;
  font-weight: 600;
  display: none;
  text-align: center;
}
.form-success.show { display: block; animation: fadeIn 0.4s ease; }

/* ===== FOOTER ===== */
.footer { padding: 80px 0 0; background: var(--bg-2); border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 60px; }
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem; letter-spacing: 0.08em;
  color: var(--text); margin-bottom: 16px;
}
.footer-brand p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 24px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}
.social-link svg { width: 16px; height: 16px; }
.social-link:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-3px); }
.footer-links-col h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text); margin-bottom: 20px;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a { font-size: 0.88rem; color: var(--text-muted); transition: color var(--transition); }
.footer-links-col a:hover { color: var(--accent); }
.hours-list li {
  display: flex; justify-content: space-between;
  font-size: 0.85rem; color: var(--text-muted);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex; justify-content: space-between;
  font-size: 0.82rem; color: var(--text-dim);
  flex-wrap: wrap; gap: 8px;
}

/* ===== CART PANEL ===== */
.cart-overlay {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden;
  transition: all var(--transition);
}
.cart-overlay.active { opacity: 1; visibility: visible; }
.cart-panel {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(420px, 100vw);
  z-index: 1101;
  background: var(--bg-2);
  border-left: 1px solid var(--border-2);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
}
.cart-panel.active { transform: translateX(0); }
.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--border);
}
.cart-header h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem; font-weight: 700;
}
.cart-close {
  width: 36px; height: 36px;
  background: var(--surface);
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.cart-close:hover { background: var(--surface-2); color: var(--text); }
.cart-items { flex: 1; overflow-y: auto; padding: 16px; }
.cart-empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  height: 100%; gap: 10px; color: var(--text-muted);
}
.cart-empty span { font-size: 3rem; }
.cart-empty p { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; }
.cart-empty small { font-size: 0.82rem; }
.cart-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px;
  background: var(--surface);
  border-radius: var(--radius);
  margin-bottom: 10px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.cart-item:hover { border-color: var(--border-2); }
.cart-item-img {
  width: 60px; height: 60px;
  border-radius: 8px;
  object-fit: cover; flex-shrink: 0;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  font-family: var(--font-heading);
  font-size: 0.88rem; font-weight: 700;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-bottom: 4px;
}
.cart-item-price { font-size: 0.82rem; color: var(--accent); font-weight: 600; }
.cart-item-qty {
  display: flex; align-items: center; gap: 8px;
}
.qty-btn {
  width: 26px; height: 26px;
  background: var(--surface-2);
  border-radius: 6px;
  color: var(--text);
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  border: 1px solid var(--border);
}
.qty-btn:hover { background: var(--accent); border-color: var(--accent); }
.qty-num { font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem; min-width: 20px; text-align: center; }
.cart-item-remove {
  color: var(--text-dim);
  font-size: 1rem;
  padding: 4px 6px;
  border-radius: 6px;
  transition: color var(--transition);
}
.cart-item-remove:hover { color: #ef4444; background: rgba(239,68,68,0.1); }
.cart-footer {
  padding: 20px;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 10px;
}
.cart-subtotal, .cart-delivery {
  display: flex; justify-content: space-between;
  font-size: 0.85rem; color: var(--text-muted);
}
.cart-total {
  display: flex; justify-content: space-between;
  font-family: var(--font-heading);
  font-size: 1.15rem; font-weight: 800;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  margin-bottom: 6px;
}
.cart-total span:last-child { color: var(--accent); }

/* ===== CHECKOUT MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  display: flex !important; align-items: center; justify-content: center;
  padding: 24px;
  animation: fadeIn 0.3s ease;
}
.modal-overlay[style*="display:none"] { display: none !important; }
.checkout-modal {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  position: relative;
  animation: slideUp 0.4s ease;
}
@keyframes slideUp { from{transform:translateY(30px);opacity:0} to{transform:none;opacity:1} }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: var(--surface-2);
  border-radius: 8px;
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.modal-close:hover { background: var(--surface-2); color: var(--text); }
.checkout-modal h2 {
  font-family: var(--font-display);
  font-size: 2.5rem; letter-spacing: 0.04em; margin-bottom: 12px;
}
.checkout-modal p { color: var(--text-muted); margin-bottom: 24px; font-size: 0.95rem; }
.order-eta {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 20px;
  margin-bottom: 28px;
  font-size: 0.9rem;
}
.order-eta span { font-size: 1.4rem; }

/* ===== SCROLL TOP ===== */
.scroll-top {
  position: fixed; bottom: 32px; right: 32px;
  width: 46px; height: 46px;
  background: var(--accent);
  color: #fff;
  border-radius: 12px;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px var(--accent-glow);
  z-index: 900;
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--transition);
}
.scroll-top.show { transform: translateY(0); opacity: 1; }
.scroll-top:hover { background: var(--accent-2); transform: translateY(-3px); }

/* ===== FILTER PAGE ===== */
.filter-page { background: var(--bg); }
.filter-hero {
  padding: calc(var(--nav-height) + 60px) 0 60px;
  background: linear-gradient(to bottom, rgba(255,92,0,0.06), transparent);
  border-bottom: 1px solid var(--border);
}
.filter-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.filter-hero p { color: var(--text-muted); font-size: 1rem; }
.filter-section { padding: 60px 0 100px; }
.filter-layout { display: grid; grid-template-columns: 280px 1fr; gap: 40px; align-items: start; }

/* Sidebar */
.filter-sidebar { position: sticky; top: calc(var(--nav-height) + 20px); }
.filter-sidebar-inner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex; flex-direction: column; gap: 28px;
}
.filter-block-title {
  font-family: var(--font-heading);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.filter-cats { display: flex; flex-direction: column; gap: 6px; }
.filter-cat-btn {
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.85rem; font-weight: 600;
  text-align: left;
  transition: all var(--transition);
}
.filter-cat-btn:hover { border-color: var(--accent); color: var(--accent); }
.filter-cat-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Price Range Slider */
.price-display {
  font-family: var(--font-heading);
  font-size: 1.1rem; font-weight: 700;
  margin-bottom: 20px; text-align: center;
}
.price-display #priceMin, .price-display #priceMax { color: var(--accent); }
.range-slider-wrap { position: relative; height: 40px; }
.range-slider {
  position: absolute; width: 100%;
  -webkit-appearance: none; appearance: none;
  height: 0; background: transparent;
  pointer-events: none; z-index: 2;
  top: 10px;
}
.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  pointer-events: all;
  border: 3px solid var(--bg-2);
  box-shadow: 0 2px 8px var(--accent-glow);
  transition: transform 0.2s;
}
.range-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }
.range-slider::-moz-range-thumb {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  pointer-events: all;
  border: 3px solid var(--bg-2);
}
.range-track {
  position: absolute; top: 10px; left: 0; right: 0;
  height: 4px; background: var(--surface-2);
  border-radius: 2px;
}
.range-fill {
  position: absolute; height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 2px;
}

/* Sort options */
.sort-options { display: flex; flex-direction: column; gap: 8px; }
.sort-option {
  display: flex; align-items: center; gap: 10px;
  cursor: pointer; padding: 8px 10px;
  border-radius: 8px;
  transition: background var(--transition);
}
.sort-option:hover { background: var(--bg-3); }
.sort-option input { display: none; }
.sort-option span:last-child { font-size: 0.88rem; color: var(--text-muted); }
.sort-option input:checked + span:last-child { color: var(--accent); font-weight: 600; }
.sort-option::before {
  content: '';
  width: 16px; height: 16px;
  border: 2px solid var(--border-2);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all var(--transition);
}
.sort-option:has(input:checked)::before {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

/* Dietary checkboxes */
.dietary-options { display: flex; flex-direction: column; gap: 8px; }
.check-option {
  display: flex; align-items: center; gap: 10px;
  cursor: pointer; padding: 8px 10px;
  border-radius: 8px;
  transition: background var(--transition);
}
.check-option:hover { background: var(--bg-3); }
.check-option input { display: none; }
.checkmark {
  width: 18px; height: 18px;
  border: 2px solid var(--border-2);
  border-radius: 5px;
  flex-shrink: 0;
  transition: all var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.checkmark::after { content: '✓'; font-size: 0.7rem; color: #fff; display: none; }
.check-option input:checked ~ .checkmark {
  background: var(--accent); border-color: var(--accent);
}
.check-option input:checked ~ .checkmark::after { display: block; }
.check-option span:last-child { font-size: 0.88rem; color: var(--text-muted); }
.check-option input:checked ~ span:last-child { color: var(--text); }

/* Filter Toolbar */
.filter-toolbar {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 28px; flex-wrap: wrap;
}
.results-info {
  font-family: var(--font-heading);
  font-size: 0.88rem; color: var(--text-muted);
  flex: 1;
}
.results-info span { color: var(--text); font-weight: 700; }
.view-toggle { display: flex; gap: 6px; }
.view-btn {
  width: 36px; height: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.view-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.mobile-filter-btn {
  display: none;
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 0.85rem; font-weight: 600;
  color: var(--text-muted);
}

/* Filter Products Grid */
.filter-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}
.filter-products-grid.list-view { grid-template-columns: 1fr; }
.filter-products-grid.list-view .menu-card {
  display: grid;
  grid-template-columns: 200px 1fr;
}
.filter-products-grid.list-view .menu-card-img-wrap { aspect-ratio: 4/3; }
.filter-products-grid.list-view .menu-card-desc { -webkit-line-clamp: 3; }

/* No results */
.no-results {
  text-align: center; padding: 80px 20px;
  grid-column: 1 / -1;
}
.no-results span { font-size: 3.5rem; display: block; margin-bottom: 16px; }
.no-results h3 { font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 8px; }
.no-results p { color: var(--text-muted); margin-bottom: 24px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeIn { from{opacity:0} to{opacity:1} }

/* ===== RESPONSIVE ===== */

/* Tablet (≤1024px) */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: calc(var(--nav-height) + 40px);
    padding-bottom: 60px;
    text-align: center;
  }
  .hero-content { order: 1; }
  .hero-image-wrap { order: 2; max-width: 480px; margin: 0 auto; }
  .hero-desc { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-scroll-hint { display: none; }
  .badge-float-1 { left: 0; }
  .badge-float-2 { right: 0; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-content { padding-left: 0; }
  .about-stat-card { right: 0; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .filter-layout { grid-template-columns: 240px 1fr; gap: 24px; }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
  .nav-links { 
    position: fixed; top: var(--nav-height); left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    border-bottom: 1px solid var(--border);
    flex-direction: column; gap: 4px;
    padding: 16px;
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--transition-slow);
    backdrop-filter: blur(20px);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; }
  .hamburger { display: flex; }
  .nav-link { padding: 12px 16px; border-radius: 10px; font-size: 0.95rem; }

  .hero-title { font-size: clamp(3rem, 10vw, 4.5rem); }
  .hero-badge-float { display: none; }

  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .menu-grid { grid-template-columns: 1fr; }

  /* Filter page mobile */
  .filter-layout { grid-template-columns: 1fr; }
  .filter-sidebar {
    position: fixed; top: 0; left: 0; bottom: 0;
    width: 300px; z-index: 1050;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform var(--transition-slow);
    background: var(--bg-2);
    padding: 24px;
  }
  .filter-sidebar.mobile-open { transform: translateX(0); }
  .filter-sidebar-inner {
    border: none; border-radius: 0; padding: 0;
    background: transparent;
  }
  .mobile-filter-btn { display: flex; }
  .filter-products-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
  .contact-form-wrap { padding: 24px; }

  .about-badge { left: 0; }
}

/* Small mobile (≤480px) */
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-outline { text-align: center; justify-content: center; }
  .cart-panel { width: 100vw; }
  .filter-products-grid { grid-template-columns: 1fr; }
  .filter-products-grid.list-view .menu-card { grid-template-columns: 1fr; }
  .filter-products-grid.list-view .menu-card-img-wrap { aspect-ratio: 16/9; }
}
/* ============================================================
   INFERNO — PATCH: Bug fixes & new styles
   ============================================================ */

/* ===== LIGHT MODE ===== */
body.light-mode {
  --bg:          #f5f3ef;
  --bg-2:        #ece9e3;
  --bg-3:        #e4e0d9;
  --surface:     #ffffff;
  --surface-2:   #f0ede8;
  --border:      rgba(0,0,0,0.08);
  --border-2:    rgba(0,0,0,0.15);
  --text:        #1a1612;
  --text-muted:  #6b6660;
  --text-dim:    #aaa8a3;
  --shadow:      0 4px 30px rgba(0,0,0,0.12);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.18);
}
body.light-mode #navbar {
  background: rgba(245,243,239,0.9);
}
body.light-mode #navbar.scrolled {
  background: rgba(245,243,239,0.98);
}
body.light-mode .nav-links {
  background: rgba(245,243,239,0.98);
}
body.light-mode .hero-bg {
  background: radial-gradient(ellipse at 70% 30%, rgba(255,92,0,0.07) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(255,138,0,0.04) 0%, transparent 50%);
}
body.light-mode .hero-gradient { background: var(--bg); }
body.light-mode .filter-sidebar-inner { background: var(--surface); }

/* Theme toggle button */
.theme-toggle-btn {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition);
  flex-shrink: 0;
}
.theme-toggle-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.05);
}

/* ===== DELIVERY ADDRESS INPUT — REDESIGNED ===== */
.delivery-address-wrap {
  margin-bottom: 32px;
  width: 100%;
  max-width: 540px;
}
.address-input-box {
  display: flex;
  align-items: center;
  background: var(--surface);
  border: 2px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 6px 6px 6px 18px;
  gap: 12px;
  transition: border-color var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.address-input-box:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-glow), 0 4px 20px rgba(0,0,0,0.3);
}
.address-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(255,92,0,0.4));
}
#deliveryAddressInput {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-size: 1rem;
  font-family: var(--font-body);
  padding: 10px 0;
  min-width: 0;
}
#deliveryAddressInput::placeholder { color: var(--text-muted); }
.address-submit-btn {
  padding: 12px 22px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
  flex-shrink: 0;
}
.address-submit-btn:hover {
  background: var(--accent-2);
  transform: scale(1.04);
}
.address-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0; right: 0;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 200;
  overflow: hidden;
  display: none;
}
.address-suggestions.show { display: block; }
.address-suggestion-item {
  padding: 12px 18px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: background var(--transition), color var(--transition);
  border-bottom: 1px solid var(--border);
}
.address-suggestion-item:last-child { border-bottom: none; }
.address-suggestion-item:hover { background: var(--surface-2); color: var(--text); }

/* Address wrap position relative needed for suggestions */
.delivery-address-wrap { position: relative; }

/* ===== MENU CARD FOOTER FIX — Price + Add button layout ===== */
.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: nowrap;
}
.menu-card-price-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex-shrink: 0;
}
.menu-card-price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  white-space: nowrap;
}
.menu-card-price-original {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-decoration: line-through;
  line-height: 1;
}
.add-to-cart-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  background: var(--accent);
  color: #fff;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.add-to-cart-btn:hover {
  background: var(--accent-2);
  transform: scale(1.04);
  box-shadow: 0 4px 16px var(--accent-glow);
}
.add-to-cart-btn:active { transform: scale(0.97); }
.add-to-cart-btn.added { background: #10b981; }

/* ===== CONTACT SECTION — SUPPORT CARDS ===== */
.support-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.support-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all var(--transition);
}
.support-card:hover {
  border-color: var(--border-2);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.support-card-icon {
  font-size: 2rem;
  margin-bottom: 4px;
}
.support-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
}
.support-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.support-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-3);
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.support-badge.online { color: #10b981; border-color: rgba(16,185,129,0.3); background: rgba(16,185,129,0.08); }
.faq-mini { display: flex; flex-direction: column; gap: 6px; }
.faq-mini details {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.faq-mini summary {
  padding: 10px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-muted);
  list-style: none;
  transition: color var(--transition);
}
.faq-mini summary:hover { color: var(--accent); }
.faq-mini details[open] summary { color: var(--accent); }
.faq-mini details p {
  padding: 0 14px 12px;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: none;
}
.faq-mini details p a { color: var(--accent); }

/* ===== JOIN SECTION — wider spacing ===== */
.join-section { padding: 100px 0; }
.join-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 0;
}
.join-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  position: relative;
  transition: all var(--transition);
}
.join-card:hover {
  border-color: var(--border-2);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.featured-join {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 20px 60px rgba(255,92,0,0.15);
}
.join-badge-top {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.join-icon {
  font-size: 2.8rem;
  margin-bottom: 20px;
}
.join-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.join-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

/* ===== CP HERO (Courier/Partner pages) ===== */
.cp-hero {
  padding: calc(var(--nav-height) + 80px) 0 80px;
  background: linear-gradient(135deg, rgba(255,92,0,0.06) 0%, transparent 60%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.cp-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(255,92,0,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.cp-hero-content {
  position: relative;
  max-width: 700px;
}
.cp-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin: 16px 0 24px;
}
.cp-hero-title .accent { color: var(--accent); }
.cp-hero-content > p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
}
.cp-hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding: 28px 32px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  width: fit-content;
}
.cp-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cp-stat-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.cp-stat span:last-child {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* ===== CP HOW IT WORKS ===== */
.cp-how { padding: 100px 0; background: var(--bg-2); }
.cp-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 0;
}
.cp-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
}
.cp-step:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.cp-step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.7;
  line-height: 1;
  margin-bottom: 16px;
}
.cp-step h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.cp-step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== CP BENEFITS ===== */
.cp-benefits { padding: 100px 0; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--transition);
}
.benefit-card:hover {
  border-color: var(--border-2);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.benefit-icon {
  font-size: 2.4rem;
  margin-bottom: 18px;
  display: block;
}
.benefit-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.benefit-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== CP APPLY ===== */
.cp-apply { padding: 100px 0; background: var(--bg-2); }
.cp-apply-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.cp-apply-info .section-title { margin-bottom: 20px; }
.cp-apply-info > p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.cp-requirements h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.cp-requirements ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cp-requirements li {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.cp-requirements li::before { content: ''; }

.cp-apply-form {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  padding: 40px;
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-select {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.95rem;
  font-family: var(--font-body);
  outline: none;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23888' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}
.form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-select option { background: var(--surface); }
.label-note { color: var(--text-dim); font-size: 0.75rem; font-weight: 400; text-transform: none; letter-spacing: 0; }

/* ===== PARTNER TESTIMONIAL ===== */
.partner-testimonial {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 8px;
}
.partner-testimonial img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}
.partner-testimonial blockquote {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}
.partner-testimonial cite {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-style: normal;
  font-weight: 600;
}

/* ===== PRICING SECTION ===== */
.pricing-section { padding: 100px 0; background: var(--bg); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  position: relative;
  transition: all var(--transition);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.featured-pricing {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 20px 60px rgba(255,92,0,0.12);
  transform: translateY(-8px);
}
.featured-pricing:hover { transform: translateY(-14px); }
.pricing-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.pricing-commission {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--text);
  line-height: 1;
  margin-bottom: 28px;
}
.pricing-commission span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  display: block;
  margin-top: 6px;
  font-style: italic;
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.pricing-features li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 4px;
}
.pricing-features li.inactive { opacity: 0.35; }

/* ===== CAREERS SECTION ===== */
.careers-section { padding: 100px 0; background: var(--bg-2); }
.careers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.career-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.career-card:hover {
  border-color: var(--border-2);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.career-dept {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.career-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
}
.career-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.career-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.career-meta span {
  font-size: 0.78rem;
  color: var(--text-dim);
  background: var(--bg-3);
  padding: 4px 10px;
  border-radius: 6px;
}
.open-application { border-color: var(--accent); background: rgba(255,92,0,0.04); }

/* Career Modal */
.career-modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: fadeIn 0.3s ease;
}
.career-modal {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 560px;
  width: 100%;
  position: relative;
  animation: slideUp 0.4s ease;
  max-height: 90vh;
  overflow-y: auto;
}
.career-modal h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 28px;
}

/* ===== AUTH PAGE ===== */
.auth-page { background: var(--bg); min-height: 100vh; }
.auth-bg {
  position: fixed; inset: 0; z-index: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,92,0,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.auth-bg-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(255,92,0,0.05) 0%, transparent 50%);
}
.auth-particles { position: absolute; inset: 0; overflow: hidden; }
.auth-container {
  position: relative; z-index: 1;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: var(--nav-height);
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  gap: 60px;
  align-items: center;
}
.auth-left {
  display: flex; flex-direction: column; gap: 40px;
  padding: 40px 0;
}
.auth-brand { display: flex; flex-direction: column; gap: 12px; }
.auth-logo { font-size: 3rem; }
.auth-brand h2 {
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: 0.08em;
  color: var(--text);
}
.auth-brand p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 340px;
}
.auth-features { display: flex; flex-direction: column; gap: 16px; }
.auth-feature {
  display: flex; align-items: center; gap: 14px;
  font-size: 0.95rem; color: var(--text-muted);
}
.auth-feature span:first-child { font-size: 1.2rem; }
.auth-card {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  box-shadow: var(--shadow-lg);
}
.auth-tabs {
  display: flex; gap: 4px;
  background: var(--bg-3);
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 32px;
}
.auth-tab {
  flex: 1;
  padding: 10px;
  border-radius: 9px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  transition: all var(--transition);
  text-transform: uppercase;
}
.auth-tab.active {
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.auth-form-title {
  font-family: var(--font-heading);
  font-size: 1.5rem; font-weight: 700;
  margin-bottom: 6px;
}
.auth-form-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.auth-divider {
  display: flex; align-items: center; gap: 16px;
  color: var(--text-dim);
  font-size: 0.8rem;
  margin: 20px 0;
}
.auth-divider::before, .auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.social-auth { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.social-auth-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px;
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 0.85rem; font-weight: 600;
  color: var(--text-muted);
  transition: all var(--transition);
}
.social-auth-btn:hover { background: var(--surface-2); border-color: var(--accent); color: var(--text); }
.auth-switch {
  margin-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.auth-switch-btn {
  color: var(--accent); font-weight: 700; font-size: 0.85rem;
  background: none; border: none; cursor: pointer;
  transition: color var(--transition);
}
.auth-switch-btn:hover { color: var(--accent-2); }
.password-wrap {
  position: relative;
}
.password-wrap input { padding-right: 48px; }
.toggle-pw {
  position: absolute; right: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted); font-size: 1rem;
  background: none; border: none; cursor: pointer;
  line-height: 1;
}
.form-row-between {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
}
.remember-me {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: var(--text-muted);
  cursor: pointer;
}
.remember-me input { width: 16px; height: 16px; cursor: pointer; }
.forgot-pw {
  font-size: 0.85rem; color: var(--accent); font-weight: 600;
  transition: color var(--transition);
}
.forgot-pw:hover { color: var(--accent-2); }
.pw-strength-bar {
  height: 4px; background: var(--surface-2);
  border-radius: 2px; margin-top: 8px; overflow: hidden;
}
.pw-strength-fill { height: 100%; border-radius: 2px; transition: width 0.3s, background 0.3s; }
.pw-strength-label { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; display: block; }
.terms-check { margin-bottom: 4px; }

/* ===== LIVE CHAT WIDGET ===== */
.live-chat-widget {
  position: fixed;
  bottom: 96px; right: 32px;
  width: 360px; max-height: 500px;
  z-index: 1200;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
  animation: slideUp 0.3s ease;
  overflow: hidden;
}
.chat-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
}
.chat-agent { display: flex; align-items: center; gap: 12px; }
.chat-agent img { width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--accent); }
.chat-agent strong { display: block; font-size: 0.9rem; font-weight: 700; }
.agent-status { font-size: 0.75rem; color: #10b981; }
.chat-close-btn {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--surface-2); color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.chat-close-btn:hover { background: var(--accent); color: #fff; }
.chat-messages { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.chat-msg { max-width: 85%; }
.agent-msg { align-self: flex-start; }
.user-msg { align-self: flex-end; }
.chat-msg span {
  display: block;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.88rem;
  line-height: 1.5;
}
.agent-msg span {
  background: var(--bg-3);
  color: var(--text-muted);
  border-bottom-left-radius: 4px;
}
.user-msg span {
  background: var(--accent);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.chat-input-wrap {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px;
  border-top: 1px solid var(--border);
}
.chat-input-wrap input {
  flex: 1;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  color: var(--text);
  font-size: 0.88rem;
  outline: none;
  transition: border-color var(--transition);
}
.chat-input-wrap input:focus { border-color: var(--accent); }
.chat-send-btn {
  width: 38px; height: 38px;
  background: var(--accent);
  color: #fff;
  border-radius: 10px;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
}
.chat-send-btn:hover { background: var(--accent-2); transform: scale(1.05); }
.chat-fab {
  position: fixed; bottom: 32px; right: 32px;
  width: 54px; height: 54px;
  background: var(--accent);
  color: #fff;
  border-radius: 16px;
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(255,92,0,0.4);
  z-index: 1190;
  transition: all var(--transition);
}
.chat-fab:hover { background: var(--accent-2); transform: scale(1.08); }
.chat-fab-dot {
  position: absolute; top: -3px; right: -3px;
  width: 12px; height: 12px;
  background: #10b981;
  border-radius: 50%;
  border: 2px solid var(--bg);
}

/* ===== ORDER PAGE ===== */
.order-page { background: var(--bg); min-height: 100vh; }
.order-page-wrap {
  padding: calc(var(--nav-height) + 40px) 0 100px;
}
.order-status-header {
  text-align: center;
  padding: 40px 0 60px;
}
.order-fire-anim { font-size: 3rem; margin-bottom: 16px; animation: float 3s ease-in-out infinite; }
.order-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.order-title .accent { color: var(--accent); }
.order-subtitle { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 40px; }
.delivery-countdown {
  display: flex; align-items: center; justify-content: center; gap: 32px;
  flex-wrap: wrap;
}
.countdown-ring { position: relative; width: 120px; height: 120px; flex-shrink: 0; }
.countdown-svg { transform: rotate(-90deg); }
.countdown-bg-circle { fill: none; stroke: var(--surface-2); stroke-width: 6; }
.countdown-progress-circle {
  fill: none; stroke: var(--accent); stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 339.3;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1s linear;
}
.countdown-inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.countdown-minutes {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
}
.countdown-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.countdown-info { text-align: left; }
.countdown-info h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem; font-weight: 700; margin-bottom: 6px;
}
.countdown-info p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 14px; }
.eta-bar { width: 240px; height: 4px; background: var(--surface-2); border-radius: 2px; overflow: hidden; }
.eta-fill { height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-2)); border-radius: 2px; transition: width 1s linear; }

.order-steps {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin: 0 auto 60px; max-width: 700px;
  flex-wrap: nowrap; overflow-x: auto; padding: 20px 0;
}
.step {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  min-width: 120px; flex-shrink: 0;
}
.step-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--surface); border: 2px solid var(--border-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  transition: all var(--transition);
}
.step.done .step-icon { background: #10b981; border-color: #10b981; color: #fff; }
.step.active .step-icon { background: var(--accent); border-color: var(--accent); color: #fff; animation: pulse 2s infinite; }
.step-text { text-align: center; }
.step-text strong { display: block; font-family: var(--font-heading); font-size: 0.85rem; font-weight: 700; }
.step-text span { font-size: 0.75rem; color: var(--text-muted); }
.step-line { flex: 1; height: 2px; background: var(--border-2); min-width: 40px; transition: background 0.5s; }
.step-line.done { background: #10b981; }

.order-body-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 32px; }
.map-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.map-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.map-header h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; }
.live-badge { font-size: 0.75rem; color: #10b981; font-weight: 700; letter-spacing: 0.08em; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.4} }
.map-svg { width: 100%; height: auto; display: block; }
.courier-info-overlay {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  background: var(--bg-3);
}
.courier-avatar { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--accent); }
.courier-details strong { display: block; font-size: 0.9rem; font-weight: 700; }
.courier-details span { font-size: 0.78rem; color: var(--text-muted); }
.courier-call-btn {
  margin-left: auto;
  padding: 8px 16px;
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 0.8rem; font-weight: 600;
  color: var(--text-muted);
  transition: all var(--transition);
}
.courier-call-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.map-legend {
  display: flex; gap: 20px; padding: 14px 20px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem; color: var(--text-muted);
}
.legend-dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 6px; }
.tbilisi-map { position: relative; }

.order-summary-section { display: flex; flex-direction: column; gap: 20px; }
.order-summary-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 28px;
}
.order-summary-card h3 {
  font-family: var(--font-heading); font-size: 1rem; font-weight: 700; margin-bottom: 20px;
}
.order-items-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.order-item-row {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.order-item-row:last-child { border-bottom: none; padding-bottom: 0; }
.order-item-img { width: 48px; height: 48px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.order-item-name { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700; flex: 1; }
.order-item-qty { font-size: 0.8rem; color: var(--text-muted); }
.order-item-price { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700; color: var(--accent); }
.order-summary-totals { display: flex; flex-direction: column; gap: 8px; }
.order-total-row {
  display: flex; justify-content: space-between;
  font-size: 0.88rem; color: var(--text-muted);
}
.order-total-row.final {
  font-family: var(--font-heading); font-size: 1.1rem; font-weight: 800;
  color: var(--text); padding-top: 10px; border-top: 1px solid var(--border);
}
.order-total-row.final span:last-child { color: var(--accent); }

.order-restaurant-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
}
.order-restaurant-card h4 {
  font-family: var(--font-heading); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px;
}
.order-restaurant-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.55; }
.order-actions { display: flex; flex-direction: column; gap: 10px; }

.rate-order-section {
  background: var(--surface); border: 1px solid var(--border-2);
  border-radius: var(--radius-xl); padding: 48px;
  text-align: center; margin-top: 40px;
}
.rate-order-section h3 {
  font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; margin-bottom: 20px;
}
.rating-stars { display: flex; justify-content: center; gap: 8px; margin-bottom: 12px; }
.rate-star { font-size: 2.5rem; color: var(--border-2); transition: color 0.2s; background: none; border: none; cursor: pointer; }
.rate-star.active { color: #f59e0b; }
.rate-label { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 20px; }

/* ===== RESPONSIVE PATCHES ===== */
@media (max-width: 1024px) {
  .cp-steps-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .careers-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .featured-pricing { transform: none; }
  .cp-apply-grid { grid-template-columns: 1fr; gap: 40px; }
  .order-body-grid { grid-template-columns: 1fr; }
  .auth-container { grid-template-columns: 1fr; padding-top: calc(var(--nav-height) + 20px); }
  .auth-left { display: none; }
  .auth-card { padding: 36px 32px; }
  .support-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .join-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .cp-hero { padding: calc(var(--nav-height) + 40px) 0 60px; }
  .cp-hero-stats { gap: 20px; padding: 20px 24px; }
  .cp-steps-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .careers-grid { grid-template-columns: 1fr; }
  .support-cards-grid { grid-template-columns: 1fr; }
  .join-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .delivery-address-wrap { max-width: 100%; }
  .address-input-box { flex-wrap: wrap; padding: 12px 16px; }
  .address-submit-btn { width: 100%; justify-content: center; padding: 14px; }
  .order-steps { justify-content: flex-start; }
}
@media (max-width: 480px) {
  .cp-hero-title { font-size: clamp(3rem, 10vw, 4rem); }
  .live-chat-widget { width: calc(100vw - 32px); right: 16px; bottom: 90px; }
}

/* ===== NAV ADDRESS DISPLAY ===== */
.nav-address-display {
  display: flex; align-items: center; gap: 6px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: 100px;
  padding: 6px 14px;
  cursor: pointer;
  transition: all var(--transition);
  max-width: 200px;
}
.nav-address-display:hover { border-color: var(--accent); }
.nav-address-icon { font-size: 0.85rem; }
.nav-address-text {
  font-size: 0.78rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* section-cta */
.section-cta { text-align: center; margin-top: 48px; }

/* btn-lg */
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* partner-hero override */
.partner-hero .cp-hero-bg {
  background: radial-gradient(ellipse at 20% 50%, rgba(255,92,0,0.08) 0%, transparent 60%);
}

/* ============================================================
   SPACING FIXES — sections less cramped
   ============================================================ */
.contact-section { padding: 120px 0; }
.testimonials-section { padding: 120px 0; }
.join-section { padding: 120px 0; }
.features-section { padding: 100px 0; }

/* Support cards more breathing room */
.support-cards-grid { gap: 28px; margin-top: 8px; }
.support-card { padding: 36px 30px; }

/* Footer more space */
.footer { padding: 100px 0 0; }
.footer-grid { gap: 48px; margin-bottom: 72px; }
.footer-brand p { margin-bottom: 28px; }

/* Testimonials more space between cards */
.testimonials-grid { gap: 28px; }
.testimonial-card { padding: 36px; }

/* Hero actions more space */
.hero-actions { gap: 16px; margin-bottom: 52px; }

/* Section header bigger bottom margin */
.section-header { margin-bottom: 56px; }

/* Menu section more room */
.menu-section { padding: 120px 0; }

/* About more room */
.about-section { padding: 120px 0; }

/* Features cards bigger */
.feature-card { padding: 40px 32px; }

/* Fix sale badge in CSS (was missing) */
.menu-card-badge.sale { background: var(--accent); }

/* Fix nav: ensure theme btn doesn't shrink */
.nav-right { gap: 10px; }

/* light mode - navbar links on mobile */
body.light-mode .nav-links { background: rgba(245,243,239,0.99); }

/* Scroll top button doesn't overlap chat fab */
.scroll-top { bottom: 100px; }