/* ==========================================================================
   SAHYADRI PREMIUM (सह्याद्री प्रीमियम) - DESIGN SYSTEM & STYLESHEET
   Maharashtra-based Regional Namkeen & Snacks Brand
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS & CSS VARIABLES
   -------------------------------------------------------------------------- */
:root {
  /* Brand Core Colors */
  --primary: #E8871E;             /* Saffron / Turmeric Orange */
  --primary-light: #FFA043;       /* Warm Golden Orange */
  --primary-dark: #A85002;        /* Deep Roasted Saffron (5.4:1 AA contrast on cream/white) */
  --primary-glow: rgba(232, 135, 30, 0.28);

  --secondary: #5C2C1D;           /* Deep Maroon-Brown (Earthy Maharashtrian heritage) */
  --secondary-light: #7A3B28;     /* Rich Terracotta */
  --secondary-dark: #3E1D13;      /* Deep Roast */

  --bg: #FDF6EC;                  /* Warm Cream Background */
  --bg-surface: #FFFFFF;          /* Pure Card Background */
  --bg-subtle: #F6EDE0;           /* Soft Muted Cream */

  --text: #2B1810;                /* Dark Brown Body Text */
  --text-muted: #6E5346;          /* Subdued Clay Brown */
  --text-light: #A58B7C;          /* Light Tertiary Text */

  /* Accent & Action */
  --accent-green: #2E7D32;        /* WhatsApp / Freshness Accent Green */
  --accent-green-hover: #256628;  /* WhatsApp Hover */
  --accent-green-glow: rgba(46, 125, 50, 0.35);

  --border-color: rgba(92, 44, 29, 0.12);
  --border-light: rgba(92, 44, 29, 0.06);

  /* Typography */
  --font-headline: 'Baloo 2', cursive, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Font Weights */
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;

  /* Shadows */
  --shadow-sm: 0 2px 6px rgba(43, 24, 16, 0.05);
  --shadow-md: 0 8px 24px rgba(43, 24, 16, 0.08);
  --shadow-lg: 0 16px 36px rgba(43, 24, 16, 0.12);
  --shadow-whatsapp: 0 10px 25px var(--accent-green-glow);

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

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* --------------------------------------------------------------------------
   2. GLOBAL RESET & BASE STYLING
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Headings with Baloo 2 */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headline);
  color: var(--secondary);
  line-height: 1.25;
  letter-spacing: -0.01em;
  font-weight: var(--fw-bold);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.35rem, 3vw, 1.85rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

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

a:hover {
  color: var(--primary-dark);
}

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

/* --------------------------------------------------------------------------
   3. LAYOUT UTILITIES & BUTTONS
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--space-md);
}

@media (min-width: 768px) {
  .container {
    padding-inline: var(--space-xl);
  }
}

/* Button System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: var(--fw-semibold);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--transition-fast), 
              box-shadow var(--transition-fast), 
              background-color var(--transition-fast),
              color var(--transition-fast),
              border-color var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
  font-weight: var(--fw-bold);
  text-shadow: 0 1px 2px rgba(43, 24, 16, 0.4);
  box-shadow: 0 8px 22px var(--primary-glow);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #FFFFFF;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 28px rgba(232, 135, 30, 0.42);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--secondary);
  color: var(--secondary);
}

.btn-secondary:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: #FFFFFF;
  transform: translateY(-2px) scale(1.03);
  box-shadow: var(--shadow-md);
}

.btn-secondary:active {
  transform: translateY(0) scale(0.98);
}

/* --------------------------------------------------------------------------
   3.0 STICKY NAVIGATION BAR (#navbar) & MOBILE DRAWER
   Fixed at top, subtle shadow after 50px scroll, responsive drawer
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-fast);
}

.navbar {
  width: 100%;
  padding-block: 16px;
  background-color: rgba(253, 246, 236, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(92, 44, 29, 0.08);
  transition: padding var(--transition-fast), 
              background-color var(--transition-fast), 
              box-shadow var(--transition-fast), 
              border-color var(--transition-fast);
}

/* Scrolled state: Subtle shadow after scrolling 50px */
.site-header.scrolled .navbar {
  padding-block: 10px;
  background-color: rgba(253, 246, 236, 0.98);
  box-shadow: 0 4px 22px rgba(43, 24, 16, 0.09);
  border-bottom-color: rgba(92, 44, 29, 0.14);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

/* Brand Logo */
.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar-logo-img {
  height: 44px;
  width: auto;
  max-width: 230px;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

.navbar-brand:hover .navbar-logo-img {
  transform: scale(1.02);
}

/* Center / Desktop Navigation Links */
.nav-drawer {
  display: flex;
  align-items: center;
  margin-inline: auto;
}

.nav-drawer-header,
.nav-drawer-footer {
  display: none;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: var(--fw-semibold);
  color: var(--secondary);
  text-decoration: none;
  position: relative;
  padding-block: 6px;
  transition: color var(--transition-fast);
}

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

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

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

/* Right-most Actions */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Always-visible WhatsApp "Order Now" Button */
.btn-nav-order {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: var(--radius-full);
  background-color: var(--accent-green);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: var(--fw-bold);
  text-decoration: none;
  box-shadow: 0 4px 14px var(--accent-green-glow);
  white-space: nowrap;
  transition: background-color var(--transition-fast), 
              transform var(--transition-fast), 
              box-shadow var(--transition-fast);
}

.btn-nav-order:hover {
  background-color: var(--accent-green-hover);
  color: #FFFFFF;
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 6px 18px var(--accent-green-glow);
}

.btn-nav-order:active {
  transform: translateY(0) scale(0.98);
}

.nav-wa-icon {
  width: 17px;
  height: 17px;
  fill: currentColor;
  flex-shrink: 0;
}

/* Section scroll margins so sticky nav doesn't overlap section headings */
section[id] {
  scroll-margin-top: 85px;
}

/* Semi-transparent Dark Overlay Behind Mobile Drawer */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(43, 24, 16, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1040;
  pointer-events: none;
}

.nav-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Mobile Hamburger Toggle Button (Hidden on desktop) */
.nav-toggle-btn {
  display: none;
}

/* Responsive Navigation Bar & Slide-in Drawer */
@media (max-width: 968px) {
  .nav-toggle-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: transparent;
    border: 1.5px solid rgba(92, 44, 29, 0.18);
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 8px;
    transition: background-color var(--transition-fast), border-color var(--transition-fast);
  }

  .nav-toggle-btn:hover {
    background-color: rgba(92, 44, 29, 0.05);
    border-color: var(--primary);
  }

  .nav-toggle-btn:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
  }

  .hamburger-bar {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--secondary);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.25s ease, background-color 0.25s ease;
    transform-origin: center;
  }

  /* Hamburger transform into an 'X' when open */
  .nav-toggle-btn.open .hamburger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle-btn.open .hamburger-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .nav-toggle-btn.open .hamburger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Slide-in Mobile Drawer from the right */
  .nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(340px, 85vw);
    height: 100vh;
    height: 100dvh;
    background-color: var(--bg);
    box-shadow: -8px 0 32px rgba(43, 24, 16, 0.25);
    display: flex;
    flex-direction: column;
    padding: 24px 20px;
    z-index: 1050;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    border-left: 1px solid rgba(92, 44, 29, 0.12);
  }

  .nav-drawer.open {
    transform: translateX(0);
  }

  .nav-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 18px;
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(92, 44, 29, 0.1);
  }

  .nav-drawer-title {
    font-family: var(--font-headline);
    font-size: 1.25rem;
    font-weight: var(--fw-bold);
    color: var(--secondary);
  }

  .nav-drawer-close {
    background: transparent;
    border: 1px solid rgba(92, 44, 29, 0.15);
    border-radius: var(--radius-sm);
    color: var(--secondary);
    font-size: 1.8rem;
    line-height: 1;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
  }

  .nav-drawer-close:hover {
    background: rgba(92, 44, 29, 0.08);
    color: var(--primary);
  }

  .nav-drawer-close:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
  }

  .nav-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    width: 100%;
    margin-bottom: auto;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: 12px 16px;
    font-size: 1.05rem;
    color: var(--secondary);
    border-radius: var(--radius-md);
    transition: background-color var(--transition-fast), color var(--transition-fast), padding-left var(--transition-fast);
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover,
  .nav-link:focus {
    background-color: rgba(232, 135, 30, 0.12);
    color: var(--primary-dark);
    padding-left: 20px;
  }

  .nav-drawer-footer {
    display: block;
    padding-top: 20px;
    margin-top: 24px;
    border-top: 1px solid rgba(92, 44, 29, 0.1);
  }

  .btn-nav-order-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background-color: var(--accent-green);
    color: #FFFFFF;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-weight: var(--fw-bold);
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 4px 16px var(--accent-green-glow);
    transition: background-color var(--transition-fast), transform var(--transition-fast);
  }

  .btn-nav-order-mobile:hover {
    background-color: var(--accent-green-hover);
    color: #FFFFFF;
    transform: translateY(-1px);
  }
}

@media (max-width: 480px) {
  .navbar {
    padding-block: 12px;
  }

  .navbar-logo-img {
    height: 34px;
    max-width: 135px;
  }

  .btn-nav-order {
    padding: 7px 12px;
    font-size: 0.82rem;
    gap: 6px;
  }

  .nav-wa-icon {
    width: 15px;
    height: 15px;
  }

  .nav-toggle-btn {
    width: 38px;
    height: 38px;
    padding: 6px;
  }
}


/* --------------------------------------------------------------------------
   3.1 HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 85vh;
  display: flex;
  align-items: center;
  /* Soft gradient from warm cream to light saffron/orange */
  background: linear-gradient(135deg, #FDF6EC 0%, #FFF2DF 48%, #FFE5C4 100%);
  overflow: hidden;
  padding-top: calc(var(--space-3xl) + 50px); /* Clearance for fixed sticky navbar */
  padding-bottom: var(--space-3xl);
}

/* Subtle decorative warm ambient glow in background */
.hero-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -100px;
  width: 550px;
  height: 550px;
  border-radius: var(--radius-full);
  background: radial-gradient(circle, rgba(232, 135, 30, 0.18) 0%, rgba(253, 246, 236, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: var(--space-2xl);
  position: relative;
  z-index: 1;
}

/* Left Content Block with Fade-in Animation on Page Load */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: heroFadeIn 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroFadeIn {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Eyebrow Tag */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 135, 30, 0.14);
  border: 1px solid rgba(232, 135, 30, 0.35);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.hero-badge .badge-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: var(--fw-semibold);
  color: var(--secondary);
  letter-spacing: 0.02em;
}

/* Big Headline */
.hero-title {
  font-family: var(--font-headline);
  font-size: 48px;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.18;
  margin-bottom: var(--space-md);
  letter-spacing: -0.015em;
}

/* Subheadline */
.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
  max-width: 520px;
}

/* CTA Buttons Group */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* Right Column: Hero Media */
.hero-media {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image-frame {
  position: relative;
  width: 100%;
  max-width: 540px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(92, 44, 29, 0.16);
  border: 8px solid rgba(255, 255, 255, 0.85);
  background-color: var(--bg-surface);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.hero-image-frame:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(92, 44, 29, 0.22);
}

.hero-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

/* Target Section Anchor */
.dealership-anchor {
  scroll-margin-top: 60px;
}

/* --------------------------------------------------------------------------
   3.2 HERO RESPONSIVE STYLING (Mobile & Tablet)
   -------------------------------------------------------------------------- */
@media (max-width: 868px) {
  .hero-section {
    min-height: auto;
    padding-block: var(--space-2xl);
  }

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

  /* Content centered, image below text */
  .hero-content {
    order: 1;
    align-items: center;
    text-align: center;
  }

  .hero-media {
    order: 2;
    width: 100%;
    max-width: 440px;
    margin-inline: auto;
  }

  .hero-title {
    font-size: 32px;
    line-height: 1.25;
  }

  .hero-subtitle {
    font-size: 1.02rem;
    margin-inline: auto;
    margin-bottom: var(--space-lg);
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-cta-group .btn {
    width: 100%;
    max-width: 360px;
    padding: 13px 20px;
  }
}

/* --------------------------------------------------------------------------
   3.3 SHARED SECTION HEADERS & BRAND STORY (#about)
   -------------------------------------------------------------------------- */
.section-header {
  max-width: 780px;
  margin-inline: auto;
  margin-bottom: var(--space-2xl);
}

.text-center {
  text-align: center;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: var(--fw-semibold);
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-xs);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: -0.01em;
}

.section-divider {
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-full);
  margin: 14px auto 20px;
}

.section-lead {
  font-size: 1.12rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.story-placeholder {
  position: relative;
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px dashed rgba(232, 135, 30, 0.4);
  padding: var(--space-lg) var(--space-xl);
  border-radius: var(--radius-md);
  margin-top: var(--space-sm);
}

.placeholder-notice {
  display: block;
  margin-top: var(--space-sm);
  font-size: 0.84rem;
  font-weight: var(--fw-semibold);
  color: var(--primary-dark);
  letter-spacing: 0.03em;
  font-family: monospace;
}

/* About Section Layout */
.about-section {
  padding-block: var(--space-3xl);
  position: relative;
  background-color: var(--bg);
}

/* 3 Trust-Pillar Cards in a Row */
.trust-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.pillar-card {
  background-color: var(--bg-surface); /* Pure white card on cream background */
  border-radius: 16px; /* 16px rounded corners */
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 24px rgba(43, 24, 16, 0.06); /* Soft shadow */
  transition: transform var(--transition-bounce), 
              box-shadow var(--transition-normal), 
              border-color var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Subtle accent top border that reveals on hover */
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

/* Hover Lift Effect */
.pillar-card:hover {
  transform: translateY(-8px); /* Hover lift effect */
  box-shadow: 0 18px 36px rgba(43, 24, 16, 0.12);
  border-color: rgba(232, 135, 30, 0.35);
}

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

.pillar-icon-wrapper {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-full);
  background-color: rgba(232, 135, 30, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.pillar-card:hover .pillar-icon-wrapper {
  transform: scale(1.1);
  background-color: rgba(232, 135, 30, 0.2);
}

.pillar-icon {
  font-size: 32px;
  line-height: 1;
}

.pillar-title {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
  color: var(--secondary);
  margin-bottom: 8px;
}

.pillar-desc {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 0;
}

/* Mobile Responsiveness for Trust Pillars */
@media (max-width: 868px) {
  .about-section {
    padding-block: var(--space-2xl);
  }

  .story-placeholder {
    padding: var(--space-md);
    font-size: 1rem;
  }

  .trust-pillars-grid {
    grid-template-columns: 1fr; /* Stack on mobile */
    gap: var(--space-md);
  }

  .pillar-card {
    padding: 28px 20px;
  }
}

/* --------------------------------------------------------------------------
   3.4 OUR PRODUCTS SECTION (#products)
   -------------------------------------------------------------------------- */
.products-section {
  padding-block: var(--space-3xl);
  background-color: var(--bg);
  position: relative;
}

/* Responsive Grid: 4 cols Desktop, 2 cols Tablet, 1 col Mobile */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns desktop */
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

/* Product Card */
.product-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color); /* Subtle border */
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(43, 24, 16, 0.05);
  transition: transform var(--transition-fast), 
              box-shadow var(--transition-fast), 
              border-color var(--transition-fast);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 36px rgba(43, 24, 16, 0.16);
  border-color: rgba(232, 135, 30, 0.45);
}

/* Image on top with hover zoom */
.product-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1.16 / 1;
  overflow: hidden; /* Clips the zooming image */
  background: linear-gradient(135deg, #FFFDF9 0%, #FFF3E0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1); /* Smooth hover zoom */
}

/* Hover Zoom on Image */
.product-card:hover .product-img {
  transform: scale(1.04);
}

/* Special Edition Badge */
.product-special-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: var(--primary);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: var(--fw-bold);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* Name + Size below */
.product-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-name {
  font-family: var(--font-headline);
  font-size: 1.35rem;
  font-weight: var(--fw-bold);
  color: var(--secondary);
  margin-bottom: 6px;
  line-height: 1.25;
}

.product-size {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.product-size span {
  font-weight: var(--fw-semibold);
  color: var(--text);
}

/* Button at Bottom */
.product-action {
  margin-top: auto; /* Pushes button to bottom of card */
  width: 100%;
}

.btn-enquire {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 16px;
  background-color: var(--accent-green);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-full);
  text-decoration: none;
  border: 1px solid var(--accent-green);
  box-shadow: 0 2px 8px rgba(46, 125, 50, 0.2);
  transition: background-color var(--transition-fast), 
              box-shadow var(--transition-fast), 
              transform var(--transition-fast);
}

.btn-enquire:hover {
  background-color: var(--accent-green-hover);
  color: #FFFFFF;
  box-shadow: 0 6px 16px var(--accent-green-glow);
  transform: translateY(-2px) scale(1.03);
}

.btn-enquire:active {
  transform: translateY(0) scale(0.98);
}

.wa-btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   3.5 PRODUCTS RESPONSIVE BREAKPOINTS (Tablet: 2 cols, Mobile: 1 col)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns tablet */
    gap: var(--space-md);
  }
}

@media (max-width: 640px) {
  .products-section {
    padding-block: var(--space-2xl);
  }

  .products-grid {
    grid-template-columns: 1fr; /* 1 column mobile */
    gap: var(--space-md);
  }

  .product-body {
    padding: 16px;
  }
}

/* --------------------------------------------------------------------------
   3.6 WHY CHOOSE US SECTION (#why-us)
   -------------------------------------------------------------------------- */
.why-us-section {
  padding-block: var(--space-3xl);
  background-color: var(--bg-subtle);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  position: relative;
}

/* 4-column feature grid on Desktop */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.usp-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 38px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 16px rgba(43, 24, 16, 0.04);
  transition: transform var(--transition-fast), 
              box-shadow var(--transition-fast), 
              border-color var(--transition-fast);
}

.usp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 28px rgba(43, 24, 16, 0.08);
  border-color: rgba(232, 135, 30, 0.35);
}

/* Minimal Icon Badges (Colored circle background with emoji/icon) */
.usp-icon-badge {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  transition: transform var(--transition-bounce);
}

.usp-card:hover .usp-icon-badge {
  transform: scale(1.12);
}

.usp-emoji {
  font-size: 30px;
  line-height: 1;
}

/* Curated Soft Palette Tints for Minimal Badges */
.usp-badge-warm {
  background-color: #FEF3C7; /* Soft Golden Amber */
}

.usp-badge-earth {
  background-color: #E2E8F0; /* Clean Slate/Steel Tint */
}

.usp-badge-saffron {
  background-color: #FFEDD5; /* Fresh Warm Saffron */
}

.usp-badge-heritage {
  background-color: #FEE2E2; /* Warm Heritage Coral/Clay */
}

/* Typography */
.usp-title {
  font-family: var(--font-headline);
  font-size: 1.35rem;
  font-weight: var(--fw-bold);
  color: var(--secondary);
  margin-bottom: 8px;
  line-height: 1.25;
}

.usp-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   3.7 WHY CHOOSE US RESPONSIVE BREAKPOINTS (2x2 Tablet, 1 col Mobile)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .usp-grid {
    grid-template-columns: repeat(2, 1fr); /* 2x2 on tablet */
    gap: var(--space-lg);
  }
}

@media (max-width: 640px) {
  .why-us-section {
    padding-block: var(--space-2xl);
  }

  .usp-grid {
    grid-template-columns: 1fr; /* 1 column on mobile */
    gap: var(--space-md);
  }

  .usp-card {
    padding: 28px 20px;
  }
}

/* --------------------------------------------------------------------------
   3.8 BECOME A DEALER SECTION (#dealership) & TOAST NOTIFICATION
   Most Important Conversion Section - High Visual Prominence
   Deep Maroon Background (#5C2C1D) with Cream Typography (#FDF6EC)
   -------------------------------------------------------------------------- */
.dealership-section {
  position: relative;
  width: 100%;
  background-color: var(--secondary); /* Deep Maroon #5C2C1D */
  color: var(--bg); /* Cream Text #FDF6EC */
  padding-block: var(--space-3xl);
  overflow: hidden;
  scroll-margin-top: 40px;
}

/* Subtle warm background glows */
.dealership-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -80px;
  width: 500px;
  height: 500px;
  border-radius: var(--radius-full);
  background: radial-gradient(circle, rgba(232, 135, 30, 0.18) 0%, rgba(92, 44, 29, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.dealership-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: var(--radius-full);
  background: radial-gradient(circle, rgba(255, 160, 67, 0.14) 0%, rgba(92, 44, 29, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.dealership-container {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: var(--space-3xl);
  position: relative;
  z-index: 1;
}

/* Left Column: Dealership Information & Benefits */
.dealership-badge {
  display: inline-block;
  background: rgba(232, 135, 30, 0.2);
  border: 1px solid rgba(232, 135, 30, 0.45);
  color: var(--primary-light);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: var(--fw-semibold);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
  letter-spacing: 0.03em;
}

.dealership-heading {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #FFFFFF; /* High contrast white-cream against maroon */
  line-height: 1.2;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.015em;
}

.dealership-subheading {
  font-size: 1.15rem;
  color: #F6EDE0;
  line-height: 1.6;
  margin-bottom: var(--space-2xl);
  max-width: 500px;
}

/* 3 Benefit Bullets with Icons */
.dealership-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

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

.benefit-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background: rgba(232, 135, 30, 0.2);
  border: 1px solid rgba(232, 135, 30, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.benefit-item:hover .benefit-icon-wrapper {
  transform: scale(1.1);
  background: rgba(232, 135, 30, 0.3);
}

.benefit-icon {
  font-size: 24px;
  line-height: 1;
}

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

.benefit-title {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  color: #FFF3E1;
  margin-bottom: 2px;
}

.benefit-desc {
  font-size: 0.94rem;
  color: rgba(253, 246, 236, 0.82);
  line-height: 1.5;
}

.dealership-trust-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: var(--fw-medium);
  color: var(--primary-light);
}

.trust-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background-color: #4CAF50;
  box-shadow: 0 0 10px #4CAF50;
  animation: pulseGreen 1.8s infinite;
}

@keyframes pulseGreen {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

/* Right Column: Lead Capture Form Card */
.dealership-form-card {
  background-color: var(--bg-surface); /* Crisp pure white card for maximum readability */
  color: var(--text);
  border-radius: 24px;
  padding: 38px 34px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-header {
  margin-bottom: var(--space-lg);
}

.form-title {
  font-family: var(--font-headline);
  font-size: 1.65rem;
  font-weight: var(--fw-bold);
  color: var(--secondary);
  margin-bottom: 6px;
}

.form-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

.dealership-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 0.88rem;
  font-weight: var(--fw-semibold);
  color: var(--text);
  margin-bottom: 6px;
}

.form-label .required {
  color: #D32F2F;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background-color: #FBF7F1;
  border: 1.5px solid rgba(92, 44, 29, 0.18);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), 
              background-color var(--transition-fast), 
              box-shadow var(--transition-fast);
}

.form-control:focus {
  outline: none;
  background-color: #FFFFFF;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

/* Phone input with Indian prefix */
.phone-input-wrapper {
  display: flex;
  align-items: stretch;
  width: 100%;
}

.country-prefix {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #EDE4D8;
  border: 1.5px solid rgba(92, 44, 29, 0.18);
  border-right: none;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  padding: 0 14px;
  font-size: 0.95rem;
  font-weight: var(--fw-semibold);
  color: var(--secondary);
}

.phone-control {
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* Select dropdown */
.select-wrapper {
  position: relative;
}

.select-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235C2C1D' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px 16px;
  padding-right: 40px;
}

/* Form validation error display */
.error-msg {
  display: none;
  font-size: 0.8rem;
  color: #D32F2F;
  margin-top: 5px;
  font-weight: var(--fw-medium);
}

.form-group.has-error .error-msg {
  display: block;
}

.form-group.has-error .form-control {
  border-color: #D32F2F;
  background-color: #FFF6F6;
}

.form-group.has-error .country-prefix {
  border-color: #D32F2F;
}

/* Submit Button */
.btn-dealership-submit {
  width: 100%;
  padding: 15px 24px;
  background: linear-gradient(135deg, var(--primary) 0%, #FFA043 100%);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: var(--fw-bold);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  box-shadow: 0 8px 24px var(--primary-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
  transition: transform var(--transition-fast), 
              box-shadow var(--transition-fast), 
              background var(--transition-fast);
}

.btn-dealership-submit:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 28px rgba(232, 135, 30, 0.45);
}

.btn-dealership-submit:active {
  transform: translateY(0) scale(0.98);
}

.btn-dealership-submit .btn-icon {
  transition: transform var(--transition-fast);
}

.btn-dealership-submit:hover .btn-icon {
  transform: translateX(4px);
}

.form-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 6px;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   3.9 TOAST NOTIFICATION
   -------------------------------------------------------------------------- */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(50px);
  background-color: var(--accent-green);
  color: #FFFFFF;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: var(--fw-semibold);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275),
              visibility 0.35s ease;
}

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

.toast-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   3.10 DEALERSHIP RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 968px) {
  .dealership-container {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .dealership-info {
    text-align: center;
  }

  .dealership-subheading {
    margin-inline: auto;
  }

  .dealership-benefits {
    align-items: flex-start;
    text-align: left;
    max-width: 520px;
    margin-inline: auto;
  }

  .dealership-trust-tag {
    margin-inline: auto;
  }

  .dealership-form-card {
    padding: 30px 22px;
    max-width: 520px;
    margin-inline: auto;
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   3.11 GALLERY SECTION (#gallery) & LIGHTBOX MODAL
   Responsive Masonry Layout with Vanilla JS Lightbox
   -------------------------------------------------------------------------- */
.gallery-section {
  padding-block: var(--space-3xl);
  background-color: var(--bg);
  position: relative;
}

/* Responsive Masonry / Mixed-Size Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.gallery-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(43, 24, 16, 0.07);
  border: 1px solid var(--border-color);
  background-color: var(--bg-surface);
  transition: transform var(--transition-normal), 
              box-shadow var(--transition-normal),
              border-color var(--transition-fast);
}

/* Asymmetrical Masonry Spanning */
.gallery-item-wide {
  grid-column: span 2;
}

.gallery-item-tall {
  grid-row: span 2;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(43, 24, 16, 0.13);
  border-color: rgba(232, 135, 30, 0.4);
}

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

/* Hover Overlay with Caption & Zoom Indicator */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43, 24, 16, 0.05) 30%, rgba(43, 24, 16, 0.88) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.gallery-item:hover .gallery-overlay,
.gallery-item:focus-visible .gallery-overlay {
  opacity: 1;
}

.gallery-zoom-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition-bounce);
}

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

.gallery-item-title {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  color: #FFFFFF;
  line-height: 1.25;
  margin-bottom: 2px;
}

.gallery-item-cat {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: var(--fw-semibold);
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Below Gallery: Follow us on Instagram Link/Button */
.gallery-cta-wrapper {
  margin-top: var(--space-2xl);
  display: flex;
  justify-content: center;
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: var(--fw-semibold);
  text-decoration: none;
  /* Authentic Instagram Brand Gradient */
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 10px 28px rgba(220, 39, 67, 0.35);
  transition: transform var(--transition-fast), 
              box-shadow var(--transition-fast),
              filter var(--transition-fast);
}

.btn-instagram:hover {
  color: #FFFFFF;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 34px rgba(220, 39, 67, 0.48);
  filter: brightness(1.06);
}

.btn-instagram:active {
  transform: translateY(0) scale(0.98);
}

.instagram-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   3.12 FULLSCREEN LIGHTBOX MODAL (Vanilla JS)
   -------------------------------------------------------------------------- */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 9, 6, 0.93);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lightbox-container {
  position: relative;
  z-index: 1;
  max-width: 960px;
  width: 92%;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: lightboxPop 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes lightboxPop {
  0% {
    transform: scale(0.92);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  font-size: 34px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color var(--transition-fast), 
              transform var(--transition-fast);
  line-height: 1;
  padding: 0;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: rotate(90deg);
}

.lightbox-image-wrapper {
  width: 100%;
  max-height: 76vh;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.6);
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.lightbox-img {
  width: 100%;
  height: 100%;
  max-height: 76vh;
  object-fit: contain;
  display: block;
}

.lightbox-caption {
  margin-top: 16px;
  color: #FDF6EC;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: var(--fw-medium);
  text-align: center;
  max-width: 740px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

/* --------------------------------------------------------------------------
   3.13 GALLERY RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 230px;
  }

  .gallery-item-wide {
    grid-column: span 2;
  }

  .gallery-item-tall {
    grid-row: span 1;
  }
}

@media (max-width: 600px) {
  .gallery-section {
    padding-block: var(--space-2xl);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
    gap: var(--space-md);
  }

  .gallery-item-wide {
    grid-column: span 1;
  }

  .gallery-item-tall {
    grid-row: span 1;
  }

  .lightbox-close {
    top: -44px;
    right: 4px;
    width: 38px;
    height: 38px;
    font-size: 28px;
  }

  .lightbox-caption {
    font-size: 0.92rem;
    padding-inline: 10px;
  }
}

/* --------------------------------------------------------------------------
   3.14 TESTIMONIALS SECTION (#testimonials)
   Horizontal Scroll Carousel on Mobile, Responsive Grid on Desktop
   Cream Card Background (#FDF6EC) on Pure White Section Background (#FFFFFF)
   -------------------------------------------------------------------------- */
.testimonials-section {
  padding-block: var(--space-3xl);
  background-color: var(--bg-surface); /* Clean white background for contrast */
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  position: relative;
}

.testimonials-wrapper {
  position: relative;
  width: 100%;
}

/* 4-column Grid on Desktop */
.testimonials-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

/* Testimonial Card with Quote-mark Icon & Soft Shadow */
.testimonial-card {
  background-color: var(--bg); /* Cream card background on white section */
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 28px 22px;
  box-shadow: 0 6px 18px rgba(43, 24, 16, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition-fast), 
              box-shadow var(--transition-fast), 
              border-color var(--transition-fast);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(43, 24, 16, 0.09);
  border-color: rgba(232, 135, 30, 0.4);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.rating-stars {
  font-size: 1rem;
  letter-spacing: 2px;
  line-height: 1;
}

/* Decorative quote-mark icon */
.quote-icon {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 46px;
  line-height: 0.75;
  color: var(--primary);
  opacity: 0.75;
  font-weight: 900;
  user-select: none;
}

.testimonial-quote {
  font-family: var(--font-body);
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--text);
  font-style: italic;
  margin-bottom: 20px;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed rgba(92, 44, 29, 0.16);
}

.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headline);
  font-size: 1.05rem;
  font-weight: var(--fw-bold);
  flex-shrink: 0;
}

.author-details {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: var(--fw-bold);
  color: var(--secondary);
}

.author-city {
  font-size: 0.8rem;
  color: var(--primary-dark);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Mobile swipe hint */
.carousel-hint {
  display: none;
}

/* --------------------------------------------------------------------------
   3.15 TESTIMONIALS RESPONSIVE BREAKPOINTS (Mobile Horizontal Scroll Carousel)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .testimonials-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding-block: var(--space-2xl);
  }

  /* Horizontal scroll / carousel on mobile */
  .testimonials-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 10px 8px 18px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
  }

  .testimonials-container::-webkit-scrollbar {
    height: 4px;
  }

  .testimonials-container::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
  }

  .testimonial-card {
    flex: 0 0 85%;
    max-width: 320px;
    scroll-snap-align: center;
    padding: 24px 20px;
  }

  .carousel-hint {
    display: block;
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 8px;
    font-weight: var(--fw-medium);
  }
}

/* --------------------------------------------------------------------------
   3.16 CONTACT SECTION (#contact)
   Two-column Layout: Direct Channels + Quick Message Form
   -------------------------------------------------------------------------- */
.contact-section {
  padding-block: var(--space-3xl);
  background-color: var(--bg);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: var(--space-2xl);
  align-items: flex-start;
  margin-top: var(--space-xl);
}

.contact-info-card,
.contact-form-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 6px 24px rgba(43, 24, 16, 0.05);
}

.contact-card-title {
  font-family: var(--font-headline);
  font-size: 1.55rem;
  font-weight: var(--fw-bold);
  color: var(--secondary);
  margin-bottom: 6px;
}

.contact-card-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 24px;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 26px;
}

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

.contact-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(232, 135, 30, 0.12);
  border: 1px solid rgba(232, 135, 30, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.contact-item:hover .contact-icon-box {
  transform: scale(1.08);
}

.contact-icon-whatsapp {
  background: rgba(46, 125, 50, 0.12);
  border-color: rgba(46, 125, 50, 0.25);
}

.contact-icon-insta {
  background: rgba(220, 39, 67, 0.12);
  border-color: rgba(220, 39, 67, 0.25);
}

.contact-icon {
  font-size: 22px;
  line-height: 1;
}

.contact-item-content {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 0.78rem;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.contact-link {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: var(--fw-bold);
  color: var(--secondary);
  transition: color var(--transition-fast);
}

.contact-link:hover {
  color: var(--primary);
}

.contact-subtext {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* Google Maps Placeholder Embed */
.map-placeholder-container {
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px dashed rgba(92, 44, 29, 0.25);
  background-color: rgba(253, 246, 236, 0.6);
  padding: 16px;
  margin-top: 10px;
}

.map-placeholder-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.map-pin-icon {
  font-size: 24px;
  line-height: 1;
}

.map-info {
  display: flex;
  flex-direction: column;
}

.map-info strong {
  font-size: 0.92rem;
  color: var(--secondary);
}

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

.map-placeholder-frame {
  width: 100%;
  height: 130px;
  border-radius: 10px;
  background: linear-gradient(135deg, #EFE7DB 0%, #E3D7C5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
  border: 1px solid rgba(92, 44, 29, 0.1);
}

.map-overlay-message {
  font-size: 0.84rem;
  color: var(--text-muted);
  font-weight: var(--fw-medium);
  line-height: 1.45;
}

/* Contact Form Specifics */
.textarea-control {
  resize: vertical;
  min-height: 110px;
  line-height: 1.55;
}

.btn-contact-submit {
  width: 100%;
  padding: 14px 24px;
  background-color: var(--accent-green);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: var(--fw-bold);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  box-shadow: 0 8px 22px var(--accent-green-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
  transition: background-color var(--transition-fast), 
              transform var(--transition-fast), 
              box-shadow var(--transition-fast);
}

.btn-contact-submit:hover {
  background-color: var(--accent-green-hover);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 28px rgba(46, 125, 50, 0.45);
}

.btn-contact-submit:active {
  transform: translateY(0) scale(0.98);
}

/* --------------------------------------------------------------------------
   3.17 FOOTER SECTION
   Dark Maroon Background (#5C2C1D) with Cream Typography (#FDF6EC)
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--secondary);
  color: var(--bg);
  padding-top: var(--space-3xl);
  border-top: 4px solid var(--primary);
  position: relative;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-2xl);
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo-link {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  margin-bottom: 14px;
}

.footer-logo-devanagari {
  font-family: var(--font-headline);
  font-size: 2.1rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.1;
}

.footer-logo-english {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2px;
  line-height: 1;
}

.footer-logo-sub {
  font-size: 0.72rem;
  font-weight: var(--fw-semibold);
  color: #F6EDE0;
  letter-spacing: 3px;
  margin-top: 4px;
}

.footer-tagline {
  font-size: 0.92rem;
  color: rgba(253, 246, 236, 0.78);
  line-height: 1.65;
  max-width: 380px;
  margin-bottom: 0;
}

.footer-heading {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  color: #FFFFFF;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 8px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background: var(--primary);
  border-radius: var(--radius-full);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  color: rgba(253, 246, 236, 0.8);
  font-size: 0.94rem;
  text-decoration: none;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
  display: inline-block;
}

.footer-link:hover {
  color: var(--primary-light);
  padding-left: 4px;
}

.footer-social-col {
  display: flex;
  flex-direction: column;
}

.footer-social-desc {
  font-size: 0.9rem;
  color: rgba(253, 246, 236, 0.78);
  line-height: 1.55;
  margin-bottom: 18px;
}

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

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: var(--fw-semibold);
  text-decoration: none;
  color: #FFFFFF;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.social-btn:hover {
  color: #FFFFFF;
  transform: translateY(-2px);
}

.social-btn-insta {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 4px 14px rgba(220, 39, 67, 0.35);
}

.social-btn-wa {
  background-color: var(--accent-green);
  box-shadow: 0 4px 14px var(--accent-green-glow);
}

.footer-social-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Footer Bottom Copyright */
.footer-bottom {
  background-color: var(--secondary-dark);
  padding-block: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.86rem;
  color: rgba(253, 246, 236, 0.65);
}

.copyright-text,
.footer-made-text {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   3.18 CONTACT & FOOTER RESPONSIVE BREAKPOINTS (Mobile Centered)
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .contact-section {
    padding-block: var(--space-2xl);
  }

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

  .contact-info-card,
  .contact-form-card {
    padding: 28px 20px;
  }

  /* Centered on mobile */
  .footer-container {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    text-align: center;
  }

  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-tagline {
    margin-inline: auto;
  }

  .footer-social-links {
    justify-content: center;
  }

  .footer-bottom-container {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* --------------------------------------------------------------------------
   4. FLOATING WHATSAPP BUTTON (Fixed Bottom-Right, Scroll Triggered)
   -------------------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-green);
  color: #FFFFFF;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-whatsapp);
  cursor: pointer;
  text-decoration: none;

  /* Scroll visibility transition defaults: hidden initially */
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px) scale(0.85);
  transition: 
    opacity var(--transition-normal),
    visibility var(--transition-normal),
    transform var(--transition-bounce),
    box-shadow var(--transition-fast),
    background-color var(--transition-fast);
}

/* State when user has scrolled down */
.whatsapp-float.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Pulse animation ring for high click-through conversion */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: var(--radius-full);
  border: 2px solid var(--accent-green);
  opacity: 0.7;
  animation: whatsappPulse 2.2s infinite cubic-bezier(0.24, 0, 0.38, 1);
  pointer-events: none;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  70% {
    transform: scale(1.35);
    opacity: 0;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

.whatsapp-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: transform var(--transition-fast);
}

.whatsapp-icon {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* Hover & Active States */
.whatsapp-float:hover {
  background-color: var(--accent-green-hover);
  color: #FFFFFF;
  box-shadow: 0 14px 30px rgba(46, 125, 50, 0.45);
  transform: translateY(-4px) scale(1.05);
}

.whatsapp-float:hover .whatsapp-icon-wrapper {
  transform: rotate(-8deg) scale(1.08);
}

.whatsapp-float:active {
  transform: translateY(0) scale(0.96);
}

/* Tooltip on Hover */
.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  background: var(--secondary);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: var(--fw-medium);
  padding: 6px 14px;
  border-radius: var(--radius-md);
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  pointer-events: none;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent var(--secondary);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* --------------------------------------------------------------------------
   5. RESPONSIVE ADJUSTMENTS
   -------------------------------------------------------------------------- */
@media (max-width: 640px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-icon {
    width: 28px;
    height: 28px;
  }

  /* Keep mobile tooltip hidden or simplified to save screen space */
  .whatsapp-tooltip {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   6. SCROLL-TRIGGERED ANIMATIONS (Intersection Observer API)
   Subtle fade-in + slide-up, fast 250-380ms transitions, premium aesthetic
   -------------------------------------------------------------------------- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered Card Reveals for extra premium polish */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.32s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-stagger.is-revealed > * {
  opacity: 1;
  transform: translateY(0);
}

/* Subtle micro stagger delays (40ms steps) */
.reveal-stagger.is-revealed > *:nth-child(1) { transition-delay: 0.03s; }
.reveal-stagger.is-revealed > *:nth-child(2) { transition-delay: 0.07s; }
.reveal-stagger.is-revealed > *:nth-child(3) { transition-delay: 0.11s; }
.reveal-stagger.is-revealed > *:nth-child(4) { transition-delay: 0.15s; }
.reveal-stagger.is-revealed > *:nth-child(5) { transition-delay: 0.19s; }
.reveal-stagger.is-revealed > *:nth-child(6) { transition-delay: 0.23s; }
.reveal-stagger.is-revealed > *:nth-child(7) { transition-delay: 0.27s; }
.reveal-stagger.is-revealed > *:nth-child(8) { transition-delay: 0.31s; }

/* Accessibility: respect user preference for reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }

  .reveal-on-scroll,
  .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .btn:hover,
  .btn-primary:hover,
  .btn-secondary:hover,
  .btn-nav-order:hover,
  .btn-enquire:hover,
  .btn-dealership-submit:hover,
  .btn-contact-submit:hover,
  .product-card:hover {
    transform: none !important;
  }
}

/* --------------------------------------------------------------------------
   E-COMMERCE STYLES & CART DRAWER (SAHYADRI PREMIUM)
   -------------------------------------------------------------------------- */

/* Header Cart Button */
.nav-cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.95);
  border: 1.5px solid #E8D3C5;
  border-radius: 50%;
  color: #5C2C1D;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
  margin-right: 0.5rem;
}

.nav-cart-btn:hover {
  background: #FFF8EB;
  border-color: #E8871E;
  color: #B71C1C;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 135, 30, 0.2);
}

.nav-cart-icon {
  width: 22px;
  height: 22px;
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: linear-gradient(135deg, #D32F2F 0%, #B71C1C 100%);
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  border: 2px solid #FFFFFF;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cart-badge.bump {
  animation: badgeBounce 0.4s ease;
}

@keyframes badgeBounce {
  0% { transform: scale(1); }
  50% { transform: scale(1.4); }
  100% { transform: scale(1); }
}

/* Floating Cart Button */
.floating-cart-btn {
  position: fixed;
  bottom: 84px;
  right: 20px;
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #B71C1C 0%, #7B0707 100%);
  border: 2px solid #FCE570;
  border-radius: 50%;
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(123, 7, 7, 0.4);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-cart-btn:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 12px 28px rgba(123, 7, 7, 0.5);
  border-color: #FFFFFF;
}

.floating-cart-icon {
  width: 26px;
  height: 26px;
}

.floating-cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #E8871E;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.78rem;
  min-width: 22px;
  height: 22px;
  border: 2px solid #FFFFFF;
  border-radius: 11px;
}

/* Cart Drawer Backdrop */
.cart-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(43, 24, 16, 0.65);
  backdrop-filter: blur(4px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

/* Slide-out Cart Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 460px;
  height: 100%;
  background: #FFFDF9;
  z-index: 1060;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 32px rgba(43, 24, 16, 0.25);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

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

/* Cart Drawer Header */
.cart-drawer-header {
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, #7B0707 0%, #A50D0D 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #E5B236;
}

.cart-drawer-title-box {
  display: flex;
  flex-direction: column;
}

.cart-drawer-title {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}

.cart-drawer-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: #FFE082;
  font-weight: 500;
}

.cart-drawer-close {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  line-height: 1;
}

.cart-drawer-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

/* Free Delivery Bar */
.cart-shipping-notice {
  background: #FFF3E0;
  border-bottom: 1px solid #FFE0B2;
  padding: 0.75rem 1.25rem;
}

.shipping-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: #5C2C1D;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.4rem;
}

.shipping-bar-bg {
  width: 100%;
  height: 6px;
  background: #FFE0B2;
  border-radius: 3px;
  overflow: hidden;
}

.shipping-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #E8871E, #2E7D32);
  border-radius: 3px;
  transition: width 0.4s ease;
}

/* Cart Items Body */
.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Empty Cart State */
.cart-empty-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
  gap: 1rem;
  margin: auto;
}

.cart-empty-icon {
  font-size: 3.5rem;
  line-height: 1;
}

.cart-empty-title {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #5C2C1D;
}

.cart-empty-desc {
  font-size: 0.9rem;
  color: #7B6860;
  max-width: 260px;
}

.btn-browse-snacks {
  background: #E8871E;
  color: #FFFFFF;
  border: none;
  padding: 0.65rem 1.4rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-browse-snacks:hover {
  background: #D47413;
  transform: translateY(-2px);
}

/* Individual Cart Item */
.cart-item-card {
  display: flex;
  gap: 0.85rem;
  padding: 0.85rem;
  background: #FFFFFF;
  border: 1px solid #F0E2D8;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(43, 24, 16, 0.04);
  position: relative;
  transition: border-color 0.2s ease;
}

.cart-item-card:hover {
  border-color: #E8871E;
}

.cart-item-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: #FFF8EB;
  border-radius: 8px;
  padding: 4px;
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-item-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.cart-item-name {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #5C2C1D;
  line-height: 1.2;
  margin: 0;
}

.cart-item-weight {
  font-size: 0.78rem;
  color: #8C5819;
  font-weight: 600;
  background: #FFF3E0;
  padding: 1px 6px;
  border-radius: 4px;
  display: inline-block;
  margin-top: 2px;
}

.cart-item-remove {
  background: none;
  border: none;
  color: #A08C84;
  cursor: pointer;
  padding: 2px;
  font-size: 1rem;
  line-height: 1;
  transition: color 0.2s ease;
}

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

.cart-item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
}

.cart-item-price {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #B71C1C;
}

/* Quantity Controls in Drawer */
.cart-qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid #D8C6BA;
  border-radius: 20px;
  overflow: hidden;
  background: #FFFDF9;
}

.cart-qty-btn {
  background: none;
  border: none;
  width: 26px;
  height: 26px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #5C2C1D;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}

.cart-qty-btn:hover {
  background: #F4E8E0;
  color: #B71C1C;
}

.cart-qty-val {
  font-size: 0.85rem;
  font-weight: 700;
  min-width: 24px;
  text-align: center;
  color: #5C2C1D;
}

/* Cart Checkout Section (Footer of Drawer) */
.cart-drawer-footer {
  padding: 1rem 1.25rem 1.25rem;
  background: #FFFFFF;
  border-top: 1px solid #F0E2D8;
  box-shadow: 0 -4px 16px rgba(43, 24, 16, 0.05);
}

/* Collapsible Delivery Mini-Form */
.cart-delivery-box {
  background: #FFF8EB;
  border: 1px solid #FFE0B2;
  border-radius: 8px;
  padding: 0.75rem;
  margin-bottom: 0.85rem;
}

.cart-delivery-header {
  font-size: 0.85rem;
  font-weight: 700;
  color: #5C2C1D;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
}

.cart-input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.cart-input {
  width: 100%;
  padding: 0.45rem 0.65rem;
  font-size: 0.82rem;
  font-family: inherit;
  border: 1px solid #D8C6BA;
  border-radius: 6px;
  background: #FFFFFF;
  transition: border-color 0.2s ease;
}

.cart-input:focus {
  outline: none;
  border-color: #E8871E;
}

.cart-input.has-error {
  border-color: #D32F2F;
  background: #FFF5F5;
}

/* Bill Summary Breakdown */
.cart-bill-summary {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
  font-size: 0.88rem;
}

.bill-row {
  display: flex;
  justify-content: space-between;
  color: #6E5346;
}

.bill-row.total-row {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #5C2C1D;
  border-top: 1px dashed #E0D0C5;
  padding-top: 0.4rem;
  margin-top: 0.2rem;
}

.total-amount {
  color: #B71C1C;
  font-size: 1.25rem;
}

/* Drawer Action Buttons */
.cart-action-btn-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.btn-checkout-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  border: none;
  padding: 0.8rem;
  border-radius: 8px;
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  transition: all 0.25s ease;
}

.btn-checkout-wa:hover {
  background: linear-gradient(135deg, #20BA5A 0%, #0F7569 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
}

.btn-checkout-cod {
  background: #FFF8EB;
  border: 1.5px solid #E8871E;
  color: #9C5808;
  padding: 0.55rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-checkout-cod:hover {
  background: #FFECC7;
  color: #5C2C1D;
}

/* --------------------------------------------------------------------------
   PRODUCT CARD E-COMMERCE ENHANCEMENTS (Weight Selector & Add-To-Cart)
   -------------------------------------------------------------------------- */

.product-card {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border: 1px solid #F0E0D2;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(92, 44, 29, 0.12);
  border-color: #E8871E;
}

/* Product Tag Header on Card */
.product-badge-row {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
  pointer-events: none;
}

.badge-veg-icon {
  width: 18px;
  height: 18px;
  background: #FFFFFF;
  border: 1.5px solid #2E7D32;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.badge-veg-dot {
  width: 8px;
  height: 8px;
  background: #2E7D32;
  border-radius: 50%;
}

.badge-special {
  background: linear-gradient(135deg, #B71C1C 0%, #7B0707 100%);
  color: #FFF2A1;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 12px;
  border: 1px solid #FCE570;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Product Card Body */
.product-body {
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.6rem;
}

.product-title-group {
  display: flex;
  flex-direction: column;
}

.product-title-en {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #5C2C1D;
  line-height: 1.25;
  margin: 0;
}

.product-title-mr {
  font-family: 'Baloo 2', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #B71C1C;
  line-height: 1.2;
}

.product-short-desc {
  font-size: 0.82rem;
  color: #7B6860;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Weight Selection Pills */
.product-weight-selector {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0.2rem 0;
}

.weight-selector-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #8C5819;
  text-transform: uppercase;
  margin-right: 0.2rem;
}

.weight-pill {
  background: #FFF8EB;
  border: 1px solid #E8D5C8;
  color: #6E5346;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.weight-pill:hover {
  border-color: #E8871E;
  color: #B71C1C;
}

.weight-pill.active {
  background: #E8871E;
  border-color: #E8871E;
  color: #FFFFFF;
  box-shadow: 0 2px 6px rgba(232, 135, 30, 0.3);
}

/* Dynamic Pricing Display */
.product-pricing-box {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: auto;
}

.price-active {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #B71C1C;
}

.price-mrp {
  font-size: 0.85rem;
  color: #A08C84;
  text-decoration: line-through;
}

.price-discount-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: #2E7D32;
  background: #E8F5E9;
  padding: 1px 6px;
  border-radius: 4px;
}

/* Action Button Grid in Card */
.product-card-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  margin-top: 0.4rem;
}

.btn-add-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: #E8871E;
  color: #FFFFFF;
  border: none;
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  font-family: 'Baloo 2', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 3px 8px rgba(232, 135, 30, 0.25);
}

.btn-add-cart:hover {
  background: #D47413;
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(232, 135, 30, 0.35);
}

.btn-add-cart.btn-added {
  background: #2E7D32 !important;
  color: #FFFFFF !important;
  box-shadow: 0 3px 8px rgba(46, 125, 50, 0.3) !important;
}

.btn-quick-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #FFF8EB;
  border: 1.5px solid #25D366;
  border-radius: 8px;
  color: #25D366;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-quick-wa:hover {
  background: #25D366;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}

.toast-notification {
  background: #3E2723;
  color: #FFFFFF;
  border-left: 4px solid #E8871E;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  font-family: 'Baloo 2', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  animation: toastSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  pointer-events: auto;
}

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

.toast-notification.toast-out {
  animation: toastSlideDown 0.3s ease forwards;
}

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

@media (max-width: 480px) {
  .cart-drawer {
    max-width: 100%;
  }
  .cart-input-row {
    grid-template-columns: 1fr;
  }
  .floating-cart-btn {
    bottom: 80px;
    right: 16px;
    width: 52px;
    height: 52px;
  }
}

