@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #2c2c2c;
  background: #fff6ed;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background: #fff;
  z-index: 100;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  font-size: 1rem;
  font-weight: 500;
  color: #444;
}

.btn-notify {
  padding: 10px 20px;
  background-color: #ff6600;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}
.hamburger div {
  width: 25px;
  height: 3px;
  background: #333;
}

.hero {
  position: relative;
  text-align: center;
  padding: 80px 20px 40px;
  background: linear-gradient(
    to bottom,
    rgba(255, 115, 129, 0.9) 0%,
    rgba(255, 160, 168, 0.8) 100%
  );
}

.hero h1 {
  font-size: 600%;
  font-family: serif;
  color: #4d1e00;
  margin-bottom: 20px;
}

.hero p {
  font-family: serif;
  color: #4d1e00;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.125rem;
  color: #333;
  max-width: 600px;
  margin: auto;
  margin-bottom: 30px;
  line-height: 1.4;
}

.hero .bottles {
  position: relative;
  margin: auto;
  max-width: 400px;
}

.bottles img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .hero img {
    left: 3%;
  }
}

.benefits-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.strawberryImage {
  height: 125px;
  object-fit: cover;
  will-change: transform;
}

.benefits-label {
  border: 3px solid #8b3a00;
  border-radius: 50px;
  padding: 8px 24px;
  font-size: 1.2rem;
  color: #8b3a00;
  background: #fff8f2;
}

.hero .play-button {
  position: absolute;
  bottom: 10%;
  left: 10%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
}

.tags-scroll-wrapper {
  background: #ffc0cb;
  padding-top: 60px;
  padding-bottom: 20px;
  overflow: hidden;
}

.tags-scroll {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
}

.tags-scroll-wrapper .tags-scroll + .tags-scroll {
  margin-top: 30px;
}

.tags-row {
  display: inline-flex;
  align-items: center;
}

.tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  margin: 0 0.5rem;
  border-radius: 999px;
  background-color: #e25822;
  color: white;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
  flex-shrink: 0;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50%);
  }
}

.tags-scroll--left .tags-row {
  animation: scroll-left 60s linear infinite;
}

.tags-scroll--right .tags-row {
  animation: scroll-right 60s linear infinite;
}

.tags-scroll--right .tags-row {
  transform: translateX(-50%);
}

.tags-scroll--right .tags-row {
  animation: scroll-right 60s linear infinite;
}

.tags-scroll:hover .tags-row {
  animation-play-state: paused;
}

.benefits-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 20px;
}

@media (min-width: 768px) {
  .benefits-cards {
    grid-template-columns: 1fr 1fr;
  }
}

.benefit-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 30px;
  min-height: 250px;
  border-radius: 24px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: white;
}

.benefit-card.benefit-gut {
  background-color: #8b4513;
}
.benefit-card.benefit-daily {
  background-color: #f2994a;
}
.benefit-card.benefit-clean {
  background-color: #f26c6c;
}

.benefit-card h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.benefit-card p {
  font-size: 1rem;
  line-height: 1.5;
  max-width: 90%;
}

.benefits-section {
  padding: 60px 20px;
  background-color: #fff8f3;
}

.benefits-header {
  text-align: center;
  margin-bottom: 40px;
}

.benefits-label {
  display: inline-block;
  padding: 6px 16px;
  border: 2px solid #8b4513;
  border-radius: 30px;
  font-family: "Roca", sans-serif;
  color: #4d1e00;
  margin-bottom: 16px;
}

.benefits-header h2 {
  font-size: 2.5rem;
  color: #4d1e00;
  font-family: "Roca", sans-serif;
  line-height: 1.2;
}

.benefits-cards {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 40px;
  align-items: center;
}

:root {
  --color-brown: #8b3c26;
  --color-yellow: #f5c24b;
  --color-pink: #ff91c2;
  --color-orange: #ff9f43;

  --bg-page: #fff7f2;
  --heading-color: #401c10;
  --highlight-color: #5c2c1c;

  --btn-bg: #ffb347;
  --btn-hover-bg: #ffa500;

  --dot-active: #ff6f91;
  --dot-inactive: #ccc;

  --text-light: #ffffff;
  --text-dark: #333333;
}

.testimonial-section {
  text-align: center;
  padding: 60px 20px;
  overflow: hidden;
}

.testimonial-section h2 {
  font-size: 2.5rem;
  color: #4a1f14;
  margin-bottom: 40px;
  line-height: 1.3;
}

.testimonial-section h2 span {
  font-weight: bold;
  display: inline-block;
}

.slider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.slider-wrapper {
  overflow: visible;
  width: 100%;
  max-width: 700px;
}

.slider {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  flex: 0 0 300px;
  background: #ffb347;
  color: white;
  margin: 0 15px;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  transition:
    transform 0.5s,
    background 0.5s,
    opacity 0.5s;
  opacity: 0.3;
  transform: scale(0.85);
}

.slide.active {
  transform: scale(1.2);
  background: #f76c6c;
  opacity: 1;
  z-index: 2;
}

.nav-btn {
  background: none;
  border: 2px solid #4a1f14;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 1.2rem;
  cursor: pointer;
  color: #4a1f14;
  transition:
    background 0.3s,
    color 0.3s;
  flex-shrink: 0;
  z-index: 5;
}

.nav-btn:hover {
  background: #4a1f14;
  color: white;
}

@media (max-width: 768px) {
  .slide {
    flex: 0 0 250px;
    padding: 25px 15px;
  }

  .slide.active {
    transform: scale(1.1);
  }
}

.testimonial-section {
  text-align: center;
  padding: 60px 20px;
}

.testimonial-section h2 {
  font-size: 2.5rem;
  color: #4a1f14;
  margin-bottom: 40px;
}

.testimonial-section h2 span {
  font-weight: bold;
}

.slider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.slider {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  flex: 0 0 300px;
  background: #ffb347;
  color: white;
  margin: 0 15px;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  transition:
    transform 0.5s,
    background 0.5s;
}

.slide.active {
  transform: scale(1.2);
  background: #f76c6c;
  z-index: 2;
}

.nav-btn {
  background: none;
  border: 2px solid #4a1f14;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 1.2rem;
  cursor: pointer;
  color: #4a1f14;
  transition:
    background 0.3s,
    color 0.3s;
}

.nav-btn:hover {
  background: #4a1f14;
  color: white;
}

@media (max-width: 768px) {
  .slide {
    flex: 0 0 250px;
    padding: 25px 15px;
  }

  .slide.active {
    transform: scale(1.1);
  }
}

.controls {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn {
  width: 45px;
  height: 45px;
  border: none;
  background: var(--btn-bg);
  color: white;
  font-size: 24px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.3s,
    transform 0.3s;
}

.btn:hover {
  background: var(--btn-hover-bg);
  transform: scale(1.1);
}

.dots-container {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  background: var(--dot-inactive);
  border-radius: 50%;
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.3s,
    opacity 0.3s;
  opacity: 0.6;
}

.dot.active {
  background: var(--dot-active);
  transform: scale(1.4);
  opacity: 1;
}

.image-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  overflow: visible;
}

.parallax-image {
  position: absolute;
  right: 10px;
  bottom: -20px;
  width: 80px;
  height: auto;
  transform: translateY(0);
  transition: transform 0.2s ease-out;
  pointer-events: none;
}

@media (min-width: 768px) {
  .benefits-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.benefit-card {
  background-color: #a14b2a;
  color: white;
  padding: 30px;
  border-radius: 24px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.benefit-card h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 1rem;
  line-height: 1.4;
}

.benefit-image img {
  width: 100%;
  border-radius: 24px;
  display: block;
}

@media (max-width: 768px) {
  nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100%;
  background: #fff;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.15);
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: right 0.3s ease-in-out;
  z-index: 200;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu a {
  font-size: 1.2rem;
  color: #333;
}

.mobile-menu .btn-notify {
  margin-top: 20px;
}

.below-hero-text {
  text-align: center;
  padding: 20px;
  font-size: 1rem;
  color: #4d1e00;
}

.flavors {
  background: linear-gradient(135deg, #fbc2eb 0%, #a6c1ee 100%);
  padding: 4rem 2rem;
  border-radius: 0 0;
}

.card {
  margin: 2rem auto;
  padding: 2.5rem;
  max-width: 500px;
  min-height: 500px;
  border-radius: 2.5rem;
  color: white;
  font-size: 1rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.card img {
  height: 100%;
  width: auto;
  max-height: 200px;
  margin-top: 1rem;
}

.chocolate {
  background: linear-gradient(
    to bottom,
    rgba(156, 58, 32, 0.75) 0%,
    rgba(240, 172, 142, 0.85) 100%
  );
}

.caramel {
  background: linear-gradient(
    to bottom,
    rgba(236, 124, 48, 0.75) 0%,
    rgba(255, 189, 110, 0.85) 100%
  );
}

.strawberry {
  background: linear-gradient(
    to bottom,
    rgba(255, 109, 125, 0.75) 0%,
    rgba(255, 189, 192, 0.85) 100%
  );
}

.card h2 {
  margin-bottom: 0.75rem;
  font-size: 1.6rem;
  font-weight: bold;
}

.card p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.card h2 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.card img {
  width: 100px;
  margin-top: 1rem;
}

main {
  padding: 3rem 1rem;
}

.faq-section {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.faq-label {
  display: inline-block;
  background: #ff5a1f;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.faq {
  margin-top: 2rem;
}

.faq-item {
  background: #ffffff;
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  text-align: left;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1rem 1.2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #3b1e15;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  color: #ff5a1f;
  position: absolute;
  right: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: "–";
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.2rem;
  background: #ff5a1f;
  color: #fff;
  line-height: 1.5;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 1rem 1.2rem;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  transition-delay: var(--delay, 0s);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  padding: 40px 20px;
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 25px;
}

.amazon-section {
  padding: 40px 20px;
}

.amazon-section {
  font-size: 2rem;
  margin-bottom: bold;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.outer-pill {
  display: inline-flex;
  border: 2px solid #3b1c11;
  border-radius: 50px;
  overflow: hidden;
}

#email {
  border: none;
  outline: none;
  padding: 15px 20px;
  border-radius: 50px 0 0 50px;
  width: 250px;
  font-size: 1rem;
}

.notify-btn {
  background: #3b1c11;
  color: #fff;
  border: none;
  padding: 15px 25px;
  border-radius: 0 50px 50px 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
}

#errorMsg {
  color: red;
  margin-top: 10px;
  font-size: 0.9rem;
}

.wave-section {
  background: #8a3627;
  color: #fff;
  text-align: center;
  padding: 80px 20px 60px;
}

.socials {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.socials a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  color: #3b1c11;
  border-radius: 50%;
  width: 65px;
  height: 65px;
  font-size: 2rem;
  text-decoration: none;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.socials a .fa {
  transition: color 0.3s ease;
}

.socials a:hover .fa {
  color: #ff6600;
}

.socials a:hover {
  background: #ff6600;
  color: #fff;
  transform: scale(1.15);
}

.logo-text {
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 900;
  margin: 20px 0 15px;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 6px;
  background: linear-gradient(
    180deg,
    #ffc5d5 25%,
    #d07130 25% 50%,
    #3c0c06 50% 75%,
    #fff6ed 75%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tagline {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: #fceee5;
  margin-bottom: 40px;
  font-weight: 600;
}

footer {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: #fceee5;
}

footer p {
  margin-bottom: 12px;
}

footer a {
  color: #fceee5;
  display: inline-block;
  margin: 4px 10px;
  text-decoration: underline;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #ffb347;
}

.marquee-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
}

.marquee {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.marquee-content {
  display: flex;
  gap: 1rem;
  padding-right: 1rem;
  animation: marquee-left 30s linear infinite;
}

.marquee.right .marquee-content {
  animation: marquee-right 30s linear infinite;
}

.marquee-content span {
  color: #fff;
  border-radius: 25px;
  padding: 0.5rem 1.2rem;
  font-weight: bold;
  flex-shrink: 0;
}

.marquee-content span:nth-child(1) {
  background: #ff4d4d;
}
.marquee-content span:nth-child(2) {
  background: #a0522d;
}
.marquee-content span:nth-child(3) {
  background: #ffb6c1;
  color: #333;
}
.marquee-content span:nth-child(4) {
  background: #ffd633;
  color: #333;
}
.marquee-content span:nth-child(5) {
  background: #ff8c1a;
}

@keyframes marquee-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes marquee-right {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
