/* ==========================================================================
   LEE FANCY CRACKERS — Production Design System & Visual Architecture
   Theme: Pure Crisp White Canvas with Electric Cyan (#00B4D8) & Festive Orange (#F7931E)
   Typography: 'Outfit' (Headings/Numbers) & 'Plus Jakarta Sans' (Body/UI)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand Primary Colors */
  --brand-cyan: #00B4D8;
  --brand-cyan-dark: #0077B6;
  --brand-cyan-deep: #03045E;
  --brand-cyan-light: #90E0EF;
  --brand-cyan-surface: #F0FBFD;
  --brand-cyan-border: rgba(0, 180, 216, 0.25);

  /* Brand Accent Colors */
  --brand-orange: #F7931E;
  --brand-orange-dark: #D97706;
  --brand-orange-surface: #FFF8F0;
  --brand-orange-border: rgba(247, 147, 30, 0.25);

  --brand-red: #E53935;
  --brand-red-dark: #C62828;
  --brand-red-surface: #FFEBEE;

  --brand-gold: #FFD700;
  --brand-gold-dark: #EAB308;
  --brand-gold-surface: #FEF9C3;

  --accent-green: #10B981;
  --accent-green-surface: #ECFDF5;

  /* Aliases for JavaScript Compatibility */
  --primary-orange: #F7931E;
  --primary-red: #E53935;
  --accent-gold: #F7931E;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Pure White Canvas System */
  --bg-canvas: #FFFFFF;
  --bg-surface: #FFFFFF;
  --bg-subtle: #F8FAFC;
  --bg-subtle-alt: #F1F5F9;
  --border-subtle: #E2E8F0;
  --border-strong: #CBD5E1;
  --border-color: #E2E8F0;

  /* Typography */
  --text-main: #0F172A;
  --text-body: #334155;
  --text-muted: #64748B;
  --text-dim: #94A3B8;

  /* Elevation Shadows */
  --shadow-xs: 0 1px 3px rgba(15, 23, 42, 0.05);
  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
  --shadow-cyan-glow: 0 8px 24px rgba(0, 180, 216, 0.22);
  --shadow-orange-glow: 0 8px 24px rgba(247, 147, 30, 0.25);

  /* Radii */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 9999px;

  /* Transitions */
  --ease-fast: 0.18s ease;
  --ease-base: 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Gradient Aliases */
  --gradient-fiery: linear-gradient(135deg, #00B4D8 0%, #0077B6 100%);
  --gradient-orange: linear-gradient(135deg, #F7931E 0%, #E07B0A 100%);
}

/* ==========================================================================
   RESET & FOUNDATIONS
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--bg-canvas);
  color: var(--text-body);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
}

#scrollFireworksCanvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 995 !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-main);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

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

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

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

/* Containers & Section Spacing */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 70px 0;
}

.section-padding-sm {
  padding: 44px 0;
}

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

/* Section Header Typography */
.section-header-modern {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 44px;
}

.section-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-cyan-surface);
  color: var(--brand-cyan-dark);
  border: 1px solid var(--brand-cyan-border);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.section-pill-tag.orange {
  background: var(--brand-orange-surface);
  color: var(--brand-orange-dark);
  border-color: var(--brand-orange-border);
}

.section-headline {
  font-size: clamp(26px, 3.8vw, 40px);
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 12px;
}

.section-subtext {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Accent Text Utilities */
.text-cyan { color: var(--brand-cyan); }
.text-orange { color: var(--brand-orange); }
.text-red { color: var(--brand-red); }
.text-gold { color: var(--brand-gold-dark); }
.text-fiery { color: var(--brand-cyan-dark); }

/* SVG Icons Helper */
.ui-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ==========================================================================
   STATUTORY NOTICE TOP RIBBON
   ========================================================================== */
.top-notice-ribbon {
  background: linear-gradient(90deg, #0077B6 0%, #00B4D8 50%, #0077B6 100%);
  color: #ffffff;
  padding: 8px 0;
  font-size: 12px;
  font-weight: 600;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
  z-index: 1010;
}

.ribbon-marquee {
  display: flex;
  white-space: nowrap;
  gap: 40px;
  animation: tickerScroll 36s linear infinite;
}

.ribbon-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   NAVIGATION BAR — Balanced, Centered, Prominent Logo Architecture
   ========================================================================== */
.site-navbar-wrap {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1.5px solid var(--border-subtle);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}

/* Prominent Transparent Logo & Brand Name */
.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform var(--ease-base);
}

.brand-logo-link:hover {
  transform: translateY(-1px);
}

.brand-transparent-logo {
  height: 52px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  display: block;
}

.brand-company-name {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--brand-navy);
  line-height: 1;
  white-space: nowrap;
}

/* Desktop Navigation Menu — Exactly in Center */
.desktop-nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  list-style: none;
  margin: 0 auto;
}

.nav-pill-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-body);
  border-radius: var(--radius-pill);
  transition: all var(--ease-fast);
  white-space: nowrap;
}

.nav-pill-link:hover {
  color: var(--brand-cyan-dark);
  background: var(--brand-cyan-surface);
}

.nav-pill-link.active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-cyan) 0%, var(--brand-cyan-dark) 100%);
  box-shadow: 0 4px 12px rgba(0, 180, 216, 0.28);
}

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

.btn-estimate-nav {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--brand-orange) 0%, #E07B0A 100%);
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 800;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-orange-glow);
  transition: all var(--ease-base);
  white-space: nowrap;
}

.btn-estimate-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(247, 147, 30, 0.4);
}

.cart-pill-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--brand-cyan-surface);
  border: 1.5px solid var(--brand-cyan-border);
  border-radius: 50%;
  color: var(--brand-cyan-dark);
  transition: all var(--ease-base);
}

.cart-pill-trigger:hover {
  background: var(--brand-cyan);
  color: #ffffff;
  border-color: var(--brand-cyan);
  box-shadow: var(--shadow-cyan-glow);
  transform: translateY(-2px);
}

.cart-badge-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  background: var(--brand-orange);
  color: #ffffff;
  font-size: 10.5px;
  font-weight: 900;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  border: 2px solid #ffffff;
}

.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--bg-subtle);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-main);
}

/* Mobile Slide-in Drawer */
.mobile-nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1999;
  pointer-events: none;
}

.mobile-nav-backdrop.active {
  display: block;
  pointer-events: auto;
}

.primary-nav-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  height: 100dvh;
  background: #ffffff;
  z-index: 2000;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  transform: translateX(105%);
  transition: transform var(--ease-base), visibility var(--ease-base);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  visibility: hidden;
  pointer-events: none;
}

.primary-nav-wrapper.active {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1.5px solid var(--border-subtle);
}

.mobile-drawer-logo {
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.mobile-drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--text-muted);
}

.mobile-drawer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.mobile-drawer-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  transition: background var(--ease-fast);
}

.mobile-drawer-link:hover, .mobile-drawer-link.active {
  background: var(--brand-cyan-surface);
  color: var(--brand-cyan-dark);
}

/* ==========================================================================
   BUTTONS & ACTION ELEMENTS
   ========================================================================== */
.btn-primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--brand-cyan) 0%, var(--brand-cyan-dark) 100%);
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 14.5px;
  font-weight: 800;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-cyan-glow);
  transition: all var(--ease-base);
  letter-spacing: 0.02em;
  text-align: center;
}

.btn-primary-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 180, 216, 0.38);
}

.btn-secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ffffff;
  color: var(--brand-cyan-dark);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 800;
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--brand-cyan);
  box-shadow: var(--shadow-xs);
  transition: all var(--ease-base);
  text-align: center;
}

.btn-secondary-action:hover {
  background: var(--brand-cyan-surface);
  transform: translateY(-2px);
  box-shadow: var(--shadow-cyan-glow);
}

.btn-fiery {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--brand-cyan) 0%, var(--brand-cyan-dark) 100%);
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 800;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  transition: all var(--ease-base);
  box-shadow: 0 4px 14px rgba(0, 180, 216, 0.3);
}

/* ==========================================================================
   HERO SECTION — Clean Asymmetrical Architecture
   ========================================================================== */
.hero-editorial-section {
  background: linear-gradient(135deg, #F0FBFD 0%, #FFFFFF 50%, #FFF8F0 100%);
  border-bottom: 1.5px solid var(--border-subtle);
  padding: 60px 0 70px;
  position: relative;
  overflow: hidden;
}

.hero-editorial-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 48px;
}

.hero-left-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1.5px solid var(--brand-cyan-border);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 800;
  color: var(--brand-cyan-dark);
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-headline-bold {
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 900;
  color: var(--text-main);
  line-height: 1.12;
  margin-bottom: 18px;
}

.hero-description-text {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 540px;
}

.hero-cta-button-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-highlights-strip {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1.5px solid var(--border-subtle);
  width: 100%;
}

.hero-highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-highlight-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-cyan-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-cyan-dark);
  flex-shrink: 0;
}

.hero-highlight-label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
}

.hero-right-visual {
  position: relative;
}

.hero-main-card-frame {
  background: #ffffff;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.hero-artwork-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
}

.hero-floating-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border: 1.5px solid var(--brand-orange-border);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}

.floating-badge-val {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--brand-orange);
  line-height: 1;
}

.floating-badge-txt {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--text-main);
  text-transform: uppercase;
  line-height: 1.3;
}

/* ==========================================================================
   CATEGORY DISCOVERY SECTION
   ========================================================================== */
.categories-showcase-section {
  background: var(--bg-canvas);
  padding: 70px 0;
}

.category-tiles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.category-discovery-card {
  background: #ffffff;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: all var(--ease-base);
  text-decoration: none;
  position: relative;
}

.category-discovery-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-cyan-border);
  box-shadow: var(--shadow-cyan-glow);
}

.category-artwork-wrap {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--brand-cyan-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 12px;
  transition: transform var(--ease-bounce);
}

.category-discovery-card:hover .category-artwork-wrap {
  transform: scale(1.08) rotate(4deg);
}

.category-artwork-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.category-card-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 6px;
}

.category-card-tagline {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.category-explore-pill {
  font-size: 12px;
  font-weight: 800;
  color: var(--brand-cyan-dark);
  background: var(--brand-cyan-surface);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  transition: all var(--ease-fast);
}

.category-discovery-card:hover .category-explore-pill {
  background: var(--brand-cyan);
  color: #ffffff;
}

/* ==========================================================================
   CURATED CELEBRATION BUNDLES SECTION
   ========================================================================== */
.bundles-showcase-section {
  background: var(--bg-subtle);
  border-top: 1.5px solid var(--border-subtle);
  border-bottom: 1.5px solid var(--border-subtle);
  padding: 70px 0;
}

.bundles-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.bundle-package-card {
  background: #ffffff;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all var(--ease-base);
  display: flex;
  flex-direction: column;
}

.bundle-package-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-orange-border);
  box-shadow: var(--shadow-orange-glow);
}

.bundle-price-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--brand-orange);
  line-height: 1;
  margin-bottom: 4px;
}

.bundle-package-name {
  font-family: 'Outfit', sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 16px;
}

.bundle-items-checklist {
  list-style: none;
  margin-bottom: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bundle-checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.4;
}

.bundle-check-bullet {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #E8F5E9;
  color: #16A34A;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ==========================================================================
   POPULAR FEATURED CRACKERS & PRODUCT CARDS GRID
   ========================================================================== */
.products-featured-section {
  padding: 70px 0;
}

.products-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.product-modern-card {
  background: #ffffff;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 18px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xs);
  transition: all var(--ease-base);
}

.product-modern-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-cyan-border);
  box-shadow: var(--shadow-cyan-glow);
}

.product-visual-wrapper {
  width: 100%;
  height: 180px;
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.product-visual-img {
  max-height: 150px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  transition: transform var(--ease-base);
}

.product-modern-card:hover .product-visual-img {
  transform: scale(1.06);
}

.product-discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--brand-red);
  color: #ffffff;
  font-size: 10.5px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 8px rgba(229, 57, 53, 0.3);
}

.product-code-pill {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--brand-cyan-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.product-card-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.3;
  margin-bottom: 2px;
}

.product-tamil-subtitle {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.product-price-breakdown-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: auto;
  margin-bottom: 14px;
  padding-top: 10px;
  border-top: 1px solid var(--border-subtle);
}

.product-price-final {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--brand-orange);
}

.product-price-mrp {
  font-size: 12.5px;
  text-decoration: line-through;
  color: var(--text-dim);
}

.product-card-actions-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==========================================================================
   FACTORY ASSURANCE (WHY TRUST SECTION)
   ========================================================================== */
.assurance-section {
  background: var(--bg-subtle);
  border-top: 1.5px solid var(--border-subtle);
  border-bottom: 1.5px solid var(--border-subtle);
  padding: 70px 0;
}

.assurance-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.assurance-feature-card {
  background: #ffffff;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: all var(--ease-base);
}

.assurance-feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-cyan-border);
  box-shadow: var(--shadow-cyan-glow);
}

.assurance-icon-wrap {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--brand-cyan-surface);
  border: 1.5px solid var(--brand-cyan-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  padding: 14px;
}

.assurance-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 10px;
}

.assurance-card-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ==========================================================================
   4-STEP ESTIMATION WORKFLOW TIMELINE
   ========================================================================== */
.workflow-section {
  padding: 70px 0;
}

.workflow-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.workflow-step-card {
  background: #ffffff;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: all var(--ease-base);
}

.workflow-step-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-orange-border);
  box-shadow: var(--shadow-orange-glow);
}

.step-circle-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-orange) 0%, #E07B0A 100%);
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-orange-glow);
}

.step-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
}

.step-card-text {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   PAYMENT & BANK HUB
   ========================================================================== */
.payment-hub-section {
  background: var(--bg-subtle);
  border-top: 1.5px solid var(--border-subtle);
  border-bottom: 1.5px solid var(--border-subtle);
  padding: 70px 0;
}

.payment-hub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.payment-hub-card {
  background: #ffffff;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-accordion-section {
  padding: 70px 0;
}

.faq-list-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-accordion-item {
  background: #ffffff;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--ease-fast);
}

.faq-accordion-item.active {
  border-color: var(--brand-cyan);
  box-shadow: var(--shadow-sm);
}

.faq-question-btn {
  width: 100%;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}

.faq-toggle-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--brand-cyan-dark);
  flex-shrink: 0;
  transition: transform var(--ease-base);
}

.faq-accordion-item.active .faq-toggle-icon {
  transform: rotate(45deg);
  background: var(--brand-cyan);
  color: #ffffff;
}

.faq-answer-panel {
  display: none;
  padding: 0 24px 20px;
  font-size: 14.5px;
  color: var(--text-body);
  line-height: 1.7;
  border-top: 1px solid var(--border-subtle);
  padding-top: 14px;
}

.faq-accordion-item.active .faq-answer-panel {
  display: block;
}

/* ==========================================================================
   ESTIMATE PAGE ARCHITECTURE & 2-COLUMN WORKSPACE
   ========================================================================== */
.category-quick-wrapper {
  position: sticky;
  top: 78px;
  z-index: 900;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1.5px solid var(--border-subtle);
  padding: 10px 0;
  backdrop-filter: blur(10px);
}

.category-quick-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: thin;
}

.cat-quick-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-subtle);
  border: 1.5px solid var(--border-subtle);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-body);
  white-space: nowrap;
  transition: all var(--ease-fast);
}

.cat-quick-btn:hover, .cat-quick-btn.active {
  background: var(--brand-cyan);
  border-color: var(--brand-cyan);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 180, 216, 0.25);
}

/* Estimate 2-Column Grid */
.estimate-page-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}

.catalog-main-col {
  min-width: 0;
}

.category-target-section {
  scroll-margin-top: 140px;
  margin-bottom: 32px;
}

/* Product Item Row in Estimate */
.product-row {
  display: grid;
  grid-template-columns: 60px 65px 1fr 100px 120px 130px;
  align-items: center;
  gap: 16px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--ease-fast);
}

.product-row:hover {
  background: var(--brand-cyan-surface);
}

.prod-thumb-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  padding: 3px;
  cursor: pointer;
  display: block;
}

/* Compact Quantity Stepper */
.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  background: #ffffff;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}

.qty-btn {
  width: 32px;
  height: 32px;
  background: var(--bg-subtle);
  border: none;
  font-size: 16px;
  font-weight: 900;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--ease-fast);
}

.qty-btn:hover {
  background: var(--brand-cyan);
  color: #ffffff;
}

.qty-input {
  width: 44px;
  height: 32px;
  border: none;
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--text-main);
  outline: none;
}

/* Quantity Pill for Products Catalog */
.qty-control-pill {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--brand-cyan);
  border-radius: var(--radius-pill);
  background: #ffffff;
  overflow: hidden;
  padding: 2px;
}

.qty-pill-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand-cyan-surface);
  color: var(--brand-cyan-dark);
  font-weight: 900;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-pill-btn:hover {
  background: var(--brand-cyan);
  color: #ffffff;
}

.qty-pill-val {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--text-main);
  padding: 0 10px;
}

/* Sticky Live Sidebox */
.estimate-sidebox-col {
  position: sticky;
  top: 140px;
}

.sidebox-card {
  background: #ffffff;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.sidebox-header {
  background: linear-gradient(135deg, #03045E 0%, #0077B6 100%);
  color: #ffffff;
  padding: 16px 20px;
}

.sidebox-items-scroll {
  max-height: 220px;
  overflow-y: auto;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border-subtle);
}

.sidebox-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  padding: 6px 0;
  border-bottom: 1px dashed var(--border-subtle);
}

/* Sticky Bottom Order Bar on Products Page */
.products-sticky-order-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-top: 2px solid var(--brand-cyan);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.12);
  padding: 14px 0;
  z-index: 950;
}

.products-sticky-order-bar.visible {
  display: block;
}

.products-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.products-bar-meta {
  display: flex;
  align-items: center;
  gap: 24px;
}

.products-bar-stat-label {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-muted);
}

.products-bar-stat-val {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--text-main);
}

.products-bar-stat-val.savings {
  color: var(--accent-green);
}

.products-bar-stat-val.net {
  color: var(--brand-orange);
  font-size: 20px;
  font-weight: 900;
}

/* ==========================================================================
   FOOTER — Multi-tier High-Contrast Architecture
   ========================================================================== */
.site-footer-modern {
  background: #0B132B;
  color: #ffffff;
  padding: 70px 0 0;
  position: relative;
}

.site-footer-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-cyan) 0%, var(--brand-orange) 50%, var(--brand-gold) 100%);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-prominent {
  height: 54px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  margin-bottom: 18px;
  display: block;
}

.footer-company-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-column-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 900;
  color: var(--brand-orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

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

.footer-nav-item a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--ease-fast);
}

.footer-nav-item a:hover {
  color: var(--brand-cyan-light);
}

.footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
}

.footer-contact-row a {
  color: #ffffff;
  font-weight: 700;
}

.footer-contact-row a:hover {
  color: var(--brand-cyan-light);
}

.footer-statutory-notice-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 30px 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.footer-copyright-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 12px;
}

/* ==========================================================================
   MODALS & POPUPS
   ========================================================================== */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-backdrop.active {
  display: flex;
}

.modal-card-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 32px;
  width: 100%;
  max-width: 600px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: var(--bg-subtle);
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
}

.modal-close-btn:hover {
  background: var(--brand-red);
  color: #ffffff;
}

/* ==========================================================================
   FLOATING ACTION BUTTONS
   ========================================================================== */
.floating-actions-container {
  position: fixed;
  right: 20px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1050;
  pointer-events: auto;
}

.floating-whatsapp-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 800;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: all var(--ease-base);
}

.floating-whatsapp-pill:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

.floating-pricelist-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-cyan-deep);
  color: #ffffff;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  font-family: 'Outfit', sans-serif;
  font-size: 12.5px;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
  transition: all var(--ease-base);
}

/* ==========================================================================
   FRONTEND ANIMATIONS & MICRO-INTERACTIONS SUITE
   ========================================================================== */

/* Keyframe Animations */
@keyframes floatGently {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes pulseGlowCyan {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 180, 216, 0.3); }
  50% { box-shadow: 0 0 0 10px rgba(0, 180, 216, 0); }
}

@keyframes pulseGlowOrange {
  0%, 100% { box-shadow: 0 0 0 0 rgba(247, 147, 30, 0.3); }
  50% { box-shadow: 0 0 0 10px rgba(247, 147, 30, 0); }
}

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

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

.val-pop {
  animation: copySuccessPop 0.28s ease;
}

@keyframes iconWiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-6deg); }
  75% { transform: rotate(6deg); }
}

/* Scroll Reveal System (Single Observer) */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

.reveal-scale {
  opacity: 0;
  transform: scale(0.96) translateY(14px);
  transition: opacity 0.48s cubic-bezier(0.16, 1, 0.3, 1), transform 0.48s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

/* Stagger Delays for Grid Children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

.reveal-stagger > *:nth-child(1) { transition-delay: 0.04s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.09s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.14s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.19s; }
.reveal-stagger > *:nth-child(5) { transition-delay: 0.24s; }
.reveal-stagger > *:nth-child(6) { transition-delay: 0.29s; }
.reveal-stagger > *:nth-child(7) { transition-delay: 0.34s; }
.reveal-stagger > *:nth-child(8) { transition-delay: 0.39s; }
.reveal-stagger > *:nth-child(n+9) { transition-delay: 0.44s; }

/* Enhanced Card Transitions & Hover Micro-Interactions */
.product-modern-card,
.bundle-package-card,
.assurance-feature-card,
.workflow-step-card,
.payment-hub-card,
.contact-info-card {
  transition: transform 0.26s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.26s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.26s ease;
}

.product-modern-card:hover,
.bundle-package-card:hover,
.payment-hub-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(0, 180, 216, 0.12);
  border-color: var(--brand-cyan-border);
}

.assurance-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.assurance-feature-card:hover .assurance-icon-wrap {
  transform: scale(1.08) rotate(3deg);
  transition: transform 0.28s var(--ease-bounce);
}

.workflow-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(247, 147, 30, 0.12);
}

.workflow-step-card:hover .step-circle-number {
  transform: scale(1.1);
  transition: transform 0.28s var(--ease-bounce);
}

/* Button & Interactive Element Feedback */
.btn-primary-action,
.btn-secondary-action,
.btn-estimate-nav {
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn-primary-action:hover,
.btn-estimate-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 180, 216, 0.32);
}

.btn-primary-action:active,
.btn-secondary-action:active,
.btn-estimate-nav:active {
  transform: scale(0.97) translateY(0);
}

.qty-pill-btn:active,
.qty-btn:active {
  transform: scale(0.88);
  transition: transform 0.1s ease;
}

/* Category Filter Button Hover/Active Ripple */
.cat-quick-btn {
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.cat-quick-btn:hover:not(.active) {
  transform: translateY(-2px);
  border-color: var(--brand-cyan);
}

.cat-quick-btn:active {
  transform: scale(0.96);
}

/* Floating Action Pills Subtle Breath */
.floating-whatsapp-pill,
.floating-estimate-pill {
  animation: floatGently 4s ease-in-out infinite;
}

.floating-whatsapp-pill:hover,
.floating-estimate-pill:hover {
  animation-play-state: paused;
  transform: translateY(-3px) scale(1.03);
}

/* Form Control Focus Transition */
.form-control,
input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-control:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
textarea:focus {
  border-color: var(--brand-cyan) !important;
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.18) !important;
}

/* Copy Button Success State */
.copy-btn-success {
  animation: copySuccessPop 0.35s ease forwards;
  color: var(--accent-green) !important;
}

/* Reduced Motion Mode */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal,
  .reveal-scale,
  .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-editorial-grid { grid-template-columns: 1fr; gap: 40px; }
  .category-tiles-grid { grid-template-columns: repeat(3, 1fr); }
  .workflow-steps-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .payment-hub-grid { grid-template-columns: 1fr; gap: 24px; }
  .estimate-page-grid { grid-template-columns: 1fr; }
  .estimate-sidebox-col { position: static; margin-top: 24px; }
  .footer-top-grid { grid-template-columns: 1fr 1fr; }
  .desktop-nav-menu, .btn-estimate-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .brand-transparent-logo { height: 42px; max-width: 130px; }
  .brand-company-name { font-size: 16px; }
}

@media (max-width: 768px) {
  /* Change 1: Home Trust / Benefits Strip (2 items in row 1, 3rd centered below) */
  .hero-highlights-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 12px;
    align-items: start;
    padding-top: 20px;
  }
  .hero-highlights-strip .hero-highlight-item:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
  }
  .hero-highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .hero-highlight-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
  }
  .hero-highlight-label {
    font-size: 11.5px;
    line-height: 1.3;
  }

  /* Change 2: Home repeated cards 2 per row */
  .category-tiles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .bundles-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .bundle-package-card {
    padding: 14px 10px;
  }
  .bundle-price-tag {
    font-size: 18px;
  }
  .bundle-package-name {
    font-size: 13px;
    min-height: 32px;
  }
  .bundle-checklist-item {
    font-size: 11px;
    gap: 6px;
  }
  .bundle-package-card .btn-primary-action {
    padding: 8px 6px;
    font-size: 11.5px;
  }

  /* Change 2 & 3: Products Catalog & Spotlight Cards (2 per row) */
  .products-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .product-modern-card {
    padding: 10px 8px;
  }
  .product-visual-wrapper {
    height: 120px;
    margin-bottom: 8px;
  }
  .product-visual-img {
    max-height: 95px;
  }
  .product-discount-badge {
    top: 6px;
    left: 6px;
    font-size: 9.5px;
    padding: 2px 6px;
  }
  .product-code-pill {
    font-size: 9.5px;
  }
  .product-card-heading {
    font-size: 12.5px;
    line-height: 1.25;
    min-height: 32px;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .product-tamil-subtitle {
    font-size: 10.5px;
    margin-bottom: 4px;
  }
  .product-price-breakdown-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
    margin-bottom: 8px;
  }
  .product-price-final {
    font-size: 14px;
  }
  .product-price-mrp {
    font-size: 10.5px;
  }
  .product-card-actions-row {
    flex-direction: column;
    gap: 5px;
    width: 100%;
  }
  .product-card-actions-row .btn-secondary-action,
  .product-card-actions-row .btn-primary-action,
  .product-card-actions-row .product-action-wrapper {
    width: 100%;
    padding: 7px 4px;
    font-size: 11px;
    text-align: center;
    justify-content: center;
  }
  .qty-control-pill {
    padding: 2px 6px;
    height: 30px;
  }

  /* Change 2: Verified Quality Standards (2 in row 1, 3rd centered below) */
  .assurance-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .assurance-cards-grid .assurance-feature-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 85%;
    justify-self: center;
    width: 100%;
  }
  .assurance-feature-card {
    padding: 16px 12px;
  }
  .assurance-card-title {
    font-size: 14px;
  }
  .assurance-card-text {
    font-size: 11.5px;
    line-height: 1.45;
  }

  /* Change 2: How It Works (2x2 grid) */
  .workflow-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .workflow-step-card {
    padding: 16px 10px;
  }
  .step-circle-number {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }
  .step-card-title {
    font-size: 13.5px;
  }
  .step-card-text {
    font-size: 11.5px;
    line-height: 1.45;
  }

  /* Change 4: Estimate Page (2 cards per row on mobile) */
  .estimate-category-items-wrap {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    overflow: visible !important;
  }
  .product-row {
    display: flex !important;
    flex-direction: column !important;
    background: #ffffff !important;
    border: 1.5px solid var(--border-subtle) !important;
    border-radius: var(--radius-md) !important;
    padding: 10px 8px !important;
    box-shadow: var(--shadow-xs) !important;
    gap: 5px !important;
    height: 100% !important;
    box-sizing: border-box !important;
  }
  .product-row .prod-thumb-img {
    width: 100% !important;
    height: 90px !important;
    object-fit: contain !important;
    margin: 0 auto 4px auto !important;
  }
  .product-row .qty-control {
    width: 100% !important;
    justify-content: space-between !important;
    margin-top: auto !important;
  }
  .product-row .qty-btn {
    width: 28px !important;
    height: 28px !important;
  }
  .product-row input[type="number"] {
    width: 36px !important;
    height: 28px !important;
    font-size: 13px !important;
  }

  /* Change 5: Contact Page Cards (2 per row on mobile, 3rd centered) */
  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    margin-bottom: 32px !important;
  }
  .contact-cards-grid .contact-info-card:nth-child(3) {
    grid-column: 1 / -1 !important;
    max-width: 85% !important;
    margin: 0 auto !important;
    width: 100% !important;
  }
  .contact-info-card {
    padding: 16px 12px !important;
  }
  .contact-info-card h3 {
    font-size: 15px !important;
    margin-bottom: 6px !important;
  }
  .contact-info-card p {
    font-size: 12px !important;
    line-height: 1.45 !important;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .brand-logo-link {
    gap: 8px;
  }
  .brand-transparent-logo {
    height: 36px;
    max-width: 100px;
  }
  .brand-company-name {
    font-size: 13px;
  }
  .category-tiles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .assurance-cards-grid .assurance-feature-card:nth-child(3),
  .contact-cards-grid .contact-info-card:nth-child(3) {
    max-width: 100% !important;
  }
}

@media (max-width: 360px) {
  .brand-logo-link {
    gap: 6px;
  }
  .brand-transparent-logo {
    height: 30px;
    max-width: 75px;
  }
  .brand-company-name {
    font-size: 11px;
  }
  .hero-highlights-strip {
    gap: 12px 8px;
  }
  .hero-highlight-label {
    font-size: 10.5px;
  }
}