/* ==========================================================================
   Club Junior — Baby Innerwear E-Commerce Design System
   Theme: Soft Pink + White (🎀 Cute, Premium Baby Feel)
   ========================================================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Primary Pink Palette */
  --pink-600: #D84B7E;
  --pink-500: #E8699A;
  --pink-400: #F9A8C9;
  --pink-300: #FBB8D4;
  --pink-200: #FEE5EF;
  --pink-100: #FFF0F5;
  --pink-50:  #FFF8FA;

  /* Rose (Sale / Urgency) */
  --rose-600: #E63975;
  --rose-500: #F43F7A;

  /* Neutrals */
  --gray-900: #1A1A2E;
  --gray-800: #2D2D42;
  --gray-700: #4A4A5A;
  --gray-600: #636373;
  --gray-500: #8A8A9A;
  --gray-400: #ABABBA;
  --gray-300: #CDCDD6;
  --gray-200: #E8E8EE;
  --gray-100: #F2F2F6;
  --gray-50:  #F7F7FA;
  --white:    #FFFFFF;

  /* Accents */
  --mint:     #7DDBC8;
  --mint-100: #E6F9F4;
  --lavender: #C8B6FF;
  --lavender-100: #F0ECFF;
  --sky:      #7EC8E3;
  --sky-100:  #E3F4FB;
  --amber:    #FFB347;
  --amber-100:#FFF3E0;
  --red:      #FF4757;

  /* Typography */
  --font-display: 'Nunito', 'Segoe UI', sans-serif;
  --font-body:    'Inter', 'Segoe UI', sans-serif;

  /* Spacing */
  --container: 1440px;
  --gap-xs: 4px;
  --gap-sm: 8px;
  --gap-md: 16px;
  --gap-lg: 24px;
  --gap-xl: 32px;
  --gap-2xl: 48px;
  --gap-3xl: 64px;

  /* Border Radius */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 28px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(26,26,46,.04);
  --shadow-sm: 0 2px 6px rgba(26,26,46,.06);
  --shadow-md: 0 4px 16px rgba(26,26,46,.08);
  --shadow-lg: 0 8px 32px rgba(26,26,46,.10);
  --shadow-xl: 0 16px 48px rgba(26,26,46,.14);
  --shadow-pink: 0 8px 24px rgba(249,168,201,.25);
  --shadow-card: 0 2px 8px rgba(26,26,46,.06), 0 0 0 1px rgba(26,26,46,.03);

  /* Transitions */
  --ease: cubic-bezier(.4, 0, .2, 1);
  --transition: all .22s cubic-bezier(.4, 0, .2, 1);
  --transition-fast: all .15s cubic-bezier(.4, 0, .2, 1);
  --transition-slow: all .35s cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--pink-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: clip;
  width: 100%;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--gray-900);
  margin: 0 0 .5em;
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 800;
}
p { margin: 0 0 1em; color: var(--gray-700); }
a { color: inherit; text-decoration: none; transition: var(--transition-fast); }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }
:focus-visible { outline: 2px solid var(--pink-500); outline-offset: 3px; border-radius: var(--radius-xs); }
svg { width: 1em; height: 1em; flex-shrink: 0; vertical-align: -0.125em; }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.site-main { width: 100%; max-width: 100vw; overflow-x: clip; position: relative; }
.section { padding: 56px 0; }
.section-sm { padding: 32px 0; }
.section-compact { padding: 18px 0 !important; }
.section-lg { padding: 80px 0; }
.section-head { text-align: center; max-width: 600px; margin: 0 auto 20px; }
.section-head h2 { font-size: 1.8rem; margin-bottom: 6px; }
.section-head p { color: var(--gray-500); font-size: 1rem; margin: 0; }
.section-head-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; gap: 16px; }
.section-alt { background: var(--white); }
.section-pink { background: var(--pink-100); }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: .72rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase; color: var(--pink-600);
  margin-bottom: 12px;
}
.eyebrow::before {
  content: ''; width: 24px; height: 2px;
  background: linear-gradient(90deg, var(--pink-500), var(--pink-300));
  display: inline-block; border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius-full);
  font-family: var(--font-display); font-weight: 700; font-size: .9rem;
  border: 2px solid transparent; transition: var(--transition);
  white-space: nowrap; position: relative; overflow: hidden; cursor: pointer;
}
.btn:active { transform: scale(.97); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Ripple effect */
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,.3) 10%, transparent 70%);
  opacity: 0; transform: scale(0); transition: opacity .3s, transform .3s;
  border-radius: inherit;
}
.btn:active::after { opacity: 1; transform: scale(2.5); transition: none; }

.btn-primary {
  background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
  color: var(--white); border-color: transparent;
}
.btn-primary:hover {
  box-shadow: var(--shadow-pink);
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--pink-600), var(--pink-500));
}
.btn-secondary {
  background: var(--gray-900); color: var(--white);
}
.btn-secondary:hover {
  background: var(--gray-800);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent; border-color: var(--pink-500); color: var(--pink-600);
}
.btn-outline:hover {
  background: var(--pink-500); color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent; border-color: var(--gray-900); color: var(--gray-900);
}
.btn-outline-dark:hover {
  background: var(--gray-900); color: var(--white);
}
.btn-white {
  background: var(--white); color: var(--pink-600); border-color: var(--white);
}
.btn-white:hover {
  box-shadow: var(--shadow-lg); transform: translateY(-2px);
}
.btn-whatsapp {
  background: #25D366; color: #ffffff; border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #22c55e; box-shadow: 0 8px 24px rgba(37,211,102,.35);
  transform: translateY(-2px);
}
.btn-sm { padding: 9px 18px; font-size: .82rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-icon {
  width: 42px; height: 42px; padding: 0;
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
}
.btn-icon svg { width: 18px; height: 18px; }

/* ---------- Promo Top Bar ---------- */
.promo-bar {
  background: linear-gradient(90deg, var(--pink-500), var(--pink-600), var(--pink-500));
  color: var(--white);
  font-size: .78rem; font-weight: 700;
  text-align: center; padding: 8px 16px;
  font-family: var(--font-display);
  letter-spacing: .02em;
  position: relative; overflow: hidden;
}
.promo-bar .promo-text {
  display: inline-flex; align-items: center; gap: 16px;
  animation: promoScroll 20s linear infinite;
}
@keyframes promoScroll {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}
.promo-bar .promo-close {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.2); border: none; color: var(--white);
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: .7rem;
}

/* ---------- Sticky Header ---------- */
#header-mount {
  position: relative;
  z-index: 1000;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow .25s var(--ease);
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(26,26,46,.10); }

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

/* Brand */
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-logo {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--pink-400), var(--pink-500));
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  font-size: 1.4rem;
}
.brand-text { line-height: 1.15; }
.brand-name {
  font-family: var(--font-display); font-weight: 900; font-size: 1.25rem;
  color: var(--gray-900); letter-spacing: -.01em;
}
.brand-name .accent { color: var(--pink-500); }
.brand-tag {
  font-size: .65rem; color: var(--gray-500);
  font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
}

/* Search Bar */
.search-bar {
  flex: 1; max-width: 480px; position: relative;
}
.search-bar input {
  width: 100%; padding: 11px 44px 11px 18px;
  border: 2px solid var(--gray-200); border-radius: var(--radius-full);
  font-size: .88rem; background: var(--gray-50);
  color: var(--gray-900); transition: var(--transition);
}
.search-bar input:focus {
  border-color: var(--pink-400); background: var(--white);
  box-shadow: 0 0 0 4px rgba(249,168,201,.15);
  outline: none;
}
.search-bar input::placeholder { color: var(--gray-400); }
.search-bar .search-icon {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  color: var(--gray-500); pointer-events: none;
}
.search-bar .search-icon svg { width: 18px; height: 18px; }

/* Search Suggestions Dropdown */
.search-suggestions {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0;
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl); border: 1px solid var(--gray-200);
  z-index: 100; display: none; max-height: 360px; overflow-y: auto;
}
.search-suggestions.active { display: block; }
.search-suggestion-item {
  padding: 12px 18px; display: flex; align-items: center; gap: 12px;
  font-size: .88rem; color: var(--gray-700);
  transition: background .15s; cursor: pointer;
}
.search-suggestion-item:hover { background: var(--pink-50); }
.search-suggestion-item .suggestion-type {
  font-size: .68rem; color: var(--gray-400); background: var(--gray-100);
  padding: 2px 8px; border-radius: var(--radius-full); font-weight: 600;
}
.search-suggestion-item .suggestion-icon { color: var(--pink-500); }
.search-suggestion-item .suggestion-icon svg { width: 16px; height: 16px; }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 6px; }
.header-action-btn {
  width: 42px; height: 42px; border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-700); position: relative;
  transition: var(--transition); background: transparent; border: none; cursor: pointer;
}
.header-action-btn:hover {
  background: var(--pink-100); color: var(--pink-600);
}
.header-action-btn svg { width: 22px; height: 22px; }
.header-action-btn .badge-count {
  position: absolute; top: 2px; right: 2px;
  background: var(--rose-500); color: var(--white);
  font-size: .6rem; font-weight: 800; min-width: 18px; height: 18px;
  border-radius: var(--radius-full); display: flex; align-items: center;
  justify-content: center; padding: 0 4px; line-height: 1;
  box-shadow: 0 2px 6px rgba(244,63,122,.3);
  font-family: var(--font-display);
}
.header-action-btn .badge-count:empty { display: none; }

/* Navigation */
.main-nav {
  border-top: 1px solid var(--gray-100);
  background: var(--white);
}
.nav-list {
  display: flex; align-items: center; justify-content: center;
  gap: 0; height: 44px;
}
.nav-list a {
  font-family: var(--font-display); font-size: .85rem; font-weight: 700;
  color: var(--gray-700); padding: 10px 18px;
  position: relative; display: inline-flex; align-items: center; gap: 4px;
  transition: var(--transition-fast); white-space: nowrap;
}
.nav-list a:hover, .nav-list a.active { color: var(--pink-600); }
.nav-list a::after {
  content: ''; position: absolute; bottom: 0; left: 50%; right: 50%;
  height: 2.5px; background: var(--pink-500);
  border-radius: 2px; transition: left .2s var(--ease), right .2s var(--ease);
}
.nav-list a:hover::after, .nav-list a.active::after { left: 18px; right: 18px; }
.nav-list a svg { width: 10px; height: 10px; }
.nav-sale { color: var(--rose-500) !important; }

/* Menu Button (Mobile) */
.menu-btn {
  display: none; background: none; border: none;
  padding: 8px; border-radius: var(--radius-sm); cursor: pointer;
}
.menu-btn:hover { background: var(--pink-50); }
.menu-btn svg { width: 24px; height: 24px; color: var(--gray-900); }

/* Mobile Nav Drawer */
.mobile-nav {
  display: none; flex-direction: column;
  background: var(--white);
  position: absolute; top: 100%; left: 0; right: 0;
  box-shadow: var(--shadow-xl); z-index: 999;
  border-top: 2px solid var(--pink-400);
  max-height: 80vh; overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 14px 24px; font-family: var(--font-display); font-weight: 700;
  font-size: .95rem; color: var(--gray-900);
  border-bottom: 1px solid var(--gray-100);
  display: flex; align-items: center; gap: 10px;
  transition: var(--transition-fast);
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: var(--pink-50); color: var(--pink-600); padding-left: 32px;
}
.mobile-nav a svg { width: 18px; height: 18px; color: var(--pink-400); }

/* ---------- Hero Banner ---------- */
.hero {
  background: linear-gradient(135deg, var(--pink-100) 0%, var(--pink-50) 50%, var(--white) 100%);
  padding: 0; overflow: hidden; position: relative;
}
.hero-carousel { position: relative; }
.hero-slide {
  display: none; min-height: 500px;
  position: relative; overflow: hidden;
}
.hero-slide.active { display: block; }
.hero-content {
  padding: 72px 0 72px 0; position: relative; z-index: 2;
}
.hero-content h1 {
  font-size: 3.2rem; line-height: 1.1; margin-bottom: 16px;
}
.hero-content h1 .accent {
  color: transparent;
  background: linear-gradient(120deg, var(--pink-500), var(--pink-600));
  -webkit-background-clip: text; background-clip: text;
}
.hero-content p {
  font-size: 1.1rem; color: var(--gray-600); max-width: 420px;
  margin-bottom: 28px; line-height: 1.65;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 20px; margin-top: 24px; flex-wrap: wrap; }
.hero-trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: .78rem; color: var(--gray-500); font-weight: 600;
}
/* ---------- Combo Cards ---------- */
.combo-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
}
@media (max-width: 1024px) {
  .combo-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 600px) {
  .combo-grid { grid-template-columns: 1fr !important; }
}

.combo-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.combo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--pink-400);
}
.combo-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--rose-600);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .72rem;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}
.combo-price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--gray-900);
}
.combo-mrp {
  font-size: .85rem;
  color: var(--gray-400);
  text-decoration: line-through;
}
.hero-visual {
  display: flex; align-items: center; justify-content: center;
  position: relative; padding: 40px;
}
.hero-img {
  width: 100%; max-width: 480px; height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}
.hero-float {
  position: absolute; z-index: 3;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 12px 18px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px;
  animation: floatY 3.5s ease-in-out infinite;
  font-family: var(--font-display);
}
@keyframes floatY { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-8px); } }
.hero-float-1 { bottom: 32px; left: 10%; }
.hero-float-2 { top: 32px; right: 10%; }
.hero-dots {
  display: flex; justify-content: center; gap: 8px;
  padding: 16px 0 28px;
}
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gray-300); border: none; cursor: pointer;
  transition: var(--transition);
}
.hero-dot.active {
  background: var(--pink-500); width: 28px;
  border-radius: var(--radius-full);
}

/* ---------- Category Circles ---------- */
.cat-circles {
  display: flex; gap: 16px; justify-content: center;
  flex-wrap: wrap; padding: 0;
}
.cat-circle {
  text-align: center; cursor: pointer;
  transition: var(--transition); flex: 0 0 auto; width: 84px;
}
.cat-circle:hover { transform: translateY(-4px); }
.cat-circle-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-100), var(--pink-200));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 6px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  font-size: 1.5rem;
}
.cat-circle:hover .cat-circle-icon {
  background: linear-gradient(135deg, var(--pink-300), var(--pink-400));
  box-shadow: var(--shadow-pink);
  transform: scale(1.06);
}
.cat-circle-name {
  font-family: var(--font-display); font-weight: 700;
  font-size: .75rem; color: var(--gray-900);
}

/* ---------- Age Selector ---------- */
.age-tabs {
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
}
.age-tab {
  padding: 8px 18px; border-radius: var(--radius-full);
  border: 1.5px solid var(--gray-200);
  font-family: var(--font-display); font-weight: 700;
  font-size: .8rem; color: var(--gray-600);
  cursor: pointer; transition: var(--transition); background: var(--white);
}
.age-tab:hover { border-color: var(--pink-400); color: var(--pink-600); }
.age-tab.active {
  background: var(--pink-500); border-color: var(--pink-500);
  color: var(--white); box-shadow: var(--shadow-pink);
}

/* ---------- Product Cards ---------- */
.product-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden; transition: var(--transition);
  display: flex; flex-direction: column;
  position: relative;
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--pink-300);
}
/* Gold top accent on hover */
.product-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--pink-400), var(--pink-500));
  transform: scaleX(0); transition: transform .25s var(--ease); transform-origin: left;
  z-index: 2;
}
.product-card:hover::before { transform: scaleX(1); }

/* Product Image */
.product-thumb {
  aspect-ratio: 1/1; background: var(--gray-50);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--gray-100);
}
.product-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s var(--ease);
}
.product-card:hover .product-thumb img { transform: scale(1.06); }

/* Badges */
.product-badges {
  position: absolute; top: 10px; left: 10px;
  display: flex; flex-direction: column; gap: 4px; z-index: 2;
}
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 10px; border-radius: var(--radius-full);
  font-family: var(--font-display); font-weight: 800;
  font-size: .65rem; letter-spacing: .03em;
}
.badge-sale { background: var(--rose-500); color: var(--white); }
.badge-new { background: var(--mint); color: var(--white); }
.badge-best { background: var(--amber); color: var(--gray-900); }
.badge-limited { background: var(--lavender); color: var(--white); }
.badge-cotton { background: var(--sky-100); color: var(--sky); border: 1px solid var(--sky); }
.badge-cod { background: var(--mint-100); color: var(--mint); font-size: .6rem; }
.badge-freeship { background: var(--amber-100); color: var(--amber); font-size: .6rem; }

/* Wishlist Heart */
.wishlist-btn {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--white); border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm); cursor: pointer;
  transition: var(--transition);
}
.wishlist-btn:hover { transform: scale(1.15); box-shadow: var(--shadow-md); }
.wishlist-btn svg { width: 18px; height: 18px; color: var(--gray-400); transition: color .2s; }
.wishlist-btn.active svg { color: var(--rose-500); fill: var(--rose-500); }
/* Heart pop animation */
@keyframes heartPop {
  0% { transform: scale(1); }
  30% { transform: scale(1.3); }
  60% { transform: scale(.9); }
  100% { transform: scale(1); }
}
.wishlist-btn.pop { animation: heartPop .4s var(--ease); }

/* Quick View */
.quick-view-btn {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%) translateY(10px);
  background: var(--gray-900); color: var(--white);
  padding: 8px 18px; border-radius: var(--radius-full);
  font-family: var(--font-display); font-weight: 700; font-size: .75rem;
  opacity: 0; transition: var(--transition);
  border: none; cursor: pointer; white-space: nowrap;
}
.product-card:hover .quick-view-btn { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Color Dots */
.product-colors {
  display: flex; gap: 4px; margin-top: 6px;
}
.color-dot {
  width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px var(--gray-300);
  transition: var(--transition); cursor: pointer;
}
.color-dot:hover, .color-dot.active { box-shadow: 0 0 0 2px var(--pink-500); }

/* Product Body */
.product-body {
  padding: 14px 16px 16px; display: flex; flex-direction: column;
  flex: 1; gap: 6px;
}
.product-rating {
  display: flex; align-items: center; gap: 4px;
  font-size: .72rem; color: var(--gray-500);
}
.product-rating .stars { color: var(--amber); letter-spacing: 1px; font-size: .7rem; }
.product-name {
  font-family: var(--font-display); font-weight: 700;
  font-size: .88rem; color: var(--gray-900); line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; text-overflow: ellipsis;
  min-height: 2.4em;
}
.product-name:hover { color: var(--pink-600); }
.product-sizes {
  display: flex; gap: 4px; flex-wrap: wrap; margin-top: 2px;
}
.product-size-chip {
  padding: 2px 8px; border-radius: var(--radius-full);
  background: var(--gray-100); font-size: .62rem; font-weight: 700;
  color: var(--gray-600); font-family: var(--font-display);
}
.product-price-row {
  display: flex; align-items: baseline; gap: 8px; margin-top: 4px;
}
.product-price {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.05rem; color: var(--gray-900);
}
.product-mrp {
  font-size: .8rem; color: var(--gray-400);
  text-decoration: line-through;
}
.product-discount {
  font-size: .72rem; font-weight: 800; color: var(--rose-500);
  font-family: var(--font-display);
}
.product-footer-badges {
  display: flex; gap: 6px; margin-top: 4px; flex-wrap: wrap;
}
.product-add-btn {
  margin-top: auto; padding-top: 10px;
}
.product-add-btn .btn { width: 100%; }

/* Add to Cart bounce */
@keyframes cartBounce {
  0% { transform: scale(1); }
  25% { transform: scale(1.1); }
  50% { transform: scale(.95); }
  100% { transform: scale(1); }
}
.cart-bounce { animation: cartBounce .35s var(--ease); }

/* ---------- Feature / USP Cards ---------- */
.usp-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.usp-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 28px 22px;
  text-align: center; transition: var(--transition);
}
.usp-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-md);
  border-color: var(--pink-300);
}
.usp-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-100), var(--pink-200));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; font-size: 1.5rem;
  transition: var(--transition);
}
.usp-card:hover .usp-icon {
  background: linear-gradient(135deg, var(--pink-300), var(--pink-400));
  transform: scale(1.1);
}
.usp-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: .92rem; color: var(--gray-900); margin-bottom: 6px;
}
.usp-desc { font-size: .82rem; color: var(--gray-500); margin: 0; line-height: 1.5; }

/* ---------- Combo Section ---------- */
.combo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.combo-card {
  background: linear-gradient(135deg, var(--pink-100), var(--lavender-100));
  border-radius: var(--radius-xl); padding: 28px;
  text-align: center; transition: var(--transition);
  border: 2px solid transparent; position: relative; overflow: hidden;
}
.combo-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
  border-color: var(--pink-400);
}
.combo-card .combo-badge {
  background: var(--rose-500); color: var(--white);
  padding: 4px 14px; border-radius: var(--radius-full);
  font-size: .72rem; font-weight: 800; display: inline-block;
  margin-bottom: 12px;
}
.combo-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.combo-card .combo-price {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.3rem; color: var(--gray-900);
}
.combo-card .combo-mrp {
  font-size: .85rem; color: var(--gray-500); text-decoration: line-through;
}

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 28px;
  transition: var(--transition);
}
.testi-card:hover {
  transform: translateY(-3px); box-shadow: var(--shadow-md);
  border-color: var(--pink-300);
}
.testi-stars { color: var(--amber); font-size: .85rem; letter-spacing: 2px; margin-bottom: 12px; }
.testi-text {
  font-size: .92rem; color: var(--gray-700); line-height: 1.65;
  font-style: italic; margin-bottom: 18px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-300), var(--pink-500));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800;
  color: var(--white); font-size: .9rem;
}
.testi-name { font-family: var(--font-display); font-weight: 700; font-size: .88rem; color: var(--gray-900); }
.testi-role { font-size: .74rem; color: var(--gray-500); }

/* ---------- Newsletter ---------- */
.newsletter {
  background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
  border-radius: var(--radius-xl); padding: 56px 48px;
  text-align: center; color: var(--white); position: relative; overflow: hidden;
}
.newsletter::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,.12) 0%, transparent 70%);
  border-radius: 50%;
}
.newsletter h2 { color: var(--white); font-size: 1.8rem; margin-bottom: 8px; }
.newsletter p { color: rgba(255,255,255,.85); max-width: 440px; margin: 0 auto 24px; }
.newsletter-form {
  display: flex; gap: 10px; max-width: 420px; margin: 0 auto;
}
.newsletter-form input {
  flex: 1; padding: 13px 20px; border: 2px solid rgba(255,255,255,.3);
  border-radius: var(--radius-full); background: rgba(255,255,255,.15);
  color: var(--white); font-size: .9rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.6); }
.newsletter-form input:focus {
  border-color: var(--white); background: rgba(255,255,255,.25);
  outline: none;
}

/* ---------- Instagram Gallery ---------- */
.insta-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px;
}
.insta-item {
  aspect-ratio: 1/1; border-radius: var(--radius-sm);
  overflow: hidden; position: relative; cursor: pointer;
  background: var(--pink-100);
}
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.insta-item:hover img { transform: scale(1.1); }
.insta-item::after {
  content: '📸'; position: absolute; inset: 0;
  background: rgba(26,26,46,.5); display: flex;
  align-items: center; justify-content: center;
  font-size: 1.5rem; opacity: 0; transition: opacity .25s;
}
.insta-item:hover::after { opacity: 1; }

/* ---------- Filters Sidebar ---------- */
.products-layout {
  display: grid; grid-template-columns: 260px 1fr; gap: 28px;
  align-items: flex-start;
}
.filters-panel {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 24px;
  position: sticky; top: 130px;
}
.filter-section { margin-bottom: 24px; }
.filter-section:last-child { margin-bottom: 0; }
.filter-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: .78rem; text-transform: uppercase;
  letter-spacing: .08em; color: var(--gray-500);
  margin-bottom: 12px; display: flex; align-items: center;
  justify-content: space-between;
}
.filter-title .toggle-icon { cursor: pointer; }
.filter-divider { height: 1px; background: var(--gray-100); margin: 20px 0; }
.filter-option {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 0; font-size: .86rem; color: var(--gray-700);
}
.filter-option label {
  display: flex; align-items: center; gap: 8px; cursor: pointer; flex: 1;
}
.filter-option input[type="checkbox"] {
  accent-color: var(--pink-500); width: 16px; height: 16px;
}
.filter-option .count {
  font-size: .72rem; color: var(--gray-400);
  background: var(--gray-100); padding: 2px 8px;
  border-radius: var(--radius-full);
}
.price-range input[type="range"] {
  width: 100%; accent-color: var(--pink-500);
}
.price-labels {
  display: flex; justify-content: space-between;
  font-size: .78rem; color: var(--gray-500); margin-top: 4px;
}

/* ---------- Results Bar ---------- */
.results-bar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
}
.results-count { font-size: .88rem; color: var(--gray-500); }
.results-count strong { color: var(--gray-900); }
.sort-select {
  padding: 9px 14px; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm); font-size: .85rem;
  background: var(--white); font-family: var(--font-body);
  color: var(--gray-700);
}

/* ---------- Pagination ---------- */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 40px; }
.pagination a, .pagination button {
  width: 40px; height: 40px; display: flex; align-items: center;
  justify-content: center; border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-200); font-size: .85rem;
  font-weight: 700; color: var(--gray-700); background: var(--white);
  transition: var(--transition); cursor: pointer;
}
.pagination .active {
  background: var(--pink-500); border-color: var(--pink-500); color: var(--white);
}
.pagination a:hover:not(.active), .pagination button:hover:not(.active) {
  border-color: var(--pink-400); color: var(--pink-600);
}

/* ---------- Product Detail ---------- */
.pd-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: flex-start; }
.pd-gallery { position: sticky; top: 130px; }
.pd-main-image {
  aspect-ratio: 1/1; background: var(--gray-50);
  border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--gray-200); position: relative;
  cursor: zoom-in; margin-bottom: 12px;
}
.pd-main-image img { width: 100%; height: 100%; object-fit: contain; }
.pd-thumbs { display: flex; gap: 8px; }
.pd-thumb {
  width: 72px; height: 72px; border-radius: var(--radius-sm);
  border: 2px solid var(--gray-200); overflow: hidden;
  cursor: pointer; transition: border-color .2s;
}
.pd-thumb.active, .pd-thumb:hover { border-color: var(--pink-500); }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }

.pd-title { font-size: 1.75rem; margin-bottom: 8px; }
.pd-rating {
  display: flex; align-items: center; gap: 10px;
  font-size: .86rem; color: var(--gray-500); margin-bottom: 16px;
}
.pd-rating .stars { color: var(--amber); letter-spacing: 2px; }
.pd-price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 20px; }
.pd-price { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--gray-900); }
.pd-mrp { font-size: .95rem; color: var(--gray-400); text-decoration: line-through; }
.pd-discount {
  font-size: .85rem; font-weight: 800; color: var(--rose-500);
  background: rgba(244,63,122,.08); padding: 4px 12px;
  border-radius: var(--radius-full);
}

/* Size Selector */
.size-selector { margin: 20px 0; }
.size-selector h4 { font-size: .88rem; margin-bottom: 10px; }
.size-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.size-chip {
  padding: 10px 18px; border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm); font-family: var(--font-display);
  font-weight: 700; font-size: .82rem; color: var(--gray-700);
  cursor: pointer; transition: var(--transition); background: var(--white);
}
.size-chip:hover { border-color: var(--pink-400); }
.size-chip.active {
  border-color: var(--pink-500); background: var(--pink-50);
  color: var(--pink-600);
}

/* Quantity */
.qty-selector {
  display: flex; align-items: center; gap: 0;
  border: 2px solid var(--gray-200); border-radius: var(--radius-sm);
  overflow: hidden; width: fit-content;
}
.qty-btn {
  width: 40px; height: 40px; display: flex; align-items: center;
  justify-content: center; background: var(--gray-50);
  border: none; cursor: pointer; font-size: 1.1rem; font-weight: 700;
  color: var(--gray-700); transition: background .15s;
}
.qty-btn:hover { background: var(--pink-100); color: var(--pink-600); }
.qty-value {
  width: 48px; text-align: center; font-weight: 700;
  font-family: var(--font-display); font-size: .95rem; color: var(--gray-900);
  border: none; background: var(--white);
}

/* Trust Badges */
.trust-badges {
  display: flex; gap: 16px; flex-wrap: wrap;
  padding: 16px 0; margin: 16px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.trust-badge {
  display: flex; align-items: center; gap: 6px;
  font-size: .78rem; font-weight: 600; color: var(--gray-600);
}
.trust-badge svg { width: 18px; height: 18px; color: var(--mint); }

/* Pincode Checker */
.pincode-checker {
  background: var(--gray-50); border-radius: var(--radius-md);
  padding: 16px; margin: 16px 0;
}
.pincode-checker h4 { font-size: .85rem; margin-bottom: 8px; }
.pincode-form { display: flex; gap: 8px; }
.pincode-form input {
  flex: 1; padding: 10px 14px; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm); font-size: .88rem;
}
.pincode-result {
  font-size: .82rem; margin-top: 8px;
  display: flex; align-items: center; gap: 6px;
}
.pincode-result.success { color: var(--mint); }
.pincode-result.error { color: var(--red); }

/* Tabs */
.pd-tabs { margin-top: 48px; }
.tab-nav {
  display: flex; gap: 0; border-bottom: 2px solid var(--gray-100);
  margin-bottom: 28px; overflow-x: auto;
}
.tab-nav button {
  padding: 14px 24px; font-family: var(--font-display);
  font-weight: 700; font-size: .88rem; color: var(--gray-500);
  border: none; background: none; cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px; transition: var(--transition-fast);
  white-space: nowrap;
}
.tab-nav button.active { color: var(--pink-600); border-bottom-color: var(--pink-500); }
.tab-nav button:hover { color: var(--gray-900); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Spec Table */
.spec-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.spec-table tr { border-bottom: 1px solid var(--gray-100); }
.spec-table tr:nth-child(odd) td { background: var(--gray-50); }
.spec-table td { padding: 12px 14px; color: var(--gray-700); }
.spec-table td:first-child { font-weight: 700; color: var(--gray-900); width: 40%; }

/* ---------- Cart Page ---------- */
.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: flex-start; }
.cart-item {
  display: grid; grid-template-columns: 100px 1fr auto;
  gap: 16px; padding: 20px; background: var(--white);
  border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  margin-bottom: 12px; align-items: center;
}
.cart-item-img {
  width: 100px; height: 100px; border-radius: var(--radius-sm);
  background: var(--gray-50); overflow: hidden;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name { font-family: var(--font-display); font-weight: 700; color: var(--gray-900); font-size: .9rem; }
.cart-item-meta { font-size: .78rem; color: var(--gray-500); }
.cart-item-price { font-family: var(--font-display); font-weight: 800; color: var(--gray-900); }
.cart-item-remove {
  color: var(--gray-400); cursor: pointer; transition: color .15s;
  background: none; border: none; padding: 4px;
}
.cart-item-remove:hover { color: var(--red); }
.cart-item-remove svg { width: 18px; height: 18px; }

/* Cart Progress Bar */
.cart-progress {
  background: var(--pink-50); border: 1px solid var(--pink-200);
  border-radius: var(--radius-lg); padding: 16px 20px;
  margin-bottom: 20px;
}
.cart-progress-text {
  font-size: .82rem; font-weight: 600; color: var(--gray-700);
  margin-bottom: 8px;
}
.cart-progress-text .highlight { color: var(--pink-600); font-weight: 800; }
.cart-progress-bar {
  height: 6px; background: var(--pink-200); border-radius: var(--radius-full);
  overflow: hidden;
}
.cart-progress-fill {
  height: 100%; background: linear-gradient(90deg, var(--pink-500), var(--mint));
  border-radius: var(--radius-full); transition: width .5s var(--ease);
}

/* Order Summary */
.order-summary {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 28px;
  position: sticky; top: 130px;
}
.order-summary h3 { font-size: 1.1rem; margin-bottom: 20px; }
.summary-row {
  display: flex; justify-content: space-between;
  padding: 10px 0; font-size: .9rem; color: var(--gray-600);
}
.summary-row.total {
  border-top: 2px solid var(--gray-200);
  margin-top: 12px; padding-top: 16px;
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.1rem; color: var(--gray-900);
}
.summary-row .discount { color: var(--mint); font-weight: 600; }
.coupon-input {
  display: flex; gap: 8px; margin: 16px 0;
}
.coupon-input input {
  flex: 1; padding: 10px 14px; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm); font-size: .85rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--gray-900); color: var(--gray-400);
  padding-top: 64px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr;
  gap: 36px; padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand .brand-name { color: var(--white); }
.footer-brand p {
  color: var(--gray-400); font-size: .86rem;
  max-width: 260px; line-height: 1.6;
}
.footer-social { display: flex; gap: 8px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.06); display: flex;
  align-items: center; justify-content: center;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--pink-500); color: var(--white);
  transform: translateY(-2px);
}
.footer-social a svg { width: 16px; height: 16px; }
.footer-col h4 {
  color: var(--white); font-size: .85rem; margin-bottom: 16px;
  font-family: var(--font-display); font-weight: 800;
  letter-spacing: .03em; text-transform: uppercase;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col a {
  font-size: .84rem; color: var(--gray-400);
  display: flex; align-items: center; gap: 6px;
  transition: color .15s;
}
.footer-col a:hover { color: var(--pink-400); }
.footer-col a svg { width: 12px; height: 12px; color: var(--pink-400); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; font-size: .76rem; color: var(--gray-500);
}
.footer-bottom a { color: var(--gray-500); }
.footer-bottom a:hover { color: var(--pink-400); }
.footer-payments {
  display: flex; gap: 8px; align-items: center;
}
.footer-payments img { height: 24px; opacity: .6; }

/* ---------- Mobile Bottom Nav ---------- */
.mobile-bottom-nav {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--white); border-top: 1px solid var(--gray-200);
  z-index: 9999; padding: 6px 0 env(safe-area-inset-bottom, 6px);
  box-shadow: 0 -2px 12px rgba(26,26,46,.08);
}
.mobile-bottom-nav .nav-items {
  display: flex; justify-content: space-around; align-items: center;
}
.mobile-bottom-nav .nav-item {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  font-size: .62rem; font-weight: 700; color: var(--gray-500);
  font-family: var(--font-display); padding: 6px 8px;
  position: relative; transition: color .15s; cursor: pointer;
  background: none; border: none;
}
.mobile-bottom-nav .nav-item:hover,
.mobile-bottom-nav .nav-item.active { color: var(--pink-600); }
.mobile-bottom-nav .nav-item svg { width: 22px; height: 22px; }
.mobile-bottom-nav .nav-item .badge-count {
  position: absolute; top: 0; right: 2px;
  background: var(--rose-500); color: var(--white);
  font-size: .55rem; min-width: 16px; height: 16px;
  border-radius: var(--radius-full); display: flex;
  align-items: center; justify-content: center;
  padding: 0 3px; font-weight: 800;
}

/* Sticky Mobile Add to Cart Bar */
.sticky-add-bar {
  display: none; position: fixed; bottom: 56px; left: 0; right: 0;
  background: var(--white); border-top: 1px solid var(--gray-200);
  padding: 10px 16px; z-index: 999;
  box-shadow: 0 -4px 16px rgba(26,26,46,.08);
}
.sticky-add-bar .bar-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.sticky-add-bar .bar-price {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.1rem; color: var(--gray-900);
}

/* ---------- Toast Notification ---------- */
.toast {
  position: fixed; bottom: 80px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--gray-900); color: var(--white);
  padding: 12px 24px; border-radius: var(--radius-full);
  font-family: var(--font-display); font-weight: 700; font-size: .85rem;
  box-shadow: var(--shadow-xl); z-index: 10001;
  display: flex; align-items: center; gap: 10px;
  opacity: 0; transition: opacity .3s, transform .3s; pointer-events: none;
}
.toast.show {
  opacity: 1; transform: translateX(-50%) translateY(0);
}
.toast svg { width: 18px; height: 18px; }
.toast-success svg { color: var(--mint); }
.toast-error svg { color: var(--red); }

/* ---------- Skeleton Loader ---------- */
.skeleton {
  background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-50) 50%, var(--gray-100) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.skeleton-text { height: 14px; margin-bottom: 8px; }
.skeleton-title { height: 20px; width: 70%; margin-bottom: 12px; }
.skeleton-img { aspect-ratio: 1/1; border-radius: var(--radius-lg); }
.skeleton-btn { height: 40px; border-radius: var(--radius-full); }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  font-size: .84rem; color: var(--gray-500);
  padding: 16px 0; display: flex; align-items: center; gap: 6px;
  flex-wrap: wrap;
}
.breadcrumbs a:hover { color: var(--pink-600); }
.breadcrumbs .sep { color: var(--gray-300); }
.breadcrumbs .current { color: var(--gray-900); font-weight: 700; }

/* ---------- Page Banner ---------- */
.page-banner {
  background: linear-gradient(135deg, var(--pink-100), var(--pink-50));
  padding: 48px 0; text-align: center; overflow: hidden;
  position: relative;
}
.page-banner h1 { font-size: 2.2rem; margin-bottom: 8px; }
.page-banner p { color: var(--gray-500); max-width: 500px; margin: 0 auto; }

/* ---------- Form Elements ---------- */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block; font-size: .82rem; font-weight: 700;
  color: var(--gray-900); margin-bottom: 6px;
  font-family: var(--font-display);
}
.form-control {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
  font-size: .9rem; background: var(--white); color: var(--gray-900);
  transition: border-color .2s, box-shadow .2s;
}
.form-control:focus {
  border-color: var(--pink-400); outline: none;
  box-shadow: 0 0 0 4px rgba(249,168,201,.12);
}
.form-control::placeholder { color: var(--gray-400); }
textarea.form-control { resize: vertical; min-height: 110px; }
.form-row { display: flex; gap: 14px; }
.form-row .form-group { flex: 1; }

/* ---------- Empty State ---------- */
.empty-state {
  text-align: center; padding: 72px 24px;
}
.empty-state .empty-icon {
  font-size: 4rem; margin-bottom: 16px;
}
.empty-state h3 { font-size: 1.3rem; margin-bottom: 8px; }
.empty-state p { color: var(--gray-500); max-width: 360px; margin: 0 auto 24px; }

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
  position: fixed; bottom: 80px; right: 20px;
  background: #25D366; color: #ffffff; border-radius: var(--radius-full);
  padding: 12px 20px; display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: .85rem;
  box-shadow: 0 8px 24px rgba(37,211,102,.4); z-index: 998;
  transition: transform .22s var(--ease), box-shadow .22s;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 28px rgba(37,211,102,.55);
  color: #ffffff;
}
.whatsapp-float svg { width: 22px; height: 22px; }

/* ---------- Scroll Reveal Animations ---------- */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-30px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(30px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Staggered children */
.reveal-stagger > * { opacity: 0; transform: translateY(20px); transition: opacity .5s, transform .5s; }
.reveal-stagger.visible > *:nth-child(1) { transition-delay: .05s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: .1s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: .15s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: .2s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: .25s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: .3s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(7) { transition-delay: .35s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(8) { transition-delay: .4s; opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .combo-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-list { display: none; }
  .menu-btn { display: flex; }
}

@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .section { padding: 48px 0; }
  .section-head h2 { font-size: 1.6rem; }

  /* Header */
  .header-top { height: 60px; gap: 10px; }
  .search-bar { display: none; }
  .brand-logo { width: 36px; height: 36px; }
  .brand-name { font-size: 1.05rem; }
  .brand-tag { display: none; }
  .main-nav { display: none; }
  .main-nav.mobile-open {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }
  .main-nav.mobile-open .nav-list {
    flex-direction: column;
    height: auto;
    padding: 16px 0;
    align-items: stretch;
  }
  .main-nav.mobile-open .nav-list a {
    text-align: left;
    padding: 12px 24px;
    border-bottom: 1px solid var(--gray-100);
  }
  .main-nav.mobile-open .nav-list a:hover {
    background: var(--pink-50);
  }
  .menu-btn { display: flex; }

  .hero-slide .container { grid-template-columns: 1fr !important; gap: 24px !important; }
  .hero-content { padding: 40px 0 20px; text-align: center; }
  .hero-content h1 { font-size: 2rem; }
  .hero-content p { max-width: 100%; margin: 0 auto 20px; }
  .hero-cta { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { padding: 20px; }
  .hero-float { display: none; }

  /* Grids */
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .testi-grid { grid-template-columns: 1fr; }
  .combo-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-circles { gap: 12px; }
  .cat-circle { width: 72px; }
  .cat-circle-icon { width: 56px; height: 56px; font-size: 1.3rem; }
  .cat-circle-name { font-size: .7rem; }

  /* Product Listing */
  .products-layout { grid-template-columns: 1fr; }
  .filters-panel { position: static; }

  /* Product Detail */
  .pd-layout { grid-template-columns: 1fr; gap: 24px; }
  .pd-gallery { position: static; }
  .pd-title { font-size: 1.4rem; }
  .pd-price { font-size: 1.5rem; }

  /* Cart */
  .cart-layout { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .cart-item { grid-template-columns: 80px 1fr auto; gap: 12px; padding: 14px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

  /* Newsletter */
  .newsletter { padding: 36px 24px; border-radius: var(--radius-lg); }
  .newsletter h2 { font-size: 1.4rem; }
  .newsletter-form { flex-direction: column; }

  /* Mobile bottom nav */
  .mobile-bottom-nav { display: block; }
  .whatsapp-float { bottom: 70px; right: 14px; padding: 10px 14px; font-size: .78rem; }
  .sticky-add-bar { display: block; }
  body { padding-bottom: 56px; }
}

@media (max-width: 480px) {
  .container { padding: 0 12px; }
  .header-top { height: 56px; gap: 6px; }
  .brand-logo { width: 32px; height: 32px; font-size: 1rem; }
  .brand-name { font-size: .95rem; }
  .header-action-btn { width: 36px; height: 36px; }
  .header-action-btn svg { width: 20px; height: 20px; }

  .hero-content h1 { font-size: 1.6rem; }
  .product-grid { gap: 8px; }
  .product-body { padding: 10px 12px 12px; }
  .product-name { font-size: .8rem; }
  .product-price { font-size: .92rem; }

  .age-tabs { gap: 6px; }
  .age-tab { padding: 8px 16px; font-size: .78rem; }

  .pd-thumbs { gap: 6px; }
  .pd-thumb { width: 56px; height: 56px; }

  .cart-item { grid-template-columns: 70px 1fr; }
  .cart-item-img { width: 70px; height: 70px; }

  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 360px) {
  .container { padding: 0 8px; }
  .brand-name { font-size: .85rem; }
  .header-actions { gap: 2px; }
}

/* ---------- Utility Classes ---------- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.gap-sm { gap: 8px; }
.gap-md { gap: 16px; }
.gap-lg { gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.grid { display: grid; }
.hidden { display: none !important; }
.desktop-only { }
.mobile-only { display: none !important; }
@media (max-width: 768px) {
  .desktop-only { display: none !important; }
  .mobile-only { display: block !important; }
  .mobile-only.flex { display: flex !important; }
}
