/* ================================================
   VEDIC PAAN - Premium World-Class Stylesheet
   ================================================ */

/* --- CSS Variables --- */
:root {
  --primary: #1e7a4f;
  --primary-dark: #145c38;
  --primary-light: #28a866;
  --primary-glow: rgba(30, 122, 79, 0.18);
  --accent: #e8b84b;
  --accent-dark: #c49a2e;
  --accent-light: #f5d07a;
  --dark: #141820;
  --dark-light: #1f2535;
  --dark-mid: #2a3245;
  --text: #2c2c2c;
  --text-light: #5a5a6a;
  --text-muted: #9090a0;
  --white: #ffffff;
  --off-white: #f7f5f0;
  --cream: #faf8f3;
  --border: #e5e1d8;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 12px 44px rgba(0, 0, 0, 0.11);
  --shadow-xl: 0 24px 72px rgba(0, 0, 0, 0.15);
  --shadow-green: 0 8px 30px rgba(30, 122, 79, 0.22);
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --transition: 0.3s ease;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Announcement Bar --- */
.announcement-bar {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--primary-dark));
  background-size: 200% auto;
  animation: shimmerBar 6s linear infinite;
  color: var(--white);
  text-align: center;
  padding: 9px 20px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.6px;
}

@keyframes shimmerBar {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* --- Header --- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.09);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1px;
  text-decoration: none;
}

.logo-img {
  height: 95px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
}

.logo-icon {
  font-size: 1.8rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.15;
}

.logo-tagline {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent-dark);
  font-weight: 600;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

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

.icon-btn {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text);
  transition: var(--transition);
  position: relative;
}

.icon-btn:hover {
  background: var(--off-white);
  color: var(--primary);
}

.cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--accent);
  color: var(--dark);
  font-size: 0.62rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 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(5px, -5px);
}

/* Search Overlay */
.search-overlay {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 20px 0;
  box-shadow: var(--shadow-lg);
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.search-overlay.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-box input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font-body);
  outline: none;
  transition: var(--transition);
}

.search-box input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.search-close {
  font-size: 1.5rem;
  color: var(--text-muted);
  padding: 8px;
}

/* =============================================
   HERO SECTION — Full-width cinematic
   ============================================= */
.hero {
  position: relative;
  height: 88vh;
  min-height: 560px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* VIDEO fills entire hero */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(10, 30, 20, 0.82) 0%,
    rgba(14, 44, 28, 0.65) 45%,
    rgba(30, 122, 79, 0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  max-width: 640px;
  padding: 60px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 28px;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.22);
  letter-spacing: 0.3px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}

.text-accent {
  color: var(--accent-light);
}

.hero-subtitle {
  font-size: 1.08rem;
  opacity: 0.88;
  margin-bottom: 38px;
  line-height: 1.75;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-body);
  transition: all 0.25s ease;
  cursor: pointer;
  border: 2px solid transparent;
  letter-spacing: 0.2px;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-green);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(30, 122, 79, 0.35);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--primary-dark);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #22c55e;
  color: var(--white);
  border-color: #22c55e;
  box-shadow: 0 4px 18px rgba(34, 197, 94, 0.28);
}

.btn-whatsapp:hover {
  background: #16a34a;
  border-color: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(34, 197, 94, 0.35);
}

.btn-lg {
  padding: 16px 38px;
  font-size: 1rem;
  border-radius: var(--radius-lg);
}

.btn-block {
  width: 100%;
}

/* --- Section Base --- */
.section {
  padding: 90px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  display: inline-block;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* =============================================
   TRUST BADGES — clean icon-centered layout
   ============================================= */
.trust-badges {
  background: var(--cream);
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.badge-item {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.badge-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-green);
  transform: translateY(-4px);
}

/* Badge icon — square container, perfectly centered */
.badge-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border);
}

.badge-icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
}

.badge-item h4 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark);
}

.badge-item p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-us {
  background: linear-gradient(160deg, #f0faf4 0%, #fdfcf8 60%, #eef7f2 100%);
  padding: 90px 0;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 0;
}

.why-card {
  background: var(--white);
  padding: 32px 26px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(30, 122, 79, 0.08);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(30, 122, 79, 0.12);
  border-color: rgba(30, 122, 79, 0.2);
}

.why-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.1));
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.why-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* =============================================
   MENU / PRODUCTS — Luxury Editorial Redesign
   Inspired by: warm parchment, serif elegance,
   portrait cards, generous spacing
   ============================================= */

.menu {
  padding: 110px 0 130px;
  background: #f5f0e8;
  position: relative;
  overflow: hidden;
}

/* Subtle grain texture overlay */
.menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.5;
  z-index: 0;
}

/* Decorative large leaf watermark top-right */
.menu::after {
  content: '🌿';
  position: absolute;
  top: -30px;
  right: -40px;
  font-size: 320px;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
  transform: rotate(-20deg);
  filter: grayscale(1);
}

/* Section Header — editorial magazine style */
.menu .section-header {
  text-align: left;
  margin-bottom: 0;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(30, 80, 50, 0.15);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.menu .section-header-left {
  flex: 1;
}

.menu .section-header .section-label {
  display: inline-block;
  color: #7a5c38;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 12px;
  font-family: 'DM Sans', sans-serif;
}

.menu .section-header h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 4.2rem;
  font-weight: 300;
  color: #1c2e22;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 0;
}

.menu .section-header h2 em {
  font-style: italic;
  color: #2d6a4a;
}

.menu .section-header p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: #7a7060;
  max-width: 280px;
  text-align: right;
  line-height: 1.7;
  padding-bottom: 6px;
}

/* Category filter — horizontal pill tabs, editorial style */
.menu-filters {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 44px 0 52px;
  border-bottom: 1.5px solid rgba(30,80,50,0.12);
  position: relative;
  z-index: 1;
  overflow-x: auto;
  scrollbar-width: none;
}
.menu-filters::-webkit-scrollbar { display: none; }

.filter-btn {
  padding: 12px 28px;
  border-radius: 0;
  font-size: 0.78rem;
  font-weight: 500;
  color: #8a7a65;
  background: transparent;
  border: none;
  border-bottom: 2.5px solid transparent;
  margin-bottom: -1.5px;
  transition: all 0.25s ease;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  white-space: nowrap;
}

.filter-btn:hover {
  color: #1c2e22;
  border-bottom-color: rgba(30,80,50,0.3);
}

.filter-btn.active {
  color: #1c2e22;
  border-bottom-color: #2d6a4a;
  font-weight: 700;
  background: transparent;
  box-shadow: none;
}

/* Menu Grid — 4 cols, portrait cards */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

/* Product Card — clean luxury editorial */
.product-card {
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  border: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  box-shadow: 0 2px 16px rgba(28, 46, 34, 0.06);
}

.product-card::before {
  content: none; /* remove old pseudo element */
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 52px rgba(28, 46, 34, 0.14);
}

.product-card.hidden {
  display: none;
}

/* Tall portrait image — cinematic ratio */
.product-image-wrap {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: #e8e2d6;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: saturate(1.05) contrast(1.02);
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.07);
}

/* No gradient overlay — clean image */
.product-image-wrap::after {
  display: none;
}

/* Category colour strip at very top of card */
.product-card[data-category="sweet-paan"] .product-image-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #c0392b, #e74c3c);
  z-index: 2;
}
.product-card[data-category="vedic-wellness-paan"] .product-image-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1e7a4f, #28a866);
  z-index: 2;
}
.product-card[data-category="vedic-fun-flavor-paan"] .product-image-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #e67e22, #f39c12);
  z-index: 2;
}
.product-card[data-category="supari-paan"] .product-image-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #8e44ad, #9b59b6);
  z-index: 2;
}
.product-card[data-category="supari-sweet-paan"] .product-image-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #8e44ad, #9b59b6);
  z-index: 2;
}

/* Badge — minimal text tag */
.product-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  left: auto;
  background: #1c2e22;
  color: #e8b84b;
  padding: 4px 10px;
  border-radius: 2px;
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  z-index: 3;
  box-shadow: none;
  font-family: 'DM Sans', sans-serif;
}

/* Product Info — generous padding, clean typography */
.product-info {
  padding: 20px 22px 22px;
  border-top: 1px solid #f0ebe0;
}

.product-info h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.18rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #1c2e22;
  line-height: 1.3;
  letter-spacing: -0.2px;
}

.product-info p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.76rem;
  color: #9a8f7e;
  margin-bottom: 16px;
  line-height: 1.6;
  font-weight: 400;
}

/* COMMENTED OUT: product-footer / price / add-to-cart (kept for reference) */
/*
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-size: 1.18rem; font-weight: 700; color: var(--primary-dark); font-family: var(--font-heading); }
.add-to-cart { padding: 8px 18px; background: var(--primary); color: var(--white); border-radius: var(--radius); font-size: 0.78rem; font-weight: 600; }
*/

/* Delivery Platform Buttons */
.order-buttons {
  display: flex;
  gap: 8px;
}

.btn-swiggy,
.btn-zomato {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px 10px;
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.22s ease;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
}

.btn-swiggy {
  background: #fff3eb;
  color: #d4560a;
  border: 1.5px solid #fc8019;
}

.btn-swiggy:hover {
  background: #fc8019;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(252,128,25,0.3);
}

.btn-zomato {
  background: #fff0f1;
  color: #b8202d;
  border: 1.5px solid #e23744;
}

.btn-zomato:hover {
  background: #e23744;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(226,55,68,0.3);
}

.order-btn-icon {
  width: 14px;
  height: 14px;
  object-fit: contain;
  flex-shrink: 0;
  display: inline-block;
  background: transparent;
}

/* =============================================
   ABOUT
   ============================================= */
.about {
  padding: 90px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image-inner {
  background: linear-gradient(145deg, var(--primary-dark) 0%, var(--primary) 55%, var(--primary-light) 100%);
  border-radius: var(--radius-xl);
  padding: 44px;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-pattern {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="3" fill="rgba(255,255,255,0.07)"/><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="30" r="2" fill="rgba(255,255,255,0.04)"/><circle cx="15" cy="75" r="1.5" fill="rgba(255,255,255,0.04)"/><circle cx="70" cy="80" r="2" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
}

.about-stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat {
  text-align: center;
  color: var(--white);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent-light);
}

.stat-label {
  font-size: 0.72rem;
  opacity: 0.8;
  display: block;
  margin-top: 6px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.about-content .section-label {
  display: block;
  margin-bottom: 10px;
}

.about-content h2 {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 22px;
  line-height: 1.2;
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 26px 0 34px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
}

.feature-icon {
  font-size: 1rem;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  padding: 90px 0;
  background: var(--off-white);
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: calc(33.333% - 16px);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.testimonial-stars {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card p {
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 22px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--dark);
}

.testimonial-author span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.testimonial-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: var(--transition);
  cursor: pointer;
}

.testimonial-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  padding: 90px 0;
  background: linear-gradient(140deg, var(--primary-dark) 0%, var(--primary) 50%, #1a9054 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><circle cx="40" cy="40" r="1.5" fill="rgba(255,255,255,0.04)"/></svg>') repeat;
}

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

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-section .btn-primary {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
  font-weight: 700;
}

.cta-section .btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
  padding: 90px 0;
  background: var(--white);
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info .section-label {
  display: block;
  margin-bottom: 8px;
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 14px;
}

.contact-info > p {
  color: var(--text-light);
  margin-bottom: 34px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  font-size: 1.3rem;
  width: 48px;
  height: 48px;
  background: var(--off-white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.contact-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 3px;
  color: var(--dark);
}

.contact-item p {
  font-size: 0.84rem;
  color: var(--text-light);
  line-height: 1.55;
}

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

.social-link {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.social-link:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--off-white);
  border-radius: var(--radius-xl);
  padding: 42px;
  border: 1px solid var(--border);
  width: 100%;
  min-width: 0;
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 26px;
  color: var(--dark);
}

.form-group {
  margin-bottom: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

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

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.footer-logo .logo-name {
  color: var(--white);
}

.footer-logo .logo-tagline {
  color: var(--accent-light);
}

.footer-about p {
  font-size: 0.84rem;
  line-height: 1.75;
  max-width: 340px;
}

.footer-links h4 {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-links a {
  display: block;
  font-size: 0.84rem;
  margin-bottom: 11px;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
}

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

.footer-bottom {
  padding: 22px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

/* =============================================
   CART DRAWER
   ============================================= */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  backdrop-filter: blur(2px);
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 90vw;
  height: 100vh;
  background: var(--white);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
  transition: right 0.38s ease;
}

.cart-drawer.active {
  right: 0;
}

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

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

.cart-close {
  font-size: 1.8rem;
  color: var(--text-muted);
  line-height: 1;
  transition: var(--transition);
}

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

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.cart-empty {
  text-align: center;
  padding: 60px 20px;
}

.cart-empty span {
  font-size: 3rem;
  display: block;
  margin-bottom: 14px;
}

.cart-empty p {
  color: var(--text-muted);
  margin-bottom: 22px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.cart-item-color {
  width: 50px;
  height: 50px;
  border-radius: var(--radius);
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

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

.cart-item-details h4 {
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 3px;
  color: var(--dark);
}

.cart-item-details span {
  font-size: 0.84rem;
  color: var(--primary-dark);
  font-weight: 600;
}

.cart-item-remove {
  color: var(--text-muted);
  font-size: 1.3rem;
  padding: 4px 8px;
  transition: var(--transition);
}

.cart-item-remove:hover {
  color: #dc2626;
}

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  background: var(--cream);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
}

/* WhatsApp floating button */
#whatsapp-order {
  position: fixed;
  bottom: 90px;
  right: 28px;
  z-index: 900;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 0.84rem;
  font-weight: 700;
  box-shadow: 0 6px 24px rgba(34, 197, 94, 0.4);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

/* --- Animations --- */
/* Cards visible by default; JS adds .js-ready to <body> to enable the animation */
.fade-target {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

body.js-ready .fade-target {
  opacity: 0;
  transform: translateY(28px);
}

body.js-ready .fade-target.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   SEARCH STATES
   ============================================= */
.search-hidden {
  display: none !important;
}

.search-section-hidden {
  display: none !important;
}

.search-highlight {
  outline: 2px solid var(--primary-light);
  outline-offset: 3px;
  border-radius: var(--radius);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .menu .section-header h2 { font-size: 3rem; }
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 0;
    box-shadow: var(--shadow-xl);
    transition: right 0.4s ease;
    z-index: 999;
  }
  .nav.active { right: 0; }
  .nav-link {
    padding: 14px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
  }
  .hamburger { display: flex; }

  .hero {
    height: 82vh;
    min-height: 500px;
  }
  .hero-title { font-size: 2.6rem; }
  .hero-subtitle { font-size: 0.95rem; }

  .badges-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .menu .section-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .menu .section-header p { text-align: left; max-width: 100%; }
  .menu .section-header h2 { font-size: 2.6rem; }
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .testimonial-card { min-width: 100%; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section-header h2 { font-size: 2.1rem; }
  .cta-content h2 { font-size: 2.1rem; }
}

@media (max-width: 480px) {
  .announcement-bar { font-size: 0.7rem; padding: 6px 10px; }
  .header-inner { height: 62px; }
  .logo-name { font-size: 1.2rem; }
  .hero { min-height: 460px; }
  .hero-title { font-size: 2rem; }
  .hero-buttons { flex-direction: column; }
  .badges-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu .section-header h2 { font-size: 2.2rem; }
  .product-image-wrap { height: 220px; }
  .menu-filters { gap: 8px; }
  .filter-btn { padding: 8px 16px; font-size: 0.78rem; }
  .why-us-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-form-wrapper { padding: 26px; }
  .search-btn { display: none; }
  #whatsapp-order { bottom: 85px; right: 16px; font-size: 0.78rem; padding: 10px 16px; }
}

/* ================================================
   FAQ Section
   ================================================ */
.faq-section {
  padding: 80px 0;
  background: var(--cream);
}
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.faq-item:hover {
  box-shadow: var(--shadow);
}
.faq-item summary {
  cursor: pointer;
  padding: 20px 24px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.3s ease;
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-item summary h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}
.faq-item p {
  padding: 0 24px 20px;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-light);
}
@media (max-width: 600px) {
  .faq-item summary {
    padding: 16px 18px;
  }
  .faq-item summary h3 {
    font-size: 0.95rem;
  }
  .faq-item p {
    padding: 0 18px 16px;
    font-size: 0.9rem;
  }
}
