/* ==============================
   SONAMSHOP – PREMIUM CSS v2
   Blue + White Clean Premium UI
   ============================== */

:root {
  /* Main palette — clean blue + white */
  --bg-white:    #ffffff;
  --bg-light:    #f8fafc;
  --bg-lighter:  #f1f5f9;
  --bg-card:     #ffffff;
  --bg-dark:     #0f172a;
  --bg-darker:   #080e1e;

  --blue-50:  #eff6ff;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-900: #1e3a8a;

  --text-dark:   #0f172a;
  --text-mid:    #334155;
  --text-light:  #64748b;
  --text-muted:  #94a3b8;
  --text-white:  #ffffff;

  --border-light: #e2e8f0;
  --border-mid:   #cbd5e1;

  --orange:      #f97316;
  --orange-dark: #ea6c0a;
  --green:       #16a34a;
  --green-light: #22c55e;
  --pink:        #ec4899;
  --pink-dark:   #be185d;
  --gold:        #d4af37;
  --gold-dark:   #b8960c;
  --purple:      #7c3aed;
  --purple-light:#8b5cf6;
  --red:         #dc2626;
  --teal:        #0d9488;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.05);
  --shadow-xl:  0 16px 48px rgba(0,0,0,0.14);
  --shadow-blue:0 8px 32px rgba(59,130,246,0.25);
  --shadow-card-hover: 0 12px 40px rgba(0,0,0,0.12);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-2xl: 32px;

  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --transition-fast: 0.15s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==============================
   TRUST TICKER
   ============================== */
.trust-ticker {
  background: linear-gradient(90deg, var(--blue-700), var(--blue-600), var(--blue-700));
  padding: 9px 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 60px;
  animation: ticker-scroll 35s linear infinite;
  white-space: nowrap;
}

.ticker-track span {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==============================
   NAVBAR
   ============================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.logo span { color: var(--blue-600); }

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-light);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue-600);
  transition: width var(--transition);
}

.nav-links a:hover, .nav-links a.active { color: var(--blue-600); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ==============================
   BUTTONS
   ============================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  letter-spacing: 0.01em;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  box-shadow: 0 4px 16px rgba(249,115,22,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(249,115,22,0.5);
}

.btn-slide-pink {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: white;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(236,72,153,0.35);
}
.btn-slide-pink:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(236,72,153,0.5); }

.btn-slide-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #1a1000;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(212,175,55,0.35);
}
.btn-slide-gold:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(212,175,55,0.5); }

.btn-slide-blue {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  color: white;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: var(--shadow-blue);
}
.btn-slide-blue:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(59,130,246,0.5); }

.btn-slide-green {
  background: linear-gradient(135deg, var(--green-light), var(--green));
  color: white;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(34,197,94,0.35);
}
.btn-slide-green:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(34,197,94,0.5); }

.btn-slide-dark {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  color: white;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.btn-slide-dark:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,0.4); }

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
  padding: 11px 22px;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}

/* Card buttons */
.btn-card-primary {
  display: inline-flex; align-items: center; gap: 6px;
  width: 100%; justify-content: center;
  padding: 11px 20px; border-radius: 50px;
  font-size: 0.875rem; font-weight: 700;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white; transition: var(--transition);
}
.btn-card-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(249,115,22,0.4); }

.btn-card-green {
  display: inline-flex; align-items: center; gap: 6px;
  width: 100%; justify-content: center;
  padding: 11px 20px; border-radius: 50px;
  font-size: 0.875rem; font-weight: 700;
  background: linear-gradient(135deg, var(--green-light), var(--green));
  color: white; transition: var(--transition);
}
.btn-card-green:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(34,197,94,0.4); }

.btn-card-blue {
  display: inline-flex; align-items: center; gap: 6px;
  width: 100%; justify-content: center;
  padding: 11px 20px; border-radius: 50px;
  font-size: 0.875rem; font-weight: 700;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  color: white; transition: var(--transition);
}
.btn-card-blue:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(59,130,246,0.4); }

.btn-card-gold {
  display: inline-flex; align-items: center; gap: 6px;
  width: 100%; justify-content: center;
  padding: 11px 20px; border-radius: 50px;
  font-size: 0.875rem; font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #1a1000; transition: var(--transition);
}
.btn-card-gold:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,175,55,0.4); }

.btn-card-beauty {
  display: inline-flex; align-items: center; gap: 6px;
  width: 100%; justify-content: center;
  padding: 11px 20px; border-radius: 50px;
  font-size: 0.875rem; font-weight: 700;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: white; transition: var(--transition);
}
.btn-card-beauty:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(236,72,153,0.4); }

.btn-card-purple {
  display: inline-flex; align-items: center; gap: 6px;
  width: 100%; justify-content: center;
  padding: 11px 20px; border-radius: 50px;
  font-size: 0.875rem; font-weight: 700;
  background: linear-gradient(135deg, var(--purple-light), var(--purple));
  color: white; transition: var(--transition);
}
.btn-card-purple:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(124,58,237,0.4); }

/* ==============================
   HERO SLIDER
   ============================== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
}

.slider {
  position: relative;
  width: 100%;
  min-height: 540px;
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transform: translateX(20px);
  padding: 60px 0;
}

.slide.active {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
  position: relative;
  min-height: 540px;
}

/* Slide themes */
.s-skincare  { background: linear-gradient(135deg, #3d0040 0%, #1a0030 50%, #0d001a 100%); }
.s-bridal    { background: linear-gradient(135deg, #3d2e00 0%, #2a1e00 50%, #1a1000 100%); }
.s-brightening { background: linear-gradient(135deg, #0d1f5e 0%, #0a1540 50%, #060c28 100%); }
.s-gold      { background: linear-gradient(135deg, #3d2a00 0%, #2a1c00 50%, #1a1000 100%); }
.s-health    { background: linear-gradient(135deg, #053d1f 0%, #022b13 50%, #011508 100%); }
.s-gut       { background: linear-gradient(135deg, #023d1e 0%, #012b12 50%, #011408 100%); }
.s-ai        { background: linear-gradient(135deg, #0a1f5e 0%, #071540 50%, #040c28 100%); }
.s-smartphone { background: linear-gradient(135deg, #1a0020 0%, #0d0015 50%, #070009 100%); }

.slide-bg-shape {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.slide-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.slide-content {
  max-width: 560px;
}

.slide-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
  border: 1px solid;
}

.s-tag-pink  { background: rgba(236,72,153,0.2); color: #f9a8d4; border-color: rgba(236,72,153,0.35); }
.s-tag-gold  { background: rgba(212,175,55,0.2); color: #fde68a; border-color: rgba(212,175,55,0.35); }
.s-tag-blue  { background: rgba(59,130,246,0.2); color: #93c5fd; border-color: rgba(59,130,246,0.35); }
.s-tag-green { background: rgba(34,197,94,0.2); color: #86efac; border-color: rgba(34,197,94,0.35); }
.s-tag-dark  { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.2); }

.slide-content h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 14px;
}

.slide-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
  max-width: 460px;
}

.slide-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 24px;
}

.price-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

.price-value {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
}

/* Slide product card visual */
.slide-visual-box {
  flex-shrink: 0;
}

.slide-product-card {
  width: 200px;
  padding: 28px 20px;
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
  animation: float-card 4s ease-in-out infinite;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.s-pink  { background: rgba(236,72,153,0.15); border: 1px solid rgba(236,72,153,0.3); }
.s-gold  { background: rgba(212,175,55,0.15); border: 1px solid rgba(212,175,55,0.3); }
.s-blue  { background: rgba(59,130,246,0.15); border: 1px solid rgba(59,130,246,0.3); }
.s-green { background: rgba(34,197,94,0.15); border: 1px solid rgba(34,197,94,0.3); }
.s-dark  { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); }

.slide-product-icon { font-size: 3.5rem; margin-bottom: 12px; }

.slide-product-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: 8px;
  line-height: 1.3;
}

.slide-product-price {
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
}

.slide-product-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 10;
}

.slider-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.8);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  font-size: 0.8rem;
}

.slider-btn:hover {
  background: rgba(255,255,255,0.25);
  color: white;
}

.slider-dots { display: flex; gap: 6px; }

.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  transition: var(--transition);
}

.dot.active {
  background: #fff;
  width: 20px;
  border-radius: 4px;
}

/* ==============================
   STATS BAR
   ============================== */
.stats-bar {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 28px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item { display: flex; flex-direction: column; gap: 4px; }

.stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ==============================
   PRODUCT SECTIONS
   ============================== */
.products-section {
  padding: 72px 0;
  background: var(--bg-light);
}

.products-section:nth-child(even) {
  background: var(--bg-white);
}

.skincare-section  { background: #fdf2f8; }
.sunscreen-section { background: #fffbeb; }
.health-section    { background: #f0fdf4; }
.ai-section        { background: #eff6ff; }
.finance-section   { background: #fefce8; }
.beauty-section    { background: #fdf4ff; }
.courses-section   { background: #f5f3ff; }

.section-header {
  text-align: center;
  margin-bottom: 44px;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-light);
}

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

.three-col {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.finance-grid {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

/* ==============================
   PRODUCT CARDS
   ============================== */
.product-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--border-mid);
}

.skin-card:hover  { border-color: rgba(236,72,153,0.25); }
.health-card:hover { border-color: rgba(34,197,94,0.25); }
.ai-card:hover    { border-color: rgba(59,130,246,0.25); }
.finance-card:hover { border-color: rgba(212,175,55,0.25); }
.beauty-card:hover  { border-color: rgba(236,72,153,0.25); }
.course-card:hover  { border-color: rgba(124,58,237,0.25); }

/* Badges */
.card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.badge-fire     { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.badge-best     { background: #eff6ff; color: #1d4ed8; border: 1px solid #bfdbfe; }
.badge-hot      { background: #fff7ed; color: #c2410c; border: 1px solid #fed7aa; }
.badge-verified { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }
.badge-value    { background: #fefce8; color: #92400e; border: 1px solid #fde68a; }
.badge-limited  { background: #fdf4ff; color: #7c3aed; border: 1px solid #e9d5ff; }

/* Card image area */
.card-img {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Skincare image backgrounds */
.skin-pink     { background: linear-gradient(135deg, #fdf2f8, #fce7f3); }
.skin-gold     { background: linear-gradient(135deg, #fffbeb, #fef3c7); }
.skin-blue     { background: linear-gradient(135deg, #eff6ff, #dbeafe); }
.skin-shimmer  { background: linear-gradient(135deg, #fefce8, #fde68a22); }
.skin-rose     { background: linear-gradient(135deg, #fff1f2, #ffe4e6); }
.skin-lavender { background: linear-gradient(135deg, #f5f3ff, #ede9fe); }
.skin-sun      { background: linear-gradient(135deg, #fffbeb, #fef3c7); }
.skin-men      { background: linear-gradient(135deg, #eff6ff, #e0f2fe); }
.skin-menblue  { background: linear-gradient(135deg, #f0f9ff, #e0f2fe); }

/* Health image backgrounds */
.health-mint   { background: linear-gradient(135deg, #ecfdf5, #d1fae5); }
.health-teal   { background: linear-gradient(135deg, #f0fdfa, #ccfbf1); }
.health-sage   { background: linear-gradient(135deg, #f0fdf4, #dcfce7); }
.health-amber  { background: linear-gradient(135deg, #fffbeb, #fef3c7); }
.health-green  { background: linear-gradient(135deg, #f0fdf4, #dcfce7); }
.health-sky    { background: linear-gradient(135deg, #f0f9ff, #e0f2fe); }
.health-lime   { background: linear-gradient(135deg, #f7fee7, #ecfccb); }

/* AI image backgrounds */
.ai-blue      { background: linear-gradient(135deg, #eff6ff, #dbeafe); }
.ai-navy      { background: linear-gradient(135deg, #eef2ff, #e0e7ff); }
.ai-whatsapp  { background: linear-gradient(135deg, #f0fdf4, #dcfce7); }
.ai-orange    { background: linear-gradient(135deg, #fff7ed, #ffedd5); }
.ai-dark      { background: linear-gradient(135deg, #f8fafc, #f1f5f9); }
.ai-etsy      { background: linear-gradient(135deg, #fff7ed, #ffedd5); }

/* Finance image backgrounds */
.finance-blue  { background: linear-gradient(135deg, #eff6ff, #dbeafe); }
.finance-red   { background: linear-gradient(135deg, #fff1f2, #ffe4e6); }
.finance-funnel { background: linear-gradient(135deg, #fdf4ff, #fae8ff); }

/* Beauty image backgrounds */
.beauty-plum  { background: linear-gradient(135deg, #fdf4ff, #fae8ff); }
.beauty-nykaa { background: linear-gradient(135deg, #fdf2f8, #fce7f3); }
.beauty-sasa  { background: linear-gradient(135deg, #fffbeb, #fef3c7); }

/* Course image backgrounds */
.course-learn  { background: linear-gradient(135deg, #f5f3ff, #ede9fe); }
.course-funnel { background: linear-gradient(135deg, #eef2ff, #e0e7ff); }
.course-gpt    { background: linear-gradient(135deg, #f0f9ff, #e0f2fe); }

/* Card visual content */
.pcard-visual {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.pcard-icon {
  font-size: 3.2rem;
  line-height: 1;
}

.pcard-brand {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255,255,255,0.7);
  padding: 3px 10px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}

/* Card body */
.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

.card-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.55;
  flex: 1;
}

.card-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--blue-600);
  letter-spacing: -0.02em;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.tag {
  background: var(--bg-lighter);
  border: 1px solid var(--border-light);
  color: var(--text-light);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 50px;
}

.mini-features {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mini-features li {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* Health tags */
.health-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.h-tag {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #15803d;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
}

/* Quality badges bar */
.quality-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}

.q-badge {
  background: white;
  border: 1px solid #bbf7d0;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
}

/* ==============================
   VIDEO SECTIONS
   ============================== */
.video-section {
  padding: 56px 0;
  background: var(--bg-white);
  position: relative;
}

.video-section-alt {
  background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 100%);
}

.video-section-alt .video-section-label { color: rgba(255,255,255,0.7); }
.video-section-alt .video-card { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.15); }
.video-section-alt .video-card h3 { color: #fff; }
.video-section-alt .video-card p { color: rgba(255,255,255,0.75); }

.video-section-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}

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

.video-single {
  grid-template-columns: 1fr;
  max-width: 900px;
  margin: 0 auto;
}

.video-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.video-thumb {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.video-thumb-wide {
  aspect-ratio: 21/9;
}

.video-thumb-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
}

.video-thumb:hover .video-thumb-bg {
  transform: scale(1.04);
}

.v-skincare  { background: linear-gradient(135deg, #3d0040, #1a0030); }
.v-health    { background: linear-gradient(135deg, #053d1f, #022b13); }
.v-ai        { background: linear-gradient(135deg, #0d1f5e, #060c28); }
.v-finance   { background: linear-gradient(135deg, #3d2e00, #1a1000); }
.v-smartphone { background: linear-gradient(135deg, #1a0020, #070009); }
.v-beauty    { background: linear-gradient(135deg, #3d004f, #1a0022); }
.v-courses   { background: linear-gradient(135deg, #2e0f5e, #1a0040); }

.video-thumb-icon {
  font-size: 4rem;
  position: relative;
  z-index: 1;
}

.video-wide-content {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 40px;
  width: 100%;
}

.video-wide-text h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
}

.video-wide-text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--blue-600);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: var(--transition);
  z-index: 2;
}

.play-btn-lg {
  width: 68px;
  height: 68px;
  font-size: 1.3rem;
}

.video-thumb:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 28px rgba(0,0,0,0.4);
}

.video-card-body {
  padding: 20px 24px 24px;
}

.video-body-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.video-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: var(--blue-50);
  border: 1px solid var(--blue-200);
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.video-section-alt .video-tag {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.25);
}

.video-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  line-height: 1.3;
}

.video-card-body p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.55;
  margin-bottom: 16px;
}

.video-cta-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.btn-video {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  color: white;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-video:hover { transform: translateY(-2px); box-shadow: var(--shadow-blue); }

.btn-video-outline {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  background: rgba(255,255,255,0.15);
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-video-outline:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }

/* Video Modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.video-modal.open {
  opacity: 1;
  pointer-events: all;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  cursor: pointer;
}

.video-modal-content {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 900px;
  background: #000;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(0,0,0,0.7);
}

.video-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: var(--transition-fast);
}

.video-modal-close:hover { background: rgba(255,255,255,0.3); }

.video-modal-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-modal-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ==============================
   TRENDING SECTION
   ============================== */
.trending-section {
  padding: 72px 0;
  background: var(--bg-dark);
  position: relative;
}

.trending-section .section-title { color: #fff; }
.trending-section .section-sub { color: rgba(255,255,255,0.55); }

.trending-scroll-wrap {
  position: relative;
  overflow: hidden;
  padding: 0 20px;
}

.trending-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px 20px 24px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.1) transparent;
}

.trending-scroll::-webkit-scrollbar { height: 4px; }
.trending-scroll::-webkit-scrollbar-track { background: transparent; }
.trending-scroll::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 2px; }

.trend-card {
  flex-shrink: 0;
  width: 210px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 20px;
  scroll-snap-align: start;
  transition: var(--transition);
}

.trend-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-4px);
}

.trend-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 50px;
  margin-bottom: 10px;
  background: rgba(239,68,68,0.2);
  color: #fca5a5;
  border: 1px solid rgba(239,68,68,0.3);
}

.trend-badge.best { background: rgba(59,130,246,0.2); color: #93c5fd; border-color: rgba(59,130,246,0.3); }
.trend-badge.limited { background: rgba(212,175,55,0.2); color: #fde68a; border-color: rgba(212,175,55,0.3); }

.trend-icon { font-size: 2rem; margin-bottom: 10px; }

.trend-card h4 { font-size: 0.875rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.trend-card p  { font-size: 0.78rem; color: rgba(255,255,255,0.55); line-height: 1.5; margin-bottom: 10px; }

.trend-price {
  font-size: 1rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 10px;
}

.trend-card a { font-size: 0.8rem; font-weight: 700; color: var(--orange); transition: color var(--transition-fast); }
.trend-card a:hover { color: var(--orange-dark); }

.trend-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  display: flex; align-items: center; justify-content: center;
  z-index: 5;
  transition: var(--transition);
}

.trend-nav:hover { background: rgba(255,255,255,0.2); }
.prev-trend { left: 0; }
.next-trend { right: 0; }

/* ==============================
   TRUST SECTION
   ============================== */
.trust-section {
  padding: 72px 0;
  background: var(--bg-white);
}

.trust-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.trust-pillar {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.trust-pillar:hover {
  border-color: var(--border-mid);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pillar-icon { font-size: 2.5rem; margin-bottom: 16px; }

.trust-pillar h3 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.trust-pillar p  { font-size: 0.85rem; color: var(--text-light); line-height: 1.55; }

/* ==============================
   TESTIMONIALS
   ============================== */
.testimonials-section {
  padding: 72px 0;
  background: var(--bg-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
  border-color: var(--border-mid);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stars { font-size: 1rem; margin-bottom: 12px; }

.testimonial-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 800; color: white;
  flex-shrink: 0;
}

.testimonial-author strong { display: block; font-size: 0.9rem; color: var(--text-dark); font-weight: 700; }
.testimonial-author span  { font-size: 0.78rem; color: var(--text-muted); }

/* ==============================
   NEWSLETTER
   ============================== */
.newsletter-section {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-600) 100%);
}

.newsletter-box {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  backdrop-filter: blur(10px);
}

.newsletter-text h2 { font-size: 1.6rem; font-weight: 800; color: white; margin-bottom: 8px; }
.newsletter-text p  { font-size: 0.95rem; color: rgba(255,255,255,0.75); }

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex: 1;
  min-width: 280px;
  max-width: 500px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 20px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  color: white;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  min-width: 200px;
  transition: border-color var(--transition-fast);
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.55); }
.newsletter-form input:focus { border-color: rgba(255,255,255,0.7); }

/* ==============================
   TOAST
   ============================== */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--bg-dark);
  border: 1px solid rgba(34,197,94,0.4);
  color: #86efac;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 9999;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
  white-space: nowrap;
}

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

/* ==============================
   FOOTER
   ============================== */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .logo { display: inline-block; margin-bottom: 16px; }
.footer-brand .logo { color: white; }
.footer-brand .logo span { color: var(--blue-500); }

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-bottom: 20px;
}

.footer-socials { display: flex; gap: 10px; }

.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--blue-600);
  color: white;
  border-color: var(--blue-600);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition-fast);
}

.footer-col ul li a:hover { color: var(--blue-500); }

.affiliate-disclosure {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}

.affiliate-disclosure h4 { font-size: 0.85rem; font-weight: 700; color: rgba(255,255,255,0.6); margin-bottom: 8px; }
.affiliate-disclosure p  { font-size: 0.8rem; color: rgba(255,255,255,0.35); line-height: 1.65; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  margin-top: 32px;
  text-align: center;
}

.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }

/* ==============================
   BACK TO TOP
   ============================== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blue-600);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  z-index: 999;
  opacity: 0;
  transform: translateY(16px);
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(37,99,235,0.4);
}

.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--blue-700); transform: translateY(-2px); }

/* ==============================
   REVEAL ANIMATION
   ============================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .slide-inner { grid-template-columns: 1fr; }
  .slide-visual-box { display: none; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid var(--border-light);
    z-index: 100;
    box-shadow: var(--shadow-lg);
  }

  .nav-links.open { display: flex; }
  .hamburger { display: flex; }

  .hero .slider { min-height: auto; }
  .slide { padding: 60px 0 80px; min-height: auto; }
  .slide.active { min-height: auto; padding: 60px 0 80px; }
  .slide-content h1 { font-size: 1.8rem; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .products-grid { grid-template-columns: 1fr; }
  .finance-grid  { grid-template-columns: 1fr; }
  .three-col     { grid-template-columns: 1fr; }

  .newsletter-box { padding: 28px 20px; flex-direction: column; }
  .newsletter-form { max-width: 100%; width: 100%; }

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

  .trust-pillars { grid-template-columns: repeat(2, 1fr); }

  .trend-nav { display: none; }

  .back-to-top { bottom: 20px; right: 20px; }

  .video-grid { grid-template-columns: 1fr; }
  .video-body-row { flex-direction: column; }
  .video-cta-group { flex-direction: column; }
  .video-thumb-wide { aspect-ratio: 16/9; }
  .video-wide-content { flex-direction: column; text-align: center; padding: 20px; }
  .video-wide-text h3 { font-size: 1.1rem; }

  .quality-badges { gap: 6px; }
}

@media (max-width: 480px) {
  .trust-pillars    { grid-template-columns: 1fr; }
  .stats-grid       { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .slide-content h1 { font-size: 1.5rem; }
  .price-value      { font-size: 1.6rem; }
}
