/* Products hero (lighter than homepage hero) */
    .products-hero {
      padding-top: 120px;
      padding-bottom: 60px;
      background: linear-gradient(160deg, #f3e8ff 0%, #fcfaff 55%, #efe7ff 100%);
      position: relative;
      overflow: hidden;
      text-align: center;
    }

    .products-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 50% at 80% 30%, rgba(139,92,246,0.14) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 10% 70%, rgba(212,168,67,0.10) 0%, transparent 55%);
      pointer-events: none;
    }

    .products-hero-inner {
      position: relative;
      z-index: 2;
      max-width: 700px;
      margin: 0 auto;
      padding: 0 5%;
    }

    .products-hero .hero-badge {
      margin: 0 auto 24px;
    }

    .products-hero .hero-title {
      font-size: clamp(2.4rem, 5vw, 3.8rem);
      margin-bottom: 16px;
    }

    .products-hero .hero-subtitle {
      margin: 0 auto 0;
      text-align: center;
    }

    /* Trust bar below hero */
    .trust-bar {
      background: var(--white);
      border-top: 2px solid var(--green-pale);
      border-bottom: 2px solid var(--green-pale);
      padding: 18px 5%;
      display: flex;
      justify-content: center;
      gap: 32px;
      flex-wrap: wrap;
    }

    .trust-bar-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: 'Baloo 2', sans-serif;
      font-weight: 800;
      font-size: 0.88rem;
      color: var(--green-deep);
    }

    .trust-bar-item span { font-size: 1.1rem; }

    /* Product tabs nav */
    .product-tabs-nav {
      background: var(--cream);
      padding: 40px 5% 0;
      display: flex;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
      position: sticky;
      top: 88px;
      z-index: 50;
      border-bottom: 2px solid var(--green-pale);
    }

    .tab-btn {
      font-family: 'Baloo 2', sans-serif;
      font-weight: 800;
      font-size: 0.9rem;
      padding: 10px 22px 14px;
      border-radius: 50px 50px 0 0;
      border: 2px solid var(--green-pale);
      border-bottom: none;
      background: var(--white);
      color: var(--text-mid);
      cursor: pointer;
      transition: background 0.2s, color 0.2s, transform 0.2s;
      display: flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
    }

    .tab-btn:hover,
    .tab-btn.active {
      background: var(--green-deep);
      color: var(--white);
      border-color: var(--green-deep);
      transform: translateY(-2px);
    }

    .tab-btn .tab-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
    }

    /* Per-product accent colors */
    .accent-monkey  { --accent: #4d7c0f; --accent-light: #ecfccb; --accent-bg: linear-gradient(145deg, #ecfccb 0%, #bbf7d0 40%, #4ade80 100%); }
    .accent-panda   { --accent: #7c3aed; --accent-light: #f3e8ff; --accent-bg: linear-gradient(145deg, #e8d5f5 0%, #c4b5fd 40%, #7c3aed 100%); }
    .accent-lion    { --accent: #b45309; --accent-light: #fef3c7; --accent-bg: linear-gradient(145deg, #fef3c7 0%, #fde68a 40%, #f59e0b 100%); }
    .accent-dino    { --accent: #0e7490; --accent-light: #cffafe; --accent-bg: linear-gradient(145deg, #cffafe 0%, #67e8f9 40%, #06b6d4 100%); }

    /* Product entry sections */
    .product-entry {
      padding: 80px 5%;
      position: relative;
    }

    .product-entry:nth-child(odd) { background: var(--cream); }
    .product-entry:nth-child(even) { background: var(--white); }

    .product-entry-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    /* Flip alternate entries */
    .product-entry:nth-child(even) .product-entry-inner {
      direction: rtl;
    }

    .product-entry:nth-child(even) .product-entry-inner > * {
      direction: ltr;
    }

    /* Product visual panel */
    .pe-visual {
      border-radius: var(--radius-xl);
      overflow: hidden;
      position: relative;
      min-height: 480px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 48px 32px;
    }

    .accent-monkey .pe-visual { background: var(--accent-bg); }
    .accent-panda  .pe-visual { background: var(--accent-bg); }
    .accent-lion   .pe-visual { background: var(--accent-bg); }
    .accent-dino   .pe-visual { background: var(--accent-bg); }

    .pe-visual::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 55% 35%, rgba(255,255,255,0.28) 0%, transparent 60%);
    }

    .pe-product-img {
      width: 300px;
      max-width: 85%;
      position: relative;
      z-index: 1;
      filter: drop-shadow(0 20px 40px rgba(0,0,0,0.22));
      animation: floatPanda 4s ease-in-out infinite;
    }

    .pe-badge-100 {
      position: absolute;
      top: 24px;
      right: 24px;
      width: 76px;
      height: 76px;
      background: var(--gold);
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      z-index: 2;
      box-shadow: 0 4px 16px rgba(212,168,67,0.5);
    }

    .pe-badge-100 strong {
      font-family: 'Fredoka One', sans-serif;
      font-size: 1.3rem;
      color: var(--white);
      line-height: 1;
    }

    .pe-badge-100 span {
      font-family: 'Baloo 2', sans-serif;
      font-weight: 700;
      font-size: 0.58rem;
      color: var(--white);
      letter-spacing: 0.06em;
    }

    .pe-char-badge {
      position: absolute;
      bottom: 24px;
      left: 24px;
      background: rgba(255,255,255,0.92);
      border-radius: 50px;
      padding: 8px 16px;
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: 'Baloo 2', sans-serif;
      font-weight: 800;
      font-size: 0.82rem;
      color: var(--text-dark);
      box-shadow: 0 4px 16px rgba(0,0,0,0.10);
      z-index: 2;
    }

    /* Product info panel */
    .pe-info {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .pe-series-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--accent-light);
      color: var(--accent);
      font-family: 'Baloo 2', sans-serif;
      font-weight: 800;
      font-size: 0.78rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 50px;
      margin-bottom: 16px;
      width: fit-content;
      border: 2px solid var(--accent-light);
    }

    .pe-name {
      font-family: 'Fredoka One', sans-serif;
      font-size: clamp(2.2rem, 4vw, 3rem);
      color: var(--accent);
      line-height: 1;
      margin-bottom: 4px;
    }

    .pe-type {
      font-family: 'Baloo 2', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      color: var(--text-mid);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 20px;
    }

    .pe-desc {
      font-size: 1rem;
      color: var(--text-mid);
      line-height: 1.75;
      margin-bottom: 28px;
    }

    /* Nutrition table */
    .nutr-table-wrap {
      background: var(--green-pale);
      border-radius: 16px;
      padding: 20px;
      margin-bottom: 24px;
    }

    .nutr-table-title {
      font-family: 'Baloo 2', sans-serif;
      font-weight: 800;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--green-deep);
      margin-bottom: 14px;
    }

    .nutr-chips-row {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .nutr-chip-sm {
      background: var(--white);
      border: 2px solid rgba(76,29,149,0.10);
      border-radius: 12px;
      padding: 8px 12px;
      text-align: center;
      min-width: 72px;
    }

    .nutr-chip-sm strong {
      display: block;
      font-family: 'Fredoka One', sans-serif;
      font-size: 1.05rem;
      color: var(--green-deep);
      line-height: 1.1;
    }

    .nutr-chip-sm span {
      font-size: 0.68rem;
      color: var(--text-mid);
      font-weight: 700;
      letter-spacing: 0.04em;
    }

    /* Ingredients */
    .ingredients-block {
      background: var(--white);
      border: 2px solid var(--green-pale);
      border-radius: 16px;
      padding: 16px 20px;
      margin-bottom: 24px;
    }

    .ingredients-block h4 {
      font-family: 'Baloo 2', sans-serif;
      font-weight: 800;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.10em;
      color: var(--green-deep);
      margin-bottom: 8px;
    }

    .ingredients-block p {
      font-size: 0.88rem;
      color: var(--text-mid);
      line-height: 1.65;
    }

    /* No-nasties row */
    .nasties-row {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 28px;
    }

    .nasty-tag {
      display: flex;
      align-items: center;
      gap: 6px;
      font-family: 'Baloo 2', sans-serif;
      font-size: 0.82rem;
      font-weight: 800;
      color: var(--green-deep);
    }

    .nasty-dot {
      width: 20px;
      height: 20px;
      background: var(--green-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 0.65rem;
      flex-shrink: 0;
    }

    /* Price + CTA row */
    .pe-cta-row {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .pe-price {
      font-family: 'Fredoka One', sans-serif;
      font-size: 2rem;
      color: var(--green-deep);
      line-height: 1;
    }

    .pe-price span {
      font-family: 'Nunito', sans-serif;
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--text-mid);
      display: block;
      margin-top: 2px;
    }

    .btn-accent {
      font-family: 'Baloo 2', sans-serif;
      font-weight: 800;
      font-size: 1rem;
      color: var(--white);
      padding: 13px 28px;
      border-radius: 50px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
      display: inline-block;
      background: var(--accent);
      box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    }

    .btn-accent:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.22);
    }

    .btn-outline-accent {
      font-family: 'Baloo 2', sans-serif;
      font-weight: 800;
      font-size: 1rem;
      color: var(--accent);
      padding: 11px 26px;
      border-radius: 50px;
      text-decoration: none;
      border: 2.5px solid var(--accent);
      cursor: pointer;
      transition: background 0.2s, color 0.2s, transform 0.2s;
      display: inline-block;
      background: transparent;
    }

    .btn-outline-accent:hover {
      background: var(--accent);
      color: var(--white);
      transform: translateY(-3px);
    }

    /* Section divider wave */
    .wave-green {
      width: 100%;
      line-height: 0;
      background: #1a5c2a;
    }

    .wave-green svg { display: block; width: 100%; height: 50px; }

    /* Collect section */
    .collect-section {
      background: var(--green-deep);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .collect-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 80% at 80% 50%, rgba(139,92,246,0.18) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 10% 20%, rgba(212,168,67,0.10) 0%, transparent 50%);
      pointer-events: none;
    }

    .collect-section .section-label { color: var(--gold-light); }
    .collect-section .section-title { color: var(--white); }
    .collect-section .section-sub   { color: rgba(255,255,255,0.75); margin: 0 auto 48px; }

    .collect-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      max-width: 900px;
      margin: 0 auto 40px;
      position: relative;
      z-index: 1;
    }

    .collect-card {
      background: rgba(255,255,255,0.09);
      border: 1.5px solid rgba(255,255,255,0.16);
      border-radius: var(--radius-lg);
      padding: 28px 16px 24px;
      transition: background 0.3s, transform 0.3s;
      cursor: pointer;
      text-decoration: none;
    }

    .collect-card:hover {
      background: rgba(255,255,255,0.17);
      transform: translateY(-8px);
    }

    .collect-avatar {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      margin: 0 auto 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.6rem;
    }

    .collect-card.panda   .collect-avatar { background: linear-gradient(135deg, #e8d5f5, #c8a8e8); }
    .collect-card.monkey  .collect-avatar { background: linear-gradient(135deg, #ecfccb, #bbf7d0); }
    .collect-card.lion    .collect-avatar { background: linear-gradient(135deg, #fef3c7, #fde68a); }
    .collect-card.dino    .collect-avatar { background: linear-gradient(135deg, #cffafe, #67e8f9); }

    .collect-name {
      font-family: 'Fredoka One', sans-serif;
      font-size: 1.15rem;
      color: var(--white);
      margin-bottom: 4px;
    }

    .collect-sub {
      font-size: 0.78rem;
      font-weight: 700;
      color: rgba(255,255,255,0.6);
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .collect-coming {
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--gold-light);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-top: 6px;
    }

    .friends-coming-bar {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.08);
      border: 2px dashed rgba(255,255,255,0.25);
      border-radius: 50px;
      padding: 10px 24px;
      font-family: 'Baloo 2', sans-serif;
      font-weight: 700;
      font-size: 0.9rem;
      color: rgba(255,255,255,0.75);
      position: relative;
      z-index: 1;
    }

    /* Scan section (reuses existing scan-section from styles.css) */

    /* Responsive */
@media (max-width: 900px) {

  .products-hero {
    padding-top: 190px;
  }

  .product-entry-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .product-entry:nth-child(even) .product-entry-inner {
    direction: ltr;
  }

  .pe-visual {
    min-height: 320px;
  }

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

  .product-tabs-nav {
    top: 72px;
    padding-top: 20px;
  }
}

    @media (max-width: 600px) {
      .trust-bar { gap: 16px; }
      .product-tabs-nav { gap: 8px; }
      .tab-btn { font-size: 0.8rem; padding: 8px 14px 12px; }
      .collect-grid { grid-template-columns: repeat(2, 1fr); }
    }
