/* ========================================
   CafÃ© Cococabana â€” Modern Design System
   Inspired by Squarespace + Food Delivery UI
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,700;0,800;0,900;1,700&family=DM+Sans:wght@400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --primary: #7A0020;
  --primary-light: #9A0030;
  --primary-dark: #5C0018;
  --accent: #A0002A;
  --accent-warm: #D4003A;
  --bg: #FAFAFA;
  --bg-warm: #FFF8F0;
  --bg-cream: #FDF6EC;
  --surface: #FFFFFF;
  --surface-hover: #F8F8F8;
  --text: #1A1A1A;
  --text-secondary: #666666;
  --text-muted: #999999;
  --border: #EEEEEE;
  --border-light: #F5F5F5;
  --card-bg: #FFFFFF;
  --veg: #228B22;
  --nonveg: #D12B2B;
  --gold: #F5A623;
  --gold-light: #FFF3D6;
  --shadow-xs: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.1);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.12);
  --shadow-primary: 0 8px 32px rgba(122, 0, 32, 0.2);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --max-width: 1280px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* Screen Reader Only Utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* --- Typography --- */
.brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
}

.section-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.section.cart-total {
  display: flex;
  flex-direction: column; /* Changed to column to support breakdown */
  gap: 12px;
  margin-bottom: 20px;
}

.cart-total-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.cart-total-info span:first-child {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-secondary);
}

.cart-total-info span:last-child {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text);
}

/* Breakdown Styles */
.cart-total-breakdown, .checkout-breakdown {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.total-row, .check-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.total-row.grand, .check-row.grand {
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
}

.checkout-total-container {
  margin: 16px 0 24px;
}

.checkout-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.checkout-total-row span {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  color: var(--text-secondary);
}

.checkout-total-row strong {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  color: var(--text);
}

.section-sub {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-secondary);
  font-size: 1.05rem;
  font-weight: 400;
}

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--primary);
  display: inline-block;
  margin-bottom: 12px;
}

.tagline {
  font-family: 'DM Sans', sans-serif;
  font-style: italic;
  color: var(--text-secondary);
}

.price {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

/* ========================================
   NAVBAR â€” Clean White Top Bar
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0;
  transition: all var(--transition);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-logo img {
  height: 42px;
  width: auto;
  border-radius: 8px;
  transition: var(--transition);
}

.navbar-logo span {
  font-size: 1.2rem;
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a.nav-active {
  color: var(--text);
  background: var(--border-light);
}

.nav-links a.nav-active {
  color: var(--primary);
  font-weight: 600;
}

/* Remove underline animation from old style */
.nav-links a::after { display: none; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition);
  background: transparent;
}

.nav-icon-btn:hover {
  background: var(--border-light);
  color: var(--primary);
}

.nav-icon-btn svg {
  width: 20px;
  height: 20px;
}

.btn-order {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
}

.btn-order:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-primary);
}

.btn-order svg {
  width: 16px;
  height: 16px;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ========================================
   HERO â€” Split Layout
   ======================================== */
.hero {
  padding-top: 72px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 32px 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: center;
}

/* Main Banner (Left) */
.hero-banner {
  background: linear-gradient(135deg, #FDE8B0 0%, #F5C842 40%, #E8A820 100%);
  border-radius: var(--radius-xl);
  padding: 48px 48px 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 480px;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.hero-banner-content {
  position: relative;
  z-index: 2;
}

.hero-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--primary);
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.05;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  color: rgba(0,0,0,0.6);
  margin-bottom: 28px;
  max-width: 320px;
}

.btn-hero-primary {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}

.btn-hero-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

.btn-hero-primary svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition);
}

.btn-hero-primary:hover svg {
  transform: translateX(4px);
}

.hero-banner-img {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.hero-banner-img img {
  width: 100%;
  max-width: 400px;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
  filter: drop-shadow(0 -8px 24px rgba(0,0,0,0.15));
}

/* Right Cards */
.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid var(--border);
}

.hero-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.hero-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.hero-card-info {
  padding: 20px 24px;
}

.hero-card-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  background: rgba(122, 0, 32, 0.06);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 8px;
}

.hero-card-info h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 4px;
}

.hero-card-price {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--primary);
}

.hero-card-accent {
  background: linear-gradient(135deg, #FFF0F3 0%, #FFE8ED 100%);
  border-color: rgba(122, 0, 32, 0.08);
}



/* ========================================
   SECTION HEADER â€” Uniform styling
   ======================================== */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header-left {
  text-align: left;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--text);
  margin-bottom: 12px;
}

.section-header .section-sub {
  max-width: 480px;
  margin: 0 auto;
}

.section-header-left .section-sub {
  margin: 0;
}

/* ========================================
   FEATURED SECTION â€” Horizontal Cards
   ======================================== */
.featured-section {
  padding: 80px 0;
  background: var(--bg-warm);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.featured-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all var(--transition);
  aspect-ratio: 3/4;
}

.featured-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.featured-card:hover img {
  transform: scale(1.06);
}

.featured-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.05) 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: all var(--transition);
}

.featured-card-tag {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 8px;
}

.featured-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 4px;
}

.featured-card-price {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
}

.featured-card-btn {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: #fff;
  background: var(--primary);
  padding: 9px 20px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(122, 0, 32, 0.35);
}

.featured-card:hover .featured-card-btn {
  opacity: 1;
  transform: translateY(0);
}

.featured-card-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(122, 0, 32, 0.45);
}

.featured-card-btn svg {
  width: 14px;
  height: 14px;
}

.featured-card:hover .featured-card-btn svg {
  transform: none;
}

/* ========================================
   MENU SECTION â€” Product Grid
   ======================================== */
.menu-section {
  padding: 80px 0 60px;
  background: var(--bg);
}

.menu-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 0 0 24px;
  margin-bottom: 36px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  justify-content: center;
  flex-wrap: wrap;
}

.menu-tabs::-webkit-scrollbar {
  display: none;
}

.menu-tab {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text-secondary);
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
  flex-shrink: 0;
}

.menu-tab:hover {
  border-color: var(--text-muted);
  color: var(--text);
}

.menu-tab.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: var(--shadow-primary);
}

/* Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

/* Menu Card â€” Product Card Style */
.menu-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  cursor: default;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.menu-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
  background: var(--border-light);
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.menu-card:hover .menu-card-img img {
  transform: scale(1.05);
}

/* Veg/Non-Veg indicator */
.food-type {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 22px;
  height: 22px;
  border-radius: 4px;
  border: 2px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  z-index: 3;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.food-type.veg { border-color: var(--veg); }
.food-type.veg::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--veg);
}

.food-type.nonveg { border-color: var(--nonveg); }
.food-type.nonveg::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 5.5px solid transparent;
  border-right: 5.5px solid transparent;
  border-bottom: 10px solid var(--nonveg);
}

/* Rating badge on card */
.menu-card-rating {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 3px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  padding: 4px 8px;
  border-radius: var(--radius-full);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--text);
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  z-index: 3;
}

.menu-card-rating svg {
  width: 12px;
  height: 12px;
  color: var(--gold);
}

.menu-card-body {
  padding: 16px 20px 20px;
}

.menu-card-category {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.menu-card-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 6px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.menu-card-title .price {
  color: var(--primary);
  font-size: 1rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-card-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 14px;
}

.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}

.btn-add {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-add:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-primary);
}

.btn-add svg {
  width: 14px;
  height: 14px;
}

/* Addons banner */
.addons-banner {
  margin-top: 40px;
  padding: 24px 32px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
}

.addons-banner p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.addons-banner strong {
  color: var(--primary);
}

.addons-banner .tax-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ========================================
   REVIEWS SECTION
   ======================================== */
.reviews-section {
  padding: 80px 0;
  background: var(--surface);
}

.reviews-badge {
  text-align: center;
  margin-bottom: 48px;
}

.rating-big {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 4rem;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}

.rating-stars-big {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.rating-stars-big svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

.rating-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Reviews Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}

/* Review Card */
.review-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.06;
  line-height: 1;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.review-info { flex: 1; }

.review-name {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 2px;
}

.review-stars {
  display: flex;
  gap: 2px;
}

.review-stars svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
}

.review-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
}

.review-date {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* Review Card Animations */
.review-card {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease-out forwards;
}

.review-card:nth-child(1) { animation-delay: 0s; }
.review-card:nth-child(2) { animation-delay: 0.1s; }
.review-card:nth-child(3) { animation-delay: 0.2s; }
.review-card:nth-child(4) { animation-delay: 0.3s; }
.review-card:nth-child(5) { animation-delay: 0.4s; }
.review-card:nth-child(6) { animation-delay: 0.5s; }

/* Review Skeleton Loader */
@keyframes shimmer {
  0% { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
.review-skeleton {
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
  pointer-events: none;
}
.skeleton-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--border) 25%, var(--border-light) 50%, var(--border) 75%);
  background-size: 400px 100%;
  animation: shimmer 1.4s infinite linear;
  flex-shrink: 0;
}
.skeleton-info { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.skeleton-line {
  border-radius: 6px;
  background: linear-gradient(90deg, var(--border) 25%, var(--border-light) 50%, var(--border) 75%);
  background-size: 400px 100%;
  animation: shimmer 1.4s infinite linear;
}
.skeleton-name { height: 14px; width: 60%; }
.skeleton-stars { height: 12px; width: 40%; }
.skeleton-text { height: 12px; width: 100%; margin-top: 16px; }
.skeleton-text-short { height: 12px; width: 75%; margin-top: 8px; }



/* ========================================
   ABOUT SECTION â€” Split Layout
   ======================================== */
.about-section {
  padding: 100px 0;
  background: var(--bg-cream);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-img-main {
  grid-row: 1 / 3;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-img-main:hover img {
  transform: scale(1.04);
}

.about-img-secondary {
  border-radius: var(--radius-xl);
  overflow: hidden;
  align-self: end;
  aspect-ratio: 1/1;
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-img-secondary:hover img {
  transform: scale(1.04);
}

.about-content .section-header {
  margin-bottom: 28px;
}

.about-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.about-stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--primary);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ========================================
   FEATURES BAR â€” Clean Row
   ======================================== */
.features-bar {
  padding: 32px 0;
  background: var(--primary);
  color: #fff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.feature-item {
  text-align: center;
  padding: 24px 16px;
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.feature-item:hover .feature-icon {
  background: rgba(255,255,255,0.2);
  transform: scale(1.08);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  color: #fff;
}

.feature-item h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: #fff;
}

.feature-item p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

/* ========================================
   INSTAGRAM SECTION
   ======================================== */
.instagram-section {
  padding: 32px 0;
  background: var(--bg-cream);
  overflow: hidden;
}

.ig-header-card {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-sm);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.ig-profile-pic {
  width: 84px;
  height: 84px;
  border-radius: var(--radius-full);
  border: 3px solid var(--primary);
  object-fit: cover;
  padding: 3px;
  background: #fff;
  flex-shrink: 0;
}

.ig-profile-info {
  flex: 1;
}

.ig-handle {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 6px;
}

.ig-bio {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  white-space: pre-line;
}

.ig-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: rgba(122, 0, 32, 0.06);
  color: var(--primary);
  flex-shrink: 0;
  transition: all var(--transition);
}

.ig-icon-wrap:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

.ig-icon-wrap svg {
  width: 24px;
  height: 24px;
}

/* Scrollable Container */
.ig-scroll-container {
  margin-bottom: 48px;
  margin-left: -32px;
  margin-right: -32px;
  padding: 16px 32px 32px;
}

.ig-scroll-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 8px;
}

.ig-scroll-track::-webkit-scrollbar {
  display: none;
}

.ig-story-card {
  flex: 0 0 280px;
  height: 380px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  scroll-snap-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-spring);
  display: block;
  background: var(--surface);
}

.ig-story-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.ig-story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.ig-story-card:hover img {
  transform: scale(1.05);
}

.ig-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 40%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  pointer-events: none;
}

.ig-caption {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: #fff;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* CTA Wrapper */
.ig-cta-wrapper {
  text-align: center;
}

.btn-ig-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}

.btn-ig-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

.btn-ig-primary svg {
  width: 18px;
  height: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .ig-header-card {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 24px 20px;
  }
  
  .ig-icon-wrap {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 36px;
    height: 36px;
  }
  .ig-icon-wrap svg {
    width: 18px;
    height: 18px;
  }

  .ig-story-card {
    flex: 0 0 250px;
    height: 340px;
  }
  
  .ig-scroll-container {
    margin-left: -20px;
    margin-right: -20px;
    padding: 16px 20px 32px;
  }
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
  padding: 80px 0;
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text);
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--border-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.contact-item:hover .contact-item-icon {
  background: rgba(122, 0, 32, 0.06);
}

.contact-item-icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.contact-item-text {
  font-size: 0.92rem;
  line-height: 1.6;
}

.contact-item-text a {
  color: var(--text-secondary);
  font-weight: 500;
  transition: color var(--transition);
}

.contact-item-text a:hover {
  color: var(--primary);
}

.contact-item-icon.whatsapp-icon {
  background: rgba(37, 211, 102, 0.08);
}

.contact-item-icon.whatsapp-icon svg {
  color: #25D366;
}

.contact-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 360px;
  border: 1px solid var(--border);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--text);
  color: #fff;
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand .brand-name {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 8px;
}

.footer-brand .tagline {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

.footer h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.7);
}

.footer-links a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  padding: 5px 0;
  transition: all var(--transition);
}

.footer-links a:hover {
  color: #fff;
  padding-left: 6px;
}

.footer-order-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-footer-order {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 11px 22px;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-footer-order:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-1px);
}

.btn-footer-review svg {
  color: #F5A623;
}

.btn-footer-review:hover {
  border-color: #F5A623;
  background: rgba(245, 166, 35, 0.1);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ========================================
   PROMO BANNERS â€” Party Orders & Free Delivery
   ======================================== */
.promo-banners {
  padding: 0;
  background: var(--bg);
}

.promo-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 0 0 16px;
}

.promo-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.promo-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.promo-party {
  background: linear-gradient(135deg, #FFF0F3 0%, #FFE0E8 100%);
  border: 1px solid rgba(122, 0, 32, 0.08);
}

.promo-delivery {
  background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
  border: 1px solid rgba(34, 139, 34, 0.08);
}

.promo-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-party .promo-icon {
  background: rgba(122, 0, 32, 0.1);
  color: var(--primary);
}

.promo-delivery .promo-icon {
  background: rgba(34, 139, 34, 0.1);
  color: #228B22;
}

.promo-icon svg {
  width: 26px;
  height: 26px;
}

.promo-text {
  flex: 1;
}

.promo-text h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 4px;
}

.promo-text p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.promo-text strong {
  color: var(--text);
}

.promo-btn {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}

.promo-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-primary);
}

.promo-btn svg {
  width: 14px;
  height: 14px;
}

.promo-btn-alt {
  background: #228B22;
}

.promo-btn-alt:hover {
  background: #1B6B1B;
  box-shadow: 0 8px 32px rgba(34, 139, 34, 0.2);
}

/* ========================================
   GOOGLE REVIEW BUTTON
   ======================================== */
.btn-google-review {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  background: var(--surface);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid var(--border);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.btn-google-review:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: #4285F4;
  background: #F0F4FF;
}

.btn-google-review svg {
  flex-shrink: 0;
}

/* ========================================
   CART ICON IN NAVBAR
   ======================================== */
.cart-icon-btn {
  position: relative;
  cursor: pointer;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  background: var(--primary);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  opacity: 0;
  transform: scale(0);
  transition: all var(--transition-spring);
  pointer-events: none;
}

.cart-count.has-items {
  opacity: 1;
  transform: scale(1);
}

/* ========================================
   ADD TO CART BUTTON (in menu cards)
   ======================================== */
.btn-add-cart {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-add-cart:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-primary);
}

.btn-add-cart svg {
  width: 14px;
  height: 14px;
}

.btn-add-cart.in-cart {
  background: #228B22;
}

.btn-add-cart.in-cart:hover {
  background: #1B6B1B;
  box-shadow: 0 8px 32px rgba(34, 139, 34, 0.2);
}

/* ========================================
   CART DRAWER â€” Slide-in Side Panel
   ======================================== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 90vw;
  height: 100vh;
  background: var(--surface);
  z-index: 1101;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 32px rgba(0,0,0,0.15);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  /* Ensure padding respects OS safe areas on mobile, protecting the checkout button */
  padding-bottom: env(safe-area-inset-bottom);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.cart-drawer-header h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text);
}

.cart-close-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--border-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--text-secondary);
}

.cart-close-btn:hover {
  background: rgba(122, 0, 32, 0.06);
  color: var(--primary);
}

.cart-close-btn svg {
  width: 18px;
  height: 18px;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

.cart-empty svg {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  color: var(--border);
}

.cart-empty p {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.cart-empty span {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
  gap: 12px;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
  display: block;
  margin-bottom: 2px;
}

.cart-item-price {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.cart-qty-btn {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  padding: 0;
  color: var(--text);
}

.cart-qty-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(122, 0, 32, 0.04);
}

.cart-qty-btn svg {
  width: 14px;
  height: 14px;
}

.cart-qty {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  min-width: 24px;
  text-align: center;
}

.cart-remove-btn {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  padding: 0;
  color: var(--text-muted);
  margin-left: 4px;
}

.cart-remove-btn:hover {
  color: #D12B2B;
  background: rgba(209, 43, 43, 0.06);
}

.cart-remove-btn svg {
  width: 15px;
  height: 15px;
}

.cart-footer {
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
  flex-shrink: 0;
  background: var(--bg);
  /* Added safe area padding explicitly to the footer as well for extra safety */
  padding-bottom: calc(24px + env(safe-area-inset-bottom));
}

.cart-delivery-msg {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  text-align: center;
}

.cart-delivery-msg.free {
  background: rgba(34, 139, 34, 0.08);
  color: #228B22;
}

.cart-delivery-msg.not-free {
  background: rgba(245, 166, 35, 0.08);
  color: #B87A00;
}

.cart-delivery-msg strong {
  font-weight: 700;
}

.delivery-free strong {
  color: #228B22;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.cart-total span:first-child {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-secondary);
}

.cart-total span:last-child {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text);
}

.btn-checkout {
  width: 100%;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  background: #25D366;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
}

.btn-checkout:hover {
  background: #1EBE57;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
}

.btn-checkout svg {
  width: 20px;
  height: 20px;
}

/* ========================================
   FLOATING CART FAB (mobile & when items in cart)
   ======================================== */
.cart-fab {
  position: fixed;
  bottom: 28px;
  right: 88px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-primary);
  z-index: 900;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
}

.cart-fab.visible {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.cart-fab:hover {
  background: var(--primary-dark);
  transform: scale(1.08);
}

.cart-fab svg {
  width: 24px;
  height: 24px;
}

.cart-fab-count {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 22px;
  height: 22px;
  border-radius: 11px;
  background: #fff;
  color: var(--primary);
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* ========================================
   CART TOAST NOTIFICATION
   ======================================== */
.cart-toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--text);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  opacity: 0;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cart-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.cart-toast svg {
  width: 18px;
  height: 18px;
  color: #25D366;
  flex-shrink: 0;
}

.cart-toast strong {
  font-weight: 600;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scroll reveal */
.reveal,
.scroll-animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.visible,
.scroll-animate.visible,
.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Card stagger */
.menu-card {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeInUp 0.45s ease-out forwards;
}

.menu-card:nth-child(1) { animation-delay: 0s; }
.menu-card:nth-child(2) { animation-delay: 0.04s; }
.menu-card:nth-child(3) { animation-delay: 0.08s; }
.menu-card:nth-child(4) { animation-delay: 0.12s; }
.menu-card:nth-child(5) { animation-delay: 0.16s; }
.menu-card:nth-child(6) { animation-delay: 0.2s; }
.menu-card:nth-child(7) { animation-delay: 0.24s; }
.menu-card:nth-child(8) { animation-delay: 0.28s; }

/* ========================================
   MOBILE OVERLAY NAV
   ======================================== */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,26,26,0.98);
  z-index: 999;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 28px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-overlay.open {
  display: flex;
  opacity: 1;
}

.mobile-overlay a {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: #fff;
  transition: all var(--transition);
  padding: 8px 0;
}

.mobile-overlay a:hover {
  opacity: 0.6;
}

.mobile-overlay .btn-order {
  margin-top: 16px;
  background: var(--primary);
  color: #fff;
  font-size: 1rem;
  padding: 14px 36px;
}

/* ========================================
   BACK TO TOP
   ======================================== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 900;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-primary);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* ========================================
   WHATSAPP FAB
   ======================================== */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  z-index: 900;
  transition: all var(--transition);
  animation: pulse-whatsapp 2.5s infinite;
}

/* Hide floating elements when cart drawer is open to prevent overlapping with the checkout button */
body.cart-open .whatsapp-fab,
body.cart-open .cart-fab,
body.cart-open .back-to-top {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: scale(0.8) !important;
}

.whatsapp-fab:hover {
  background: #1EBE57;
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
}

.whatsapp-fab svg {
  width: 26px;
  height: 26px;
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 4px 28px rgba(37, 211, 102, 0.55), 0 0 0 10px rgba(37, 211, 102, 0.06); }
  100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35); }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 48px;
  }

  .hero-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-layout {
    gap: 40px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .promo-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-images {
    max-width: 480px;
    margin: 0 auto;
  }

  .about-content .section-header-left {
    text-align: center;
  }

  .about-content .section-header-left .section-sub {
    margin: 0 auto;
  }

  .about-stats {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .navbar .container {
    height: 64px;
  }

  .hero {
    padding-top: 64px;
  }

  .hero-layout {
    padding: 24px 20px 40px;
  }

  .hero-banner {
    padding: 36px 28px 0;
    min-height: 400px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 6vw, 3rem);
  }

  .hero-cards {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .hero-card img {
    height: 140px;
  }

  .category-strip {
    top: 64px;
  }

  .featured-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .menu-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
  }

  .menu-card-img {
    height: 170px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .rating-big {
    font-size: 3rem;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .contact-map {
    height: 280px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .whatsapp-fab {
    width: 50px;
    height: 50px;
    bottom: 20px;
    left: 20px;
  }

  .whatsapp-fab svg {
    width: 24px;
    height: 24px;
  }

  .promo-card {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    gap: 14px;
  }

  .cart-fab {
    right: 80px;
    bottom: 20px;
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .hero-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-card {
    flex-direction: row;
    align-items: center;
  }

  .hero-card img {
    width: 100px;
    height: 100px;
    border-radius: var(--radius);
    margin: 12px;
  }

  .hero-card-info {
    padding: 12px 16px 12px 0;
  }

  .featured-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .featured-card {
    aspect-ratio: 16/9;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .menu-tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .about-images {
    grid-template-columns: 1fr;
  }

  .about-img-main {
    grid-row: auto;
    aspect-ratio: 4/3;
  }

  .about-img-secondary {
    display: none;
  }

  .about-stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-item {
    display: flex;
    gap: 16px;
    text-align: left;
    padding: 16px 0;
  }

  .feature-icon {
    margin: 0;
    flex-shrink: 0;
  }

  .promo-strip {
    gap: 12px;
  }

  .promo-card {
    padding: 20px 16px;
    gap: 12px;
  }

  .promo-icon {
    width: 44px;
    height: 44px;
  }

  .promo-icon svg {
    width: 22px;
    height: 22px;
  }

  .promo-text h3 {
    font-size: 0.95rem;
  }

  .promo-text p {
    font-size: 0.82rem;
  }

  .cart-toast {
    bottom: 80px;
    font-size: 0.82rem;
    padding: 10px 20px;
  }
}

/* ========================================
   MODAL OVERLAY â€” Shared base
   ======================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%);
  z-index: 2000;
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  width: min(520px, 94vw);
  max-height: 90vh;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  scrollbar-width: thin;
}

.modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--border-light);
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 2;
}

.modal-close:hover {
  background: var(--border);
  color: var(--text);
}

.modal-close svg {
  width: 18px;
  height: 18px;
}

/* ========================================
   CHECKOUT MODAL
   ======================================== */
.checkout-modal {
  padding: 36px 36px 32px;
}

.modal-header {
  margin-bottom: 24px;
}

.modal-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  display: block;
  margin-bottom: 8px;
}

.modal-header h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.modal-header p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Order summary list inside modal */
.modal-order-summary {
  background: var(--bg-cream);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
}

.modal-order-summary h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.modal-cart-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal-cart-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.mci-name {
  color: var(--text);
  font-weight: 500;
}

.mci-price {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--primary);
}

/* Checkout Form */
.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
}

.form-group .required {
  color: var(--primary);
}

.form-group input,
.form-group textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: none;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(122, 0, 32, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-error {
  font-size: 0.8rem;
  color: #D12B2B;
  font-weight: 500;
  min-height: 1em;
}

.checkout-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-cream);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  font-size: 1rem;
  border: 1.5px solid var(--border);
}

.checkout-total-row span {
  font-weight: 600;
  color: var(--text-secondary);
}

.checkout-total-row strong {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--primary);
}

/* Pay Button */
.btn-pay {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all var(--transition);
  box-shadow: var(--shadow-primary);
  letter-spacing: 0.01em;
}

.btn-pay:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(122, 0, 32, 0.3);
}

.btn-pay:active {
  transform: translateY(0);
}

.secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: -4px;
}

/* ========================================
   ORDER CONFIRMED MODAL
   ======================================== */
.order-confirmed-modal {
  padding: 0;
}

.order-confirmed-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 40px 40px;
  gap: 16px;
}

.confirmed-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  box-shadow: 0 8px 32px rgba(34, 197, 94, 0.3);
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes popIn {
  from { transform: scale(0.4); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

.confirmed-icon svg {
  width: 36px;
  height: 36px;
  stroke: #fff;
  stroke-width: 2.5;
}

.order-confirmed-modal h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--text);
  letter-spacing: -0.03em;
}

.order-confirmed-modal > .order-confirmed-inner > p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 340px;
}

.confirmed-details {
  width: 100%;
  background: var(--bg-cream);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  padding: 16px 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cd-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
}

.cd-row span {
  color: var(--text-secondary);
  font-weight: 500;
  flex-shrink: 0;
}

.cd-row strong {
  font-weight: 600;
  color: var(--text);
  text-align: right;
}

.cd-row code {
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  background: var(--border);
  padding: 2px 8px;
  border-radius: 4px;
  color: var(--primary);
  font-weight: 600;
}

/* WhatsApp track button */
.btn-wa-order {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  background: #25D366;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.3);
  text-decoration: none;
  width: 100%;
  justify-content: center;
}

.btn-wa-order:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.4);
}

/* "Order More" button */
.btn-order-again {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  background: transparent;
  color: var(--text-secondary);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
  width: 100%;
}

.btn-order-again:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(122, 0, 32, 0.04);
}

/* ========================================
   MODAL RESPONSIVE
   ======================================== */
@media (max-width: 560px) {
  .checkout-modal {
    padding: 28px 20px 24px;
  }

  .modal-header h2 {
    font-size: 1.4rem;
  }

  .order-confirmed-inner {
    padding: 36px 20px 32px;
  }
}

/* ========================================
   ENQUIRY MODAL
   ======================================== */

/* Overlay */
.enq-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(10, 0, 4, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.enq-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Modal card */
.enq-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 9001;
  transform: translate(-50%, -52%) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275),
              opacity 0.3s ease;
  width: min(560px, calc(100vw - 32px));
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.18), 0 8px 24px rgba(122,0,32,0.1);
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.enq-modal::-webkit-scrollbar { width: 5px; }
.enq-modal::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

.enq-modal.active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: all;
}

/* Close button */
.enq-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--border-light);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition);
  z-index: 10;
}
.enq-close:hover {
  background: var(--border);
  color: var(--text);
}
.enq-close svg {
  width: 17px;
  height: 17px;
}

/* Body padding */
.enq-body {
  padding: 36px 36px 28px;
}

/* Header */
.enq-header {
  margin-bottom: 28px;
}
.enq-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--primary);
  display: inline-block;
  margin-bottom: 8px;
}
.enq-header h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.65rem;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.2;
}
.enq-header p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

/* Two-column row */
.enq-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Field */
.enq-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.enq-field label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
}
.enq-required {
  color: var(--primary);
}

/* Inputs, selects, textareas */
.enq-field input,
.enq-field textarea,
.enq-field select {
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 11px 15px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: none;
  -webkit-appearance: none;
  appearance: none;
}
.enq-field input::placeholder,
.enq-field textarea::placeholder {
  color: var(--text-muted);
}
.enq-field input:focus,
.enq-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(122,0,32,0.08);
  background: #fff;
}

/* Date & time inputs */
.enq-field input[type="date"],
.enq-field input[type="time"] {
  color-scheme: light;
  cursor: pointer;
}

/* Validation error */
.enq-input-error {
  border-color: #e53935 !important;
  box-shadow: 0 0 0 3px rgba(229,57,53,0.1) !important;
}
.enq-error {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: #e53935;
  min-height: 1.2em;
  margin-top: 2px;
}

/* Submit button */
.enq-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  background: var(--primary);
  border: none;
  border-radius: 14px;
  padding: 14px 28px;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 8px;
  letter-spacing: 0.01em;
}
.enq-submit:hover:not(:disabled) {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(122,0,32,0.28);
}
.enq-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.enq-submit svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

/* Loading spinner */
.enq-spinner {
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: enqSpin 0.7s linear infinite;
  flex-shrink: 0;
}
@keyframes enqSpin {
  to { transform: rotate(360deg); }
}

/* Secure note */
.enq-secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 12px;
}
.enq-secure-note svg {
  flex-shrink: 0;
  color: var(--text-muted);
}

/* â”€â”€ Success view â”€â”€ */
.enq-success {
  text-align: center;
  padding: 52px 36px 44px;
}
.enq-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(122,0,32,0.12) 0%, rgba(160,0,42,0.18) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border: 2px solid rgba(122,0,32,0.2);
}
.enq-success-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--primary);
}
.enq-success h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 10px;
}
.enq-success p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 340px;
  margin: 0 auto;
  line-height: 1.6;
}
.enq-success strong {
  color: var(--text);
}

/* â”€â”€ Mobile responsive â”€â”€ */
@media (max-width: 600px) {
  .enq-body {
    padding: 28px 20px 22px;
  }
  .enq-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .enq-header h2 {
    font-size: 1.35rem;
  }
  .enq-success {
    padding: 40px 20px 36px;
  }
  .enq-success-icon {
    width: 60px;
    height: 60px;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Mobile Fix: Ensure cart button visibility on refresh */
@media (max-width: 600px) {
  .cart-drawer {
    height: 100vh !important;
    height: 100dvh !important;
  }
  .cart-footer {
    padding-bottom: calc(30px + env(safe-area-inset-bottom)) !important;
  }
}
