/** Shopify CDN: Minification failed

Line 1428:1 Unexpected "/"
Line 1432:61 Expected ":"
Line 1433:43 Expected ":"
Line 1434:65 Expected ":"
Line 1435:49 Expected ":"
Line 1436:43 Expected ":"
Line 1437:47 Expected ":"
Line 1438:61 Expected ":"
Line 1439:41 Expected ":"
Line 1440:51 Expected ":"
... and 61 more hidden warnings

**/
/* ========================================
   Bundle Landing Page Styles
   ======================================== */

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Proza+Libre:wght@400;600;700&display=swap');

:root {
  --color-primary: #2d4a3e;
  --color-accent: #d4af6e;
  --color-bg-light: #f4f1e8;
  --color-white: #ffffff;
  --color-text-dark: #2d4a3e;
  --color-text-light: #ffffff;
  --font-heading: 'Times New Roman', serif;
  --font-body: 'Proza Libre', sans-serif;
}

/* Mobile-first optimizations */
* {
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   Hero Section
   ======================================== */
.bundle-hero {
  position: relative;
  color: var(--color-text-light);
  overflow: hidden;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .bundle-hero {
    padding: 5rem 0;
  }
}

.bundle-hero__background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bundle-hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.bundle-hero__container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
  z-index: 1;
}

@media (min-width: 768px) {
  .bundle-hero__container {
    padding: 0 2rem;
  }
}

.bundle-hero__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .bundle-hero__content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.bundle-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-body);
  margin-bottom: 1rem;
  animation: fadeInUp 0.6s ease-out;
}

@media (min-width: 768px) {
  .bundle-badge {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
  }
}

.bundle-hero__title {
  font-size: 2.25rem;
  font-family: var(--font-heading);
  line-height: 1.2;
  margin-bottom: 1rem;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

@media (min-width: 768px) {
  .bundle-hero__title {
    font-size: 3.75rem;
    margin-bottom: 1.5rem;
  }
}

.bundle-hero__description {
  font-size: 1.0625rem;
  font-family: var(--font-body);
  line-height: 1.6;
  margin-bottom: 0.75rem;
  opacity: 0.9;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

@media (min-width: 768px) {
  .bundle-hero__description {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
}

.bundle-hero__subdescription {
  font-size: 1rem;
  font-family: var(--font-body);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.75;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

@media (min-width: 768px) {
  .bundle-hero__subdescription {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }
}

.bundle-hero__pricing {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

@media (min-width: 768px) {
  .bundle-hero__pricing {
    gap: 1rem;
    margin-bottom: 2rem;
  }
}

.bundle-hero__price {
  font-size: 2.5rem;
  font-weight: bold;
  font-family: var(--font-heading);
}

@media (min-width: 768px) {
  .bundle-hero__price {
    font-size: 3rem;
  }
}

.bundle-hero__compare-price {
  font-size: 1.25rem;
  text-decoration: line-through;
  opacity: 0.5;
  font-family: var(--font-body);
}

@media (min-width: 768px) {
  .bundle-hero__compare-price {
    font-size: 1.5rem;
  }
}

.bundle-hero__savings {
  padding: 0.25rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: bold;
  font-family: var(--font-body);
}

.bundle-hero__cta {
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-size: 1.0625rem;
  font-weight: bold;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  width: 100%;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease-out 0.5s both;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

@media (min-width: 768px) {
  .bundle-hero__cta {
    width: auto;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
  }
}

.bundle-hero__cta:active {
  transform: scale(0.98);
}

.bundle-hero__cta:hover {
  transform: scale(1.05);
}

.bundle-hero__trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-badge {
  text-align: center;
}

.trust-badge__icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.trust-badge__text {
  font-size: 0.75rem;
  font-family: var(--font-body);
  opacity: 0.8;
}

.bundle-hero__image-wrapper {
  background-color: var(--color-bg-light);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.bundle-hero__product-img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
}

/* ========================================
   What's Included Section
   ======================================== */
.bundle-included {
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .bundle-included {
    padding: 5rem 0;
  }
}

.bundle-included__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .bundle-included__container {
    padding: 0 2rem;
  }
}

.bundle-included__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .bundle-included__header {
    margin-bottom: 4rem;
  }
}

.bundle-included__title {
  font-size: 2rem;
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .bundle-included__title {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
}

.bundle-included__description {
  font-size: 1.0625rem;
  font-family: var(--font-body);
  color: var(--color-text-dark);
  opacity: 0.7;
  max-width: 42rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .bundle-included__description {
    font-size: 1.25rem;
  }
}

.bundle-included__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .bundle-included__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
  }
}

@media (min-width: 1024px) {
  .bundle-included__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bundle-product-card {
  background-color: var(--color-bg-light);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 2px solid var(--color-accent);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out both;
}

@media (min-width: 768px) {
  .bundle-product-card {
    padding: 2rem;
  }
}

.bundle-product-card:nth-child(1) {
  animation-delay: 0.1s;
}

.bundle-product-card:nth-child(2) {
  animation-delay: 0.2s;
}

.bundle-product-card:nth-child(3) {
  animation-delay: 0.3s;
}

.bundle-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(45, 74, 62, 0.15);
}

.bundle-product-card__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.bundle-product-card__image-wrapper {
  width: 8rem;
  height: 8rem;
  flex-shrink: 0;
  margin-bottom: 1.5rem;
}

.bundle-product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--color-accent);
}

.bundle-product-card__icon {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 3px solid var(--color-accent);
}

.bundle-product-card__emoji {
  font-size: 3rem;
}

.bundle-product-card__text {
  width: 100%;
}

.bundle-product-card__title {
  font-size: 1.25rem;
  font-family: var(--font-heading);
  margin-bottom: 0.75rem;
}

.bundle-product-card__description {
  font-family: var(--font-body);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.bundle-product-card__features {
  margin-bottom: 1rem;
  display: inline-block;
  text-align: left;
}

.bundle-product-card__feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  opacity: 0.8;
}

.bundle-product-card__check {
  color: var(--color-primary);
  font-weight: bold;
}

.bundle-product-card__value {
  padding-top: 1rem;
  border-top: 1px solid rgba(45, 74, 62, 0.2);
}

.bundle-product-card__value-text {
  font-size: 1.125rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--color-text-dark);
}

.bundle-included__total {
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}

.bundle-included__total-value {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
}

.bundle-included__total-strikethrough {
  text-decoration: line-through;
  opacity: 0.6;
}

.bundle-included__total-price {
  font-size: 2.5rem;
  font-weight: bold;
  font-family: var(--font-heading);
  color: var(--color-text-dark);
}

.bundle-included__total-savings {
  font-size: 1.25rem;
}

/* ========================================
   Protocol Timeline Section
   ======================================== */
.bundle-protocol {
  padding: 5rem 0;
}

.bundle-protocol__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.bundle-protocol__header {
  text-align: center;
  margin-bottom: 4rem;
}

.bundle-protocol__title {
  font-size: 2.5rem;
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .bundle-protocol__title {
    font-size: 3rem;
  }
}

.bundle-protocol__description {
  font-size: 1.25rem;
  font-family: var(--font-body);
  color: var(--color-text-dark);
  opacity: 0.7;
  max-width: 42rem;
  margin: 0 auto;
}

.bundle-protocol__timeline {
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
}

.bundle-protocol__line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  transform: translateX(-50%);
  z-index: 0;
  display: none;
}

@media (min-width: 768px) {
  .bundle-protocol__line {
    display: block;
  }
}

.bundle-protocol__phase {
  margin-bottom: 5rem;
  position: relative;
}

.bundle-protocol__phase-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 768px) {
  .bundle-protocol__phase-content {
    grid-template-columns: 1fr 1fr;
  }

  .bundle-protocol__phase-content--reverse {
    direction: rtl;
  }

  .bundle-protocol__phase-content--reverse>* {
    direction: ltr;
  }
}

.bundle-protocol__phase-text {
  padding-right: 0;
}

@media (min-width: 768px) {
  .bundle-protocol__phase-text {
    padding-right: 4rem;
  }

  .bundle-protocol__phase--2 .bundle-protocol__phase-text {
    padding-right: 0;
    padding-left: 4rem;
    text-align: left;
  }
}

.bundle-protocol__phase-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-family: var(--font-body);
  margin-bottom: 1rem;
}

.bundle-protocol__phase-title {
  font-size: 1.875rem;
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  margin-bottom: 0.75rem;
}

.bundle-protocol__phase-description {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  opacity: 0.8;
  line-height: 1.6;
}

.bundle-protocol__phase-card {
  position: relative;
  background-color: var(--color-white);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .bundle-protocol__phase-card {
    margin-top: 0;
    padding-left: 4rem;
  }

  .bundle-protocol__phase--2 .bundle-protocol__phase-card {
    padding-left: 1.5rem;
    padding-right: 4rem;
  }
}

.bundle-protocol__phase-number {
  position: absolute;
  left: 50%;
  top: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  z-index: 10;
}

@media (min-width: 768px) {
  .bundle-protocol__phase-number {
    left: 0;
    transform: translate(0, -50%);
  }

  .bundle-protocol__phase--2 .bundle-protocol__phase-number {
    left: auto;
    right: 0;
    transform: translate(0, -50%);
  }
}

.bundle-protocol__phase-number span {
  font-size: 1.5rem;
  font-weight: bold;
  font-family: var(--font-heading);
  color: var(--color-text-dark);
}

.bundle-protocol__dose-label {
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
}

.bundle-protocol__dose-text {
  font-size: 0.875rem;
  font-family: var(--font-body);
  color: var(--color-text-dark);
  opacity: 0.8;
  margin-bottom: 1rem;
}

.bundle-protocol__note {
  background-color: rgba(212, 175, 110, 0.2);
  border-radius: 0.5rem;
  padding: 0.75rem;
  margin-top: 1rem;
}

.bundle-protocol__note p {
  font-size: 0.75rem;
  font-family: var(--font-body);
  color: var(--color-text-dark);
  font-weight: 600;
  margin: 0;
}

/* ========================================
   Benefits Section
   ======================================== */
.bundle-benefits {
  padding: 5rem 0;
}

.bundle-benefits__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.bundle-benefits__header {
  text-align: center;
  margin-bottom: 4rem;
}

.bundle-benefits__title {
  font-size: 2.5rem;
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .bundle-benefits__title {
    font-size: 3rem;
  }
}

.bundle-benefits__description {
  font-size: 1.25rem;
  font-family: var(--font-body);
  color: var(--color-text-dark);
  opacity: 0.7;
  max-width: 42rem;
  margin: 0 auto;
}

.bundle-benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .bundle-benefits__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bundle-benefit-card {
  text-align: center;
  padding: 2rem;
}

.bundle-benefit-card__icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
}

.bundle-benefit-card__title {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  margin-bottom: 1rem;
}

.bundle-benefit-card__description {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  opacity: 0.8;
  line-height: 1.6;
}

.bundle-benefits__bottom {
  background-color: var(--color-bg-light);
  border-radius: 1rem;
  padding: 2.5rem;
}

.bundle-benefits__bottom-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .bundle-benefits__bottom-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.bundle-benefits__bottom-title {
  font-size: 1.875rem;
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  margin-bottom: 1rem;
}

.bundle-benefits__bottom-description {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.bundle-benefits__img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* ========================================
   Testimonials Section
   ======================================== */
.bundle-testimonials {
  padding: 5rem 0;
}

.bundle-testimonials__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.bundle-testimonials__header {
  text-align: center;
  margin-bottom: 4rem;
}

.bundle-testimonials__title {
  font-size: 2.5rem;
  font-family: var(--font-heading);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .bundle-testimonials__title {
    font-size: 3rem;
  }
}

.bundle-testimonials__description {
  font-size: 1.25rem;
  font-family: var(--font-body);
  opacity: 0.8;
  max-width: 42rem;
  margin: 0 auto;
}

.bundle-testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .bundle-testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bundle-testimonial-card {
  border-radius: 1rem;
  padding: 2rem;
}

.bundle-testimonial-card__stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.bundle-testimonial-card__quote {
  font-family: var(--font-body);
  opacity: 0.9;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.bundle-testimonial-card__author {
  font-weight: 600;
  font-family: var(--font-body);
}

.bundle-testimonial-card__subtitle {
  font-size: 0.875rem;
  font-family: var(--font-body);
  opacity: 0.6;
}

/* ========================================
   FAQ Section
   ======================================== */
.bundle-faq {
  padding: 5rem 0;
}

.bundle-faq__container {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.bundle-faq__header {
  text-align: center;
  margin-bottom: 4rem;
}

.bundle-faq__title {
  font-size: 2.5rem;
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .bundle-faq__title {
    font-size: 3rem;
  }
}

.bundle-faq__description {
  font-size: 1.25rem;
  font-family: var(--font-body);
  color: var(--color-text-dark);
  opacity: 0.7;
}

.bundle-faq__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bundle-faq-item {
  background-color: var(--color-white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.bundle-faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.3s ease;
}

.bundle-faq-item__question:hover {
  background-color: rgba(244, 241, 232, 0.5);
}

.bundle-faq-item__question-text {
  font-size: 1.125rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--color-text-dark);
  padding-right: 1rem;
  margin: 0;
}

.bundle-faq-item__icon {
  flex-shrink: 0;
}

.bundle-faq-item__icon-down {
  display: block;
}

.bundle-faq-item__icon-up {
  display: none;
}

.bundle-faq-item__question[aria-expanded="true"] .bundle-faq-item__icon-down {
  display: none;
}

.bundle-faq-item__question[aria-expanded="true"] .bundle-faq-item__icon-up {
  display: block;
}

.bundle-faq-item__answer {
  display: none;
  padding: 0 1.5rem 1.5rem;
}

.bundle-faq-item__answer-text {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  opacity: 0.8;
  line-height: 1.6;
  margin: 0;
}

/* ========================================
   CTA Section
   ======================================== */
.bundle-cta {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.bundle-cta--parallax {
  background: linear-gradient(135deg, #ffffff 0%, #f4f1e8 100%);
}

/* Parallax Background */
.bundle-cta__parallax-bg {
  position: absolute;
  top: -50%;
  left: -10%;
  right: -10%;
  bottom: -50%;
  pointer-events: none;
  will-change: transform;
  transition: transform 0.1s ease-out;
}

.bundle-cta__parallax-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  animation: float 20s ease-in-out infinite;
}

.bundle-cta__parallax-circle--1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #d4af6e 0%, transparent 70%);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.bundle-cta__parallax-circle--2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #2d4a3e 0%, transparent 70%);
  top: 50%;
  right: 15%;
  animation-delay: 7s;
}

.bundle-cta__parallax-circle--3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #d4af6e 0%, transparent 70%);
  bottom: 10%;
  left: 30%;
  animation-delay: 14s;
}

.bundle-cta__container {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  z-index: 1;
}

.bundle-cta__title {
  font-size: 2.5rem;
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .bundle-cta__title {
    font-size: 3rem;
  }
}

.bundle-cta__description {
  font-size: 1.25rem;
  font-family: var(--font-body);
  color: var(--color-text-dark);
  opacity: 0.7;
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

/* Price Box with Glow */
.bundle-cta__price-box-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.bundle-cta__glow-effect {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(212, 175, 110, 0.3) 0%, transparent 70%);
  border-radius: 2rem;
  animation: pulse 3s ease-in-out infinite;
  pointer-events: none;
}

.bundle-cta__price-box {
  background-color: var(--color-bg-light);
  border-radius: 1rem;
  padding: 2rem;
  display: inline-block;
  min-width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(45, 74, 62, 0.1);
  border: 2px solid rgba(212, 175, 110, 0.2);
}

@media (min-width: 768px) {
  .bundle-cta__price-box {
    min-width: auto;
  }
}

.bundle-cta__pricing {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.bundle-cta__price {
  font-size: 3rem;
  font-weight: bold;
  font-family: var(--font-heading);
  color: var(--color-text-dark);
}

.bundle-cta__compare-price {
  font-size: 1.5rem;
  text-decoration: line-through;
  font-family: var(--font-body);
  color: var(--color-text-dark);
  opacity: 0.5;
}

.bundle-cta__features {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.bundle-cta__button {
  padding: 1.25rem 3rem;
  border-radius: 9999px;
  font-size: 1.25rem;
  font-weight: bold;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
  animation: float 3s ease-in-out infinite;
}

.bundle-cta__button--animated {
  animation: float 3s ease-in-out infinite, pulse 2s ease-in-out infinite;
}

.bundle-cta__button-text {
  position: relative;
  z-index: 2;
}

/* Shimmer Effect */
.bundle-cta__button-shimmer {
  position: absolute;
  top: -50%;
  left: -100%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.4) 50%,
      transparent 100%);
  transform: skewX(-20deg);
  animation: shimmer 3s ease-in-out infinite;
  pointer-events: none;
}

.bundle-cta__button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.bundle-cta__button:active {
  transform: translateY(-1px) scale(0.99);
}

.bundle-cta__trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 42rem;
  margin: 0 auto;
}

.bundle-cta__trust-badge {
  text-align: center;
}

.bundle-cta__trust-icon {
  font-size: 2rem;
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
}

.bundle-cta__trust-text {
  font-size: 0.875rem;
  font-family: var(--font-body);
  color: var(--color-text-dark);
  opacity: 0.7;
}

/* ========================================
   Disclaimer Section
   ======================================== */
.bundle-disclaimer {
  padding: 2rem 0;
  text-align: center;
}

.bundle-disclaimer__container {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.bundle-disclaimer__text {
  font-size: 0.75rem;
  font-family: var(--font-body);
  color: rgba(244, 241, 232, 0.6);
  line-height: 1.6;
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.02);
  }
}

@keyframes shimmer {
  0% {
    left: -100%;
  }

  50%,
  100% {
    left: 200%;
  }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ========================================
   Slick Animations & Reveals
   ======================================== */

/* Base Reveal State */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), 
              transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  will-change: opacity, transform;
}

/* Visible State */
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered Grid Children */
.stagger-grid > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.215, 0.61, 0.355, 1), 
              transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.stagger-grid.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger Delays (up to 10 items) */
.stagger-grid.is-visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-grid.is-visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-grid.is-visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-grid.is-visible > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-grid.is-visible > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-grid.is-visible > *:nth-child(6) { transition-delay: 0.6s; }
.stagger-grid.is-visible > *:nth-child(7) { transition-delay: 0.7s; }
.stagger-grid.is-visible > *:nth-child(8) { transition-delay: 0.8s; }
.stagger-grid.is-visible > *:nth-child(9) { transition-delay: 0.9s; }
.stagger-grid.is-visible > *:nth-child(10) { transition-delay: 1.0s; }

/* Hero Parallax Container Specifics */
.bundle-hero-cloud__image-card {
  transition: transform 0.1s ease-out; /* Smooth follow for mouse */
}

 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
       L o o p   S u b s c r i p t i o n   W i d g e t   C u s t o m   S t y l i n g 
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * / 
 / *        B A S E   P U R C H A S E   O P T I O N        * / 
 . l o o p - w i d g e t - p u r c h a s e - o p t i o n   { 
         b a c k g r o u n d :   # f f f ; 
         b o r d e r :   1 . 4 p x   s o l i d   # e 5 e 7 e b ; 
         b o r d e r - r a d i u s :   1 8 p x ; 
         p a d d i n g :   1 . 2 5 r e m ; 
         p o s i t i o n :   r e l a t i v e ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
         c u r s o r :   p o i n t e r ; 
         f o n t - f a m i l y :   i n h e r i t ; 
         t e x t - a l i g n :   l e f t ; 
 } 
 
 . l o o p - w i d g e t - p u r c h a s e - o p t i o n : h o v e r   { 
         b o r d e r - c o l o r :   # C A C 8 A B ; 
         b o x - s h a d o w :   0   4 p x   1 2 p x   r g b a ( 2 0 2 ,   2 0 0 ,   1 7 1 ,   0 . 1 5 ) ; 
         t r a n s f o r m :   t r a n s l a t e Y ( - 1 p x ) ; 
 } 
 
 / *        S E L E C T E D   ( S U B S C R I P T I O N )      E N H A N C E D        * / 
 . l o o p - w i d g e t - p u r c h a s e - o p t i o n - s e l e c t e d   { 
         b o r d e r :   3 p x   s o l i d   # C A C 8 A B   ! i m p o r t a n t ; 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # f d f d f b   0 % ,   # f 9 f b f 7   1 0 0 % ) ; 
         b o x - s h a d o w :   0   6 p x   2 0 p x   r g b a ( 2 0 2 ,   2 0 0 ,   1 7 1 ,   0 . 2 2 ) ; 
         t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ; 
         z - i n d e x :   1 0 ; 
 } 
 
 / *        P R I C I N G        * / 
 . l o o p - s u b - p r i c e   { 
         d i s p l a y :   b l o c k ; 
         f o n t - s i z e :   1 . 4 5 r e m ; 
         f o n t - w e i g h t :   7 0 0 ; 
         c o l o r :   # 1 1 1 ; 
         m a r g i n :   0 . 5 r e m   0 ; 
 } 
 
 . l o o p - s u b - p r i c e   d e l   { 
         f o n t - s i z e :   1 . 0 5 r e m ; 
         c o l o r :   # 8 8 8 ; 
         f o n t - w e i g h t :   4 0 0 ; 
         m a r g i n - l e f t :   0 . 5 r e m ; 
         d i s p l a y :   n o n e   ! i m p o r t a n t ;   / *   H i d e   s t r i k e t h r o u g h   p r i c e   * / 
 } 
 
 . l o o p - s u b - d i s c o u n t - n o t e   { 
         f o n t - s i z e :   0   ! i m p o r t a n t ;   / *   H i d e   ' S a v e   1 0 % '   t e x t   * / 
         c o l o r :   # 1 6 a 3 4 a ; 
         f o n t - w e i g h t :   6 0 0 ; 
         m a r g i n :   0 . 5 r e m   0   1 r e m ; 
         l i n e - h e i g h t :   1 . 4 5 ; 
 } 
 
 . l o o p - s u b - d i s c o u n t - n o t e : a f t e r   { 
         c o n t e n t :   ' E x t r a   1 0 %   O f f ' ;   / *   N e w   t e x t   * / 
         f o n t - s i z e :   0 . 8 4 r e m ; 
         v i s i b i l i t y :   v i s i b l e ; 
         d i s p l a y :   b l o c k ; 
 } 
 
 / *        B E N E F I T S   L I S T        * / 
 . l o o p - s u b - b e n e f i t s   { 
         l i s t - s t y l e :   n o n e ; 
         p a d d i n g :   0 ; 
         m a r g i n :   1 r e m   0   0 ; 
         f o n t - s i z e :   0 . 8 4 r e m ; 
         c o l o r :   # 4 4 4 ; 
         l i n e - h e i g h t :   1 . 6 ; 
 } 
 
 . l o o p - s u b - b e n e f i t s   l i   { 
         p o s i t i o n :   r e l a t i v e ; 
         p a d d i n g - l e f t :   1 . 5 r e m ; 
         m a r g i n - b o t t o m :   0 . 4 5 r e m ; 
 } 
 
 . l o o p - s u b - b e n e f i t s   l i : : b e f o r e   { 
         c o n t e n t :   ' C h e c k m a r k ' ;   
         p o s i t i o n :   a b s o l u t e ; 
         l e f t :   0 ; 
         c o l o r :   # C A C 8 A B ; 
         f o n t - w e i g h t :   7 0 0 ; 
         f o n t - s i z e :   1 . 1 r e m ; 
 } 
 
 / *        O N E - T I M E   ( D E - E M P H A S I Z E D )        * / 
 . l o o p - w i d g e t - p u r c h a s e - o p t i o n : n o t ( . l o o p - w i d g e t - p u r c h a s e - o p t i o n - s e l e c t e d )   { 
         o p a c i t y :   0 . 9 ; 
 } 
 
 . l o o p - w i d g e t - p u r c h a s e - o p t i o n : n o t ( . l o o p - w i d g e t - p u r c h a s e - o p t i o n - s e l e c t e d )   . l o o p - s u b - p r i c e   { 
         c o l o r :   # 6 6 6 ; 
 } 
  
 
/* ========================================
   Loop Widget Custom Styling (Global for Bundle)
   ======================================== */
.bundle-product-wrapper .loop-subscription-container {
    margin-top: 24px !important;
}

.bundle-product-wrapper .loop-selling-plan-fieldset {
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Boxed Options */
.bundle-product-wrapper div.loop-subscription-group,
.bundle-product-wrapper div.loop-one-time-purchase-option {
    border: 1px solid #e5e5e5 !important;
    padding: 16px !important;
    border-radius: 4px !important;
    margin-bottom: 12px !important;
    box-shadow: none !important;
    transition: all 0.2s ease;
    background: #fff !important;
    display: flex !important;
    position: relative !important;
}

/* Active State */
.bundle-product-wrapper div.loop-subscription-group:has(input:checked),
.bundle-product-wrapper div.loop-one-time-purchase-option:has(input:checked) {
    border: 1px solid #000 !important;
    background-color: #fff !important;
}

/* Clean up default Loop elements */
.bundle-product-wrapper .loop-selling-plan-selector-label,
.bundle-product-wrapper .loop-selling-plan-selector-description {
    display: none !important;
}

/* Custom Benefits Section */
.bundle-product-wrapper .loop-selling-plan-benefits {
    display: none;
    background-color: #f9f7f2;
    margin: 16px -16px -16px -16px;
    padding: 20px 16px;
    border-top: 1px solid #e5e5e5;
    border-radius: 0 0 4px 4px;
}

/* Show benefits when active */
.bundle-product-wrapper .loop-subscription-group:has(input:checked) .loop-selling-plan-benefits {
    display: block;
}

.bundle-product-wrapper .loop-benefits-title {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin: 0 0 12px 0;
}

.bundle-product-wrapper .loop-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bundle-product-wrapper .loop-benefits-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.3;
}

.bundle-product-wrapper .loop-benefits-list li:last-child {
    margin-bottom: 0;
}

.bundle-product-wrapper .loop-benefits-list li svg {
    flex-shrink: 0;
    color: #2d4a3e;
    width: 16px;
    height: 16px;
}

/* Discount Badge */
.bundle-product-wrapper .loop-subscription-group-discount-badge {
    display: inline-block !important;
    background-color: #c05c50 !important;
    color: #fff !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    padding: 4px 8px !important;
    border-radius: 0 !important;
    margin-left: 10px;
    letter-spacing: 0.5px;
}

/* Radio Button Layout */
.bundle-product-wrapper .loop-subscription-group-radio,
.bundle-product-wrapper .loop-one-time-purchase-option-radio {
    margin-top: 4px !important;
    margin-right: 12px !important;
    accent-color: #000;
}

.bundle-product-wrapper .loop-subscription-group-text,
.bundle-product-wrapper .loop-one-time-purchase-option-label-container {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.bundle-product-wrapper .loop-subscription-group-label,
.bundle-product-wrapper .loop-one-time-purchase-option-label {
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #000 !important;
    margin: 0 !important;
}

.bundle-product-wrapper .loop-subscription-group-price-container,
.bundle-product-wrapper .loop-one-time-purchase-option-price-container {
    margin-left: auto;
    font-weight: 600;
    font-size: 16px;
}

.bundle-product-wrapper .loop-one-time-purchase-option {
    align-items: center !important;
}

