/* =============================================
   DESI VEG KITCHEN - Main Stylesheet
   Colors: Red #C0392B, Green #27AE60, Orange #E67E22, White #FFF
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&family=Kalam:wght@400;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --red: #C0392B;
  --red-dark: #962d22;
  --red-light: #e74c3c;
  --green: #27AE60;
  --green-dark: #1e8449;
  --green-light: #2ecc71;
  --orange: #E67E22;
  --orange-dark: #ca6f1e;
  --orange-light: #f39c12;
  --white: #ffffff;
  --cream: #FFF9F0;
  --light-bg: #FEF5E7;
  --text-dark: #2C1810;
  --text-mid: #5D4037;
  --text-light: #8D6E63;
  --shadow: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
  --font-display: 'Baloo 2', cursive;
  --font-body: 'Poppins', sans-serif;
  --font-accent: 'Kalam', cursive;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; font-family: var(--font-body); }

/* ---- Utility Classes ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 12px;
}
.section-title span { color: var(--red); }
.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 48px;
  font-weight: 400;
}
.section-divider {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--red), var(--orange));
  border-radius: 2px;
  margin: 12px auto 20px;
}
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
}
.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-light));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(192,57,43,0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(192,57,43,0.45);
  background: linear-gradient(135deg, var(--red-dark), var(--red));
}
.btn-green {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(39,174,96,0.35);
}
.btn-green:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(39,174,96,0.45);
}
.btn-orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(230,126,34,0.35);
}
.btn-orange:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(230,126,34,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--red);
  transform: translateY(-3px);
}

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  transition: var(--transition);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px 22px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-wrap img {
  height: 72px;
  width: auto;
  object-fit: contain;
}
.logo-text {
  display: none;
}
nav { display: flex; align-items: center; gap: 32px; }
nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
  position: relative;
  padding: 4px 0;
  transition: var(--transition);
}
nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  border-radius: 1px;
  transition: var(--transition);
}
nav a:hover, nav a.active { color: var(--red); }
nav a:hover::after, nav a.active::after { width: 100%; }

/* Cart Icon */
.cart-btn {
  position: relative;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 3px 12px rgba(230,126,34,0.3);
}
.cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230,126,34,0.4);
}
.cart-count {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  width: 20px; height: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}
.cart-count.hidden { display: none; }

/* Mobile Menu Toggle */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  min-height: 90vh;
  background:
    linear-gradient(135deg, rgba(192,57,43,0.92) 0%, rgba(230,126,34,0.88) 50%, rgba(39,174,96,0.85) 100%),
    url('https://images.unsplash.com/photo-1546833999-b9f581a1996d?w=1600') center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  animation: heroFadeIn 1s ease both;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: heroFadeIn 1s 0.2s ease both;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
  animation: heroFadeIn 1s 0.3s ease both;
}
.hero-tagline {
  font-family: var(--font-accent);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 700;
  opacity: 0.95;
  margin-bottom: 8px;
  animation: heroFadeIn 1s 0.4s ease both;
}
.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  opacity: 0.85;
  margin-bottom: 40px;
  animation: heroFadeIn 1s 0.5s ease both;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroFadeIn 1s 0.6s ease both;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  text-align: center;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
.hero-scroll span { display: block; font-size: 1.2rem; }

/* Floating food icons */
.hero-floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.float-icon {
  position: absolute;
  font-size: 2.5rem;
  opacity: 0.15;
  animation: floatAround 8s infinite ease-in-out;
}
.float-icon:nth-child(1) { top: 15%; left: 5%; animation-delay: 0s; }
.float-icon:nth-child(2) { top: 25%; right: 8%; animation-delay: 1.5s; }
.float-icon:nth-child(3) { top: 65%; left: 3%; animation-delay: 3s; }
.float-icon:nth-child(4) { top: 70%; right: 5%; animation-delay: 2s; }
.float-icon:nth-child(5) { top: 10%; right: 20%; animation-delay: 4s; }
@keyframes floatAround {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(5deg); }
  66% { transform: translateY(10px) rotate(-5deg); }
}

/* =============================================
   FEATURES STRIP
   ============================================= */
.features-strip {
  background: var(--white);
  padding: 0;
  position: relative;
  z-index: 2;
}
.features-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: -50px;
  gap: 20px;
  padding: 0 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid transparent;
  transition: var(--transition);
  animation: fadeUp 0.6s ease both;
}
.feature-card:nth-child(1) { border-top-color: var(--red); animation-delay: 0.1s; }
.feature-card:nth-child(2) { border-top-color: var(--green); animation-delay: 0.2s; }
.feature-card:nth-child(3) { border-top-color: var(--orange); animation-delay: 0.3s; }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.feature-card p { font-size: 0.85rem; color: var(--text-light); }

/* =============================================
   POPULAR DISHES SECTION
   ============================================= */
.popular-section {
  padding: 80px 0 60px;
  background: var(--cream);
}
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

/* =============================================
   MENU CARDS (shared for popular + menu page)
   ============================================= */
.dish-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}
.dish-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.dish-img-wrap {
  position: relative;
  width: 100%;
  height: 274px;
  overflow: hidden;
  background: var(--light-bg);
}
.dish-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.dish-card:hover .dish-img {
  transform: scale(1.06);
}
.dish-body { padding: 16px 20px 20px; }
.dish-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.dish-body p { font-size: 0.82rem; color: var(--text-light); margin-bottom: 14px; }
.dish-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dish-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--green-dark);
}
.dish-price span { font-size: 0.8rem; font-weight: 500; color: var(--text-light); }
.add-to-cart-btn {
  background: linear-gradient(135deg, var(--red), var(--red-light));
  color: var(--white);
  border: none;
  padding: 8px 18px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 3px 10px rgba(192,57,43,0.3);
}
.add-to-cart-btn:hover {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(192,57,43,0.4);
}
.add-to-cart-btn.added {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  box-shadow: 0 3px 10px rgba(39,174,96,0.3);
}

/* Inline quantity stepper on dish cards */
.card-qty-stepper {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--cream);
  border-radius: 50px;
  border: 2px solid var(--red);
  overflow: hidden;
}
.card-qty-btn {
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--red);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-family: var(--font-display);
}
.card-qty-btn:hover { background: var(--red); color: var(--white); }
.card-qty-btn--add { color: var(--red); }
.card-qty-num {
  min-width: 28px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-dark);
}
.veg-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--white);
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--green-dark);
  border: 2px solid var(--green);
  display: flex;
  align-items: center;
  gap: 3px;
}

/* =============================================
   TRUST SECTION
   ============================================= */
.trust-section {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  position: relative;
  overflow: hidden;
}
.trust-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='40' cy='40' r='10'/%3E%3C/g%3E%3C/svg%3E");
}
.trust-section .section-title { color: var(--white); }
.trust-section .section-title span { color: var(--orange-light); }
.trust-section .section-subtitle { color: rgba(255,255,255,0.75); }
.trust-section .section-divider { background: linear-gradient(90deg, var(--orange-light), var(--white)); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 1;
}
.trust-item {
  text-align: center;
  color: var(--white);
  padding: 20px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.15);
  transition: var(--transition);
}
.trust-item:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-4px);
}
.trust-item .t-icon { font-size: 2.2rem; margin-bottom: 10px; }
.trust-item h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.trust-item p { font-size: 0.82rem; opacity: 0.82; }

/* =============================================
   ABOUT PAGE
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
  padding: 80px 24px 60px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 50px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.page-hero p { font-size: 1.1rem; opacity: 0.9; }

.story-section { padding: 80px 0; }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.story-img-wrap {
  background: linear-gradient(135deg, var(--light-bg), var(--cream));
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  font-size: 8rem;
  box-shadow: var(--shadow);
  position: relative;
}
.story-img-wrap::before {
  content: '🌿';
  position: absolute;
  top: -20px; right: -15px;
  font-size: 3rem;
  animation: floatAround 4s infinite;
}
.story-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.story-content h2 span { color: var(--red); }
.story-content p { color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }
.story-quote {
  border-left: 4px solid var(--orange);
  padding: 12px 20px;
  background: var(--light-bg);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: var(--text-dark);
  margin: 20px 0;
}

.why-section {
  padding: 70px 0;
  background: var(--cream);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}
.why-card:hover {
  transform: translateY(-6px);
  border-bottom-color: var(--green);
  box-shadow: var(--shadow-lg);
}
.why-icon { font-size: 2.5rem; margin-bottom: 12px; }
.why-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.why-card p { font-size: 0.83rem; color: var(--text-light); }

/* =============================================
   MENU PAGE
   ============================================= */
.menu-section { padding: 60px 0 80px; }
.menu-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 22px;
  border-radius: 50px;
  background: var(--white);
  border: 2px solid #e0d5cc;
  color: var(--text-mid);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

/* =============================================
   CART SIDEBAR
   ============================================= */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(3px);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-sidebar {
  position: fixed;
  top: 0; right: 0;
  width: 380px;
  max-width: 95vw;
  height: 100vh;
  background: var(--white);
  z-index: 1999;
  box-shadow: -4px 0 30px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.cart-sidebar.open { transform: translateX(0); }
.cart-header {
  padding: 20px 24px;
  border-bottom: 1px solid #f0e8e0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: var(--white);
}
.cart-header h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
}
.cart-close {
  background: rgba(255,255,255,0.2);
  border: none;
  color: var(--white);
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.cart-close:hover { background: rgba(255,255,255,0.35); }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-light);
}
.cart-empty .empty-icon { font-size: 4rem; margin-bottom: 16px; }
.cart-empty p { font-size: 1rem; }
.cart-item {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #f0e8e0;
  align-items: center;
}
.cart-item-emoji {
  font-size: 2rem;
  background: var(--cream);
  width: 50px; height: 50px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cart-item-info { flex: 1; }
.cart-item-info h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
}
.cart-item-price { font-size: 0.85rem; color: var(--green-dark); font-weight: 600; }
.cart-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}
.qty-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid #e0d5cc;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.qty-btn:hover { background: var(--red); color: var(--white); border-color: var(--red); }
.qty-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  min-width: 20px;
  text-align: center;
}
.remove-btn {
  background: none;
  border: none;
  color: #ccc;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  padding: 4px;
}
.remove-btn:hover { color: var(--red); }
.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid #f0e8e0;
  background: var(--cream);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.cart-total span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text-dark);
}
.cart-total .total-amount { color: var(--green-dark); font-size: 1.4rem; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section { padding: 70px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.contact-info h2 span { color: var(--red); }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-icon-wrap.red { background: rgba(192,57,43,0.1); }
.contact-icon-wrap.green { background: rgba(39,174,96,0.1); }
.contact-icon-wrap.orange { background: rgba(230,126,34,0.1); }
.contact-item h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 3px;
}
.contact-item p { font-size: 0.88rem; color: var(--text-light); }
.contact-item a { color: var(--red); font-weight: 500; }
.contact-item a:hover { text-decoration: underline; }
.whatsapp-cta {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(37,211,102,0.3);
  margin-top: 8px;
}
.whatsapp-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37,211,102,0.4);
}
.map-placeholder {
  background: linear-gradient(135deg, var(--light-bg), var(--cream));
  border-radius: var(--radius);
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--text-light);
  margin-top: 24px;
  border: 2px dashed #e0d5cc;
}
.map-placeholder p { font-size: 0.85rem; font-family: var(--font-display); margin-top: 8px; }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 24px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e8ddd5;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(230,126,34,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* =============================================
   CHECKOUT PAGE
   ============================================= */
.checkout-section { padding: 60px 0 80px; }
.checkout-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: flex-start;
}
.checkout-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}
.checkout-form-card h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--light-bg);
}
.checkout-form-card h2 span { color: var(--red); }
.order-summary {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 90px;
}
.order-summary h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--light-bg);
}
.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f5ede5;
  font-size: 0.9rem;
}
.summary-item .item-name {
  color: var(--text-dark);
  font-weight: 500;
}
.summary-item .item-qty { color: var(--text-light); font-size: 0.8rem; }
.summary-item .item-price { color: var(--green-dark); font-weight: 600; }
.summary-empty { text-align: center; padding: 30px; color: var(--text-light); }
.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
}
.summary-total .total-val { color: var(--green-dark); font-size: 1.4rem; }
.place-order-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(37,211,102,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.place-order-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37,211,102,0.45);
}
.delivery-note {
  background: var(--light-bg);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--text-mid);
  text-align: center;
  border-left: 3px solid var(--orange);
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.8);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand img { height: 70px; margin-bottom: 16px; filter: brightness(1.1); }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; opacity: 0.75; max-width: 260px; }
.footer-brand .tagline-footer {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: var(--orange-light);
  margin: 8px 0;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 8px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--orange);
  border-radius: 1px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  opacity: 0.75;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover { opacity: 1; color: var(--orange-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
  opacity: 0.6;
}
.footer-bottom span { color: var(--red-light); }

/* =============================================
   FLOATING WHATSAPP BUTTON
   ============================================= */
.floating-wa {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: waPulse 3s infinite;
}
.floating-wa:hover { transform: scale(1.12); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.65), 0 0 0 12px rgba(37,211,102,0.1); }
}
.floating-wa-tooltip {
  position: absolute;
  right: 70px;
  background: var(--text-dark);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-family: var(--font-display);
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.floating-wa:hover .floating-wa-tooltip { opacity: 1; }

/* =============================================
   TOAST NOTIFICATION
   ============================================= */
.toast {
  position: fixed;
  bottom: 100px; right: 28px;
  background: var(--green-dark);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 2000;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 8px;
}
.toast.show { opacity: 1; transform: translateY(0); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  nav {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    z-index: 998;
  }
  nav.mobile-open { transform: translateX(0); }
  nav a { font-size: 1.4rem; }
  .hamburger { display: flex; z-index: 999; }
  .features-inner { grid-template-columns: 1fr; margin-top: -30px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cart-btn span.cart-label { display: none; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .checkout-form-card, .contact-form-wrap { padding: 24px 16px; }
}
