/* ── Promo Bar Rotating ── */
    .s-promo-bar { position: relative; overflow: hidden; min-height: 40px; display: flex; align-items: center; justify-content: center; }
    .s-promo-msg { position: absolute; width: 100%; text-align: center; opacity: 0; transform: translateY(10px); transition: opacity 0.5s ease, transform 0.5s ease; pointer-events: none; }
    .s-promo-msg.is-active { opacity: 1; transform: translateY(0); pointer-events: auto; }
    .s-promo-msg a { color: #fff; text-decoration: underline; margin-left: 8px; opacity: 0.85; }

    /* ── Hero Social Proof Bar ── */
    .s-hero-social-proof {
      position: absolute;
      bottom: 64px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 6;
      display: flex;
      align-items: center;
      gap: 14px;
      background: rgba(0,0,0,0.52);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 99px;
      padding: 9px 22px;
      white-space: nowrap;
    }
    .s-hero-sp-item { font-size: 0.78rem; color: rgba(255,255,255,0.9); font-weight: 500; }
    .s-hero-sp-item strong { color: #fff; font-weight: 700; }
    .s-hero-sp-sep { color: rgba(255,255,255,0.3); font-size: 1.1rem; }

    /* ── Category tile badge ── */
    .s-cat-badge {
      position: absolute;
      top: 20px;
      right: 20px;
      z-index: 2;
      background: rgba(0,0,0,0.55);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.15);
      color: #fff;
      font-size: 0.72rem;
      font-weight: 700;
      padding: 5px 12px;
      border-radius: 99px;
      letter-spacing: 0.02em;
    }

    /* ── "Most Popular" card badge ── */
    .s-card-popular-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      z-index: 3;
      background: linear-gradient(135deg, #f43f5e 0%, #7c3aed 100%);
      color: #fff;
      font-size: 0.62rem;
      font-weight: 800;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 6px;
    }

    /* ── Testimonials Section ── */
    .s-testimonials { padding: 80px 0; background: #fff; }
    .s-rating-summary {
      font-size: 1rem;
      color: var(--s-muted);
      margin-top: 10px;
    }
    .s-rating-summary strong { color: var(--s-text); }
    .s-testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 40px;
    }
    .s-testi-card {
      background: #fff;
      border: 1px solid #f1f1f1;
      border-radius: 16px;
      padding: 28px 26px 24px;
      box-shadow: 0 4px 28px rgba(0,0,0,0.06);
      transition: box-shadow 0.28s ease, border-color 0.28s ease;
      position: relative;
    }
    .s-testi-card:hover {
      box-shadow: 0 8px 40px rgba(244,63,94,0.14);
      border-color: rgba(244,63,94,0.22);
      border-left: 3px solid var(--s-accent);
    }
    .s-testi-stars { font-size: 1rem; margin-bottom: 14px; color: #f43f5e; letter-spacing: 1px; }
    .s-testi-quote {
      font-size: 0.9rem;
      line-height: 1.72;
      color: #374151;
      margin-bottom: 20px;
      font-style: italic;
    }
    .s-testi-author { display: flex; align-items: center; gap: 12px; }
    .s-testi-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--s-gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      color: #fff;
      font-size: 0.88rem;
      flex-shrink: 0;
    }
    .s-testi-name { font-size: 0.86rem; font-weight: 700; color: var(--s-text); }
    .s-testi-role { font-size: 0.74rem; color: var(--s-muted); margin-top: 1px; }
    .s-testi-verified {
      display: inline-block;
      background: #d1fae5;
      color: #065f46;
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 2px 8px;
      border-radius: 99px;
      margin-top: 5px;
    }

    /* ── Custom Banner Stats ── */
    .s-promo-stats {
      display: flex;
      gap: 32px;
      margin-top: 28px;
    }
    .s-promo-stat-item { display: flex; flex-direction: column; }
    .s-promo-stat-num {
      font-family: 'Poppins', sans-serif;
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--s-accent);
      line-height: 1;
    }
    .s-promo-stat-label { font-size: 0.72rem; color: var(--s-muted); margin-top: 3px; font-weight: 500; }

    /* ── Bestseller badge ── */
    .s-bestseller-badge {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      background: linear-gradient(135deg, #f43f5e 0%, #7c3aed 100%);
      color: #fff;
      font-size: 0.65rem;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 99px;
      margin-left: 10px;
      vertical-align: middle;
      font-family: 'Inter', sans-serif;
    }

    /* ── Recently bought note ── */
    .s-card-social-proof {
      font-size: 0.67rem;
      color: #16a34a;
      font-weight: 600;
      margin-top: 4px;
      display: block;
    }

    /* ── How It Works Section ── */
    .s-how-section { padding: 80px 0; }
    .s-how-steps {
      display: flex;
      gap: 0;
      margin-top: 48px;
      position: relative;
    }
    .s-how-steps::before {
      content: '';
      position: absolute;
      top: 36px;
      left: calc(10% + 24px);
      right: calc(10% + 24px);
      height: 1px;
      border-top: 2px dashed rgba(244,63,94,0.22);
      z-index: 0;
    }
    .s-how-step {
      flex: 1;
      text-align: center;
      padding: 0 16px;
      position: relative;
      z-index: 1;
    }
    .s-how-step-num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: var(--s-gradient);
      font-family: 'Poppins', sans-serif;
      font-size: 1.1rem;
      font-weight: 800;
      color: #fff;
      margin: 0 auto 16px;
    }
    .s-how-step-icon { font-size: 1.5rem; margin-bottom: 10px; line-height: 1; }
    .s-how-step-title {
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--s-text);
      margin-bottom: 6px;
    }
    .s-how-step-desc {
      font-size: 0.78rem;
      color: var(--s-muted);
      line-height: 1.65;
    }

    /* ── Newsletter upgraded ── */
    .s-nl-tag {
      display: inline-block;
      background: var(--s-gradient);
      color: #fff;
      font-size: 0.68rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      padding: 4px 14px;
      border-radius: 99px;
      margin-bottom: 16px;
    }
    .s-nl-headline { margin-bottom: 32px; }
    .s-nl-footer-note {
      margin-top: 14px;
      font-size: 0.73rem;
      color: var(--s-muted);
    }

    /* ── Exit Intent Popup (injected via JS) ── */
    #s-popup-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.62);
      backdrop-filter: blur(4px);
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      opacity: 0;
      transition: opacity 0.35s ease;
    }
    #s-popup-overlay.is-visible { opacity: 1; }
    #s-popup-card {
      background: #fff;
      border-radius: 20px;
      overflow: hidden;
      max-width: 520px;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      box-shadow: 0 32px 80px rgba(0,0,0,0.3);
      position: relative;
      transform: scale(0.94) translateY(20px);
      transition: transform 0.35s ease;
    }
    #s-popup-overlay.is-visible #s-popup-card { transform: scale(1) translateY(0); }
    #s-popup-left { padding: 36px 30px; display: flex; flex-direction: column; justify-content: center; }
    #s-popup-right {
      background: url(assets/hero/canvas/canvas-1.webp) center/cover no-repeat;
      position: relative;
    }
    #s-popup-right::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(244,63,94,0.5) 0%, rgba(124,58,237,0.4) 100%);
    }
    #s-popup-close {
      position: absolute;
      top: 14px;
      right: 14px;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(255,255,255,0.9);
      border: none;
      font-size: 1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #374151;
      z-index: 2;
      transition: background 0.2s;
    }
    #s-popup-close:hover { background: #fff; }
    #s-popup-left .s-popup-tag {
      display: inline-block;
      background: var(--s-gradient);
      color: #fff;
      font-size: 0.65rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      padding: 3px 12px;
      border-radius: 99px;
      margin-bottom: 14px;
      width: fit-content;
    }
    #s-popup-left h3 {
      font-family: 'Poppins', sans-serif;
      font-size: 1.35rem;
      font-weight: 800;
      line-height: 1.25;
      color: var(--s-text);
      margin-bottom: 10px;
    }
    #s-popup-left p {
      font-size: 0.8rem;
      color: var(--s-muted);
      line-height: 1.65;
      margin-bottom: 20px;
    }
    #s-popup-form { display: flex; flex-direction: column; gap: 10px; }
    #s-popup-email {
      padding: 12px 16px;
      border-radius: 9px;
      border: 1px solid var(--s-border);
      background: var(--s-surface);
      font-family: inherit;
      font-size: 0.85rem;
      color: var(--s-text);
      outline: none;
    }
    #s-popup-email:focus { border-color: rgba(244,63,94,0.45); }
    #s-popup-submit {
      padding: 12px 20px;
      border-radius: 9px;
      background: var(--s-gradient);
      color: #fff;
      border: none;
      font-family: inherit;
      font-size: 0.86rem;
      font-weight: 700;
      cursor: pointer;
      transition: opacity 0.2s;
    }
    #s-popup-submit:hover { opacity: 0.9; }
    #s-popup-note { font-size: 0.66rem; color: var(--s-muted); text-align: center; }

    /* ── Cart Toast ── */
    #s-cart-toast {
      position: fixed;
      top: 20px;
      right: 20px;
      background: var(--s-accent);
      color: #fff;
      padding: 12px 20px;
      border-radius: 10px;
      font-size: 0.84rem;
      font-weight: 700;
      box-shadow: 0 8px 28px rgba(244,63,94,0.4);
      z-index: 9998;
      transform: translateX(120%);
      transition: transform 0.3s ease;
    }
    #s-cart-toast.is-visible { transform: translateX(0); }

    /* ── Responsive adjustments ── */
    @media (max-width: 900px) {
      .s-testi-grid { grid-template-columns: 1fr; gap: 16px; }
      .s-how-steps { flex-direction: column; gap: 28px; }
      .s-how-steps::before { display: none; }
      #s-popup-card { grid-template-columns: 1fr; }
      #s-popup-right { display: none; }
      .s-hero-social-proof { display: none; }
      .s-promo-stats { flex-wrap: wrap; gap: 18px; }
    }
    @media (max-width: 600px) {
      .s-testi-grid { grid-template-columns: 1fr; }
    }
