body {
  margin: 0;
  background: white;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-wrapper {
  position: relative;
  width: 600px;
  height: 200px;
  overflow: hidden;

}



.logo-base,
.fill {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}


.overlay {
  position: absolute;
  top: 0;
  width: 33.3333%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}

.overlay.left   { left: 0; }
.overlay.middle { left: 33.3333%; }
.overlay.right  { left: 66.6666%; }

.fill {
  position: absolute;
  top: 0;
  height: 100%;
  width: 300%;
  object-fit: cover;
}

/* Offset each third properly */
.fill.left {
  left: 0%;
  transform: translateY(-100%);
}

.fill.middle {
  left: -100%;
  transform: translateY(100%);
}

.fill.right {
  left: -200%;
  transform: translateY(-100%);
}


.ben-float {
  position: absolute;
  bottom: -200px; /* start off-screen */
  left: 50%;
  transform: translateX(-50%);
  width: 250px; /* adjust as needed */
  z-index: 3;
  opacity: 0;
   margin-left: -50px;
}

.logo-container {
  transform: scale(0.7); /* initial size */
  transform-origin: center;
  margin-right: 40px;
}


.main-wrapper {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;

}



.logo-container {
  position: relative;
  transform: scale(0.7);
  transform-origin: center;
  z-index: 2; /* logo */
}

.ben-float {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%) scale(0.6);;
  width: 250px;
  z-index: 3; /* now on top of the logo */
  opacity: 0;
}

.top-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 5;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 20px;
  box-sizing: border-box;
}

.left-header {
  font-family: sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: black;
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}


.divider-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1; /* behind everything except background */
}

.vertical-line {
  position: absolute;
  width: 2px;
  height: 0%; /* start collapsed */
  background-color: rgb(36, 34, 34);
  opacity: 4;
  top: 0;
  z-index: 1;
}

.vertical-line.left {
  left: 33.3333%;
  margin-left: -42px;
}

.vertical-line.right {
  left: 66.6666%;
}

.horizontal-line {
  position: absolute;
  height: 2px;
  width: 0%; /* start collapsed */
  background-color: rgb(0, 0, 0);
  opacity: 1;
  top: 60px;
  left: 0;
  z-index: 4;
}

.top-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 5;
  display: flex;
}

.left-header-bg {
  left: 33.3333%; /* 1/3 of the screen */
  width: 31%;
  height: 300%;
  background-color: white; /* transition to black */
  transform: translateY(-100%);
  display: flex;
  align-items: left;
  padding-left: 0px;
  box-sizing: border-box;
  margin-top: -20px;
  margin-left: -20px;
  margin-right: -80px;
}

.left-header {
  font-family: sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: white;
  opacity: 0;
 margin-top: 20px;
 margin-left: 70px;
}

.center-header {
  flex: 0 0 33.3333%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}



.center-logo {
  height: 45px; /* Adjust size as needed */
  object-fit: contain;
  padding-left: 220px;
}


.right-header {
  flex: 0 0 33.3333%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 30px;
  box-sizing: border-box;
  z-index: 9999; /* <---- Add this */
  position: relative; /* required for z-index to work */
}

.logo-wrapper {
  z-index: 3;
}

.divider-lines {
  pointer-events: none;
  z-index: 1;
}




.buy-now-btn {
  background-color: black;
  color: white;
  font-weight: bold;
  font-size: 14px;
  padding: 10px 20px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.3s ease;
   margin-right: -30px;

}

.buy-now-btn:hover {
  background-color: #8c8c8c;
}


.left-text-section {
  position: absolute;
  bottom: 80px;
  left: 40px;
  width: 30%;
  z-index: 4;
  opacity: 0;
  transform: translateY(50px);
  margin-left: -20px;
  margin-bottom: 100px;
}

.left-title {
  font-size: 23px;
  font-weight: bold;
  margin-bottom: 10px;
  color: black;
  margin-bottom: -10px;
}

.left-description {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
   margin-right: 40px;
}


.discount-cta {
  position: absolute;
  bottom: 80px;
  right: 40px;
  width: 30%;
  text-align: center;
  z-index: 4;
  opacity: 0;
  transform: translateY(50px);
  margin-right: -20px;
  margin-bottom: 110px;
}

.discount-text {
  font-size: 21px;
  font-weight: 500;
  font-weight: bold;
  color: black;
  margin-bottom: 8px;
}



.discount-btn {
  background-color: #1a1a1a;
  color: white;
  font-weight: bold;
  font-size: 16px;
  padding: 10px 20px;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.25);
  transition: background-color 0.3s ease;

}

.discount-btn:hover {
  background-color: #8c8c8c;
}


.price-comparison {
  margin-bottom: 12px;
}

.old-price {
  font-size: 18px;
  color: #999;
  text-decoration: line-through;
  text-align:right;
  padding-right: 97px;
}

.new-price {
  font-size: 18px;
  font-weight: bold;
  color: #111;
  margin-top: 4px;
}

html, body {
  overflow: hidden;
}


.product-info-btn {
  position: absolute;
  bottom: 30px; /* adjust if needed */
  left: 50%;
  transform: translateX(-50%) translateY(50px);
  padding: 12px 28px;
  font-size: 16px;
  font-weight: bold;
  background-color: #1a1a1a;
  color: white;
  border: none;
  border-radius: 999px;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.2);
  cursor: pointer;
  opacity: 0;
  z-index: 4;
  transition: background-color 0.3s ease;
  margin-left: -25px;
  margin-bottom: 15px;
}

.product-info-btn:hover {
  background-color: #8c8c8c;


}



.new-left-section {
  position: absolute;
  left: 40px;
  bottom: 60px;
  opacity: 0;
  transform: translateY(50px);
  z-index: 4;
  margin-left: 15px;
}

.benefits-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
  font-size: 18px;
  line-height: 1.6;
}

.benefits-gif {
  width: 270px;
  height: auto;
  border-radius: 10px;
}



.new-right-section {
  position: absolute;
  right: 100px;
  bottom: 60px;
  opacity: 0;
  transform: translateY(50px);
  z-index: 4;
  text-align: right;
      pointer-events: none;
      margin-right: 30px;

}

.confidence-seal {
  width: 200px;
  margin-bottom: 0px;
}

.confi-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}

.confidence-text {
  font-size: 18px;
  color: #333;
  line-height: 1.6;
  text-align: left;
  margin-right: -30px;
}


.your-health {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s ease;
  position: absolute;
  top: calc(50% + 80px); /* adjust this to position it under "RECLAIM" */
  left: 50%;
  transform-origin: center;
  transform: translateX(-50%) scale(0.8);
  margin-right: 200px;
  color:#333;
font-family: 'Arial Black', Gadget, sans-serif;

}

.your-health.active {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}


.cta-wrapper {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%) translateY(50px);
  opacity: 0;
  text-align: center;
  z-index: 4;
  margin-bottom: 20px;
}

.cta-subtext {
  font-size: 20px;
  color: #000;
  margin-bottom: 10px;
  font-weight: bold;
}

.proceed-checkout {
  background-color: #1a1a1a;
  color: white;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-bottom: -5px;
  pointer-events: auto;
  z-index: 9999; /* or higher than anything above it */
  position: relative; /* required for z-index to apply */

}

.proceed-checkout:hover {
  background-color: #8c8c8c;
}

.cta-warning {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
  color: rgb(0, 0, 0);
  font-weight: bold;
  opacity: 0;
  margin-bottom: 3px;
  margin-top: -12px;
}

.cta-wrapper {
  pointer-events: none; /* Prevent interaction until shown */
}

.cta-wrapper.visible {
  pointer-events: auto; /* Enable interaction when shown */
}




/* ========== Mobile Section Layout (No effect on desktop) ========== */
@media (max-width: 768px) {
  /* Hide original desktop layout unless wrapped in mobile-section */
  .desktop-only {
    display: none !important;
  }

  /* Ensure each mobile section takes full width and stacks */
  .mobile-section {
    display: block;
    width: 100vw;
  }

  .mobile-section .desktop-layout {
    display: block;
    padding: 20px;
  }

  /* Optional: center content in center section */
  .view-center .center-header,
  .view-center .logo-container,
  .view-center .ben-float,
  .view-center .product-info-btn {
    text-align: center;
    margin: 0 auto;
  }

  /* Reduce image sizes and align properly */
  .center-logo,
  .logo-base,
  .ben-float {
    max-width: 100%;
    height: auto;
  }

  .product-info-btn {
    display: block;
    margin: 20px auto;
  }

  .left-text-section,
  .discount-cta {
    text-align: center;
  }

  .left-title {
    font-size: 1.5em;
    margin-top: 10px;
  }

  .left-description {
    font-size: 1em;
    margin: 10px 0;
  }

  .discount-cta .old-price,
  .discount-cta .new-price {
    font-size: 1.3em;
    margin: 10px 0;
  }

  .discount-btn {
    padding: 12px 24px;
    font-size: 1em;
    margin-top: 10px;
  }
}

/* Hide this wrapper on desktop */
@media (min-width: 769px) {
  .mobile-version {
    display: none;
  }
}

/* Hide the desktop version on mobile */
@media (max-width: 768px) {
  .desktop-version {
    display: none;
  }

  html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    height: auto;
    background: white;
  }

  * {
    box-sizing: border-box;
  }

  .mobile-version {
    margin: 0 auto;
    padding: 0 16px;
    max-width: 100%;
  }

  .mobile-section {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 16px;
  }

  .mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: white;
    border-bottom: 3.5px solid black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }

  .mobile-header img {
    height: 45px;
    object-fit: contain;
  }

  body {
    padding-top: 60px; /* Prevents content from hiding under fixed header */
  }

  .reclaim-divider-block {
    text-align: center;
    margin: 30px auto;
    margin-top: -20px;
  }

  .reclaim-logo-img {
    width: 80%;
    max-width: 200px;
    height: auto;
  }

  .divider-line {
    height: 3.5px;
    background-color: black;
    width: 90%;
    margin: 20px auto;
  }

  .mobile-offer-block {
    text-align: center;
    padding: 30px 20px;
    margin: 0 auto;
    margin-top: -60px;
  }

  .mobile-offer-headline {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .mobile-price-row {
    margin-bottom: 5px;
  }

  .mobile-old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 22px;
  }

  .mobile-new-price {
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 20px;
  }

  .mobile-discount-btn {
    background-color: black;
    color: white;
    font-weight: bold;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-size: 24px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    margin-bottom: 15px;
    position: relative;
    z-index: 9999;
  }

  .mobile-second {
    padding: 30px 20px;
    background: white;
    padding-top: 10px;
  }

  .mobile-description {
    margin-bottom: 20px;
  }

  .mobile-title {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .mobile-paragraph {
    font-size: 24px;
    line-height: 1.6;
    color: #333;
  }

  .mobile-gif-container {
    text-align: center;
    margin: 30px 0;
  }

  .mobile-gif {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
  }

  .mobile-benefits-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
  }

  .mobile-benefits-list {
    font-size: 22px;
    list-style: none;
    padding-left: 0;
    line-height: 1.8;
    margin: 0 0 50px 0;
  }

  .cta-button {
    display: inline-block;
    background-color: #000000;
    color: white;
    font-family: 'Trebuchet MS', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    padding: 16px 50px;
    font-size: 24px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-bottom: 70px;
  }

  .cta-button:hover {
    background-color: #000000;
    transform: translateY(-2px);
  }
}
