/* ═══════════════════════════════════════════════════
   AZAN BABY CARE — PREMIUM REDESIGN v4
   Mobile-First · Shopify-Level · Conversion-Focused
═══════════════════════════════════════════════════ */

:root {
  --primary:     #FF7A45;
  --primary-d:   #E8622E;
  --primary-lt:  #FFF4EE;
  --primary-mid: #FFE0CC;
  --secondary:   #22C55E;
  --secondary-d: #16A34A;
  --secondary-lt:#F0FDF4;
  --wa:          #25D366;
  --wa-d:        #1DAE55;
  --dark:        #0F172A;
  --body-text:   #334155;
  --muted:       #64748B;
  --subtle:      #94A3B8;
  --border:      #E2E8F0;
  --surface:     #F8FAFC;
  --white:       #FFFFFF;
  --sale:        #EF4444;
  --star:        #F59E0B;
  --gold:        #F59E0B;
  --r-sm:        10px;
  --r:           16px;
  --r-lg:        24px;
  --r-xl:        32px;
  --sh-sm: 0 1px 4px rgba(15,23,42,.06), 0 1px 2px rgba(15,23,42,.04);
  --sh:    0 4px 16px rgba(15,23,42,.10), 0 2px 6px rgba(15,23,42,.06);
  --sh-md: 0 8px 32px rgba(15,23,42,.12), 0 4px 12px rgba(15,23,42,.07);
  --sh-lg: 0 20px 56px rgba(15,23,42,.18), 0 8px 20px rgba(15,23,42,.10);
  --ease:  cubic-bezier(0.4,0,0.2,1);
  --fast:  0.15s cubic-bezier(0.4,0,0.2,1);
  --normal:0.25s cubic-bezier(0.4,0,0.2,1);
  --slow:  0.45s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; -webkit-tap-highlight-color:transparent; }
html { scroll-behavior:smooth; overflow-x:hidden; font-size:16px; }
body {
  font-family: 'Hind Siliguri', 'Nunito', sans-serif;
  color: var(--body-text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width:100%; display:block; }
a { text-decoration:none; color:inherit; }
button { cursor:pointer; border:none; background:none; font-family:inherit; }

.container { max-width:1280px; margin:0 auto; padding:0 16px; }
@media(min-width:768px) { .container { padding:0 24px; } }
@media(min-width:1024px) { .container { padding:0 40px; } }

/* ═══════ ANNOUNCEMENT BAR ═══════ */
.announce-bar {
  background: linear-gradient(90deg, var(--dark) 0%, #1e293b 100%);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-family: 'Hind Siliguri', sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 100;
}
.announce-bar .marquee-text span { margin: 0 32px; }
.announce-bar .marquee-text span::before { content: "•"; margin-right: 12px; color: var(--primary); }

/* ═══════ NAVBAR ═══════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--normal), padding var(--normal);
}
.navbar.scrolled { box-shadow: var(--sh-md); }
.navbar-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  transition: padding var(--normal);
}
.navbar.scrolled .navbar-inner { padding: 8px 0; }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--primary) 0%, #FF9F6B 100%);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 12px rgba(255,122,69,.3);
  transition: transform var(--fast);
}
.nav-logo:hover .nav-logo-icon { transform: scale(1.05) rotate(-3deg); }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo-name { font-family:'Poppins',sans-serif; font-weight:800; font-size:16px; color:var(--dark); }
.nav-logo-tagline { font-size:10px; color:var(--primary); font-weight:600; letter-spacing:.05em; text-transform:uppercase; }

.nav-search {
  flex: 1;
  max-width: 400px;
  display: none;
  position: relative;
}
@media(min-width:768px) { .nav-search { display: block; } }
.nav-search input {
  width: 100%;
  padding: 9px 16px 9px 42px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 14px;
  font-family: 'Hind Siliguri', sans-serif;
  background: var(--surface);
  color: var(--dark);
  outline: none;
  transition: border-color var(--fast), box-shadow var(--fast);
}
.nav-search input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(255,122,69,.12); }
.nav-search-icon {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--muted); pointer-events:none;
}

.nav-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.nav-icon-btn {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark);
  font-size: 20px;
  transition: background var(--fast), color var(--fast);
  position: relative;
}
.nav-icon-btn:hover { background: var(--surface); color: var(--primary); }
.nav-badge {
  position: absolute; top: 4px; right: 4px;
  width: 18px; height: 18px;
  background: var(--sale);
  color: #fff;
  font-size: 10px; font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.nav-wa-btn {
  display: flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #25D366, #1DAE55);
  color: #fff;
  padding: 9px 16px;
  border-radius: 50px;
  font-size: 13px; font-weight: 700;
  box-shadow: 0 4px 12px rgba(37,211,102,.3);
  transition: transform var(--fast), box-shadow var(--fast);
  white-space: nowrap;
}
.nav-wa-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,211,102,.4); }
.nav-wa-btn svg { width: 18px; height: 18px; }
.nav-hamburger {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark); font-size: 22px;
  transition: background var(--fast);
}
.nav-hamburger:hover { background: var(--surface); }
@media(min-width:1024px) { .nav-hamburger { display:none; } }

/* ═══════ MOBILE MENU ═══════ */
.mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15,23,42,.6);
  z-index: 1000;
  opacity: 0; pointer-events: none;
  transition: opacity var(--normal);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu-panel {
  position: absolute; top: 0; right: 0;
  width: min(320px, 85vw); height: 100%;
  background: #fff;
  padding: 24px 20px;
  transform: translateX(100%);
  transition: transform var(--slow);
  overflow-y: auto;
}
.mobile-menu.open .mobile-menu-panel { transform: translateX(0); }
.mobile-menu-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--muted);
}
.mobile-nav-links { margin-top: 40px; display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-link {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 12px;
  border-radius: var(--r);
  font-size: 16px; font-weight: 600; color: var(--dark);
  transition: background var(--fast), color var(--fast);
}
.mobile-nav-link:hover { background: var(--primary-lt); color: var(--primary); }
.mobile-nav-link .icon { font-size: 20px; width: 28px; text-align:center; }

/* ═══════ HERO — SINGLE FULL-WIDTH BANNER ═══════ */
.hero {
  position: relative;
  width: 100%;
  min-height: 520px;
  height: clamp(520px, 60vw, 650px);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
@media(max-width:767px) {
  .hero { min-height: 560px; height: auto; padding: 80px 0 60px; }
}

/* Full-width sliding track — each slide fills 100vw */
.hero-track {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.75s cubic-bezier(0.77,0,0.18,1);
  position: absolute; inset: 0;
}
.hero-slide {
  width: calc(100% / 3);
  height: 100%;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

/* ── Slide backgrounds — full-width gorgeous gradients ── */
.hero-slide-1 {
  background:
    radial-gradient(ellipse 80% 60% at 15% 50%, rgba(255,200,150,.55) 0%, transparent 60%),
    radial-gradient(ellipse 70% 80% at 85% 20%, rgba(255,160,90,.35) 0%, transparent 55%),
    radial-gradient(ellipse 60% 60% at 50% 100%, rgba(255,230,180,.4) 0%, transparent 50%),
    linear-gradient(135deg, #FFF8F0 0%, #FFE8CC 35%, #FFD4A0 65%, #FFBA70 100%);
}
.hero-slide-2 {
  background:
    radial-gradient(ellipse 80% 60% at 10% 40%, rgba(147,210,255,.5) 0%, transparent 55%),
    radial-gradient(ellipse 60% 70% at 90% 60%, rgba(100,170,255,.3) 0%, transparent 50%),
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(200,230,255,.45) 0%, transparent 50%),
    linear-gradient(135deg, #EFF8FF 0%, #DBEAFE 35%, #BFDBFE 65%, #93C5FD 100%);
}
.hero-slide-3 {
  background:
    radial-gradient(ellipse 75% 60% at 20% 60%, rgba(134,239,172,.45) 0%, transparent 55%),
    radial-gradient(ellipse 65% 70% at 80% 30%, rgba(74,222,128,.3) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(187,247,208,.4) 0%, transparent 50%),
    linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 35%, #BBF7D0 65%, #86EFAC 100%);
}

/* ── Animated mesh blobs ── */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  pointer-events: none;
  animation: blobFloat 10s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes blobFloat {
  0%   { transform: translate(0px, 0px) scale(1); }
  33%  { transform: translate(15px, -20px) scale(1.04); }
  66%  { transform: translate(-10px, 12px) scale(0.97); }
  100% { transform: translate(20px, -8px) scale(1.06); }
}

/* ── Scattered floating toy emojis ── */
.hero-emojis {
  position: absolute; inset: 0; pointer-events: none; z-index: 1; overflow: hidden;
}
.hero-emoji {
  position: absolute;
  line-height: 1;
  animation: toyFloat 7s ease-in-out infinite alternate;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.10));
  user-select: none;
}
@keyframes toyFloat {
  0%   { transform: translateY(0px) rotate(0deg) scale(1); }
  30%  { transform: translateY(-14px) rotate(6deg) scale(1.03); }
  70%  { transform: translateY(6px) rotate(-4deg) scale(0.97); }
  100% { transform: translateY(-8px) rotate(3deg) scale(1.02); }
}

/* ── Center content block ── */
.hero-content {
  position: relative; z-index: 5;
  text-align: center;
  padding: 0 24px;
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
}

/* ── Content entry animation ── */
.hero-slide.is-active .hero-content { animation: heroIn 0.85s cubic-bezier(0.22,1,0.36,1) both; }
@keyframes heroIn {
  from { opacity:0; transform: translateY(32px); }
  to   { opacity:1; transform: translateY(0); }
}

/* ── Badge pill above headline ── */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 20px;
  border-radius: 50px;
  font-size: 13px; font-weight: 700; letter-spacing: .03em;
  margin-bottom: 22px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero-slide-1 .hero-badge { background: rgba(255,255,255,.55); border: 1.5px solid rgba(255,150,80,.35); color: #C04A00; }
.hero-slide-2 .hero-badge { background: rgba(255,255,255,.55); border: 1.5px solid rgba(59,130,246,.3); color: #1e40af; }
.hero-slide-3 .hero-badge { background: rgba(255,255,255,.55); border: 1.5px solid rgba(34,197,94,.3); color: #14532d; }

/* ── Headline ── */
.hero-title {
  font-family: 'Hind Siliguri', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 5.5vw, 54px);
  line-height: 1.2;
  color: #0F172A;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(255,255,255,.5);
}
.hero-title em { font-style: normal; }
.hero-slide-1 .hero-title em { color: #C54B00; }
.hero-slide-2 .hero-title em { color: #1D4ED8; }
.hero-slide-3 .hero-title em { color: #15803D; }

/* ── Subtitle ── */
.hero-sub {
  font-family: 'Hind Siliguri', sans-serif;
  font-size: clamp(14px, 2.2vw, 19px);
  color: #1E293B;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.75;
  font-weight: 500;
  opacity: .85;
}

/* ── CTA buttons ── */
.hero-btns {
  display: flex; flex-wrap: wrap; gap: 14px;
  justify-content: center; align-items: center;
}
.hero-btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 15px 32px;
  border-radius: 50px;
  font-size: 15px; font-weight: 700;
  font-family: 'Hind Siliguri', sans-serif;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
  text-decoration: none; white-space: nowrap;
}
.hero-btn:hover { transform: translateY(-3px); }
.hero-btn-primary {
  background: linear-gradient(135deg, #FF7A45 0%, #E8622E 100%);
  color: #fff;
  box-shadow: 0 8px 28px rgba(255,122,69,.45), 0 2px 6px rgba(255,122,69,.2);
}
.hero-btn-primary:hover { box-shadow: 0 14px 36px rgba(255,122,69,.55), 0 4px 10px rgba(255,122,69,.25); }
.hero-btn-wa {
  background: linear-gradient(135deg, #25D366 0%, #1AAE55 100%);
  color: #fff;
  box-shadow: 0 8px 28px rgba(37,211,102,.4), 0 2px 6px rgba(37,211,102,.18);
}
.hero-btn-wa:hover { box-shadow: 0 14px 36px rgba(37,211,102,.5), 0 4px 10px rgba(37,211,102,.22); }
.hero-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
@media(max-width:479px) {
  .hero-btn { padding: 13px 22px; font-size: 14px; }
  .hero-btns { gap: 10px; }
}

/* ── Trust pills below buttons ── */
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-top: 28px;
}
.hero-trust-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.8);
  padding: 6px 14px; border-radius: 50px;
  font-size: 12px; font-weight: 700; color: #334155;
}

/* ── Carousel arrows ── */
.hero-arrows {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 100%; display: flex; justify-content: space-between;
  padding: 0 16px; pointer-events: none; z-index: 20;
}
@media(max-width:479px) { .hero-arrows { display: none; } }
.hero-arrow {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255,255,255,.9);
  display: flex; align-items: center; justify-content: center;
  color: var(--dark); font-size: 22px; font-weight: 700;
  pointer-events: all; cursor: pointer;
  transition: background var(--fast), box-shadow var(--fast), transform var(--fast);
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.hero-arrow:hover { background: #fff; box-shadow: 0 8px 24px rgba(0,0,0,.18); transform: scale(1.08); }

/* ── Slide indicator dots ── */
.hero-dots {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 20;
}
.hero-dot {
  height: 8px; border-radius: 4px;
  background: rgba(255,255,255,.5);
  border: 1.5px solid rgba(0,0,0,.12);
  transition: all 0.35s var(--ease);
  cursor: pointer;
  width: 8px;
}
.hero-dot.active { width: 28px; background: var(--primary); border-color: transparent; box-shadow: 0 2px 8px rgba(255,122,69,.4); }

/* ═══════ TRUST BAR ═══════ */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  overflow: hidden;
}
.trust-inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 16px;
}
.trust-inner::-webkit-scrollbar { display:none; }
@media(min-width:768px) {
  .trust-inner { justify-content: center; gap: 0; overflow-x: visible; }
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 20px;
  border-right: 1px solid var(--border);
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 13px; font-weight: 600; color: var(--body-text);
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.ti-orange { background: var(--primary-lt); }
.ti-green  { background: var(--secondary-lt); }
.ti-blue   { background: #EFF6FF; }
.ti-gray   { background: var(--surface); }

/* ═══════ SECTION HEADERS ═══════ */
.section-head { text-align: center; margin-bottom: 40px; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary-lt);
  color: var(--primary);
  border: 1px solid var(--primary-mid);
  padding: 5px 16px; border-radius: 50px;
  font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Hind Siliguri', sans-serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700; color: var(--dark);
  line-height: 1.3;
  margin-bottom: 10px;
}
.section-sub { font-size: 16px; color: var(--muted); max-width: 500px; margin: 0 auto; }

/* ═══════ CATEGORIES ═══════ */
.categories-section { padding: 60px 0 40px; background: var(--surface); }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media(min-width:640px) { .cat-grid { grid-template-columns: repeat(6, 1fr); gap: 16px; } }
.cat-card {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 20px 12px;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all var(--normal);
  text-align: center;
  text-decoration: none;
}
.cat-card:hover {
  border-color: var(--primary);
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
}
.cat-icon {
  width: 60px; height: 60px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  transition: transform var(--fast);
}
.cat-card:hover .cat-icon { transform: scale(1.1) rotate(-5deg); }
.cat-name { font-size: 12px; font-weight: 700; color: var(--dark); line-height: 1.3; }

/* ═══════ PRODUCTS ═══════ */
.products-section { padding: 60px 0; }
.products-filter {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 32px;
  justify-content: center;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 13px; font-weight: 600; color: var(--muted);
  transition: all var(--fast);
  font-family: 'Hind Siliguri', sans-serif;
  cursor: pointer;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(255,122,69,.3);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media(min-width:640px)  { .product-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media(min-width:1024px) { .product-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

.product-card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1.5px solid var(--border);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow var(--normal), transform var(--normal), border-color var(--normal);
  position: relative;
}
.product-card:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-5px);
  border-color: rgba(255,122,69,.25);
}

.card-img-wrap {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--surface);
  cursor: pointer;
}
.card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.product-card:hover .card-img { transform: scale(1.07); }

/* Emoji placeholder */
.card-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 64px;
  background: linear-gradient(135deg, #FFF4EE, #FFE4CC);
}

.card-badge {
  position: absolute; top: 10px; left: 10px;
  display: flex; flex-direction: column; gap: 5px;
}
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 10px; font-weight: 800; letter-spacing: .03em;
  line-height: 1;
}
.badge-sale   { background: var(--sale); color: #fff; }
.badge-hot    { background: linear-gradient(135deg, #FF7A45, #FF4500); color: #fff; }
.badge-new    { background: linear-gradient(135deg, #22C55E, #16A34A); color: #fff; }
.badge-best   { background: linear-gradient(135deg, #F59E0B, #D97706); color: #fff; }

.card-quick-view {
  position: absolute; bottom: -40px; left: 0; right: 0;
  background: rgba(15,23,42,.85);
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 12px; font-weight: 700;
  transition: bottom var(--normal);
  backdrop-filter: blur(4px);
}
.product-card:hover .card-quick-view { bottom: 0; }

.card-body { padding: 14px; display: flex; flex-direction: column; gap: 8px; flex: 1; }

.card-age {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--primary-lt);
  color: var(--primary);
  padding: 2px 8px; border-radius: 50px;
  font-size: 10px; font-weight: 700;
  align-self: flex-start;
}

.card-name {
  font-size: 14px; font-weight: 700; color: var(--dark);
  line-height: 1.4; display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: none;
}
.card-name:hover { color: var(--primary); }

.card-stars { display: flex; align-items: center; gap: 4px; }
.stars { color: var(--star); font-size: 12px; letter-spacing: -1px; }
.review-count { font-size: 11px; color: var(--muted); }

.card-price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px; }
.price-current { font-size: 18px; font-weight: 800; color: var(--primary); font-family: 'Poppins', sans-serif; }
.price-old { font-size: 13px; color: var(--subtle); text-decoration: line-through; }
.price-save { font-size: 11px; font-weight: 700; color: var(--secondary); background: var(--secondary-lt); padding: 1px 6px; border-radius: 50px; }

.card-actions { display: flex; flex-direction: column; gap: 8px; margin-top: auto; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 16px;
  border-radius: 50px;
  font-size: 13px; font-weight: 700;
  transition: all var(--fast);
  font-family: 'Hind Siliguri', sans-serif;
  cursor: pointer; border: none;
  text-decoration: none;
}
.btn-wa {
  background: linear-gradient(135deg, var(--wa), var(--wa-d));
  color: #fff;
  box-shadow: 0 4px 14px rgba(37,211,102,.3);
}
.btn-wa:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,211,102,.45); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--muted);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-d));
  color: #fff;
  box-shadow: 0 4px 14px rgba(255,122,69,.3);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,122,69,.45); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ═══════ BEST SELLERS ═══════ */
.bestsellers-section { padding: 60px 0; background: linear-gradient(180deg, #FFF8F4 0%, #fff 100%); }
.bs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media(min-width:768px) { .bs-grid { grid-template-columns: repeat(4, 1fr); } }

.bs-card {
  position: relative;
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: all var(--normal);
  text-decoration: none;
  display: block;
}
.bs-card:hover { box-shadow: var(--sh-lg); transform: translateY(-5px); border-color: rgba(255,122,69,.3); }
.bs-img-wrap {
  aspect-ratio: 4/3;
  background: var(--surface);
  position: relative; overflow: hidden;
}
.bs-placeholder {
  width:100%; height:100%;
  display:flex; align-items:center; justify-content:center;
  font-size:56px;
  background: linear-gradient(135deg, #FFF4EE, #FFE4CC);
}
.bs-img-wrap img { width:100%; height:100%; object-fit:cover; transition: transform 0.5s var(--ease); }
.bs-card:hover .bs-img-wrap img { transform: scale(1.06); }
.bs-rank {
  position: absolute; top: 10px; left: 10px;
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--gold), #D97706);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 900;
  box-shadow: 0 3px 10px rgba(245,158,11,.4);
}
.bs-body { padding: 16px; }
.bs-name { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 8px; line-height: 1.35; }
.bs-price { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.bs-price-current { font-size: 17px; font-weight: 800; color: var(--primary); }
.bs-price-old { font-size: 12px; color: var(--subtle); text-decoration: line-through; }

/* ═══════ FLASH SALE ═══════ */
.flash-section {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
  position: relative; overflow: hidden;
}
.flash-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(255,122,69,.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(37,211,102,.1) 0%, transparent 60%);
}
.flash-header {
  text-align: center; margin-bottom: 40px; position: relative; z-index: 1;
}
.flash-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-d));
  color: #fff;
  padding: 8px 20px; border-radius: 50px;
  font-size: 13px; font-weight: 800; letter-spacing: .05em;
  margin-bottom: 16px;
  animation: flashPulse 2s ease-in-out infinite;
}
@keyframes flashPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,122,69,.5); }
  50% { box-shadow: 0 0 0 12px rgba(255,122,69,0); }
}
.flash-title { font-size: clamp(22px, 4vw, 36px); font-weight: 700; color: #fff; margin-bottom: 16px; }
.countdown {
  display: flex; gap: 12px; justify-content: center; align-items: center;
}
.countdown-box {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border-radius: var(--r);
  padding: 12px 16px;
  min-width: 60px;
}
.countdown-num { font-size: 28px; font-weight: 800; color: #fff; font-family:'Poppins',sans-serif; line-height: 1; }
.countdown-label { font-size: 10px; color: rgba(255,255,255,.6); font-weight: 600; margin-top: 4px; text-transform: uppercase; letter-spacing: .05em; }
.countdown-sep { font-size: 24px; color: rgba(255,255,255,.4); font-weight: 800; margin-top: -8px; }

.flash-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  position: relative; z-index: 1;
}
@media(min-width:640px) { .flash-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
.flash-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--normal);
  backdrop-filter: blur(4px);
}
.flash-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.flash-img {
  aspect-ratio: 1/1;
  background: rgba(255,255,255,.05);
  display: flex; align-items:center; justify-content:center;
  font-size: 52px;
}
.flash-body { padding: 14px; }
.flash-name { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.9); margin-bottom: 8px; line-height: 1.4; }
.flash-price { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.flash-price-now { font-size: 16px; font-weight: 800; color: var(--primary); }
.flash-price-old { font-size: 12px; color: rgba(255,255,255,.4); text-decoration: line-through; }
.flash-save {
  display: inline-flex;
  background: rgba(255,122,69,.2);
  border: 1px solid rgba(255,122,69,.3);
  color: var(--primary);
  padding: 2px 8px; border-radius: 50px;
  font-size: 10px; font-weight: 800;
}
.flash-viewers { font-size: 11px; color: rgba(255,255,255,.5); display: flex; align-items: center; gap: 4px; margin-bottom: 10px; }

/* ═══════ WHY CHOOSE US ═══════ */
.why-section { padding: 60px 0; background: var(--surface); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media(min-width:768px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }
.why-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 28px 20px;
  text-align: center;
  border: 1.5px solid var(--border);
  transition: all var(--normal);
}
.why-card:hover { box-shadow: var(--sh-md); transform: translateY(-4px); border-color: rgba(255,122,69,.25); }
.why-icon {
  width: 64px; height: 64px;
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--primary-lt), var(--primary-mid));
  transition: transform var(--fast);
}
.why-card:hover .why-icon { transform: scale(1.1) rotate(-5deg); }
.why-title { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.why-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ═══════ EDUCATIONAL BENEFITS ═══════ */
.edu-section { padding: 60px 0; }
.edu-layout {
  display: grid; grid-template-columns: 1fr;
  gap: 40px; align-items: center;
}
@media(min-width:768px) { .edu-layout { grid-template-columns: 1fr 1fr; } }
.edu-visual {
  background: linear-gradient(135deg, #FFF4EE, #FFE4CC);
  border-radius: var(--r-xl);
  padding: 40px;
  display: flex; align-items: center; justify-content: center;
  font-size: 100px;
  min-height: 300px;
  position: relative; overflow: hidden;
}
.edu-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255,122,69,.15) 0%, transparent 60%);
}
.edu-floating {
  position: absolute; font-size: 40px;
  animation: emojiFloat 5s ease-in-out infinite alternate;
}
.edu-benefits { display: flex; flex-direction: column; gap: 16px; }
.edu-benefit {
  display: flex; gap: 16px;
  padding: 18px;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1.5px solid var(--border);
  transition: all var(--normal);
}
.edu-benefit:hover { box-shadow: var(--sh); border-color: rgba(255,122,69,.25); }
.edu-benefit-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--primary-lt);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.edu-benefit-text h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.edu-benefit-text p  { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ═══════ REVIEWS ═══════ */
.reviews-section { padding: 60px 0; background: var(--surface); }
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media(min-width:640px)  { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:1024px) { .reviews-grid { grid-template-columns: repeat(4, 1fr); } }

.review-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 24px;
  border: 1.5px solid var(--border);
  display: flex; flex-direction: column; gap: 14px;
  transition: all var(--normal);
  position: relative;
}
.review-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.review-card::before {
  content: '"';
  position: absolute; top: 16px; right: 20px;
  font-size: 64px; color: var(--primary-mid);
  font-family: Georgia, serif; line-height: 1;
}
.review-stars { color: var(--star); font-size: 16px; letter-spacing: -1px; }
.review-text { font-size: 14px; color: var(--body-text); line-height: 1.7; flex: 1; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-d));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700;
  flex-shrink: 0;
}
.review-name { font-size: 14px; font-weight: 700; color: var(--dark); }
.review-loc  { font-size: 12px; color: var(--muted); }
.verified-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--secondary-lt);
  color: var(--secondary-d);
  padding: 2px 8px; border-radius: 50px;
  font-size: 10px; font-weight: 700;
}

/* ═══════ VIDEO SECTION ═══════ */
.video-section { padding: 60px 0; }
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media(min-width:768px) { .video-grid { grid-template-columns: repeat(3, 1fr); } }
.video-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--dark);
  aspect-ratio: 9/16;
  position: relative;
  cursor: pointer;
}
@media(min-width:768px) { .video-card { aspect-ratio: 9/13; } }
.video-placeholder {
  width:100%; height:100%;
  display: flex; flex-direction:column; align-items:center; justify-content:center;
  gap: 16px;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  position: relative;
}
.video-emoji { font-size: 60px; }
.video-play-btn {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,122,69,.9);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 24px;
  box-shadow: 0 8px 24px rgba(255,122,69,.4);
  transition: transform var(--fast), box-shadow var(--fast);
}
.video-card:hover .video-play-btn { transform: scale(1.1); box-shadow: 0 12px 32px rgba(255,122,69,.6); }
.video-label {
  font-size: 13px; font-weight: 700; color: rgba(255,255,255,.9);
  text-align: center; padding: 0 12px;
}

/* ═══════ FAQ ═══════ */
.faq-section { padding: 60px 0; background: var(--surface); }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition: border-color var(--fast);
}
.faq-item.open { border-color: var(--primary); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px;
  font-size: 15px; font-weight: 700; color: var(--dark);
  cursor: pointer; gap: 16px;
  user-select: none;
}
.faq-arrow {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  transition: transform var(--normal), background var(--fast);
}
.faq-item.open .faq-arrow { transform: rotate(180deg); background: var(--primary-lt); color: var(--primary); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease), padding var(--normal);
  font-size: 14px; color: var(--muted); line-height: 1.7;
}
.faq-a-inner { padding: 0 20px 18px; }
.faq-item.open .faq-a { max-height: 200px; }

/* ═══════ FOOTER ═══════ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media(min-width:640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand .brand-name {
  font-family:'Poppins',sans-serif; font-weight:800; font-size:22px;
  color: #fff; margin-bottom: 12px;
}
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  transition: background var(--fast), transform var(--fast);
  text-decoration: none;
}
.social-link:hover { background: var(--primary); transform: translateY(-2px); }

.footer-col h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.6); text-decoration: none; transition: color var(--fast); }
.footer-links a:hover { color: var(--primary); }

.footer-newsletter { margin-bottom: 24px; }
.newsletter-form { display: flex; gap: 8px; margin-top: 12px; }
.newsletter-input {
  flex: 1;
  padding: 10px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: 14px;
  outline: none;
  font-family: 'Hind Siliguri', sans-serif;
}
.newsletter-input::placeholder { color: rgba(255,255,255,.35); }
.newsletter-input:focus { border-color: var(--primary); }
.newsletter-btn {
  padding: 10px 18px;
  border-radius: 50px;
  background: var(--primary);
  color: #fff;
  font-size: 13px; font-weight: 700;
  border: none; cursor: pointer;
  transition: background var(--fast);
  font-family: 'Hind Siliguri', sans-serif;
}
.newsletter-btn:hover { background: var(--primary-d); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}
@media(min-width:768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.4); }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,.4); text-decoration: none; }
.footer-bottom-links a:hover { color: var(--primary); }

/* ═══════ FLOATING WA ═══════ */
.float-wa {
  position: fixed;
  bottom: 90px; right: 20px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #1DAE55);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
  z-index: 500;
  animation: waPulse 3s ease-in-out infinite;
  transition: transform var(--fast);
  text-decoration: none;
}
.float-wa:hover { transform: scale(1.1); }
.float-wa svg { width: 28px; height: 28px; }
@keyframes waPulse {
  0%  { box-shadow: 0 0 0 0 rgba(37,211,102,.6); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100%{ box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.float-wa-label {
  position: fixed;
  bottom: 102px; right: 90px;
  background: rgba(15,23,42,.85);
  color: #fff;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px; font-weight: 700;
  backdrop-filter: blur(8px);
  z-index: 500;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--normal);
  white-space: nowrap;
}
.float-wa:hover ~ .float-wa-label,
.float-wa-label:hover { opacity: 1; }

/* ═══════ BOTTOM NAV ═══════ */
.bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  display: flex;
  z-index: 400;
  box-shadow: 0 -4px 24px rgba(15,23,42,.1);
}
@media(min-width:768px) { .bottom-nav { display: none; } }
.bottom-nav-item {
  flex: 1;
  display: flex; flex-direction: column; align-items: center;
  padding: 8px 4px;
  gap: 3px;
  font-size: 10px; font-weight: 700; color: var(--muted);
  transition: color var(--fast);
  text-decoration: none;
}
.bottom-nav-item.active { color: var(--primary); }
.bottom-nav-item:hover { color: var(--primary); }
.bottom-nav-icon { font-size: 22px; line-height: 1; }
.bottom-nav-item.wa-item { color: var(--wa); }
.bottom-nav-item.wa-item .bottom-nav-icon {
  background: linear-gradient(135deg, var(--wa), var(--wa-d));
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-top: -16px;
  box-shadow: 0 4px 14px rgba(37,211,102,.4);
}

/* ═══════ QUICK VIEW MODAL ═══════ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(15,23,42,.7);
  z-index: 1000;
  opacity: 0; pointer-events: none;
  transition: opacity var(--normal);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--white);
  border-radius: var(--r-xl);
  max-width: 640px; width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.92) translateY(20px);
  transition: transform var(--slow);
  position: relative;
}
.modal-overlay.open .modal { transform: scale(1) translateY(0); }
.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--muted);
  z-index: 1; transition: background var(--fast);
}
.modal-close:hover { background: var(--border); }
.modal-img-section { aspect-ratio: 1/1; background: var(--surface); position: relative; overflow: hidden; }
.modal-img-section img { width:100%; height:100%; object-fit:cover; }
.modal-placeholder { width:100%; height:100%; display:flex; align-items:center; justify-content:center; font-size:100px; background:linear-gradient(135deg,#FFF4EE,#FFE4CC); }
.modal-body { padding: 24px; }
.modal-name { font-size: 20px; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.modal-price-row { display:flex; align-items:baseline; gap:10px; margin-bottom: 16px; }
.modal-price { font-size:24px; font-weight:800; color:var(--primary); }
.modal-old   { font-size:16px; color:var(--subtle); text-decoration:line-through; }
.modal-desc  { font-size:14px; color:var(--muted); line-height:1.7; margin-bottom:20px; }
.modal-features { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:20px; }
.modal-feature-tag {
  display:inline-flex; align-items:center; gap:6px;
  padding:5px 12px; border-radius:50px;
  background:var(--primary-lt); border:1px solid var(--primary-mid);
  font-size:12px; font-weight:700; color:var(--primary-d);
}
.modal-btns { display:flex; gap:10px; flex-direction:column; }
@media(min-width:400px) { .modal-btns { flex-direction:row; } }

/* ═══════ ANIMATIONS ═══════ */
.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }

/* ═══════ SECTION PADDING ═══════ */
section { scroll-margin-top: 80px; }

/* ═══════ STICKY SEARCH MOBILE ═══════ */
.mobile-search-wrap {
  padding: 10px 16px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: block;
}
@media(min-width:768px) { .mobile-search-wrap { display: none; } }
.mobile-search-input {
  width: 100%;
  padding: 10px 16px 10px 42px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 14px;
  font-family: 'Hind Siliguri', sans-serif;
  background: var(--surface);
  outline: none;
}
.mobile-search-wrap { position: relative; }
.mobile-search-icon { position:absolute; left:28px; top:50%; transform:translateY(-50%); color:var(--muted); pointer-events:none; }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* Load more */
.load-more-wrap { text-align:center; margin-top:40px; }
.btn-load-more {
  padding:13px 36px;
  border-radius:50px;
  border:2px solid var(--primary);
  color:var(--primary);
  font-size:15px; font-weight:700;
  background:transparent;
  cursor:pointer; font-family:'Hind Siliguri',sans-serif;
  transition:all var(--fast);
}
.btn-load-more:hover { background:var(--primary); color:#fff; box-shadow:0 6px 20px rgba(255,122,69,.3); }

/* Hot counter badge */
.hot-counter {
  position:absolute; bottom:8px; right:8px;
  background:rgba(15,23,42,.7);
  color:#fff; font-size:10px; font-weight:700;
  padding:3px 8px; border-radius:50px;
  backdrop-filter:blur(4px);
  display:flex; align-items:center; gap:4px;
}
.hot-dot { width:6px; height:6px; border-radius:50%; background:#EF4444; animation:hotDot 1.5s ease-in-out infinite; }
@keyframes hotDot { 0%,100%{opacity:1} 50%{opacity:.3} }