/* ============================================
   PRODUCT SECTIONS — ENHANCED OVERRIDES
   ============================================ */

.products-collection {
  padding: 80px 0 48px;
  background: linear-gradient(180deg, #fff 0%, #fdf8fa 100%);
}

.products-collection-inner {
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
  box-sizing: border-box;
}

.products-collection-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px 32px;
  margin-bottom: 40px;
}

.products-collection-head-content {
  flex: 1 1 0;
  min-width: min(100%, 280px);
}

.products-collection-head-cta {
  flex: 0 0 auto;
  margin-left: auto;
}

.products-collection-head-cta .btn {
  margin: 0;
  white-space: nowrap;
}

@media (min-width: 992px) {
  .products-collection-head-content {
    flex: 1 1 64%;
    max-width: 720px;
  }

  .products-collection-head-cta {
    flex: 0 0 auto;
    align-self: flex-end;
    padding-bottom: 2px;
  }
}

.products-collection-inner .band-row,
.products-collection-inner .band-trustbar {
  width: 100%;
  margin-inline: 0;
}

.products-collection .product-band {
  padding: 24px 0;
}

.products-collection .product-band:first-of-type {
  padding-top: 0;
}

.products-collection-inner .band-trustbar {
  margin-top: 16px;
  margin-bottom: 0;
}

.products-intro {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
  max-width: 640px;
  margin: 0;
}

.products-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(208, 38, 137, 0.12);
}

.products-nav-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: #fff;
  border: 2px solid #f0e0ea;
  border-radius: 50px;
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.products-nav-item small {
  font-weight: 500;
  color: var(--text-muted);
  font-size: 11px;
}

.products-nav-item .nav-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  flex-shrink: 0;
}

.products-nav-item[data-product="blue"] .nav-dot { background: #1e4a8a; }
.products-nav-item[data-product="ruby"] .nav-dot { background: #b8204a; }
.products-nav-item[data-product="purple"] .nav-dot { background: #6b2d8a; }

.products-nav-item:hover,
.products-nav-item.active {
  border-color: var(--pink-primary);
  background: var(--pink-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(208, 38, 137, 0.15);
}

/* Theme refinements */
.product-showcase {
  --ps-wave: #faf5fc;
  position: relative;
}

.product-theme-blue {
  --ps-bg-start: #dceaf8;
  --ps-glow: rgba(107, 163, 212, 0.45);
  --ps-wave: #f5f9fd;
}

.product-theme-ruby {
  --ps-bg-start: #fce0ea;
  --ps-glow: rgba(232, 138, 171, 0.45);
  --ps-wave: #fef5f8;
}

.product-theme-purple {
  --ps-bg-start: #ede0f8;
  --ps-glow: rgba(201, 160, 220, 0.5);
  --ps-wave: #faf5fc;
}

.product-showcase-inner {
  background:
    radial-gradient(ellipse at 15% 20%, var(--ps-glow) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 80%, var(--ps-glow) 0%, transparent 40%),
    linear-gradient(180deg, var(--ps-bg-start) 0%, var(--ps-bg-end) 100%);
  padding: 70px 0 50px;
}

.product-showcase-inner::before {
  display: none;
}

.product-showcase-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.35) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: 0.45;
}

.product-wave {
  color: var(--ps-wave);
  line-height: 0;
  margin-top: -1px;
}

.product-wave svg {
  width: 100%;
  height: 48px;
  display: block;
}

/* Visual stage */
.product-visual {
  min-height: auto;
  padding-bottom: 0;
  height: 100%;
}

.product-index {
  position: absolute;
  top: -10px;
  right: 10px;
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 700;
  color: var(--ps-accent);
  opacity: 0.08;
  line-height: 1;
  z-index: 0;
  pointer-events: none;
}

.visual-stage {
  position: relative;
  min-height: 600px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(8px);
  overflow: hidden;
  padding: 40px 24px;
}

.deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.deco-ring {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  animation: ring-pulse 4s ease-in-out infinite;
}

.deco-bloom {
  color: var(--ps-accent-light);
  font-size: 28px;
  opacity: 0.55;
  animation: float-deco 5s ease-in-out infinite;
}

.deco-bloom-1 { top: 12%; left: 8%; }
.deco-bloom-2 { bottom: 22%; right: 10%; font-size: 22px; animation-delay: 1.5s; }

.deco-spark {
  color: var(--gold);
  font-size: 12px;
  opacity: 0.7;
  animation: sparkle 3s ease-in-out infinite;
}

.deco-spark-1 { top: 25%; right: 18%; animation-delay: 0.5s; }
.deco-spark-2 { bottom: 35%; left: 15%; animation-delay: 2s; }

@keyframes ring-pulse {
  0%, 100% { transform: translate(-50%, -55%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -55%) scale(1.05); opacity: 0.8; }
}

@keyframes float-deco {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(8deg); }
}

@keyframes sparkle {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

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

@keyframes glow-pulse {
  0%, 100% { opacity: 0.85; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.04); }
}

@keyframes shine-sweep {
  0%, 70% { left: -100%; }
  100% { left: 150%; }
}

@keyframes spin-slow {
  to { transform: rotate(360deg); }
}

@keyframes benefit-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.science-badge {
  top: 16px;
  left: 16px;
  width: 100px;
  height: 100px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 5;
}

.science-badge-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed var(--ps-accent-light);
  animation: spin-slow 12s linear infinite;
  opacity: 0.6;
}

.product-glow {
  top: 44%;
  width: 340px;
  height: 340px;
  animation: glow-pulse 3s ease-in-out infinite;
}

.product-glow-ring {
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  z-index: 0;
}

.product-pedestal-wrap {
  position: absolute;
  bottom: 72px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.product-pedestal-base {
  width: 240px;
  height: 18px;
  background: var(--ps-pedestal);
  border-radius: 50%;
  opacity: 0.35;
  filter: blur(4px);
  margin: 0 auto -8px;
}

.product-pedestal {
  position: static;
  transform: none;
  width: 210px;
  height: 36px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), inset 0 -4px 12px rgba(0, 0, 0, 0.1);
}

.product-bottle-wrap {
  position: relative;
  z-index: 3;
}

.product-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  animation: shine-sweep 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 4;
}

.product-bottle {
  max-height: 440px;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.18));
}

.float-bottle {
  animation: bottle-float 5s ease-in-out infinite;
}

.visual-stage:hover .product-bottle {
  transform: scale(1.03) translateY(-8px);
  animation-play-state: paused;
}

.premium-ribbon {
  position: absolute;
  top: 20px;
  right: 16px;
  background: var(--ps-shop-gradient);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 8px 14px;
  border-radius: 30px;
  z-index: 5;
  box-shadow: 0 6px 20px rgba(208, 38, 137, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.product-trust-pills {
  width: calc(100% + 20px);
  max-width: 540px;
}

.trust-pill {
  border-radius: 14px;
  padding: 14px 12px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-pill:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.trust-pill-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--ps-nutrient-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-pill-icon i {
  color: var(--ps-accent);
  font-size: 18px;
}

.trust-pill > i {
  display: none;
}

/* Content panel */
.product-content-panel {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 36px 32px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.07);
}

.product-category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
}

.product-name {
  font-size: 40px;
  line-height: 1.12;
}

.product-rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.product-rating .stars {
  color: #f5a623;
  font-size: 13px;
  letter-spacing: 2px;
}

.product-rating .rating-text {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.product-subtitle {
  font-size: 23px;
}

.product-desc {
  font-size: 14.5px;
  max-width: none;
}

.benefit-box {
  border-radius: 16px;
  padding: 18px 10px 14px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

.benefit-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--ps-shop-gradient);
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.benefit-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.1);
}

.benefit-box:hover::before {
  transform: scaleX(1);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 14px;
  background: var(--ps-nutrient-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.benefit-box:hover .benefit-icon {
  background: var(--ps-accent);
}

.benefit-icon i {
  font-size: 24px;
  color: var(--ps-accent);
  transition: color 0.3s ease;
  margin-bottom: 0;
}

.benefit-box:hover .benefit-icon i {
  color: #fff;
}

.benefit-box > i {
  display: none;
}

.product-nutrients {
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 13.5px;
  border-left: 4px solid var(--ps-accent);
  margin-bottom: 14px;
}

.ingredient-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.ingredient-tags span {
  background: #fff;
  color: var(--ps-accent);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 30px;
  border: 1px solid var(--ps-accent-light);
}

.product-cta-row {
  margin-bottom: 14px;
}

.btn-product-shop {
  padding: 16px 36px;
  box-shadow: 0 12px 35px rgba(208, 38, 137, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-product-shop::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.btn-product-shop:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(208, 38, 137, 0.45);
}

.btn-product-shop:hover::after {
  transform: translateX(100%);
}

.stat-card {
  background: #fff;
  border-radius: 12px;
  padding: 12px 16px;
  text-align: center;
  min-width: 90px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-3px);
}

.stat-card i {
  display: block;
  font-size: 22px;
  color: var(--ps-accent);
  margin-bottom: 6px;
}

.stat-card strong {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.3px;
}

.stat-card small {
  display: block;
  font-size: 9px;
  color: var(--text-muted);
  margin-top: 2px;
}

.product-stats > span {
  display: none;
}

.product-disclaimer {
  font-size: 10px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
  opacity: 0.85;
}

.benefit-box.reveal {
  animation: benefit-in 0.5s ease forwards;
}

/* ============================================
   PREMIUM ATTRACTIVENESS LAYER
   ============================================ */

/* Soft animated colour blobs in each section background */
.product-showcase-inner {
  position: relative;
}

.product-showcase-inner > .container {
  position: relative;
  z-index: 1;
}

.section-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
  background: var(--ps-glow);
  animation: blob-drift 14s ease-in-out infinite;
}

.section-blob.blob-a { width: 320px; height: 320px; top: -60px; left: -80px; }
.section-blob.blob-b { width: 260px; height: 260px; bottom: -40px; right: -60px; animation-delay: 5s; }

@keyframes blob-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -25px) scale(1.12); }
}

/* Gradient product name */
.product-name {
  background: var(--ps-shop-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Coloured glowing halo + reflection around the bottle */
.product-glow {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, var(--ps-glow) 38%, transparent 72%);
  filter: saturate(1.2);
}

.product-glow-ring {
  border: 2px solid var(--ps-accent-light);
  opacity: 0.45;
  box-shadow: 0 0 40px var(--ps-glow), inset 0 0 40px var(--ps-glow);
  animation: ring-rotate 18s linear infinite;
}

@keyframes ring-rotate {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.product-bottle-wrap::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -38px;
  transform: translateX(-50%) scaleY(0.4);
  width: 70%;
  height: 60px;
  background: radial-gradient(ellipse at center, var(--ps-glow) 0%, transparent 70%);
  opacity: 0.6;
  filter: blur(6px);
  z-index: -1;
  pointer-events: none;
}

/* Visual stage gets a coloured glow on hover */
.visual-stage {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.25));
  transition: box-shadow 0.45s ease, transform 0.45s ease, border-color 0.45s ease;
}

.visual-stage:hover {
  box-shadow: 0 30px 80px var(--ps-glow), 0 20px 60px rgba(0, 0, 0, 0.08);
  border-color: var(--ps-accent-light);
}

/* Science badge soft pulse */
.science-badge {
  background: radial-gradient(circle at 50% 30%, #fff 0%, #fff 60%, var(--ps-bg-start) 100%);
}

/* Premium ribbon sheen */
.premium-ribbon {
  overflow: hidden;
}

.premium-ribbon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.55) 50%, transparent 70%);
  transform: translateX(-120%);
  animation: ribbon-sheen 3.5s ease-in-out infinite;
}

@keyframes ribbon-sheen {
  0%, 60% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

/* Content panel subtle top sheen + accent edge */
.product-content-panel {
  position: relative;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.72) 100%);
  overflow: hidden;
}

.product-content-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--ps-shop-gradient);
}

.product-content-panel::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--ps-glow);
  filter: blur(40px);
  opacity: 0.5;
  pointer-events: none;
}

/* Decorative divider gets a little glow dot */
.product-divider i {
  filter: drop-shadow(0 0 6px rgba(200, 155, 107, 0.6));
}

/* Subtitle accent underline */
.product-subtitle {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

.product-subtitle::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 54px;
  height: 3px;
  border-radius: 3px;
  background: var(--ps-shop-gradient);
}

/* Benefit cards — gradient wash + icon lift */
.benefit-box {
  background: linear-gradient(180deg, #fff 0%, var(--ps-bg-end) 100%);
}

.benefit-box::after {
  content: '';
  position: absolute;
  width: 70px;
  height: 70px;
  background: var(--ps-glow);
  border-radius: 50%;
  bottom: -30px;
  right: -30px;
  filter: blur(20px);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.benefit-box:hover::after {
  opacity: 0.7;
}

.benefit-box:hover .benefit-icon {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 10px 22px var(--ps-glow);
}

.benefit-icon {
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* Nutrients banner — gradient tint + icon chip */
.product-nutrients {
  background: linear-gradient(120deg, var(--ps-nutrient-bg) 0%, rgba(255, 255, 255, 0.4) 100%);
  position: relative;
}

.product-nutrients i {
  font-size: 16px;
}

/* Ingredient tags hover fill */
.ingredient-tags span {
  cursor: default;
  transition: all 0.3s ease;
}

.ingredient-tags span:hover {
  background: var(--ps-shop-gradient);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px var(--ps-glow);
}

/* Shop button — animated gradient + nudging arrow */
.btn-product-shop {
  background-size: 200% 100%;
  background-position: 0% 50%;
  transition: background-position 0.5s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.btn-product-shop:hover {
  background-position: 100% 50%;
}

.btn-product-shop i {
  transition: transform 0.3s ease;
}

.btn-product-shop:hover i {
  transform: translateX(5px);
}

/* Stat cards — gradient icon + accent border on hover */
.stat-card {
  background: linear-gradient(180deg, #fff 0%, var(--ps-bg-end) 100%);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--ps-accent-light);
  box-shadow: 0 12px 28px var(--ps-glow);
}

/* Trust pills — gradient icon chip */
.trust-pill-icon {
  background: var(--ps-shop-gradient);
}

.trust-pill-icon i {
  color: #fff;
}

.trust-pill {
  background: rgba(255, 255, 255, 0.95);
}

/* Quick-nav pills get a thumbnail dot glow when active */
.products-nav-item.active .nav-dot {
  box-shadow: 0 0 0 4px rgba(208, 38, 137, 0.15);
}

/* Floating particles inside the stage */
.visual-stage .particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ps-accent-light);
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
  animation: particle-float 6s ease-in-out infinite;
}

.visual-stage .particle.p1 { top: 18%; right: 22%; animation-delay: 0s; }
.visual-stage .particle.p2 { bottom: 30%; left: 20%; width: 9px; height: 9px; animation-delay: 1.2s; }
.visual-stage .particle.p3 { top: 40%; left: 12%; width: 4px; height: 4px; animation-delay: 2.4s; }
.visual-stage .particle.p4 { bottom: 18%; right: 28%; width: 5px; height: 5px; animation-delay: 3.1s; }

@keyframes particle-float {
  0%, 100% { transform: translateY(0); opacity: 0.3; }
  50% { transform: translateY(-18px); opacity: 0.8; }
}

/* Responsive */
@media (max-width: 991px) {
  .visual-stage {
    min-height: 380px;
    padding-bottom: 60px;
  }

  .product-index {
    font-size: 48px;
    top: 0;
    right: 0;
  }

  .product-content-panel {
    padding: 28px 22px;
    margin-top: 10px;
  }

  .product-trust-pills {
    flex-direction: column;
    position: static;
    transform: none;
    margin-top: 16px;
    width: 100%;
  }

  .product-visual {
    padding-bottom: 20px;
  }

  .products-nav-item {
    font-size: 13px;
    padding: 10px 16px;
  }
}

@media (max-width: 575px) {
  .product-name { font-size: 28px; }
  .visual-stage { min-height: 320px; }
  .premium-ribbon { font-size: 9px; padding: 6px 10px; }
  .product-cta-row { flex-direction: column; align-items: stretch; }
  .product-stats { justify-content: center; }

  .products-collection { padding: 48px 0 32px; }
  .products-collection-inner { padding-inline: 16px; }
  .products-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
    margin-top: 24px;
    gap: 10px;
  }
  .products-nav::-webkit-scrollbar { display: none; }
  .products-nav-item {
    flex-shrink: 0;
    font-size: 13px;
    padding: 10px 18px;
  }
}
