/* ===== BR COTTFAB — Main Stylesheet ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:wght@400;500;600&display=swap');

:root {
  --brand-red:        #C0392B;
  --brand-red-dark:   #96281B;
  --brand-red-light:  #E74C3C;
  --accent-orange:    #E67E22;
  --accent-gold:      #F39C12;
  --accent-green:     #27AE60;
  --accent-blue:      #2980B9;
  --accent-purple:    #8E44AD;
  --bg-white:         #FFFFFF;
  --bg-light:         #F8F6F4;
  --bg-section:       #F2EEE9;
  --text-dark:        #1A1A2E;
  --text-body:        #3D3D3D;
  --text-muted:       #7F8C8D;
  --border-light:     #E8E0D8;
  --font-heading:     'Libre Baskerville', Georgia, serif;
  --font-body:        'Lora', Georgia, serif;
  --font-accent:      'EB Garamond', Georgia, serif;
  --section-py:       100px;
  --container:        1280px;
  --border-radius:    12px;
  --border-radius-lg: 20px;
  --shadow-sm:        0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:        0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:        0 20px 60px rgba(0,0,0,0.14);
  --shadow-red:       0 8px 32px rgba(192,57,43,0.25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text-body); background: var(--bg-white); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== SCROLL PROGRESS ===== */
#scroll-progress {
  position: fixed; top: 0; left: 0; width: 0; height: 5px; z-index: 10000;
  background: linear-gradient(90deg, #C0392B 0%, #F39C12 50%, #E74C3C 100%);
  box-shadow: 0 0 12px rgba(192,57,43,0.85), 0 0 4px rgba(243,156,18,0.7);
  transition: width 0.1s linear;
  border-radius: 0 3px 3px 0;
}

/* ===== CONTAINER ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: var(--border-radius); font-family: var(--font-body); font-size: 15px; font-weight: 600; cursor: pointer; border: 2px solid transparent; transition: all 0.3s ease; text-decoration: none; }
.btn-primary { background: var(--brand-red); color: #fff; border-color: var(--brand-red); }
.btn-primary:hover { background: var(--brand-red-dark); border-color: var(--brand-red-dark); transform: translateY(-2px); box-shadow: var(--shadow-red); }
.btn-outline { background: transparent; color: var(--brand-red); border-color: var(--brand-red); }
.btn-outline:hover { background: var(--brand-red); color: #fff; transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--brand-red); border-color: #fff; }
.btn-white:hover { background: transparent; color: #fff; }
.btn-sm { padding: 10px 22px; font-size: 13px; }
.btn-pulse { animation: pulse-btn 2.5s infinite; }
@keyframes pulse-btn { 0%,100%{box-shadow:0 0 0 0 rgba(192,57,43,0.4)} 50%{box-shadow:0 0 0 10px rgba(192,57,43,0)} }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-label { display: inline-flex; align-items: center; gap: 12px; font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 18px; }
.section-label::before, .section-label::after { content: ''; width: 28px; height: 1px; background: var(--accent-gold); flex-shrink: 0; }
.section-title { font-family: var(--font-heading); font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 700; color: var(--text-dark); margin-bottom: 16px; line-height: 1.15; }
.section-subtitle { font-size: 17px; color: var(--text-muted); max-width: 560px; margin: 0 auto; line-height: 1.8; }

/* ===== TOP BAR ===== */
.top-bar { background: var(--brand-red); color: #fff; font-size: 13px; padding: 8px 0; }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.top-bar-left { display: flex; gap: 24px; align-items: center; }
.top-bar-left a,.top-bar-right a { color: #fff; display: flex; align-items: center; gap: 6px; opacity: 0.9; transition: opacity 0.2s; }
.top-bar-left a:hover,.top-bar-right a:hover { opacity: 1; }
.top-bar-right { display: flex; gap: 12px; align-items: center; }
.top-bar-tagline { font-size: 11.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.92); opacity: 0.9; white-space: nowrap; }

/* ===== MAIN HEADER — Polished ===== */
.main-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
  animation: slideDown 0.5s cubic-bezier(0.16,1,0.3,1) both;
}
/* Red accent line at top */
.main-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-red) 0%, var(--accent-gold) 50%, var(--brand-red) 100%);
  background-size: 200% 100%;
  animation: headerAccentSlide 4s linear infinite;
}
@keyframes headerAccentSlide { 0%{background-position:0% 0%} 100%{background-position:200% 0%} }
@keyframes slideDown { from{transform:translateY(-100%);opacity:0} to{transform:translateY(0);opacity:1} }
.main-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  border-bottom-color: var(--border-light);
  background: rgba(255,255,255,0.99);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 32px; }
.logo img { height: 60px; width: auto; transition: transform 0.3s, opacity 0.3s; }
.logo:hover img { transform: scale(1.04); opacity: 0.9; }

/* Nav */
.main-nav { display: flex; gap: 22px; align-items: center; }
.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--brand-red);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.16,1,0.3,1);
}
.main-nav a:hover { color: var(--brand-red); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--brand-red); font-weight: 600; }

/* Header actions */
.header-actions { display: flex; gap: 10px; align-items: center; }
.header-actions .btn {
  padding: 10px 22px;
  font-size: 14px;
  border-radius: 8px;
  font-weight: 600;
}

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; border-radius: 6px; transition: background 0.2s; }
.hamburger:hover { background: var(--bg-light); }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: all 0.3s; }

/* Mobile nav */
.mobile-nav {
  position: fixed; top: 0; right: -100%;
  width: min(320px, 85vw); height: 100vh;
  background: #fff; z-index: 1100;
  padding: 0 0 32px;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-lg);
  transition: right 0.35s cubic-bezier(0.16,1,0.3,1);
  overflow-y: auto;
}
.mobile-nav.open { right: 0; }
/* Mobile nav header band */
.mobile-nav::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-red), var(--accent-gold));
  flex-shrink: 0;
}
.mobile-nav a {
  font-size: 16px; font-weight: 600;
  color: var(--text-dark);
  padding: 16px 32px;
  border-bottom: 1px solid var(--bg-light);
  transition: color 0.2s, background 0.2s, padding-left 0.2s;
  display: flex; align-items: center; gap: 10px;
}
.mobile-nav a:hover { color: var(--brand-red); background: var(--bg-light); padding-left: 38px; }
.mobile-nav a:first-of-type { margin-top: 56px; }
.mobile-nav .btn { margin: 20px 32px 0; text-align: center; justify-content: center; }
.mobile-nav-close {
  position: absolute; top: 16px; right: 20px;
  background: var(--bg-light); border: none;
  font-size: 18px; cursor: pointer;
  color: var(--text-dark);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.mobile-nav-close:hover { background: var(--border-light); }
.mobile-nav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 1050; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.mobile-nav-overlay.active { opacity: 1; pointer-events: all; }

/* ===== HERO v2 — Modern Split Layout ===== */
.hero-v2 {
  display: grid;
  grid-template-columns: 55% 45%;
  grid-template-rows: 100vh;
  min-height: 640px;
  position: relative;
  overflow: hidden;
}

/* LEFT PANEL */
.hero-v2-left {
  background: #0F0F1E;
  display: flex;
  align-items: center;
  padding: 60px 60px 40px;
  position: relative;
  z-index: 2;
}
.hero-v2-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(192,57,43,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 100% 0%, rgba(142,68,173,0.12) 0%, transparent 60%);
  pointer-events: none;
}
/* Subtle grid lines */
.hero-v2-left::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero-v2-inner { position: relative; z-index: 2; max-width: 560px; }

/* Tag */
.hero-v2-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(192,57,43,0.15);
  border: 1px solid rgba(192,57,43,0.35);
  color: #F39C12;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  animation: heroFadeUp 0.5s 0s both;
}
.hero-v2-dot {
  width: 7px; height: 7px;
  background: #C0392B;
  border-radius: 50%;
  animation: dotPulse 2s infinite;
}
@keyframes dotPulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* Title */
.hero-v2-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.hv2-line { display: block; overflow: hidden; }
.hv2-line1 { animation: heroFadeUp 0.6s 0.1s both; }
.hv2-line2 { animation: heroFadeUp 0.6s 0.2s both; }
.hv2-line3 { animation: heroFadeUp 0.6s 0.3s both; }
.hero-v2-title em {
  font-style: normal;
  color: var(--brand-red);
  position: relative;
}
.hero-v2-title em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brand-red);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: underlineIn 0.6s 1.1s forwards;
}
@keyframes underlineIn { to { transform: scaleX(1); } }

/* Subtext */
.hero-v2-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 460px;
  animation: heroFadeUp 0.6s 0.35s both;
}

/* Buttons */
.hero-v2-btns {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
  animation: heroFadeUp 0.6s 0.45s both;
}
.hero-v2-btn-main {
  background: var(--brand-red);
  color: #fff;
  border: none;
  padding: 16px 32px;
  border-radius: var(--border-radius);
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  box-shadow: 0 8px 28px rgba(192,57,43,0.4);
}
.hero-v2-btn-main:hover { background: var(--brand-red-dark); transform: translateY(-2px); box-shadow: 0 14px 36px rgba(192,57,43,0.5); }
.hero-v2-btn-ghost {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  font-weight: 600;
  border-bottom: 2px solid rgba(255,255,255,0.3);
  padding-bottom: 2px;
  transition: all 0.2s;
}
.hero-v2-btn-ghost:hover { color: #fff; border-bottom-color: #fff; }

/* Stats row */
.hero-v2-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  animation: heroFadeUp 0.6s 0.55s both;
}
.hv2-stat { display: flex; flex-direction: column; gap: 3px; }
.hv2-stat-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.hv2-stat-lbl { font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.45); letter-spacing: 0.06em; text-transform: uppercase; }
.hv2-stat-div { width: 1px; height: 36px; background: rgba(255,255,255,0.12); }

/* RIGHT PANEL */
.hero-v2-right {
  position: relative;
  overflow: hidden;
  background: #111128;
  height: 100vh; /* explicit height so absolutely-positioned mosaic resolves bottom:0 */
}

/* Mosaic fabric grid — fills entire panel */
.hero-v2-mosaic {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(9, 1fr);
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
}
.mosaic-cell {
  background: var(--mc);
  opacity: 1;
  transition: filter 0.3s, transform 0.3s;
  position: relative;
  animation: mosaicFadeIn 0.8s 0s both;
}
.mosaic-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
  transition: background 0.3s;
}
.mosaic-cell:hover { z-index: 2; }
.mosaic-cell:hover::after { background: rgba(0,0,0,0); }
.mosaic-cell:hover { filter: brightness(1.25); transform: scale(1.05); }
@keyframes mosaicFadeIn { from{opacity:0} to{opacity:1} }

/* Dark overlay on right for depth */
.hero-v2-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,15,30,0.55) 0%, rgba(15,15,30,0.15) 60%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

/* Floating brand card */
.hero-v2-card {
  position: absolute;
  bottom: 100px;
  left: 32px;
  right: 32px;
  background: rgba(15,15,30,0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 20px 24px;
  z-index: 4;
  animation: heroFadeUp 0.8s 1.1s both;
}
.hv2-card-logo { margin-bottom: 8px; }
.hv2-card-tagline {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Swatch strip */
.hero-v2-swatch-strip {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  height: 6px;
  z-index: 5;
}
.hv2-swatch {
  flex: 1;
  transition: flex 0.3s;
}
.hv2-swatch:hover { flex: 3; }

/* Scroll cue */
.hero-v2-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heroFadeUp 0.8s 1.3s both, bounceY 2.5s 2s infinite;
  transition: background 0.2s;
}
.hero-v2-scroll:hover { background: rgba(192,57,43,0.4); }
@keyframes bounceY { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* Shared entrance animation */
@keyframes heroFadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-v2 { grid-template-columns: 1fr; }
  .hero-v2-right { display: none; }
  .hero-v2-left { padding: 120px 32px 80px; min-height: 100vh; justify-content: flex-start; }
  .hero-v2-inner { max-width: 100%; }
  .hero-v2-stats { gap: 16px; flex-wrap: wrap; }
}
@media (max-width: 640px) {
  .hero-v2-title { font-size: 2.4rem; }
  .hero-v2-left { padding: 100px 24px 64px; }
  .hero-v2-btns { flex-direction: column; align-items: flex-start; }
  .hero-v2-stats { gap: 12px; }
  .hv2-stat-num { font-size: 1.3rem; }
}

/* ===== MARQUEE ===== */
.marquee-section { background: var(--brand-red); padding: 16px 0; overflow: hidden; }
.marquee-track { display: flex; gap: 0; white-space: nowrap; animation: marquee 30s linear infinite; }
.marquee-track span { font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; padding: 0 24px; }

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

/* ===== ABOUT SNAPSHOT ===== */
/* ===== ABOUT SNAPSHOT — PREMIUM SPLIT PANEL ===== */
.about-snapshot { padding: 0; background: #0a0a18; overflow: hidden; }
.about-split { display: grid; grid-template-columns: 55% 45%; min-height: 620px; }
.about-split-image { position: relative; overflow: hidden; }
.about-split-image img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.7); transition: transform 7s ease; }
.about-split-image:hover img { transform: scale(1.04); }
.about-image-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,10,24,0.55) 0%, rgba(192,57,43,0.12) 100%); }
.about-image-badge { position: absolute; bottom: 32px; left: 32px; display: flex; gap: 10px; }
.about-img-tag { background: rgba(255,255,255,0.1); backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,0.18); color: #fff; padding: 10px 18px; border-radius: 8px; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.about-split-content { padding: 80px 64px 80px 72px; display: flex; flex-direction: column; justify-content: center; position: relative; }
.about-split-content::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: linear-gradient(180deg, transparent 0%, #C0392B 30%, #F39C12 70%, transparent 100%); }
.one-india-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(192,57,43,0.12); border: 1px solid rgba(192,57,43,0.35); color: #e06050; padding: 8px 20px; border-radius: 50px; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 24px; width: fit-content; }
.one-india-badge svg { color: #F39C12; }
.about-split-content h2 { font-family: var(--font-heading); font-size: clamp(2rem, 3vw, 3rem); font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 0; }
.about-split-content h2 em { font-style: normal; color: #C0392B; }
.about-divider { width: 48px; height: 2px; background: linear-gradient(90deg, #C0392B, #F39C12); margin: 24px 0; border-radius: 2px; }
.about-split-content p { color: rgba(255,255,255,0.6); line-height: 1.85; margin-bottom: 14px; font-size: 17px; }
.about-metrics { display: flex; align-items: center; margin: 32px 0 40px; }
.about-metric { text-align: center; padding: 0 24px; }
.about-metric:first-child { padding-left: 0; }
.about-metric-n { font-family: var(--font-heading); font-size: 2.1rem; font-weight: 800; color: #fff; line-height: 1; }
.about-metric-l { font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.38); text-transform: uppercase; letter-spacing: 0.12em; margin-top: 5px; }
.about-metric-sep { width: 1px; height: 44px; background: rgba(255,255,255,0.1); flex-shrink: 0; }

/* ===== PRODUCT CATEGORIES ===== */
.categories-section { padding: 48px 0; background: var(--bg-light); }
.categories-section .section-header { margin-bottom: 28px; }
.categories-section .section-title { font-size: 1.7rem; }
.categories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.category-card { position: relative; background: #fff; border-radius: var(--border-radius); padding: 20px 20px 16px; border: 1px solid var(--border-light); cursor: pointer; transition: all 0.3s cubic-bezier(0.16,1,0.3,1); text-decoration: none; color: inherit; overflow: hidden; display: flex; align-items: center; gap: 16px; }
.category-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--brand-red), var(--accent-gold)); transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease; }
.category-card:hover::before { transform: scaleX(1); }
.category-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.09); border-color: transparent; }
.cat-num { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 800; color: rgba(192,57,43,0.12); line-height: 1; flex-shrink: 0; transition: color 0.3s; min-width: 32px; }
.category-card:hover .cat-num { color: rgba(192,57,43,0.25); }
.cat-body { flex: 1; min-width: 0; }
.cat-name { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 3px; transition: color 0.3s; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.category-card:hover .cat-name { color: var(--brand-red); }
.cat-count { font-size: 11px; color: var(--text-muted); font-weight: 500; }
.cat-arrow { display: inline-flex; align-items: center; color: var(--brand-red); opacity: 0; transform: translateX(-6px); transition: all 0.25s ease; flex-shrink: 0; }
.category-card:hover .cat-arrow { opacity: 1; transform: translateX(0); }

/* ===== FEATURED PRODUCTS ===== */
.featured-section { padding: var(--section-py) 0; background: var(--bg-section); }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card { background: #fff; border-radius: var(--border-radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: all 0.35s ease; }
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-card-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.4s ease; position: absolute; inset: 0; }
.product-card-img .img-main { opacity: 1; z-index: 1; }
.product-card-img .img-hover { opacity: 0; z-index: 2; }
.product-card:hover .img-main { opacity: 0; }
.product-card:hover .img-hover { opacity: 1; }
.product-card-body { padding: 24px; }
.product-card-cat { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand-red); margin-bottom: 8px; }
.product-card-name { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.product-card-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; }
.color-badge { display: inline-flex; align-items: center; gap: 4px; background: var(--brand-red); color: #fff; padding: 4px 12px; border-radius: 50px; font-size: 12px; font-weight: 600; }
.product-card-link { font-size: 14px; font-weight: 600; color: var(--brand-red); display: flex; align-items: center; gap: 4px; transition: gap 0.2s; }
.product-card-link:hover { gap: 8px; }

/* ===== COLOR SWATCH ===== */
.color-section { padding: var(--section-py) 0; background: var(--text-dark); }
.color-section .section-title { color: #fff; }
.color-section .section-label { color: var(--accent-gold); }
.color-section .section-subtitle { color: rgba(255,255,255,0.7); }
.swatches-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 8px; margin-bottom: 48px; }
.swatch { aspect-ratio: 1; border-radius: 8px; cursor: pointer; position: relative; overflow: hidden; transform: scale(0); transition: transform 0.3s ease; }
.swatch.revealed { transform: scale(1); }
.swatch:hover { transform: scale(1.15); z-index: 2; }
.swatch-tooltip { position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%); background: rgba(0,0,0,0.85); color: #fff; font-size: 11px; padding: 4px 8px; border-radius: 4px; white-space: nowrap; pointer-events: none; opacity: 0; transition: opacity 0.2s; }
.swatch:hover .swatch-tooltip { opacity: 1; }

/* ===== WHY US ===== */
.why-section { padding: var(--section-py) 0; background: #fff; }
.why-layout { display: grid; grid-template-columns: 340px 1fr; gap: 80px; align-items: start; }
.why-left { position: sticky; top: 100px; }
.why-left .section-label { display: block; margin-bottom: 16px; }
.why-headline { font-family: var(--font-heading); font-size: clamp(3rem, 4.5vw, 4.8rem); font-weight: 800; color: var(--text-dark); line-height: 1; margin-bottom: 24px; }
.why-intro { font-size: 17px; color: var(--text-muted); line-height: 1.85; }
.why-right { display: flex; flex-direction: column; }
.why-item { display: grid; grid-template-columns: minmax(96px, auto) 1fr; gap: 20px; align-items: start; padding: 28px 0; border-bottom: 1px solid var(--border-light); }
.why-item:first-child { border-top: 1px solid var(--border-light); }
.wi-stat { font-family: var(--font-heading); font-size: 1.9rem; font-weight: 800; color: var(--brand-red); line-height: 1; padding-top: 2px; white-space: nowrap; }
.wi-title { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 5px; }
.wi-desc { font-size: 15px; color: var(--text-muted); line-height: 1.75; }

/* ===== ONE INDIA PLAN ===== */
/* ===== ONE INDIA PLAN — REDESIGNED ===== */
/* ===== ONE INDIA PLAN — Modern Split Layout ===== */
.one-india-section {
  padding: var(--section-py) 0;
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}

/* Split grid: content left, image right */
.oi-split {
  display: grid;
  grid-template-columns: 1fr 40%;
  gap: 64px;
  align-items: center;
  margin-bottom: 52px;
}

/* LEFT column */
.oi-left {
  display: flex;
  flex-direction: column;
}
.oi-left .section-label { margin-bottom: 14px; }

.one-india-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.one-india-headline span { color: var(--brand-red); }

.one-india-body {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 32px;
}

/* Cards — compact horizontal list */
.one-india-pillars {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: none;
  border: none;
  border-radius: 0;
  overflow: visible;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  margin-bottom: 0;
}

.pillar-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--brand-red);
  border-radius: 12px;
  padding: 14px 18px;
  transition: box-shadow 0.28s ease, transform 0.28s ease, border-left-color 0.28s ease;
  position: relative;
  cursor: default;
  text-align: left;
}
.pillar-item:hover {
  box-shadow: 0 6px 22px rgba(192,57,43,0.10);
  transform: translateX(5px);
  border-left-color: var(--accent-gold);
}

/* Icon */
.pillar-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 10px;
  background: rgba(192,57,43,0.07);
  border: 1px solid rgba(192,57,43,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-red);
  transition: background 0.28s, color 0.28s, border-color 0.28s;
}
.pillar-icon svg { width: 18px; height: 18px; display: block; }
.pillar-item:hover .pillar-icon {
  background: var(--brand-red);
  color: #fff;
  border-color: var(--brand-red);
}

/* Text block */
.pillar-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}
.pillar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.pillar-label {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}
.pillar-num {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 0.06em;
  background: rgba(243,156,18,0.10);
  padding: 2px 8px;
  border-radius: 50px;
  border: 1px solid rgba(243,156,18,0.22);
  white-space: nowrap;
  flex-shrink: 0;
}
.pillar-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.55;
}
.pillar-bar { display: none; }

/* RIGHT column — image */
.oi-right { position: relative; }
.oi-image-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.14), 0 4px 16px rgba(0,0,0,0.08);
  position: relative;
  aspect-ratio: 3 / 4;
}
.oi-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 6s ease;
}
.oi-image-wrap:hover img { transform: scale(1.04); }

/* Badge on image */
.oi-image-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(192,57,43,0.18);
  color: var(--brand-red);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}

/* ── Trust pill ── */
.oi-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: fit-content;
  margin: 0 auto;
  border: 1px solid var(--border-light);
  border-radius: 100px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}
.oi-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.25s, background 0.25s;
  white-space: nowrap;
  cursor: default;
}
.oi-trust-item:hover { color: var(--brand-red); background: rgba(192,57,43,0.04); }
.oi-trust-item svg { color: var(--accent-gold); flex-shrink: 0; transition: color 0.25s; }
.oi-trust-item:hover svg { color: var(--brand-red); }
.oi-trust-divider { width: 1px; height: 22px; background: var(--border-light); flex-shrink: 0; }

/* ===== MANUFACTURING PROCESS ===== */
.process-section { padding: var(--section-py) 0; background: #fff; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; margin-top: 60px; }
.process-steps::before { content: ''; position: absolute; top: 36px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, var(--brand-red), var(--accent-gold)); transform-origin: left; }
.process-step { text-align: center; padding: 0 20px; position: relative; }
.step-num { width: 72px; height: 72px; background: var(--brand-red); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; position: relative; z-index: 2; box-shadow: var(--shadow-red); }
.step-title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; color: var(--text-dark); margin-bottom: 12px; }
.step-desc { font-size: 16px; color: var(--text-muted); line-height: 1.7; }

/* ===== DYEING PARTNERS ===== */
.partners-section { padding: var(--section-py) 0; background: var(--bg-light); }
.partners-list { border: 1px solid var(--border-light); border-radius: var(--border-radius-lg); overflow: hidden; background: #fff; }
.partner-row { display: grid; grid-template-columns: 140px 1px 1fr 140px; align-items: center; gap: 0; padding: 52px 48px; transition: background 0.25s; }
.partner-row:first-child { border-bottom: 1px solid var(--border-light); }
.partner-row:hover { background: var(--bg-light); }
.partner-year { padding-right: 48px; }
.partner-yr-num { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 800; color: var(--brand-red); display: block; line-height: 1; }
.partner-yr-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted); margin-top: 6px; display: block; }
.partner-vline { width: 1px; height: 72px; background: var(--border-light); flex-shrink: 0; }
.partner-info { padding: 0 48px; }
.partner-tenure { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent-gold); margin-bottom: 10px; }
.partner-name { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; line-height: 1.3; }
.partner-desc { font-size: 16px; color: var(--text-muted); line-height: 1.75; max-width: 500px; }
.partner-stat-box { text-align: center; border-left: 1px solid var(--border-light); padding-left: 40px; }
.ps-num { font-family: var(--font-heading); font-size: 3rem; font-weight: 800; color: var(--brand-red); line-height: 1; }
.ps-lbl { font-size: 10px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 6px; }

/* ===== STATS COUNTER ===== */
.stats-section { padding: 70px 0; background: var(--text-dark); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-item .stat-n { font-family: var(--font-heading); font-size: 3.5rem; font-weight: 800; color: var(--brand-red); }
.stat-item .stat-l { font-size: 14px; color: rgba(255,255,255,0.7); margin-top: 8px; font-weight: 500; letter-spacing: 0.05em; }

/* ===== INQUIRY FORM ===== */
.inquiry-section { padding: var(--section-py) 0; background: #fff; }
.inquiry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.inquiry-info h2 { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.inquiry-info p { color: var(--text-muted); margin-bottom: 32px; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.contact-card { display: flex; align-items: flex-start; gap: 16px; padding: 16px; background: var(--bg-light); border-radius: var(--border-radius); }
.contact-card-icon { width: 44px; height: 44px; background: rgba(192,57,43,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--brand-red); flex-shrink: 0; }
.contact-card-text strong { font-size: 14px; font-weight: 600; color: var(--text-dark); display: block; margin-bottom: 2px; }
.contact-card-text span, .contact-card-text a { font-size: 14px; color: var(--text-muted); }
.map-embed { border-radius: var(--border-radius); overflow: hidden; margin-top: 24px; }
.map-embed iframe { width: 100%; height: 280px; border: none; }
.inquiry-form-wrap { background: var(--bg-light); border-radius: var(--border-radius-lg); padding: 40px; }
.inquiry-form-wrap h3 { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 600; color: var(--text-dark); margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text-dark); }
.form-group input, .form-group select, .form-group textarea { padding: 12px 16px; border: 1.5px solid var(--border-light); border-radius: var(--border-radius); font-family: var(--font-body); font-size: 14px; color: var(--text-body); background: #fff; transition: border-color 0.2s, box-shadow 0.2s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--brand-red); box-shadow: 0 0 0 3px rgba(192,57,43,0.1); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-msg { margin-top: 12px; padding: 12px 16px; border-radius: var(--border-radius); font-size: 14px; display: none; }
.form-msg.success { display: block; background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.form-msg.error { display: block; background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* ===== PAGE TITLE SECTION ===== */
.page-title-section { position: relative; min-height: 300px; display: flex; align-items: center; justify-content: center; padding: 80px 0; }
.page-title-overlay { position: absolute; inset: 0; }
.page-title-content { position: relative; z-index: 2; text-align: center; }
.page-title-heading { font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; margin-bottom: 12px; }
.page-title-subtitle { font-size: 1.1rem; opacity: 0.85; max-width: 560px; margin: 0 auto 20px; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,0.8); }
.breadcrumb a { color: rgba(255,255,255,0.8); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb-sep { opacity: 0.5; }

/* ===== PRODUCTS PAGE ===== */
.products-page-section { padding: var(--section-py) 0; }
.products-layout { display: grid; grid-template-columns: 280px 1fr; gap: 40px; align-items: start; }
/* Sidebar */
.products-sidebar { position: sticky; top: 100px; }
.sidebar-widget { background: #fff; border: 1.5px solid var(--border-light); border-radius: var(--border-radius-lg); padding: 24px; margin-bottom: 24px; }
.sidebar-widget-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--brand-red); display: flex; align-items: center; gap: 8px; }
.sidebar-cat-list { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.sidebar-cat-list li a { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; border-radius: var(--border-radius); font-size: 14px; font-weight: 500; color: var(--text-body); transition: all 0.2s; }
.sidebar-cat-list li a:hover, .sidebar-cat-list li a.active { background: rgba(192,57,43,0.08); color: var(--brand-red); font-weight: 600; }
.sidebar-cat-list li a .cat-count { font-size: 12px; background: var(--bg-light); color: var(--text-muted); padding: 2px 8px; border-radius: 50px; font-weight: 600; }
.sidebar-cat-list li a.active .cat-count { background: var(--brand-red); color: #fff; }
.sidebar-info-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.sidebar-info-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.sidebar-info-list li svg { flex-shrink: 0; margin-top: 2px; color: var(--brand-red); }
/* Products main area */
.products-main-area {}
.products-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; flex-wrap: wrap; gap: 12px; }
.products-count { font-size: 14px; color: var(--text-muted); }
.products-count strong { color: var(--text-dark); }
.product-grid-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 60px; }
.pagination a, .pagination span { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border: 2px solid var(--border-light); border-radius: var(--border-radius); font-size: 14px; font-weight: 600; transition: all 0.2s; color: var(--text-body); }
.pagination a:hover,.pagination span.current { background: var(--brand-red); border-color: var(--brand-red); color: #fff; }

/* ===== PRODUCT DETAIL ===== */
.product-detail-section { padding: var(--section-py) 0; }
.product-detail-grid { display: grid; grid-template-columns: 2fr 3fr; gap: 64px; align-items: start; }
.product-main-image { border-radius: var(--border-radius-lg); overflow: hidden; margin-bottom: 16px; }
.product-main-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.product-gallery-thumbs { display: flex; gap: 10px; flex-wrap: wrap; }
.gallery-thumb { width: 72px; height: 72px; border-radius: var(--border-radius); overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: border-color 0.2s; }
.gallery-thumb:hover,.gallery-thumb.active { border-color: var(--brand-red); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-cat-tag { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand-red); margin-bottom: 12px; }
.product-detail-name { font-family: var(--font-heading); font-size: 2.4rem; font-weight: 700; color: var(--text-dark); margin-bottom: 16px; line-height: 1.2; }
.product-short-desc { color: var(--text-muted); font-size: 15px; margin-bottom: 28px; line-height: 1.8; }
.specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 28px; background: var(--bg-light); border-radius: var(--border-radius); padding: 20px; }
.spec-item strong { font-size: 12px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; display: block; margin-bottom: 2px; }
.spec-item span { font-size: 15px; color: var(--text-dark); font-weight: 500; }
.feature-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.feature-pill { padding: 6px 14px; background: rgba(192,57,43,0.1); color: var(--brand-red); border-radius: 50px; font-size: 12px; font-weight: 600; }
.product-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.product-tabs { margin-top: 60px; }
.tab-nav { display: flex; gap: 0; border-bottom: 2px solid var(--border-light); margin-bottom: 32px; }
.tab-btn { padding: 14px 28px; font-size: 14px; font-weight: 600; cursor: pointer; background: none; border: none; color: var(--text-muted); border-bottom: 2px solid transparent; margin-bottom: -2px; transition: all 0.2s; }
.tab-btn:hover,.tab-btn.active { color: var(--brand-red); border-bottom-color: var(--brand-red); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }
.tab-pane h3 { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 600; color: var(--text-dark); margin-bottom: 16px; }
.tab-pane p,.tab-pane li { font-size: 15px; color: var(--text-body); line-height: 1.8; }
.tab-pane ul { display: flex; flex-direction: column; gap: 8px; padding-left: 0; }
.tab-pane li { display: flex; align-items: flex-start; gap: 10px; }
.tab-pane li::before { content: ''; width: 18px; height: 18px; background: var(--brand-red); border-radius: 50%; flex-shrink: 0; margin-top: 3px; display: flex; align-items: center; justify-content: center; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }
.product-gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 16px; }
.gallery-item img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--border-radius); cursor: pointer; transition: transform 0.3s; }
.gallery-item img:hover { transform: scale(1.03); }
/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 9999; align-items: center; justify-content: center; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: 8px; }
.lightbox-close { position: absolute; top: 20px; right: 24px; color: #fff; font-size: 32px; cursor: pointer; background: none; border: none; }

/* ===== ABOUT PAGE ===== */
.about-story { padding: var(--section-py) 0; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-img img { width: 100%; border-radius: var(--border-radius-lg); height: 500px; object-fit: cover; }
.timeline-section { padding: var(--section-py) 0; background: var(--bg-light); }
.timeline { position: relative; max-width: 700px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: var(--brand-red); transform: translateX(-50%); }
.timeline-item { display: flex; gap: 32px; margin-bottom: 48px; position: relative; }
.timeline-item:nth-child(even) { flex-direction: row-reverse; }
.timeline-dot { width: 20px; height: 20px; background: var(--brand-red); border-radius: 50%; position: absolute; left: 50%; transform: translateX(-50%); top: 4px; z-index: 2; border: 3px solid #fff; box-shadow: 0 0 0 2px var(--brand-red); }
.timeline-content { width: calc(50% - 32px); background: #fff; padding: 24px; border-radius: var(--border-radius); box-shadow: var(--shadow-sm); }
.timeline-year { font-size: 12px; font-weight: 700; color: var(--brand-red); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px; }
.timeline-title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.timeline-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.about-cta { padding: var(--section-py) 0; background: var(--brand-red); text-align: center; }
.about-cta h2 { font-family: var(--font-heading); font-size: 2.4rem; font-weight: 700; color: #fff; margin-bottom: 16px; }
.about-cta p { color: rgba(255,255,255,0.85); margin-bottom: 32px; font-size: 17px; }

/* ===== WHY / ONE INDIA CARDS (about page) ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.why-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: 36px 28px;
  transition: box-shadow 0.28s ease, transform 0.28s ease, border-color 0.28s ease;
  cursor: default;
}
.why-card:hover {
  box-shadow: 0 12px 36px rgba(192,57,43,0.10);
  transform: translateY(-4px);
  border-color: rgba(192,57,43,0.20);
}
.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(192,57,43,0.07);
  border: 1px solid rgba(192,57,43,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-red);
  margin-bottom: 20px;
  transition: background 0.28s, color 0.28s;
}
.why-card:hover .why-icon {
  background: var(--brand-red);
  color: #fff;
  border-color: var(--brand-red);
}
.why-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
.why-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.72;
}

/* ===== PARTNERS GRID (about page) ===== */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 16px;
}
.partner-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: 40px 36px;
  position: relative;
  transition: box-shadow 0.28s ease, transform 0.28s ease;
}
.partner-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.09);
  transform: translateY(-4px);
}
.partner-badge {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent-gold);
  background: rgba(243,156,18,0.09);
  border: 1px solid rgba(243,156,18,0.22);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.partner-card .partner-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  line-height: 1.3;
}
.partner-since {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--brand-red);
  margin-bottom: 16px;
  display: block;
}
.partner-card .partner-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.78;
  max-width: 100%;
}

/* ===== CONTACT PAGE ===== */
.contact-section { padding: var(--section-py) 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact-info h2 { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.contact-info p { color: var(--text-muted); margin-bottom: 36px; }

/* ===== FOOTER ===== */
/* =============================================
   FOOTER — PREMIUM REBUILD (zero base)
   ============================================= */

/* ── PRE-FOOTER CTA BANNER ── */
.footer-cta-banner {
  position: relative;
  background: linear-gradient(135deg, #0f0f1a 0%, #1a0a0a 50%, #0f0f1a 100%);
  overflow: hidden;
  padding: 72px 0;
}
.footer-cta-banner__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 60% 50%, rgba(192,57,43,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 50%, rgba(243,156,18,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.footer-cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(192,57,43,0.5), rgba(243,156,18,0.5), rgba(192,57,43,0.5), transparent);
}
.footer-cta-banner__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.footer-cta-banner__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 16px;
}
.footer-cta-banner__label::before,
.footer-cta-banner__label::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent-gold);
  opacity: 0.5;
}
.footer-cta-banner__heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 12px;
}
.footer-cta-banner__heading em {
  font-style: italic;
  color: var(--brand-red);
}
.footer-cta-banner__sub {
  font-size: 13.5px;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.02em;
}
.footer-cta-banner__actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  align-items: center;
}
.fcta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
  white-space: nowrap;
}
.fcta-btn--primary {
  background: var(--brand-red);
  color: #fff;
  box-shadow: 0 6px 28px rgba(192,57,43,0.4);
}
.fcta-btn--primary:hover {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(192,57,43,0.55);
}
.fcta-btn--whatsapp {
  background: rgba(37,211,102,0.12);
  color: #25D366;
  border: 1px solid rgba(37,211,102,0.25);
}
.fcta-btn--whatsapp:hover {
  background: #25D366;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.4);
}

/* ── FABRIC SWATCH STRIP ── */
.footer-swatch-strip {
  display: flex;
  height: 6px;
  overflow: hidden;
  width: 100%;
}
.footer-swatch-strip span {
  flex: 1;
  display: block;
}

/* ── MAIN FOOTER ── */
.site-footer {
  background: #07070f;
  position: relative;
  overflow: hidden;
}
.site-footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

/* ── Footer SVG decorations ── */
.footer-svg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.fsvg {
  position: absolute;
  opacity: 0.045;
  filter: invert(1) sepia(1) saturate(2) hue-rotate(330deg) brightness(1.2);
}
.fsvg--1 {
  width: 340px;
  top: -60px;
  right: -80px;
  transform: rotate(18deg);
}
.fsvg--2 {
  width: 220px;
  bottom: 40px;
  left: -40px;
  transform: rotate(-12deg);
  opacity: 0.035;
  filter: invert(1) sepia(1) saturate(3) hue-rotate(10deg) brightness(1.3);
}
.fsvg--3 {
  width: 180px;
  bottom: 80px;
  right: 18%;
  transform: rotate(-25deg);
  opacity: 0.03;
}
.fsvg--4 {
  width: 260px;
  top: 30px;
  left: 30%;
  transform: rotate(8deg);
  opacity: 0.025;
}
.footer-main {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.9fr 1fr 1fr 1.5fr;
  gap: 56px;
  padding: 72px 0 64px;
}

/* ── Brand column ── */
.footer-logo-wrap { display: inline-block; margin-bottom: 22px; }
.footer-logo {
  display: block;
  max-width: 140px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}
.footer-about {
  font-size: 13.5px;
  color: rgba(255,255,255,0.36);
  line-height: 1.9;
  margin-bottom: 28px;
  max-width: 290px;
}

/* Trust badges */
.footer-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}
.trust-badge svg { color: var(--accent-gold); flex-shrink: 0; }

/* Social icons */
.footer-socials { display: flex; gap: 8px; }
.social-icon {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.38);
  transition: all 0.2s;
  text-decoration: none;
}
.social-icon:hover {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(192,57,43,0.4);
}

/* ── Column headings ── */
.footer-heading {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
  position: relative;
  padding-bottom: 16px;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 2px;
  background: linear-gradient(90deg, var(--brand-red), var(--accent-gold));
  border-radius: 2px;
}

/* ── Nav links ── */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0; margin: 0;
}
.footer-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.42);
  transition: all 0.2s;
}
.footer-links a:hover { color: #fff; padding-left: 4px; }
.fl-arrow {
  color: var(--brand-red);
  font-size: 16px;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.footer-links a:hover .fl-arrow { opacity: 1; }
.fl-more { color: var(--accent-gold) !important; font-weight: 600; }

/* ── Contact list ── */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  list-style: none;
  padding: 0; margin: 0 0 28px;
}
.fc-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.fc-icon {
  width: 32px;
  height: 32px;
  background: rgba(192,57,43,0.12);
  border: 1px solid rgba(192,57,43,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brand-red);
  margin-top: 2px;
}
.fc-icon--wa {
  background: rgba(37,211,102,0.1);
  border-color: rgba(37,211,102,0.2);
  color: #25D366;
}
.fc-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.fc-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.fc-text span:not(.fc-label),
.fc-text a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
  transition: color 0.2s;
}
.fc-text a:hover { color: #fff; }

/* ── Business hours ── */
.footer-hours {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 16px 18px;
}
.footer-hours__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 12px;
}
.footer-hours__title svg { color: var(--accent-gold); }
.footer-hours__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.footer-hours__row:last-child { border-bottom: none; }
.footer-hours__row .closed { color: rgba(192,57,43,0.7); font-weight: 600; }

/* ── Divider ── */
.footer-divider { position: relative; z-index: 2; }
.footer-divider__line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06) 20%, rgba(255,255,255,0.06) 80%, transparent);
}

/* ── Bottom bar ── */
.footer-bottom {
  position: relative;
  z-index: 2;
  padding: 24px 0;
}
.footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-bottom__copy p {
  font-size: 12.5px;
  color: rgba(255,255,255,0.28);
  line-height: 1.6;
}
.footer-bottom__copy strong { color: rgba(255,255,255,0.45); font-weight: 600; }
.footer-bottom__tagline { color: rgba(255,255,255,0.18) !important; font-size: 11.5px !important; }
.footer-bottom__badges {
  display: flex;
  gap: 16px;
  align-items: center;
}
.bottom-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
}
.bottom-badge svg { color: var(--accent-gold); opacity: 0.7; }
.footer-bottom__links {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 11.5px;
  color: rgba(255,255,255,0.2);
}
.footer-bottom__links a {
  color: rgba(255,255,255,0.28);
  transition: color 0.2s;
}
.footer-bottom__links a:hover { color: rgba(255,255,255,0.7); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1280px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid-inner { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-cta-banner__inner { flex-direction: column; align-items: flex-start; gap: 32px; }
  .footer-cta-banner__actions { flex-direction: row; }
  .footer-bottom__inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-bottom__badges { flex-wrap: wrap; }
  .about-grid, .story-grid, .inquiry-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .about-split-image { height: 340px; }
  .oi-split { grid-template-columns: 1fr; gap: 40px; }
  .oi-right { order: -1; }
  .oi-image-wrap { aspect-ratio: 16/9; }
  .oi-trust-row { flex-wrap: wrap; border-radius: 16px; width: auto; }
  .oi-trust-item { flex: 1 1 45%; }
  .oi-trust-divider { display: none; }
  .why-layout { grid-template-columns: 1fr; gap: 48px; }
  .why-left { position: static; }
  .partner-row { grid-template-columns: 100px 1px 1fr; padding: 36px 32px; }
  .partner-stat-box { display: none; }
  .footer-cta-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .swatches-grid { grid-template-columns: repeat(8, 1fr); }
}
@media (max-width: 768px) {
  :root { --section-py: 64px; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .btn-pulse { animation: none; }
  .top-bar-left a:last-child { display: none; }
  .products-grid, .product-grid-inner { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .footer-main { grid-template-columns: 1fr; gap: 36px; padding: 56px 0 48px; }
  .footer-about { max-width: 100%; }
  .footer-trust { flex-direction: row; flex-wrap: wrap; gap: 12px 20px; }
  .footer-cta-banner { padding: 52px 0; }
  .footer-cta-banner__actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .fcta-btn { width: 100%; justify-content: center; }
  .footer-bottom__inner { flex-direction: column; align-items: center; text-align: center; gap: 16px; }
  .footer-bottom__badges { justify-content: center; }
  .footer-bottom__links { justify-content: center; }
  .form-grid { grid-template-columns: 1fr; }
  .inquiry-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-stats-overlay { position: static; margin-top: 24px; }
  .about-split-content { padding: 48px 32px; }
  .about-split-content::before { display: none; }
  .about-metrics { flex-wrap: wrap; gap: 16px 0; }
  .swatches-grid { grid-template-columns: repeat(6, 1fr); }
  .oi-split { grid-template-columns: 1fr; gap: 32px; }
  .oi-right { order: -1; }
  .oi-image-wrap { aspect-ratio: 4/3; }
  .oi-trust-row { flex-wrap: wrap; border-radius: 16px; width: 100%; }
  .oi-trust-item { flex: 1 1 48%; border-top: 1px solid var(--border-light); }
  .oi-trust-divider { display: none; }
  .one-india-headline { font-size: clamp(1.7rem, 6vw, 2.2rem); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-btns { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .products-grid, .product-grid-inner { grid-template-columns: 1fr; }
  .swatches-grid { grid-template-columns: repeat(4, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .partner-row { grid-template-columns: 1fr; gap: 16px; padding: 28px 20px; }
  .partner-vline { display: none; }
  .partner-info { padding: 0; }
  .about-metric-sep { display: none; }
  .about-metrics { gap: 16px 24px; }
  .footer-cta-banner__heading { font-size: 1.7rem; }
  .oi-trust-item { flex: 1 1 100%; }
}

/* ===== PRODUCTS PAGE — RESPONSIVE SIDEBAR ===== */
@media (max-width: 1024px) {
  .products-layout { grid-template-columns: 1fr; }
  .products-sidebar { position: static; display: none; } /* Sidebar hidden, use filter pills */
  .product-grid-inner { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .products-layout { grid-template-columns: 1fr; }
  .products-sidebar { display: none; }
  .product-grid-inner { grid-template-columns: repeat(2, 1fr); }
  .tab-nav { overflow-x: auto; white-space: nowrap; }
  .tab-btn { flex-shrink: 0; }
}
@media (max-width: 480px) {
  .product-grid-inner { grid-template-columns: 1fr; }
  .specs-grid { grid-template-columns: 1fr; }
  .product-cta-btns { flex-direction: column; }
  .product-cta-btns .btn { justify-content: center; }
}

/* ===== HERO SLIDER — RESPONSIVE ===== */
@media (max-width: 768px) {
  .hs-content .container { padding-left: 24px; }
  .hs-inner { padding: 0; }
  .hs-controls { bottom: 32px; right: 24px; gap: 10px; }
  .hs-stats { gap: 12px; flex-wrap: wrap; }
  .hs-stat-n { font-size: 1.25rem; }
  .hs-btns { gap: 12px; }
}
@media (max-width: 480px) {
  .hs-stats { display: none; }
  .hs-btns { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hs-btn-primary { width: 100%; justify-content: center; }
}

/* ===== FILTER BAR — MOBILE SCROLL ===== */
@media (max-width: 768px) {
  .filter-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    padding-left: 24px;
    padding-right: 24px;
    margin-left: -24px;
    margin-right: -24px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: flex-start !important;
    margin-bottom: 32px !important;
  }
  .filter-bar::-webkit-scrollbar { display: none; }
  .filter-btn { flex-shrink: 0; }
}

/* ===== COLOUR LIBRARY — STATS RESPONSIVE ===== */
@media (max-width: 768px) {
  .colour-stats-grid {
    flex-direction: column !important;
    gap: 0 !important;
    padding: 32px 24px !important;
  }
  .colour-stats-grid .stat-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    padding: 20px 0 !important;
  }
  .colour-stats-grid .stat-item:last-child { border-bottom: none !important; }
}

/* ===== ABOUT PAGE — RESPONSIVE ===== */
@media (max-width: 640px) {
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-img img { height: 280px; }
  .timeline::before { left: 18px; }
  .timeline-item, .timeline-item:nth-child(even) { flex-direction: column; padding-left: 48px; }
  .timeline-dot { left: 18px; }
  .timeline-content { width: 100%; }
}

/* ===== CONTACT PAGE — RESPONSIVE ===== */
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ===== HEADER — RESPONSIVE ===== */
@media (max-width: 480px) {
  .header-inner { padding: 12px 16px; }
  .logo img { height: 36px; }
  .top-bar { display: none; }
  .header-actions .btn { display: none; }
}

/* ===== FOOTER CTA — RESPONSIVE ===== */
@media (max-width: 480px) {
  .footer-cta-banner { padding: 40px 0; }
  .footer-cta-banner__heading { font-size: 1.6rem; }
}

/* ===== FILTER BAR & FILTER BUTTONS ===== */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--border-light);
  background: #fff;
  color: var(--text-muted);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  letter-spacing: 0.01em;
  box-shadow: var(--shadow-sm);
  position: relative;
  outline: none;
}

.filter-btn:hover {
  border-color: var(--brand-red);
  color: var(--brand-red);
  background: rgba(192, 57, 43, 0.04);
  box-shadow: 0 4px 16px rgba(192, 57, 43, 0.14);
  transform: translateY(-1px);
}

.filter-btn.active {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: #fff;
  box-shadow: 0 4px 20px rgba(192, 57, 43, 0.38);
  transform: translateY(-1px);
}

/* Active dot indicator */
.filter-btn.active::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== FABRIC FILTER INFO BANNER ===== */
.filter-info-banner {
  display: none;
  align-items: center;
  gap: 12px;
  background: rgba(192, 57, 43, 0.06);
  border: 1px solid rgba(192, 57, 43, 0.18);
  border-radius: var(--border-radius);
  padding: 13px 20px;
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 32px;
  animation: fadeSlideDown 0.3s ease;
}
.filter-info-banner.visible { display: flex; }
.filter-info-banner svg { color: var(--brand-red); flex-shrink: 0; }
@keyframes fadeSlideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* ===== WhatsApp Floating Button ===== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: waPulse 2.5s ease-in-out infinite;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 32px rgba(37,211,102,0.55);
}
.wa-label { white-space: nowrap; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 6px 32px rgba(37,211,102,0.75), 0 0 0 8px rgba(37,211,102,0.10); }
}
@media (max-width: 600px) {
  .wa-float { padding: 14px; border-radius: 50%; }
  .wa-label { display: none; }
}

/* ===== CATEGORIES CAROUSEL ===== */
.cat-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cat-carousel-viewport {
  overflow: hidden;
  flex: 1;
  border-radius: 14px;
}
.cat-carousel-track {
  display: flex;
  gap: 14px;
  transition: transform 0.42s cubic-bezier(0.16,1,0.3,1);
  will-change: transform;
}
.cat-carousel-track .category-card {
  flex: 0 0 calc(25% - 11px);
  min-width: 0;
}
.cat-carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border-light);
  background: #fff;
  color: var(--brand-red);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.22s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  flex-shrink: 0;
  z-index: 2;
}
.cat-carousel-btn:hover {
  background: var(--brand-red);
  color: #fff;
  border-color: var(--brand-red);
  box-shadow: 0 6px 20px rgba(192,57,43,0.25);
}
.cat-carousel-btn:disabled { opacity: 0.3; cursor: default; }
.cat-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 20px;
}
.cat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-light);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}
.cat-dot.active {
  background: var(--brand-red);
  width: 24px;
  border-radius: 4px;
}
@media (max-width: 1024px) {
  .cat-carousel-track .category-card { flex: 0 0 calc(50% - 7px); }
}
@media (max-width: 580px) {
  .cat-carousel-track .category-card { flex: 0 0 calc(100% - 0px); }
  .cat-carousel-btn { width: 36px; height: 36px; }
}

/* ===== PHONE FRAME — Pan-India Section ===== */
.phone-frame-outer {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px 20px;
}
.phone-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,57,43,0.18) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: phoneGlow 3s ease-in-out infinite alternate;
}
@keyframes phoneGlow {
  0%   { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 1;   transform: translate(-50%, -50%) scale(1.12); }
}
.phone-device {
  position: relative;
  width: 248px;
  background: linear-gradient(160deg, #2a2a3e 0%, #111120 100%);
  border-radius: 46px;
  padding: 18px 12px 14px;
  box-shadow:
    0 0 0 1.5px #3a3a55,
    0 0 0 3px #1a1a2e,
    0 32px 80px rgba(0,0,0,0.55),
    0 8px 24px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.06);
}
/* Notch */
.phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 22px;
  background: #0e0e1a;
  border-radius: 0 0 16px 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.phone-notch::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #1e1e2e;
  border-radius: 50%;
  border: 1.5px solid #333355;
}
.phone-notch::after {
  content: '';
  width: 28px;
  height: 5px;
  background: #1e1e2e;
  border-radius: 4px;
}
/* Side buttons */
.phone-btn {
  position: absolute;
  background: linear-gradient(180deg, #2e2e48, #1a1a2e);
  border-radius: 3px;
  right: -3px;
}
.phone-btn--power { width: 3px; height: 56px; top: 120px; }
.phone-btn--vol-up { width: 3px; height: 36px; top: 100px; left: -3px; }
.phone-btn--vol-dn { width: 3px; height: 36px; top: 146px; left: -3px; }
/* Screen */
.phone-screen {
  border-radius: 34px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 9 / 19.5;
  position: relative;
}
.phone-screen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Home bar */
.phone-home-bar {
  width: 56px;
  height: 4px;
  background: rgba(255,255,255,0.25);
  border-radius: 4px;
  margin: 10px auto 0;
}
/* Floating badge */
.phone-badge {
  position: absolute;
  bottom: 8px;
  right: -4px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(192,57,43,0.2);
  color: var(--brand-red);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  white-space: nowrap;
}
/* Responsive */
@media (max-width: 1024px) {
  .phone-device { width: 210px; }
  .phone-glow { width: 220px; height: 220px; }
  .oi-right { order: -1; }
}
@media (max-width: 768px) {
  .phone-frame-outer { padding: 28px 16px 16px; }
  .phone-device { width: 190px; border-radius: 38px; }
  .phone-screen { border-radius: 28px; }
}
/* Hide old image-wrap responsive rules that no longer apply */
@media (max-width: 1024px) { .oi-image-wrap { display: none; } }
@media (max-width: 768px)  { .oi-image-wrap { display: none; } }
