/* ============================================
   TRATTORIA DEL POPOLO — Design System
   Premium Italian Restaurant Aesthetics
   ============================================ */

/* ---------- CSS Variables / Tokens ---------- */
:root {
  /* Colors */
  --primary: #722F37;
  --primary-dark: #5A252C;
  --primary-light: #8B3A42;
  --gold: #C5A55A;
  --gold-light: #D4B96E;
  --gold-dark: #A68A3E;
  --cream: #FFF8F0;
  --cream-dark: #F5EDE0;
  --charcoal: #2C2C2C;
  --text: #1A1A1A;
  --text-light: #6B6B6B;
  --text-muted: #9B9B9B;
  --olive: #6B7B3E;
  --success: #2D6A4F;
  --danger: #C0392B;
  --bg: #FFFCF7;
  --bg-alt: #FBF6EE;
  --card-bg: #FFFFFF;
  --border: #E8E0D4;
  --gradient: linear-gradient(135deg, #722F37 0%, #C5A55A 100%);

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(114, 47, 55, 0.06);
  --shadow-md: 0 4px 16px rgba(114, 47, 55, 0.08);
  --shadow-lg: 0 8px 32px rgba(114, 47, 55, 0.12);
  --shadow-xl: 0 16px 48px rgba(114, 47, 55, 0.16);
  --shadow-gold: 0 4px 20px rgba(197, 165, 90, 0.25);

  /* Transitions */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

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

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }

p {
  color: var(--text-light);
  line-height: 1.7;
}

/* ---------- Container & Layout ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.container-sm {
  max-width: 800px;
}

/* ---------- Gradient Text ---------- */
.gradient-text {
  background: linear-gradient(135deg, #722F37, #C5A55A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-lg) 0;
  transition: all var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 252, 247, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--space-md) 0;
  box-shadow: 0 2px 20px rgba(114, 47, 55, 0.08);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  transition: color var(--transition);
  white-space: normal;
  flex-shrink: 0;
  line-height: 1.2;
}

.navbar.scrolled .logo {
  color: var(--primary);
}

.logo span {
  font-size: 1.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: var(--space-md);
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition);
  position: relative;
}

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

.nav-links a:hover {
  color: #fff;
}

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

.navbar.scrolled .nav-links a {
  color: var(--text-light);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-social {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition);
  padding: 6px;
  border-radius: 50%;
}

.nav-social:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
}

.nav-actions .btn {
  font-size: 0.85rem;
  padding: 0.6rem 1.4rem;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}

.navbar.scrolled .mobile-toggle span {
  background: var(--charcoal);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.4;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: var(--shadow-lg);
  transform: translateY(-1px);
}

.btn-gold {
  background: linear-gradient(135deg, #C5A55A, #a88b3d);
  color: #fff;
  border-color: #C5A55A;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #b8973f, #96792e);
  border-color: #b8973f;
  box-shadow: 0 4px 15px rgba(197, 165, 90, 0.35);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.navbar.scrolled .btn-outline {
  color: var(--primary);
  border-color: var(--primary);
}

.navbar.scrolled .btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
  border-color: transparent;
  padding: 0.5rem 1rem;
}

.btn-ghost:hover {
  background: rgba(114, 47, 55, 0.06);
  color: var(--primary-dark);
}

.btn-danger {
  background: var(--danger);
  color: #fff;
  border-color: var(--danger);
}

.btn-danger:hover {
  background: #a93226;
  border-color: #a93226;
  box-shadow: 0 4px 16px rgba(192, 57, 43, 0.25);
}

.btn-success {
  background: var(--success);
  color: #fff;
  border-color: var(--success);
}

.btn-success:hover {
  background: #245a42;
  border-color: #245a42;
  box-shadow: 0 4px 16px rgba(45, 106, 79, 0.25);
}

.btn-block {
  display: flex;
  width: 100%;
}

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

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

.btn:disabled,
.btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(165deg, rgba(26, 10, 12, 0.82) 0%, rgba(45, 18, 22, 0.75) 30%, rgba(90, 37, 44, 0.65) 50%, rgba(45, 18, 22, 0.78) 75%, rgba(21, 7, 9, 0.88) 100%),
    url('set3/m1.jpeg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(197, 165, 90, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, rgba(197, 165, 90, 0.03) 1px, transparent 1px);
  background-size: 60px 60px, 40px 40px;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 70%, rgba(255, 252, 247, 0.05) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: var(--space-4xl) 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.5rem 1.25rem;
  background: rgba(197, 165, 90, 0.15);
  border: 1px solid rgba(197, 165, 90, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: var(--space-xl);
  backdrop-filter: blur(10px);
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, #D4B96E, #C5A55A, #A68A3E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
  max-width: 560px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-3xl);
  flex-wrap: wrap;
}

.hero-cta .btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
  font-weight: 700;
}

.hero-cta .btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-gold);
}

.hero-stats {
  display: flex;
  gap: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stats .stat {
  text-align: left;
}

.hero-stats .stat-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
}

.hero-stats .stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin-top: 2px;
}

/* ---------- Sections ---------- */
.section {
  padding: var(--space-4xl) 0;
}

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

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-3xl);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.4rem 1rem;
  background: rgba(114, 47, 55, 0.06);
  border: 1px solid rgba(114, 47, 55, 0.12);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-md);
}

.section-header h2 {
  margin-bottom: var(--space-md);
}

.section-header p {
  font-size: 1.05rem;
}

/* ---------- Feature / Kitchen Cards ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.feature-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-card-img img {
  transform: scale(1.08);
}

.feature-card-body {
  padding: var(--space-xl) var(--space-2xl) var(--space-2xl);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 2;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(197, 165, 90, 0.3);
}

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

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -28px auto var(--space-md);
  background: var(--card-bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 1.5rem;
  transition: all var(--transition);
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-md);
}

.feature-card:hover .feature-icon {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: scale(1.1);
}

.feature-card h3 {
  margin-bottom: var(--space-sm);
  font-size: 1.3rem;
}

.feature-card p {
  font-size: 0.95rem;
}

/* ---------- Steps ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  position: relative;
}

.step-card {
  text-align: center;
  padding: var(--space-xl);
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--gradient);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
}

.step-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  background: var(--card-bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  font-size: 2.25rem;
  transition: all var(--transition);
}

.step-card:hover .step-icon {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.step-card h3 {
  margin-bottom: var(--space-sm);
}

.step-card p {
  font-size: 0.95rem;
  max-width: 280px;
  margin: 0 auto;
}

.step-connector {
  display: none;
}

/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.review-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all var(--transition);
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-heading);
  font-size: 4rem;
  color: rgba(114, 47, 55, 0.06);
  line-height: 1;
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-md);
  color: var(--gold);
  font-size: 1rem;
}

.review-card blockquote {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.review-author .author-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
}

.review-author .author-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---------- CTA Section ---------- */
.cta-section {
  padding: var(--space-4xl) 0;
}

.cta-card {
  background:
    linear-gradient(135deg, rgba(114, 47, 55, 0.88) 0%, rgba(90, 37, 44, 0.82) 30%, rgba(58, 21, 25, 0.9) 100%),
    url('set3/m4.jpeg');
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-xl);
  padding: var(--space-4xl) var(--space-3xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(197, 165, 90, 0.04) 1px, transparent 1px);
  background-size: 30px 30px;
}

.cta-card h2 {
  color: #fff;
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.cta-card h2 .gradient-text {
  background: linear-gradient(135deg, #D4B96E, #C5A55A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-2xl);
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

.cta-card .btn {
  position: relative;
  z-index: 1;
}

.cta-card .btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
  font-weight: 700;
}

.cta-card .btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-gold);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-lg);
}

.contact-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-lg);
  text-align: center;
  transition: all var(--transition);
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: rgba(197, 165, 90, 0.3);
}

.contact-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  background: rgba(114, 47, 55, 0.06);
  border-radius: var(--radius-lg);
  font-size: 1.5rem;
}

.contact-card h3 {
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}

.contact-card p {
  font-size: 0.85rem;
  color: var(--text-light);
}

.contact-card a {
  color: var(--primary);
  font-weight: 500;
}

.contact-card a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* ---------- Opening Hours ---------- */
.hours-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
  max-width: 900px;
  margin: 0 auto;
}

.hours-day {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
  transition: all var(--transition);
  width: 148px;
}

.hours-day:hover {
  box-shadow: var(--shadow-sm);
}

.hours-day .day-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: var(--space-xs);
}

.hours-day .day-hours {
  font-size: 0.85rem;
  color: var(--text-light);
}

.hours-day.closed {
  opacity: 0.55;
}

.hours-day.closed .day-hours {
  color: var(--danger);
  font-weight: 500;
}

/* ---------- Menu Showcase ---------- */
.menu-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  max-width: 1000px;
  margin: 0 auto;
  align-items: stretch;
}

.menu-pdf-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.menu-pdf-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.menu-pdf-preview {
  background: linear-gradient(135deg, #722F37 0%, #5A252C 50%, #3a1519 100%);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.menu-pdf-icon {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-md);
}

.menu-pdf-preview h3 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
}

.menu-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin: var(--space-xs) 0 0;
  font-style: italic;
}

.menu-pdf-actions {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.menu-pdf-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.menu-highlights {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.menu-highlight-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.menu-highlight-item:hover {
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.menu-highlight-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 40px;
  text-align: center;
}

.menu-highlight-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 2px;
}

.menu-highlight-item p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.4;
}

/* Menu Sidebar Card (Booking page) */
.menu-sidebar-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-top: var(--space-md);
}

.menu-sidebar-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.menu-sidebar-card strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text);
}

.menu-sidebar-card p {
  font-size: 0.75rem;
  color: var(--text-light);
  margin: 2px 0 0;
}

.menu-sidebar-card .btn {
  margin-left: auto;
  flex-shrink: 0;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.75);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: var(--space-md);
  font-size: 1.2rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 280px;
}

.footer-links h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
  font-family: var(--font-body);
  font-weight: 600;
}

.footer-links ul li {
  margin-bottom: var(--space-sm);
}

.footer-links ul li a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}

.footer-links ul li a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a {
  color: var(--gold);
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--gold-light);
}

/* ---------- Booking Page ---------- */
.page-wrapper {
  min-height: 100vh;
  background: var(--bg);
  padding-top: 80px;
}

.page-header {
  text-align: center;
  padding: var(--space-3xl) 0 var(--space-xl);
}

.page-header h1 {
  margin-bottom: var(--space-sm);
}

.page-header p {
  font-size: 1.05rem;
  color: var(--text-light);
}

/* Booking Steps Indicator */
.booking-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: var(--space-2xl);
  padding: 0 var(--space-xl);
}

.booking-step {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}

.booking-step.active {
  color: var(--primary);
}

.booking-step.completed {
  color: var(--success);
}

.booking-step-num {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--cream-dark);
  font-weight: 700;
  font-size: 0.85rem;
  transition: all var(--transition);
}

.booking-step.active .booking-step-num {
  background: var(--primary);
  color: #fff;
}

.booking-step.completed .booking-step-num {
  background: var(--success);
  color: #fff;
}

.booking-step-line {
  width: 80px;
  height: 2px;
  background: var(--border);
  margin: 0 var(--space-md);
  transition: background var(--transition);
}

.booking-step-line.completed {
  background: var(--success);
}

/* Booking Grid */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--space-2xl);
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-xl) var(--space-3xl);
}

.booking-content {
  min-width: 0;
}

.booking-step-content {
  display: none;
}

.booking-step-content.active {
  display: block;
}

/* Party Size Selector */
.party-size-selector {
  margin-bottom: var(--space-2xl);
}

.party-size-selector label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
  color: var(--text);
}

.party-size-options {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.party-size-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--card-bg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition);
}

.party-size-btn:hover {
  border-color: var(--primary-light);
  color: var(--primary);
  background: rgba(114, 47, 55, 0.04);
}

.party-size-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(114, 47, 55, 0.2);
}

.party-size-btn.large {
  width: auto;
  padding: 0 var(--space-md);
  font-size: 0.85rem;
}

.party-size-note {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: rgba(197, 165, 90, 0.08);
  border: 1px solid rgba(197, 165, 90, 0.2);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  color: var(--text-light);
  display: none;
}

.party-size-note.visible {
  display: block;
}

/* Calendar */
.calendar-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
}

.calendar-header h3 {
  font-size: 1.15rem;
  font-weight: 600;
}

.calendar-header button {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--card-bg);
  cursor: pointer;
  font-size: 1rem;
  color: var(--text-light);
  transition: all var(--transition);
}

.calendar-header button:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(114, 47, 55, 0.04);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: var(--space-sm);
}

.calendar-weekdays span {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: var(--space-sm) 0;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--text);
  transition: all var(--transition);
  font-family: var(--font-body);
  position: relative;
}

.calendar-day:hover:not(.empty):not(.disabled):not(.blocked):not(.closed-day) {
  background: rgba(114, 47, 55, 0.08);
  color: var(--primary);
}

.calendar-day.empty {
  cursor: default;
  pointer-events: none;
}

.calendar-day.disabled {
  color: var(--text-muted);
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.calendar-day.blocked {
  color: var(--danger);
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
  text-decoration: line-through;
}

.calendar-day.today {
  background: rgba(114, 47, 55, 0.06);
  font-weight: 700;
  color: var(--primary);
}

.calendar-day.today::after {
  content: '';
  position: absolute;
  bottom: 4px;
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: var(--radius-full);
}

.calendar-day.selected {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(114, 47, 55, 0.25);
}

.calendar-day.selected::after {
  display: none;
}

.calendar-day.closed-day {
  color: var(--text-muted);
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 3px,
    rgba(0, 0, 0, 0.03) 3px,
    rgba(0, 0, 0, 0.03) 6px
  );
}

/* Time Slots */
.slots-section {
  margin-bottom: var(--space-2xl);
}

.slots-section h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-md);
}

.slots-section .slots-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: var(--space-sm);
}

.slot-btn {
  padding: 0.7rem 0.5rem;
  text-align: center;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--card-bg);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition);
}

.slot-btn:hover:not(.disabled):not(.selected) {
  border-color: var(--primary-light);
  color: var(--primary);
  background: rgba(114, 47, 55, 0.04);
}

.slot-btn.disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
  background: var(--cream-dark);
}

.slot-btn.selected {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(114, 47, 55, 0.2);
}

/* Summary Card (Sidebar) */
.summary-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: sticky;
  top: 100px;
}

.summary-card h3 {
  font-size: 1.15rem;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border);
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
  font-size: 0.9rem;
}

.summary-item .label {
  color: var(--text-light);
}

.summary-item .value {
  font-weight: 600;
  color: var(--text);
}

.summary-divider {
  height: 1px;
  background: var(--border);
  margin: var(--space-md) 0;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
  font-weight: 700;
}

.summary-total .label {
  font-size: 0.95rem;
  color: var(--text);
}

.summary-total .value {
  font-size: 1.15rem;
  color: var(--primary);
}

.summary-card .btn {
  margin-top: var(--space-lg);
}

/* ---------- Forms ---------- */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-input {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--card-bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  outline: none;
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(114, 47, 55, 0.1);
}

.form-input::placeholder {
  color: var(--text-muted);
}

textarea.form-input {
  resize: vertical;
  min-height: 100px;
}

/* ---------- Confirmation Page ---------- */
.confirmation-wrapper {
  max-width: 640px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-xl);
  text-align: center;
}

.confirmation-icon {
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-xl);
  background: rgba(45, 106, 79, 0.08);
  border-radius: var(--radius-full);
  font-size: 2.5rem;
  color: var(--success);
}

.confirmation-wrapper h1 {
  margin-bottom: var(--space-sm);
}

.confirmation-wrapper > p {
  font-size: 1.05rem;
  margin-bottom: var(--space-2xl);
}

.confirmation-details {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: left;
  margin-bottom: var(--space-xl);
}

.confirmation-details h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border);
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
  font-size: 0.9rem;
}

.detail-row .label {
  color: var(--text-light);
}

.detail-row .value {
  font-weight: 600;
  color: var(--text);
}

.special-requests-box {
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-top: var(--space-md);
  text-align: left;
}

.special-requests-box h4 {
  font-size: 0.85rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.special-requests-box p {
  font-size: 0.85rem;
}

.whatsapp-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.25rem;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  color: #128C7E;
  font-weight: 500;
  margin-bottom: var(--space-xl);
}

.confirmation-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Admin Login Overlay ---------- */
.admin-login-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(165deg, rgba(26, 10, 12, 0.92) 0%, rgba(45, 18, 22, 0.88) 30%, rgba(90, 37, 44, 0.80) 50%, rgba(45, 18, 22, 0.88) 75%, rgba(21, 7, 9, 0.95) 100%),
    url('set3/m3.jpeg');
  background-size: cover;
  background-position: center;
}

.admin-login-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-xl), 0 0 80px rgba(114, 47, 55, 0.15);
}

.admin-login-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.admin-login-header h1 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: var(--space-xs);
}

.admin-login-header p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.admin-login-card .form-group {
  margin-bottom: var(--space-lg);
}

.admin-login-card .form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-xs);
}

.admin-login-card .form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--bg);
  color: var(--text);
  transition: all var(--transition);
}

.admin-login-card .form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(114, 47, 55, 0.1);
}

.login-error {
  background: rgba(192, 57, 43, 0.08);
  border: 1px solid rgba(192, 57, 43, 0.2);
  border-radius: var(--radius-sm);
  color: var(--danger);
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  margin-bottom: var(--space-lg);
  text-align: center;
}

.btn-block {
  display: block;
  width: 100%;
}

.admin-login-footer {
  text-align: center;
  margin-top: var(--space-xl);
}

.admin-login-footer a {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color var(--transition);
}

.admin-login-footer a:hover {
  color: var(--primary);
}

/* ---------- Admin Table Expanded ---------- */
.admin-table-full {
  font-size: 0.82rem;
}

.admin-table-full th,
.admin-table-full td {
  padding: 10px 12px;
}

.table-link {
  color: var(--primary);
  text-decoration: none;
  font-size: 0.82rem;
}

.table-link:hover {
  text-decoration: underline;
  color: var(--primary-dark);
}

.special-req-cell {
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.82rem;
  color: var(--text-light);
}

.reservations-count {
  padding: 8px 16px;
  font-size: 0.85rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
}

/* ---------- Admin Layout ---------- */
.admin-layout {
  display: flex;
  min-height: 100vh;
}

.admin-sidebar {
  background: var(--charcoal);
  color: #fff;
  padding: var(--space-lg);
  width: 220px;
  min-width: 220px;
  overflow-y: auto;
  z-index: 100;
  min-height: 100vh;
}

.admin-logo {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  padding-bottom: var(--space-lg);
  margin-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.admin-logo span {
  font-size: 1.2rem;
}

.admin-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.admin-nav a {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.admin-nav a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
}

.admin-nav a.active {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
}

.admin-nav a .nav-icon {
  font-size: 1rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.admin-main {
  flex: 1;
  padding: var(--space-2xl);
  background: var(--bg);
  min-height: 100vh;
  min-width: 0;
  overflow-x: auto;
}

.admin-mobile-toggle {
  display: none;
  position: fixed;
  top: var(--space-md);
  left: var(--space-md);
  z-index: 200;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: var(--charcoal);
  border: none;
  border-radius: var(--radius-md);
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
}

/* Admin Header */
.admin-header {
  margin-bottom: var(--space-2xl);
}

.admin-header h1 {
  font-size: 1.75rem;
  margin-bottom: var(--space-xs);
}

.admin-header p {
  font-size: 0.9rem;
}

/* Admin Cards */
.admin-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
  overflow-x: auto;
}

.admin-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border);
}

.admin-card-header h3 {
  font-size: 1.1rem;
}

/* Dashboard Stats */
.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.dashboard-stat {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  transition: all var(--transition);
}

.dashboard-stat:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.dashboard-stat-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(114, 47, 55, 0.06);
  border-radius: var(--radius-md);
  font-size: 1.35rem;
  flex-shrink: 0;
}

.dashboard-stat-value {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.dashboard-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Admin Table */
.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table thead th {
  text-align: left;
  padding: var(--space-md) var(--space-md);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}

.admin-table tbody td {
  padding: var(--space-md) var(--space-md);
  font-size: 0.85rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.admin-table tbody tr:hover {
  background: rgba(114, 47, 55, 0.02);
}

.admin-table tbody tr:last-child td {
  border-bottom: none;
}

.admin-table .guest-name {
  font-weight: 600;
}

.admin-table .ref-code {
  font-family: monospace;
  font-size: 0.8rem;
  color: var(--text-light);
  background: var(--cream-dark);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
}

/* Admin Calendar Grid */
.admin-calendar-grid {
  display: grid;
  grid-template-columns: 80px repeat(7, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.admin-cal-header {
  padding: var(--space-md);
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  background: var(--cream-dark);
  border-bottom: 1px solid var(--border);
}

.admin-cal-header.closed-header {
  color: var(--text-muted);
  opacity: 0.6;
}

.admin-cal-header small {
  display: block;
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.7rem;
}

.admin-cal-time {
  padding: var(--space-md);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--cream-dark);
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-cal-slot {
  padding: var(--space-sm);
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  min-height: 60px;
  font-size: 0.75rem;
}

.admin-cal-slot:nth-child(8n) {
  border-right: none;
}

.admin-cal-slot.closed-col {
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 4px,
    rgba(0, 0, 0, 0.02) 4px,
    rgba(0, 0, 0, 0.02) 8px
  );
}

.cal-booking {
  background: rgba(114, 47, 55, 0.08);
  border-left: 3px solid var(--primary);
  border-radius: 4px;
  padding: 4px 6px;
  margin-bottom: 2px;
  font-size: 0.7rem;
  line-height: 1.3;
}

.cal-booking .cal-guest {
  font-weight: 600;
  color: var(--text);
}

.cal-booking .cal-party {
  color: var(--text-light);
}

.cal-blocked {
  background: rgba(192, 57, 43, 0.06);
  border-left: 3px solid var(--danger);
  border-radius: 4px;
  padding: 4px 6px;
  font-size: 0.7rem;
  color: var(--danger);
  font-weight: 500;
}

/* Admin Filters */
.admin-filters {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.admin-filter {
  padding: 0.45rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background: var(--card-bg);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-light);
  cursor: pointer;
  transition: all var(--transition);
}

.admin-filter:hover {
  border-color: var(--primary-light);
  color: var(--primary);
}

.admin-filter.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.admin-search {
  margin-left: auto;
  position: relative;
}

.admin-search input {
  padding: 0.5rem 1rem 0.5rem 2.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background: var(--card-bg);
  font-family: var(--font-body);
  font-size: 0.85rem;
  width: 250px;
  outline: none;
  transition: all var(--transition);
}

.admin-search input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(114, 47, 55, 0.08);
}

.admin-search::before {
  content: '🔍';
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8rem;
}

/* Status Badges */
.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.02em;
}

.status-badge.confirmed {
  background: rgba(107, 123, 62, 0.1);
  color: var(--olive);
}

.status-badge.seated {
  background: rgba(197, 165, 90, 0.12);
  color: var(--gold-dark);
}

.status-badge.completed {
  background: rgba(45, 106, 79, 0.1);
  color: var(--success);
}

.status-badge.cancelled {
  background: rgba(192, 57, 43, 0.08);
  color: var(--danger);
}

.status-badge.no-show {
  background: rgba(155, 155, 155, 0.12);
  color: var(--text-muted);
}

.status-badge.pending {
  background: rgba(197, 165, 90, 0.12);
  color: var(--gold-dark);
}

/* Status select dropdown in admin */
.status-select {
  padding: 0.3rem 0.6rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.8rem;
  background: var(--card-bg);
  color: var(--text);
  cursor: pointer;
  outline: none;
  transition: all var(--transition);
}

.status-select:focus {
  border-color: var(--primary);
}

/* Admin view containers */
.admin-view {
  display: none;
}

.admin-view.active {
  display: block;
}

/* Reminder toggles */
.reminders-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.reminder-column {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.reminder-column h3 {
  font-size: 1rem;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.reminder-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(232, 224, 212, 0.5);
}

.reminder-item:last-child {
  border-bottom: none;
}

.reminder-item label {
  font-size: 0.85rem;
  color: var(--text);
  cursor: pointer;
}

/* Toggle switch */
.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--border);
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--primary);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(20px);
}

/* Date management */
.block-date-form {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  align-items: flex-end;
  flex-wrap: wrap;
}

.block-date-form .form-group {
  margin-bottom: 0;
  flex: 1;
  min-width: 160px;
}

.blocked-dates-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.blocked-date-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  background: rgba(192, 57, 43, 0.04);
  border: 1px solid rgba(192, 57, 43, 0.12);
  border-radius: var(--radius-md);
}

.blocked-date-item .date-info {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.blocked-date-item .date-val {
  font-weight: 600;
  font-size: 0.9rem;
}

.blocked-date-item .date-reason {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Calendar navigation for admin */
.calendar-nav {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.calendar-nav button {
  padding: 0.4rem 0.8rem;
}

.calendar-nav h3 {
  min-width: 200px;
  text-align: center;
}

/* Messages / Alerts */
.message-box {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  margin-bottom: var(--space-lg);
}

.message-box.info {
  background: rgba(114, 47, 55, 0.06);
  color: var(--primary);
  border: 1px solid rgba(114, 47, 55, 0.12);
}

.message-box.warning {
  background: rgba(197, 165, 90, 0.1);
  color: var(--gold-dark);
  border: 1px solid rgba(197, 165, 90, 0.2);
}

.message-box.error {
  background: rgba(192, 57, 43, 0.06);
  color: var(--danger);
  border: 1px solid rgba(192, 57, 43, 0.12);
}

.message-box.success {
  background: rgba(45, 106, 79, 0.06);
  color: var(--success);
  border: 1px solid rgba(45, 106, 79, 0.12);
}

/* Empty state */
.empty-state {
  text-align: center;
  padding: var(--space-3xl);
  color: var(--text-muted);
}

.empty-state .empty-icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
  opacity: 0.5;
}

.empty-state p {
  font-size: 0.95rem;
}

/* Loading spinner */
.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl);
}

.loading::after {
  content: '';
  width: 32px;
  height: 32px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* Scroll animations */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .features-grid,
  .steps-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

  .dashboard-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-grid {
    grid-template-columns: 1fr;
  }

  .summary-card {
    position: static;
  }

  .reminders-grid {
    grid-template-columns: 1fr;
  }

  .admin-calendar-grid {
    overflow-x: auto;
  }

  /* Admin tablet — collapse sidebar */
  .admin-layout {
    display: block;
  }

  .admin-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    transform: translateX(-100%);
    transition: transform var(--transition);
  }

  .admin-sidebar.open {
    transform: translateX(0);
  }

  .admin-main {
    padding: var(--space-xl) var(--space-lg);
    padding-top: 60px;
  }

  .admin-mobile-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 44, 44, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-2xl);
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.25rem;
    color: #fff;
  }

  .navbar.scrolled .nav-links a {
    color: #fff;
  }

  .mobile-toggle {
    display: flex;
    z-index: 1001;
  }

  .nav-actions {
    display: none;
  }

  .hero-content {
    padding: var(--space-3xl) 0 var(--space-2xl);
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-md);
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .features-grid,
  .steps-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

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

  .menu-showcase {
    grid-template-columns: 1fr;
  }

  .menu-sidebar-card {
    flex-direction: column;
    text-align: center;
    gap: var(--space-sm);
  }

  .menu-sidebar-card .btn {
    margin-left: 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .dashboard-stats {
    grid-template-columns: 1fr;
  }

  .booking-steps {
    flex-wrap: wrap;
    gap: var(--space-sm);
  }

  .booking-step-line {
    width: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hours-grid {
    max-width: 340px;
  }

  .hours-day {
    width: 100%;
  }

  .slots-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Admin mobile — smaller adjustments */
  .admin-filters {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-search {
    margin-left: 0;
  }

  .admin-search input {
    width: 100%;
  }

  .block-date-form {
    flex-direction: column;
  }

  .admin-table {
    display: block;
    overflow-x: auto;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

  .hero h1 {
    font-size: 2rem;
  }

  .party-size-btn {
    width: 42px;
    height: 42px;
  }

  .confirmation-actions {
    flex-direction: column;
  }
}

/* ---------- Dish Gallery / Showcase ---------- */
.gallery-section {
  padding: var(--space-4xl) 0;
  overflow: hidden;
  background: var(--bg-alt);
}

.gallery-track-wrapper {
  position: relative;
  margin-top: var(--space-2xl);
}

.gallery-track-wrapper::before,
.gallery-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.gallery-track-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-alt), transparent);
}

.gallery-track-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-alt), transparent);
}

.gallery-track {
  display: flex;
  gap: var(--space-lg);
  animation: galleryScroll 40s linear infinite;
  width: max-content;
}

.gallery-track:hover {
  animation-play-state: paused;
}

.gallery-track.reverse {
  animation: galleryScrollReverse 45s linear infinite;
}

.gallery-track.reverse:hover {
  animation-play-state: paused;
}

@keyframes galleryScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes galleryScrollReverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.gallery-item {
  flex-shrink: 0;
  width: 300px;
  height: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}

.gallery-item:hover {
  transform: scale(1.04);
  box-shadow: var(--shadow-xl);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 10, 12, 0.4) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-row {
  margin-bottom: var(--space-lg);
}

.gallery-row:last-child {
  margin-bottom: 0;
}

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  cursor: zoom-out;
  backdrop-filter: blur(8px);
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-overlay.active img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .gallery-item {
    width: 240px;
    height: 180px;
  }
}

/* ============================================
   FORM VALIDATION
   ============================================ */
.form-error {
  display: block;
  color: #e74c3c;
  font-size: 0.78rem;
  margin-top: 4px;
  min-height: 18px;
}

.form-input.invalid {
  border-color: #e74c3c !important;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.12) !important;
}

.recaptcha-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: var(--space-md);
}

/* ============================================
   GUEST MENU CARDS (9+ Pre-Order)
   ============================================ */
.guest-menu-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
  transition: box-shadow var(--transition);
}

.guest-menu-card:hover {
  box-shadow: 0 4px 20px rgba(114, 47, 55, 0.08);
}

.guest-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border);
}

.guest-number {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  font-family: var(--font-heading);
}

.guest-item-count {
  font-size: 0.8rem;
  color: var(--text-light);
  background: rgba(114, 47, 55, 0.08);
  padding: 2px 10px;
  border-radius: 20px;
}

.guest-menu-selector {
  display: flex;
  gap: var(--space-sm);
  align-items: stretch;
  flex-wrap: wrap;
}

.guest-menu-selector .form-input {
  flex: 1;
  min-width: 160px;
}

.add-item-btn {
  white-space: nowrap;
  padding: 8px 16px !important;
  font-size: 0.85rem !important;
}

.btn-sm {
  padding: 6px 14px;
  font-size: 0.82rem;
}

.guest-selected-items {
  margin-top: var(--space-md);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.selected-item-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(114, 47, 55, 0.06), rgba(183, 110, 81, 0.08));
  border: 1px solid rgba(114, 47, 55, 0.12);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 0.8rem;
  transition: all var(--transition);
}

.selected-item-tag:hover {
  border-color: rgba(114, 47, 55, 0.25);
}

.item-cat {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.item-name {
  color: var(--text);
}

.remove-item-btn {
  background: none;
  border: none;
  color: #e74c3c;
  cursor: pointer;
  font-size: 0.85rem;
  padding: 0 2px;
  opacity: 0.6;
  transition: opacity var(--transition);
}

.remove-item-btn:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .guest-menu-selector {
    flex-direction: column;
  }
  .guest-menu-selector .form-input {
    min-width: 100%;
  }
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: whatsappPulse 2s ease-in-out 1s 1;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

@keyframes whatsappPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 16px;
    left: 16px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}

/* ============================================
   COMING SOON POPUP
   ============================================ */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  padding: 20px;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  transform: scale(0.9) translateY(30px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.popup-overlay.active .popup-card {
  transform: scale(1) translateY(0);
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  font-size: 1.4rem;
  color: #333;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  line-height: 1;
}

.popup-close:hover {
  background: #fff;
  transform: scale(1.1);
}

.popup-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.popup-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popup-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.popup-content {
  padding: 0 32px 32px;
  text-align: center;
  margin-top: -24px;
  position: relative;
  z-index: 2;
}

.popup-badge {
  display: inline-block;
  background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
  color: #7a3e10;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.popup-content h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text);
  margin: 0 0 12px;
}

.popup-content p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 8px;
}

.popup-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--primary) !important;
  font-size: 1.05rem !important;
  margin: 12px 0 20px !important;
}

.popup-content .btn {
  width: 100%;
}

/* ============================================
   COMING SOON BANNER (Menu Section)
   ============================================ */
.coming-soon-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: var(--space-xl);
  padding: 24px 28px;
  background: linear-gradient(135deg, #fff8f0 0%, #fff3e6 50%, #ffecd2 100%);
  border: 1px solid rgba(253, 160, 133, 0.25);
  border-radius: var(--radius-lg);
  border-left: 4px solid #fda085;
}

.coming-soon-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
}

.coming-soon-text strong {
  font-size: 1.05rem;
  color: var(--text);
  display: block;
  margin-bottom: 4px;
}

.coming-soon-text p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .popup-image {
    height: 180px;
  }
  .popup-content {
    padding: 0 20px 24px;
  }
  .popup-content h2 {
    font-size: 1.6rem;
  }
  .coming-soon-banner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 20px;
    border-left: none;
    border-top: 4px solid #fda085;
  }
}

/* ============================================
   ONLINE ORDERING MODULE
   ============================================ */

/* ---------- Order Type Selection ---------- */
.order-type-section {
  padding: var(--space-xl) 0 var(--space-3xl);
}

.order-type-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  max-width: 700px;
  margin: 0 auto;
}

.order-type-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
  background: var(--card-bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  color: var(--text);
  position: relative;
  overflow: hidden;
  font-family: var(--font-body);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.order-type-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.order-type-card:hover,
.order-type-card:focus-visible {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.order-type-card:hover::before,
.order-type-card:focus-visible::before {
  transform: scaleX(1);
}

.order-type-icon {
  font-size: 3.5rem;
  margin-bottom: var(--space-lg);
  line-height: 1;
}

.order-type-card h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-sm);
}

.order-type-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: var(--space-lg);
  line-height: 1.5;
}

.order-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: var(--bg-alt);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  transition: all var(--transition);
}

.order-type-card:hover .order-type-badge {
  background: var(--primary);
  color: #fff;
}

.order-type-card--delivery .order-type-badge {
  background: #00ccbc15;
  color: #00897b;
}

.order-type-card--delivery:hover .order-type-badge {
  background: #00ccbc;
  color: #fff;
}

/* ---------- Back Button ---------- */
.order-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-light);
  cursor: pointer;
  transition: all var(--transition);
  margin-bottom: var(--space-xl);
}

.order-back-btn:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: rgba(114, 47, 55, 0.04);
}

/* ---------- Category Pills ---------- */
.menu-categories {
  display: flex;
  gap: 8px;
  padding: 4px 0 var(--space-xl);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.menu-categories::-webkit-scrollbar {
  display: none;
}

.menu-category-pill {
  flex-shrink: 0;
  padding: 10px 22px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  background: var(--card-bg);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-light);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.menu-category-pill:hover {
  border-color: var(--primary-light);
  color: var(--primary);
  background: rgba(114, 47, 55, 0.04);
}

.menu-category-pill.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(114, 47, 55, 0.25);
}

/* ---------- Order Layout (Menu + Cart) ---------- */
.order-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--space-2xl);
  align-items: flex-start;
}

.order-menu-col {
  min-width: 0;
}

/* ---------- Menu Items Grid ---------- */
.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-md);
}

.menu-item-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--space-lg);
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  animation: orderFadeUp 0.4s ease both;
}

@keyframes orderFadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu-item-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.menu-item-content {
  margin-bottom: var(--space-md);
}

.menu-item-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.35;
}

.menu-item-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
  font-style: italic;
}

.menu-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}

.menu-item-price {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
}

.menu-item-add-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 18px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.menu-item-add-btn:hover {
  background: var(--primary-dark);
  box-shadow: 0 2px 10px rgba(114, 47, 55, 0.3);
  transform: scale(1.05);
}

.menu-item-add-btn.added {
  background: var(--success);
  transform: scale(0.95);
}

/* ---------- Cart Sidebar (Desktop) ---------- */
.cart-sidebar {
  position: sticky;
  top: 100px;
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

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

.cart-sidebar-header h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
}

.cart-items {
  max-height: 400px;
  overflow-y: auto;
  padding: var(--space-sm) 0;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl) var(--space-lg);
  text-align: center;
}

.cart-empty-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
  opacity: 0.4;
}

.cart-empty p {
  font-weight: 600;
  color: var(--text-light);
  font-size: 0.95rem;
}

.cart-empty span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ---------- Cart Item ---------- */
.cart-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: var(--space-sm) var(--space-lg);
  border-bottom: 1px solid rgba(232, 224, 212, 0.5);
  animation: orderFadeUp 0.2s ease both;
}

.cart-item:last-of-type {
  border-bottom: none;
}

.cart-item-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-sm);
}

.cart-item-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.35;
  flex: 1;
}

.cart-item-price {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 4px;
}

.cart-qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-body);
}

.cart-qty-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(114, 47, 55, 0.06);
}

.cart-item-qty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  text-align: center;
}

.cart-remove-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: var(--radius-sm);
  background: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
  margin-left: 4px;
}

.cart-remove-btn:hover {
  background: rgba(192, 57, 43, 0.08);
  color: var(--danger);
}

/* ---------- Cart Summary ---------- */
.cart-summary {
  padding: var(--space-md) var(--space-lg) var(--space-lg);
  border-top: 1.5px solid var(--border);
  background: var(--bg-alt);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
}

.cart-subtotal span {
  font-size: 0.95rem;
  color: var(--text-light);
}

.cart-subtotal strong {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text);
}

.cart-checkout-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 0.95rem;
  font-weight: 600;
}

/* ---------- Mobile Cart FAB ---------- */
.cart-fab {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 998;
  display: none;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 20px rgba(114, 47, 55, 0.35);
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  animation: cartFabPulse 0.4s ease;
}

@keyframes cartFabPulse {
  0% { transform: scale(0.8); opacity: 0; }
  60% { transform: scale(1.05); }
  100% { transform: scale(1); opacity: 1; }
}

.cart-fab:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 28px rgba(114, 47, 55, 0.45);
  transform: scale(1.04);
}

.cart-fab-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 5px;
  background: var(--gold);
  color: var(--charcoal);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
}

.cart-fab-total {
  font-weight: 700;
}

/* ---------- Mobile Cart Drawer ---------- */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cart-drawer-overlay.open {
  opacity: 1;
}

.cart-drawer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  max-height: 85vh;
  background: var(--card-bg);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-drawer.open {
  transform: translateY(0);
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl) var(--space-md);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.cart-drawer-header h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
}

.cart-drawer-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: var(--radius-full);
  background: var(--bg-alt);
  color: var(--text-light);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.cart-drawer-close:hover {
  background: var(--border);
  color: var(--text);
}

.cart-drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-sm) 0;
}

/* ---------- Fresh Pasta Builder ---------- */
.fresh-pasta-builder {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  animation: orderFadeUp 0.4s ease both;
}

.fresh-pasta-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.fresh-pasta-header h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
}

.fresh-pasta-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
}

.fresh-pasta-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
  line-height: 1.5;
}

.fresh-pasta-selectors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.fresh-pasta-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.fresh-pasta-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.fresh-pasta-label svg {
  color: var(--gold);
}

.fresh-pasta-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fresh-pasta-option {
  padding: 8px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.fresh-pasta-option:hover {
  border-color: var(--primary-light);
  color: var(--primary);
  background: rgba(114, 47, 55, 0.04);
}

.fresh-pasta-option.selected {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(114, 47, 55, 0.2);
}

.fresh-pasta-add-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  font-size: 0.95rem;
}

.fresh-pasta-add-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ---------- Checkout Section ---------- */
.checkout-section {
  padding: var(--space-xl) 0 var(--space-3xl);
}

.checkout-layout {
  max-width: 620px;
  margin: 0 auto;
}

.checkout-form {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
}

.checkout-form h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-xl);
}

.checkout-order-summary {
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-xl);
  border: 1px solid var(--border);
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(232, 224, 212, 0.5);
}

.checkout-item:last-child {
  border-bottom: none;
}

.checkout-item-info {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.checkout-item-qty {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  min-width: 24px;
}

.checkout-item-name {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.35;
}

.checkout-item-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.checkout-details-heading {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-md);
  padding-top: var(--space-sm);
}

.checkout-total-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg);
  margin: var(--space-xl) calc(-1 * var(--space-2xl));
  background: linear-gradient(135deg, rgba(114, 47, 55, 0.04) 0%, rgba(197, 165, 90, 0.06) 100%);
  border-top: 1.5px solid var(--border);
  border-bottom: 1.5px solid var(--border);
}

.checkout-total-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.checkout-total-label span:first-child {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.checkout-item-count {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.checkout-total-price {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
}

.checkout-submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  font-size: 1.05rem;
  margin-top: var(--space-xl);
}

.checkout-submit-btn .spinner {
  animation: spin 1s linear infinite;
}

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

.checkout-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: var(--space-md);
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}

/* ---------- Order Confirmation ---------- */
.order-confirmation {
  padding: var(--space-3xl) 0;
}

.order-confirmation-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.order-confirmation-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  background: rgba(45, 106, 79, 0.08);
  border-radius: 50%;
  margin-bottom: var(--space-xl);
  animation: confirmPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes confirmPop {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.order-confirmation-inner h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-sm);
}

.order-confirmation-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: var(--space-2xl);
}

.order-confirmation-ref {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: var(--space-lg) var(--space-2xl);
  background: var(--bg-alt);
  border: 1.5px dashed var(--gold);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-2xl);
}

.order-confirmation-ref span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.order-confirmation-ref strong {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--primary);
  letter-spacing: 2px;
}

.order-confirmation-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
  text-align: left;
}

.order-confirmation-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.order-confirmation-detail svg {
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 2px;
}

.order-confirmation-detail strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 2px;
}

.order-confirmation-detail p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.45;
  margin: 0;
}

.order-confirmation-detail a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.order-confirmation-detail a:hover {
  text-decoration: underline;
}

.order-confirmation-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
}

/* ---------- Order Unavailable ---------- */
.order-unavailable {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3xl) 0;
}

.order-unavailable-inner {
  max-width: 480px;
  text-align: center;
}

.order-unavailable-icon {
  font-size: 3.5rem;
  margin-bottom: var(--space-lg);
  opacity: 0.6;
}

.order-unavailable h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-sm);
}

.order-unavailable p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

.order-unavailable-contact {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
}

/* ---------- Order Toast Notification ---------- */
.order-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--charcoal);
  color: #fff;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  white-space: nowrap;
}

.order-toast svg {
  color: var(--gold-light);
}

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

/* ---------- Order Page — Responsive ---------- */
@media (max-width: 1024px) {
  .order-layout {
    grid-template-columns: 1fr 300px;
    gap: var(--space-lg);
  }
}

@media (max-width: 768px) {
  .order-type-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .order-type-card {
    padding: var(--space-xl) var(--space-lg);
  }

  .order-type-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
  }

  .order-type-card h2 {
    font-size: 1.25rem;
  }

  .order-layout {
    grid-template-columns: 1fr;
  }

  .cart-sidebar {
    display: none;
  }

  .menu-items-grid {
    grid-template-columns: 1fr;
  }

  .fresh-pasta-selectors {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .fresh-pasta-builder {
    padding: var(--space-lg);
  }

  .checkout-form {
    padding: var(--space-lg);
  }

  .checkout-total-bar {
    margin-left: calc(-1 * var(--space-lg));
    margin-right: calc(-1 * var(--space-lg));
    padding: var(--space-md);
  }

  .order-confirmation-inner h2 {
    font-size: 1.6rem;
  }

  .order-confirmation-actions {
    flex-direction: column;
  }

  .order-confirmation-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .order-toast {
    bottom: 110px;
    font-size: 0.82rem;
  }
}

@media (max-width: 480px) {
  .order-type-card {
    padding: var(--space-lg);
  }

  .fresh-pasta-option {
    padding: 7px 12px;
    font-size: 0.82rem;
  }

  .checkout-form h2 {
    font-size: 1.3rem;
  }

  .order-confirmation-ref strong {
    font-size: 1.3rem;
  }
}

/* ---------- Admin Order Management ---------- */
.order-badge {
  background: #e74c3c;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  padding: 0 5px;
}

.status-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: capitalize;
}
.status-pending { background: #fff3cd; color: #856404; }
.status-confirmed { background: #d4edda; color: #155724; }
.status-preparing { background: #cce5ff; color: #004085; }
.status-ready { background: #d1ecf1; color: #0c5460; }
.status-collected { background: #e2e3e5; color: #383d41; }
.status-cancelled { background: #f8d7da; color: #721c24; }

.order-detail-row td {
  padding: 0 !important;
}
.order-detail-content {
  background: var(--cream);
  padding: var(--space-lg);
  border-top: 1px solid var(--border);
  border-bottom: 2px solid var(--border);
}
.order-detail-items ul {
  margin-top: var(--space-sm);
  padding-left: var(--space-lg);
  list-style: disc;
}
.order-detail-items li {
  margin-bottom: 4px;
  font-size: 0.85rem;
}
.order-detail-notes {
  margin-top: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  background: #fff3cd;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
}
.order-detail-contact {
  margin-top: var(--space-md);
  font-size: 0.85rem;
  color: var(--text-light);
}
.order-actions {
  white-space: nowrap;
}
.order-actions .btn {
  margin-right: 4px;
  margin-bottom: 4px;
}

.btn-link {
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  font-size: 0.8rem;
  text-decoration: underline;
  padding: 0;
  margin-left: 6px;
}
.btn-link:hover { color: var(--gold); }

.item-count-badge {
  background: rgba(114, 47, 55, 0.1);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 10px;
}

.empty-message {
  text-align: center;
  padding: var(--space-2xl);
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ---------- Toggle Switch ---------- */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
  flex-shrink: 0;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #ccc;
  border-radius: 28px;
  transition: 0.3s;
}
.toggle-slider::before {
  content: '';
  position: absolute;
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: 0.3s;
}
.toggle-switch input:checked + .toggle-slider {
  background: var(--primary);
}
.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(24px);
}
