/** Shopify CDN: Minification failed

Line 1048:12 Expected ":"

**/
:root {
  --pink: #feaaf8;
  --pink-soft: #fcc2f5;
  --pink-light: #fde2f6;
  --pink-cream: #fbe9e7;
  --lime: #b6ff5c;
  --lime-soft: #d4ff8f;
  --aqua: #affffc;
  --aqua-soft: #d4fffc;
  --aqua-deep: #7feeea;
  --purple: #5b3fb0;
  --purple-deep: #2a1f5b;
  --purple-light: #7e63d1;
  --cream: #faf3e8;
  --cream-warm: #f8eddb;
  --ink: #1a0f3a;
  --grey: #6c7485;
  --grey-soft: #a0a0b0;
  --white: #ffffff;
  --display: 'Poppins', sans-serif;
  --body: 'Poppins', sans-serif;
  --serif: 'Fraunces', serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--pink-light);
  padding-top: 30px;
}

.preview-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--purple-deep);
  color: var(--white);
  padding: 8px 20px;
  text-align: center;
  font-size: 11px;
  letter-spacing: 1.5px;
  z-index: 10000;
  text-transform: uppercase;
  font-weight: 600;
}

main {
  background: var(--pink-light);
}

/* ANNOUNCEMENT */
.announcement {
  background: var(--pink-light);
  text-align: center;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--purple-deep);
}
.announcement strong { color: var(--purple); }

/* HEADER */
.site-header {
  background: var(--pink-light);
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 50px;
  position: sticky;
  top: 30px;
  z-index: 100;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 64px;
  width: auto;
  display: block;
}

.header-nav {
  display: flex;
  gap: 36px;
  flex: 1;
  margin-left: 20px;
}

.header-nav a {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--purple);
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 0.2s;
}
.header-nav a:hover { opacity: 0.6; }

.header-icons {
  margin-left: auto;
  display: flex;
  gap: 16px;
  align-items: center;
}

.header-icons { display: flex; gap: 16px; align-items: center; }

.icon-btn {
  background: transparent;
  border: none;
  color: var(--purple);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  position: relative;
  transition: transform 0.2s;
}
.icon-btn:hover { transform: translateY(-2px); }

.cart-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--lime);
  color: var(--purple-deep);
  font-size: 10px;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* HERO */
.hero {
  background: linear-gradient(180deg, var(--pink-light) 0%, var(--pink) 100%);
  padding: 60px 40px 100px;
  position: relative;
}

.hero-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.hero-image-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.hero-side-icons {
  position: absolute;
  left: -10px;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 3;
}

.side-icon {
  width: 64px;
  height: 64px;
  background: var(--white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 14px rgba(91, 63, 176, 0.12);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
}

.side-icon:hover {
  transform: translateX(4px);
  border-color: var(--purple);
  box-shadow: 0 6px 18px rgba(91, 63, 176, 0.2);
}

.side-icon:first-child {
  border-color: var(--purple);
}

.hero-image {
  width: 100%;
  max-width: 520px;
  border-radius: 32px;
  box-shadow: 0 20px 60px rgba(91, 63, 176, 0.2);
  transition: opacity 0.3s ease;
}

.hero-image.swapping { opacity: 0; }

.hero-thumbs-row {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 520px;
  justify-content: center;
}

.thumb-row {
  width: 84px;
  height: 84px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 2.5px solid transparent;
  background: var(--white);
  flex-shrink: 0;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(91, 63, 176, 0.1);
}

.thumb-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.thumb-row:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(91, 63, 176, 0.2);
}

.thumb-row.active {
  border-color: var(--purple);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(91, 63, 176, 0.25);
}

/* FEATURE BOX (How To Take / Benefits / Is It Safe) */
.feature-box {
  width: 100%;
  max-width: 520px;
  background: var(--white);
  border-radius: 20px;
  padding: 28px 32px;
  margin-top: 20px;
  box-shadow: 0 8px 28px rgba(91, 63, 176, 0.12);
  border: 2px solid #1a0f3a;
}

.feature-tabs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 22px;
  gap: 12px;
}

.feature-tab {
  flex: 1;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--grey-soft);
  padding-bottom: 8px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  border-bottom: 2px solid transparent;
  user-select: none;
}

.feature-tab.active {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

.feature-tab:hover { color: var(--ink); }

.feature-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 12px;
  align-items: center;
  justify-items: center;
}

.feature-icon-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-labels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}

.feature-label {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.feature-desc {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
  text-align: center;
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(26, 15, 58, 0.1);
}

/* Panel switching */
.feature-panel { display: none; }
.feature-panel.active { display: block; }

/* How To Take panel image */
.feature-howto-img {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4px 0 8px;
}

.howto-decorations {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 8px;
}

.howto-decorations svg {
  flex-shrink: 0;
}

.howto-bag {
  width: 140px;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* HERO RIGHT */
.hero-right { padding: 0; }

.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--purple);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.hero-headline {
  font-family: "Hit and Run!", "Lilita One", "Bowlby One", sans-serif;
  font-weight: 400;
  font-size: clamp(56px, 6vw, 96px);
  color: var(--purple);
  line-height: 0.95;
  letter-spacing: -1.5px;
  margin: 0 0 28px;
  text-transform: uppercase;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.hero-benefit { text-align: center; }

.hero-benefit-icon {
  font-size: 32px;
  margin-bottom: 6px;
  display: inline-block;
  filter: drop-shadow(0 2px 4px rgba(91, 63, 176, 0.15));
}

.hero-benefit-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.3px;
}

.hero-desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--purple-deep);
  margin: 0 0 20px;
}

.hero-reviews {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--purple);
  margin-bottom: 18px;
}

.hero-stars { letter-spacing: 2px; color: var(--purple); }

.hero-viewing {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--aqua-soft);
  border: 1.5px solid var(--aqua-deep);
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: var(--purple-deep);
  margin-bottom: 28px;
}

.hero-viewing-dot {
  width: 8px;
  height: 8px;
  background: #00cc66;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 204, 102, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(0, 204, 102, 0); }
}

#viewing-count {
  font-weight: 800;
  color: var(--purple);
  font-variant-numeric: tabular-nums;
  min-width: 24px;
  display: inline-block;
  text-align: center;
}

/* SUPPLY BOXES */
.supply-selector {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.supply-wrapper {
  position: relative;
  padding-top: 14px;
}

.supply-option {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--pink-light);
  border: 2px solid rgba(91, 63, 176, 0.18);
  border-radius: 18px;
  padding: 20px 22px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.supply-option:hover {
  border-color: rgba(91, 63, 176, 0.5);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(91, 63, 176, 0.1);
}

.supply-option input[type="radio"] { display: none; }

.supply-radio {
  width: 22px;
  height: 22px;
  border: 2px solid var(--purple);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  background: var(--white);
}

.supply-option input[type="radio"]:checked ~ .supply-radio::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--purple);
}

.supply-option:has(input[type="radio"]:checked) {
  border-color: var(--purple);
  background: var(--white);
  box-shadow: 0 6px 22px rgba(91, 63, 176, 0.18);
}

.supply-info { flex: 1; text-align: left; }

.supply-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--purple);
  margin: 0 0 3px;
  letter-spacing: -0.3px;
}

.supply-info p {
  font-size: 12px;
  color: var(--grey);
  margin: 0;
  line-height: 1.4;
}

.supply-price {
  text-align: right;
  flex-shrink: 0;
}

.price-now {
  font-size: 22px;
  font-weight: 800;
  color: var(--purple);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.price-perday {
  font-size: 12px;
  color: var(--grey-soft);
  margin-top: 3px;
  font-variant-numeric: tabular-nums;
}

.price-save {
  font-size: 12px;
  font-weight: 700;
  color: var(--purple);
  margin-top: 2px;
}

.supply-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  border-radius: 24px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  z-index: 2;
  white-space: nowrap;
  text-transform: uppercase;
}

.supply-badge.popular {
  background: var(--purple);
  color: var(--white);
}

.supply-badge.best {
  background: var(--lime);
  color: var(--purple-deep);
}

/* QTY + ADD */
.supply-action {
  display: flex;
  gap: 12px;
  align-items: stretch;
  margin-bottom: 14px;
}

.qty-selector {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 2px solid var(--purple);
  border-radius: 50px;
  padding: 0 6px;
  min-width: 110px;
  justify-content: space-between;
}

.qty-btn {
  background: transparent;
  border: none;
  font-size: 22px;
  font-weight: 700;
  color: var(--purple);
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: inherit;
  transition: background 0.2s;
}
.qty-btn:hover { background: var(--pink-light); }

.qty-display {
  font-size: 16px;
  font-weight: 700;
  color: var(--purple);
  min-width: 24px;
  text-align: center;
}

.add-cart-btn {
  flex: 1;
  background: var(--purple);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 18px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1px;
  cursor: pointer;
  font-family: var(--body);
  transition: all 0.25s ease;
  box-shadow: 0 6px 20px rgba(91, 63, 176, 0.3);
  text-transform: capitalize;
}

.add-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(91, 63, 176, 0.4);
  background: var(--purple-deep);
}

.add-cart-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.ships-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--purple);
}

/* TICKER */
.ticker {
  background-color: #d4fffc;
  background-image:
    radial-gradient(circle at 12% 30%, rgba(127, 238, 234, 0.35) 0, rgba(127, 238, 234, 0.35) 18px, transparent 19px),
    radial-gradient(circle at 28% 65%, rgba(254, 170, 248, 0.25) 0, rgba(254, 170, 248, 0.25) 14px, transparent 15px),
    radial-gradient(circle at 45% 25%, rgba(127, 238, 234, 0.4) 0, rgba(127, 238, 234, 0.4) 22px, transparent 23px),
    radial-gradient(circle at 62% 70%, rgba(254, 170, 248, 0.3) 0, rgba(254, 170, 248, 0.3) 16px, transparent 17px),
    radial-gradient(circle at 78% 35%, rgba(127, 238, 234, 0.35) 0, rgba(127, 238, 234, 0.35) 20px, transparent 21px),
    radial-gradient(circle at 90% 60%, rgba(254, 170, 248, 0.25) 0, rgba(254, 170, 248, 0.25) 18px, transparent 19px),
    radial-gradient(circle at 18% 80%, rgba(254, 170, 248, 0.2) 0, rgba(254, 170, 248, 0.2) 15px, transparent 16px),
    radial-gradient(circle at 55% 90%, rgba(127, 238, 234, 0.3) 0, rgba(127, 238, 234, 0.3) 17px, transparent 18px),
    radial-gradient(circle at 72% 15%, rgba(254, 170, 248, 0.3) 0, rgba(254, 170, 248, 0.3) 13px, transparent 14px),
    radial-gradient(circle at 35% 45%, rgba(254, 170, 248, 0.18) 0, rgba(254, 170, 248, 0.18) 11px, transparent 12px),
    radial-gradient(circle at 88% 88%, rgba(127, 238, 234, 0.3) 0, rgba(127, 238, 234, 0.3) 14px, transparent 15px);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 2px solid #1a0f3a;
  border-bottom: 2px solid #1a0f3a;
}

.ticker.dark {
  background-color: var(--ink);
  background-image: none;
  border-top: none;
  border-bottom: none;
}

.ticker.dark .ticker-track { color: var(--white); }

/* Hype ticker — NO BULK NO BLOAT */
.ticker.ticker-hype {
  background: var(--purple);
  background-image: none;
  border-top: none;
  border-bottom: none;
  padding: 16px 0;
}

.ticker.ticker-hype .ticker-track {
  color: var(--lime);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 2px;
  font-family: "Hit and Run!", "Lilita One", "Bowlby One", sans-serif;
  animation: scrollReverse 32s linear infinite;
}

.ticker.ticker-hype .ticker-track span { gap: 40px; }

.ticker.ticker-hype .ticker-track .dot {
  background: var(--pink);
  width: 10px;
  height: 10px;
}

/* Announcement ticker (top of page) — matches hype style */
.ticker.announcement-ticker {
  background: var(--purple);
  background-image: none;
  border-top: none;
  border-bottom: none;
  padding: 12px 0;
}

.ticker.announcement-ticker .ticker-track {
  color: var(--lime);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 1.8px;
  font-family: "Hit and Run!", "Lilita One", "Bowlby One", sans-serif;
}

.ticker.announcement-ticker .ticker-track span { gap: 36px; }

.ticker.announcement-ticker .ticker-track .dot {
  background: var(--pink);
  width: 8px;
  height: 8px;
}

/* Light pink ticker variant (paired with dark) */
.ticker.ticker-light {
  background: var(--pink-light);
  background-image: none;
  border-top: none;
  border-bottom: none;
}

.ticker.ticker-light .ticker-track {
  color: var(--ink);
  font-weight: 700;
}

/* Paired ticker stack — no gap between them */
.ticker-pair {
  display: block;
  margin: 0;
  padding: 0;
}

.ticker-pair .ticker { display: block; }

/* Reverse scroll direction for the dark ticker so they slide opposite ways */
.ticker-pair .ticker.dark .ticker-track {
  animation: scrollReverse 35s linear infinite;
}

@keyframes scrollReverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.ticker-track {
  display: inline-flex;
  animation: scroll 35s linear infinite;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.3px;
  font-family: 'Poppins', monospace;
}

.ticker-track span {
  margin: 0 30px;
  display: inline-flex;
  align-items: center;
  gap: 50px;
}

.ticker-track .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  display: inline-block;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* SECTION TITLES */
.section-title {
  font-weight: 900;
  font-size: clamp(40px, 5vw, 64px);
  color: var(--ink);
  letter-spacing: -1.5px;
  line-height: 1;
  text-transform: uppercase;
}

.section-title em {
  font-style: italic;
  font-weight: 400;
  font-family: var(--serif);
}

.section-underline {
  display: inline-block;
  width: 220px;
  height: 8px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 8'><path d='M0 4 Q 30 0 60 4 T 120 4 T 180 4 T 220 4' fill='none' stroke='%231a0f3a' stroke-width='3' stroke-linecap='round'/></svg>") no-repeat center;
  margin-bottom: 60px;
}

/* QUICK ANSWERS FAQ (top-of-page) */
.quickfaq {
  background: linear-gradient(180deg, var(--pink-light) 0%, #fef0fa 50%, var(--pink-light) 100%);
  padding: 80px 40px;
}

.quickfaq-wrap {
  max-width: 880px;
  margin: 0 auto;
}

.quickfaq-eyebrow {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 12px;
}

.quickfaq-title {
  text-align: center;
  font-family: "Hit and Run!", "Lilita One", "Bowlby One", sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 5vw, 64px);
  color: var(--purple);
  margin-bottom: 50px;
  letter-spacing: -1px;
  line-height: 1;
}

.quickfaq-item {
  background: var(--white);
  border-radius: 16px;
  margin-bottom: 14px;
  overflow: hidden;
  border: 1.5px solid rgba(91, 63, 176, 0.12);
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(91, 63, 176, 0.06);
}

.quickfaq-item:hover {
  border-color: var(--purple);
}

.quickfaq-item.open {
  border-color: var(--purple);
  box-shadow: 0 6px 22px rgba(91, 63, 176, 0.15);
}

.quickfaq-question {
  padding: 22px 26px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  user-select: none;
  letter-spacing: -0.2px;
}

.quickfaq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--purple);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 400;
  flex-shrink: 0;
  margin-left: 16px;
  line-height: 1;
}

.quickfaq-item:not(.open) .quickfaq-toggle::after {
  content: '';
}

.quickfaq-answer {
  padding: 0 26px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-size: 15px;
  color: var(--purple-deep);
  line-height: 1.65;
}

.quickfaq-item.open .quickfaq-answer {
  padding: 0 26px 24px;
  max-height: 400px;
}

.quickfaq-cta {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: var(--purple-deep);
  font-weight: 600;
}

.quickfaq-cta a {
  color: var(--purple);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid var(--purple);
  padding-bottom: 1px;
  transition: opacity 0.2s;
}

.quickfaq-cta a:hover { opacity: 0.7; }

@media (max-width: 768px) {
  .quickfaq { padding: 50px 20px; }
  .quickfaq-question { padding: 18px 20px; font-size: 15px; }
  .quickfaq-item.open .quickfaq-answer { padding: 0 20px 20px; }
  .quickfaq-answer { font-size: 14px; }
}

/* NUMBERS DON'T LIE */
.numbers {
  background: linear-gradient(90deg, var(--pink) 0%, var(--pink-soft) 30%, var(--cream-warm) 55%, var(--lime-soft) 80%, var(--lime) 100%);
  padding: 100px 40px;
  text-align: center;
}

.numbers-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.number-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.number-stat-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  color: var(--purple);
}

.number-stat-label {
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 6px;
}

.number-stat-value {
  display: inline-block;
  font-weight: 900;
  font-size: 22px;
  color: var(--ink);
  background: var(--lime);
  padding: 4px 14px;
  border-radius: 6px;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}

.video-card {
  background: var(--white);
  border: 3px solid var(--purple);
  border-radius: 20px;
  /* aspect-ratio: 9 / 16; */
  width: 100%;
  max-width: 280px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 24px rgba(91, 63, 176, 0.15);
  transition: transform 0.3s;
  cursor: pointer;
}

.video-card:hover { transform: translateY(-6px) scale(1.02); }

.video-placeholder {
  width: 100%;
  height: 100%;
  background flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  padding: 20px;
  gap: 12px;
}
.video-card {
  position: relative;
}

.video-card video {
  width: 100%;
  display: block;
}

.video-play-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  pointer-events: none;
}

.video-card.playing .video-play-overlay {
  display: none;
}
.video-placeholder.ig {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.play-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
}

/* RAVING */
.raving {
  background: linear-gradient(90deg, var(--pink) 0%, var(--pink-soft) 35%, var(--cream-warm) 65%, var(--lime) 100%);
  padding: 100px 40px;
}

.raving-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.raving-headline {
  font-weight: 900;
  font-size: clamp(48px, 5.5vw, 76px);
  font-style: italic;
  color: var(--aqua);
  -webkit-text-stroke: 2px var(--aqua-deep);
  line-height: 1;
  letter-spacing: -1px;
  text-shadow: 4px 4px 0 var(--purple-deep);
  text-transform: uppercase;
}

.testimonial-card { text-align: center; }

.testimonial-quote {
  font-weight: 800;
  font-size: clamp(26px, 3vw, 38px);
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
  transition: opacity 0.3s;
}

.testimonial-source {
  font-size: 11px;
  color: var(--ink);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
}

.testimonial-dots { display: flex; gap: 8px; justify-content: center; }

.testimonial-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple);
  opacity: 0.3;
  transition: opacity 0.3s;
}

.testimonial-dots span.active { opacity: 1; }

/* POWER STACK */
.power-stack {
  background: linear-gradient(90deg, var(--pink) 0%, var(--pink-soft) 30%, var(--cream-warm) 55%, var(--lime-soft) 80%, var(--lime) 100%);
  padding: 100px 40px;
}

.power-stack-container { max-width: 1280px; margin: auto; }

.power-stack .subtitle {
  color: var(--purple);
  letter-spacing: 4px;
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.power-stack-title {
  font-family: "Hit and Run!", "Lilita One", "Bowlby One", sans-serif;
  font-weight: 900;
  font-size: clamp(56px, 7vw, 96px);
  color: var(--lime);
  -webkit-text-stroke: 2.5px var(--purple);
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 24px;
  text-transform: uppercase;
  filter: drop-shadow(3px 3px 0 var(--purple-deep));
}

.power-stack-title span {
  display: block;
  -webkit-text-stroke: 2.5px var(--purple);
  color: var(--lime);
  font-size: 1.15em;
  font-style: italic;
}

.power-stack-desc {
  max-width: 540px;
  margin: 24px 0 60px;
  color: var(--purple-deep);
  font-size: 16px;
  line-height: 1.6;
}

.power-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.power-card {
  background: rgba(255, 255, 255, 0.25);
  border: 1.5px solid rgba(91, 63, 176, 0.25);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
}

.power-card:hover {
  transform: translateY(-8px);
  border-color: var(--purple);
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 12px 40px rgba(91, 63, 176, 0.25);
}

.power-card.featured {
  border: 2.5px solid var(--purple);
  background: rgba(255, 255, 255, 0.35);
  transform: scale(1.02);
}
.power-card.featured:hover { transform: scale(1.02) translateY(-8px); }

.power-card.featured-results {
  border: 2.5px solid var(--lime);
  background: rgba(255, 255, 255, 0.35);
  transform: scale(1.02);
}
.power-card.featured-results:hover { transform: scale(1.02) translateY(-8px); }

.power-card-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--purple);
  color: var(--white);
  padding: 7px 18px;
  border-radius: 30px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.power-card-badge.results {
  background: var(--lime);
  color: var(--purple-deep);
}

.power-card-icon { font-size: 32px; margin-bottom: 8px; }

.power-card h3 {
  font-weight: 900;
  font-size: 32px;
  color: var(--purple);
  margin: 8px 0 8px;
  line-height: 1;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.power-card-tagline {
  font-size: 13px;
  font-weight: 600;
  font-style: italic;
  color: var(--purple-deep);
  margin: 0 0 18px;
  line-height: 1.4;
  letter-spacing: 0.2px;
  opacity: 0.85;
}

.power-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  color: var(--purple-deep);
  font-size: 14px;
  line-height: 1.7;
  flex: 1;
}

.power-card ul li::before {
  content: '→ ';
  color: var(--purple);
  font-weight: 700;
}

.power-card-price {
  font-weight: 900;
  font-size: 44px;
  color: var(--purple);
  margin: 20px 0 24px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.power-card-price span {
  font-size: 18px;
  text-decoration: line-through;
  color: var(--grey-soft);
  margin-left: 10px;
  font-weight: 400;
}

.power-card-btn {
  width: 100%;
  text-align: center;
  padding: 16px;
  border-radius: 50px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.25s;
  font-size: 13px;
  letter-spacing: 1.5px;
  border: 2px solid var(--purple);
  background: transparent;
  color: var(--purple);
  font-family: var(--body);
  text-transform: uppercase;
}

.power-card-btn:hover {
  background: var(--purple);
  color: var(--white);
  transform: scale(1.02);
}

.power-card.featured .power-card-btn {
  background: var(--purple);
  color: var(--white);
}
.power-card.featured .power-card-btn:hover { background: var(--purple-deep); }

.power-card-btn:disabled { opacity: 0.7; cursor: not-allowed; }

/* WHAT TO EXPECT TIMELINE */
.expect-wrap {
  max-width: 1100px;
  margin: 80px auto 0;
}

.expect-card {
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 18px;
  padding: 32px 40px;
  box-shadow: 0 8px 28px rgba(91, 63, 176, 0.12);
  position: relative;
}

.expect-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1.5px solid rgba(26, 15, 58, 0.1);
  margin-bottom: 24px;
}

.expect-eyebrow {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
}

.expect-icon {
  font-size: 22px;
  color: var(--purple);
}

.expect-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.expect-item p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
}

.expect-item strong {
  color: var(--purple);
  font-weight: 800;
}

.expect-item em {
  font-style: italic;
  color: var(--purple);
  font-weight: 600;
}

@media (max-width: 768px) {
  .expect-wrap { margin-top: 50px; }
  .expect-card { padding: 24px 22px; }
  .expect-eyebrow { font-size: 12px; letter-spacing: 1.5px; }
  .expect-item p { font-size: 14px; }
}

/* CLEAN AF / COMPARE */
.cleanaf-section {
  background: linear-gradient(180deg, var(--lime) 0%, var(--aqua-soft) 18%, var(--aqua) 100%);
  padding: 100px 40px;
}

.cleanaf-wrap { max-width: 1000px; margin: 0 auto; }

.cleanaf-title {
  text-align: center;
  font-family: "Hit and Run!", "Lilita One", "Bowlby One", sans-serif;
  font-weight: 900;
  font-size: clamp(56px, 7vw, 96px);
  color: var(--pink-soft);
  -webkit-text-stroke: 1.5px var(--purple);
  margin-bottom: 70px;
  letter-spacing: -1px;
  line-height: 1;
  position: relative;
  display: inline-block;
  width: 100%;
  text-transform: uppercase;
}

.cleanaf-title::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 360px;
  max-width: 80%;
  height: 18px;
  background: var(--lime);
  z-index: -1;
  border-radius: 4px;
}

/* Table */
.cleanaf-table {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  background: transparent;
}

/* Header row with product illustrations */
.cleanaf-header {
  display: contents;
}

.cleanaf-header-label {
  /* The "What we bring to the table" label spans nothing - it's empty space */
}

.cleanaf-header-icon {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 18px;
}

/* Pure AF column gets purple background that runs full height */
.cleanaf-cell-pure {
  background: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  font-weight: 700;
  border-bottom: 1.5px solid rgba(26, 15, 58, 0.35);
}

/* Pure AF column header connection (top extends to image) */
.cleanaf-header > .cleanaf-header-icon:nth-child(2) {
  background: linear-gradient(180deg, transparent 0%, transparent 60%, var(--purple) 60%, var(--purple) 100%);
}

.cleanaf-check {
  color: var(--pink-soft);
  font-family: "Hit and Run!", "Lilita One", cursive;
  font-size: 56px;
  line-height: 1;
  display: inline-block;
  transform: rotate(-8deg);
  font-weight: 900;
}

.cleanaf-row {
  display: contents;
}

.cleanaf-cell-label {
  font-family: 'Poppins', monospace;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  padding: 26px 28px;
  border-bottom: 1.5px solid rgba(26, 15, 58, 0.35);
  border-top: 1.5px solid rgba(26, 15, 58, 0.35);
  margin-top: -1.5px;
  letter-spacing: 0.3px;
}

.cleanaf-cell-other {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 600;
  color: var(--ink);
  padding: 22px 0;
  border-bottom: 1.5px solid rgba(26, 15, 58, 0.35);
  border-top: 1.5px solid rgba(26, 15, 58, 0.35);
  margin-top: -1.5px;
}

/* Remove top border on first label row to keep header clean */
.cleanaf-row:first-of-type .cleanaf-cell-label,
.cleanaf-row:first-of-type .cleanaf-cell-other {
  border-top: 1.5px solid rgba(26, 15, 58, 0.35);
}

/* Remove bottom border on last row */
.cleanaf-row:last-of-type .cleanaf-cell-label,
.cleanaf-row:last-of-type .cleanaf-cell-other {
  border-bottom: none;
}
.cleanaf-row:last-of-type .cleanaf-cell-pure {
  border-bottom: none;
}

@media (max-width: 768px) {
  .cleanaf-section { padding: 60px 16px; }
  .cleanaf-title { font-size: 56px; margin-bottom: 40px; }
  .cleanaf-table { grid-template-columns: 1.6fr 1fr 1fr; }
  .cleanaf-cell-label { font-size: 12px; padding: 16px 12px; letter-spacing: 0; }
  .cleanaf-check { font-size: 36px; }
  .cleanaf-cell-other { font-size: 22px; padding: 14px 0; }
  .cleanaf-header-icon svg { width: 50px !important; height: 70px !important; }
}

/* FAQ — CLEAN AF */
.faq-section {
  background: linear-gradient(180deg, var(--aqua-soft) 0%, var(--aqua) 30%, var(--aqua-soft) 70%, var(--cream) 100%);
  padding: 100px 40px;
}

.faq-wrap { max-width: 880px; margin: 0 auto; }

.faq-title {
  text-align: center;
  font-weight: 900;
  font-size: clamp(64px, 8vw, 120px);
  color: var(--pink-soft);
  -webkit-text-stroke: 1px var(--purple);
  font-style: italic;
  margin-bottom: 60px;
  letter-spacing: -2px;
  line-height: 1;
  position: relative;
  display: inline-block;
  width: 100%;
  text-transform: uppercase;
}

.faq-title::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  max-width: 80%;
  height: 16px;
  background: var(--lime);
  z-index: -1;
  border-radius: 4px;
}

.faq-item {
  background: var(--white);
  border-radius: 16px;
  margin-bottom: 14px;
  overflow: hidden;
  border: 1.5px solid rgba(91, 63, 176, 0.15);
  transition: all 0.3s;
}

.faq-item:hover { border-color: var(--purple); }
.faq-item.open { border-color: var(--purple); box-shadow: 0 8px 24px rgba(91, 63, 176, 0.15); }

.faq-question {
  padding: 22px 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  user-select: none;
}

.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--purple);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 400;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.3s;
}

.faq-item.open .faq-toggle { transform: rotate(45deg); }

.faq-answer {
  padding: 0 28px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-size: 14px;
  color: var(--purple-deep);
  line-height: 1.7;
}

.faq-item.open .faq-answer { padding: 0 28px 24px; max-height: 600px; }

/* COMMUNITY */
.community {
  background: transparent;
  padding: 60px 0 70px;
}

.community-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 60px;
  align-items: center;
}

.community-heading-block { padding: 20px 0; }

.community-title {
  font-weight: 900;
  font-size: clamp(48px, 5.5vw, 76px);
  color: var(--purple);
  line-height: 0.95;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
}

.community-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 80%;
  height: 12px;
  background: var(--lime);
  z-index: -1;
}

.community-shop-btn {
  display: inline-block;
  background: transparent;
  border: 2.5px solid var(--purple-deep);
  color: var(--purple-deep);
  padding: 16px 42px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 2px;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.25s;
  cursor: pointer;
  font-family: var(--body);
}

.community-shop-btn:hover { background: var(--purple-deep); color: var(--white); }

.community-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.community-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.community-card-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  background: linear-gradient(135deg, #d4ffeb, #fde2f6);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--purple-deep);
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(91, 63, 176, 0.1);
  transition: transform 0.3s;
}
.community-card-img:hover { transform: scale(1.02); }

.community-card-stars { color: #ff3da6; letter-spacing: 2px; font-size: 16px; }

.community-card-text {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
  font-weight: 500;
}

.community-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 8px;
  font-size: 13px;
  color: var(--purple);
  font-weight: 700;
}

.community-card-verified {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #00aa44;
  font-weight: 700;
}

/* FOOTER */
.site-footer {
  background: var(--purple-deep);
  color: var(--white);
  padding: 80px 40px 40px;
  text-align: center;
}

.footer-logo {
  font-weight: 900;
  font-size: 36px;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.footer-text {
  font-size: 13px;
  opacity: 0.7;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.5;
}

/* CART DRAWER */
.cart-drawer {
  position: fixed;
  top: 0; right: -480px;
  width: 100%;
  max-width: 480px;
  height: 100vh;
  background: var(--white);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.cart-drawer.open { right: 0; }

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 9998;
  pointer-events: none;
  transition: background 0.4s;
}
.cart-overlay.open { background: rgba(0, 0, 0, 0.5); pointer-events: auto; }

.cart-header {
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--cream);
}

.cart-header h2 {
  font-size: 24px;
  color: var(--purple);
  font-weight: 900;
}

.cart-close {
  background: transparent;
  border: none;
  font-size: 28px;
  color: var(--purple);
  cursor: pointer;
}

.cart-items { flex: 1; overflow-y: auto; padding: 24px 32px; }

.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--cream);
}

.cart-item-img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  background: var(--aqua-soft);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 700; color: var(--purple); margin-bottom: 4px; }
.cart-item-qty { font-size: 13px; color: var(--grey); }
.cart-item-price { font-weight: 800; color: var(--purple); font-variant-numeric: tabular-nums; }

.cart-discount {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 14px;
  color: #00aa44;
  font-weight: 700;
}

.cart-footer { padding: 24px 32px; border-top: 1px solid var(--cream); background: var(--cream); }

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 800;
  color: var(--purple);
  margin-bottom: 16px;
}

.cart-checkout {
  width: 100%;
  background: var(--purple);
  color: var(--white);
  border: none;
  padding: 18px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 2px;
  cursor: pointer;
  text-transform: uppercase;
  font-family: var(--body);
  transition: background 0.25s;
}
.cart-checkout:hover { background: var(--purple-deep); }

.cart-empty {
  text-align: center;
  padding: 60px 32px;
  color: var(--grey);
}

/* MOBILE */
@media (max-width: 968px) {
  .site-header { padding: 14px 18px; gap: 16px; }
  .header-nav { display: none; }
  .logo-img { height: 48px; }
  .hero { padding: 40px 20px 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-image { max-width: 380px; margin: 0 auto; }
  .hero-side-icons { display: none; }
  .hero-thumbs-row { gap: 8px; flex-wrap: wrap; }
  .thumb-row { width: 60px; height: 60px; }
  .feature-box { padding: 20px; }
  .feature-tabs { gap: 6px; }
  .feature-tab { font-size: 12px; }
  .feature-icons { gap: 8px; }
  .feature-icon-col svg { width: 50px; height: 50px; }
  .feature-label { font-size: 11px; }
  .feature-desc { font-size: 12px; }
  .supply-option { padding: 16px 14px; gap: 10px; }
  .supply-info h3 { font-size: 15px; }
  .supply-info p { font-size: 11px; }
  .price-now { font-size: 18px; }
  .supply-action { flex-direction: column; }
  .qty-selector { width: 100%; }

  .numbers, .raving, .power-stack, .compare-section, .faq-section, .community {
    padding: 60px 20px;
  }
  .numbers-grid { grid-template-columns: 1fr; gap: 50px; }
  .video-card { max-width: 100%; aspect-ratio: 4 / 5; }
  .raving-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .power-cards { grid-template-columns: 1fr; gap: 16px; }
  .power-card.featured { transform: none; }
  .power-card.featured:hover { transform: translateY(-8px); }
  .compare-header, .compare-row { padding: 14px 16px; font-size: 13px; }
  .compare-header-pure { font-size: 16px; }
  .community-grid { grid-template-columns: 1fr; gap: 40px; }
  .community-cards { grid-template-columns: 1fr; }
}

#supply-add-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity 0.2s;
}

#supply-add-btn:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}.testimonial-track {
  position: relative;
  min-height: 80px;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  animation: testimonialFade calc(var(--total) * 5s) infinite;
  animation-delay: calc(var(--i) * 5s);
}

@keyframes testimonialFade {
  0%        { opacity: 0; }
  5%        { opacity: 1; }
  30%       { opacity: 1; }
  35%       { opacity: 0; }
  100%      { opacity: 0; }
}
section.page-header.d-none.d-sm-block {
    display: none !important;
}
.sealsubs-target-element .sealsubs-container,
.sls-more-info-container {
  display: none !important;
}
.cleanaf-faq-heading {
  color: #ff3da6;
  -webkit-text-stroke: 5px #b6ff5c;
  text-stroke: 5px ##b6ff5c;
  paint-order: stroke fill;
}
body#page .shopify-section-group-header-group, body#index .shopify-section-group-footer-group{
    display: none !important;
}

.purchase-tabs {
  display: flex;
  background: #f0f0f0;
  border-radius: 999px;
  padding: 4px;
  gap: 4px;
  margin-bottom: 16px;
}

.purchase-tab {
  flex: 1;
  padding: 10px 16px;
  border: none;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #555;
  transition: background 0.2s, color 0.2s;
}

.purchase-tab.active {
  background: #fff;
  color: #111;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
div#rebuy-widget-292226 {
    display: none;
}