html {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: 'Poppins', sans-serif;
  background: #fff0f5;
  color: #333;
  padding-top: 40px;
  -webkit-overflow-scrolling: touch;
}

.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ff69b4;
  color: white;
  text-align: center;
  padding: 10px;
  font-weight: bold;
  z-index: 1000;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.announcement-bar .highlight {
  background: white;
  color: #ff69b4;
  padding: 2px 8px;
  border-radius: 4px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

h1, h2 {
  text-align: center;
  margin-bottom: 10px;
}

.container {
  max-width: 800px;
  margin: auto;
  padding: 20px;
}

img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

ul {
  list-style: none;
  padding: 0;
  text-align: center;
  font-size: 18px;
}

ul li {
  margin: 10px 0;
}

.cta {
  background: linear-gradient(to right, #ff69b4, #ffa07a);
  color: white;
  padding: 16px 30px;
  font-size: 20px;
  font-weight: bold;
  border-radius: 40px;
  text-align: center;
  display: block;
  margin: 30px auto;
  width: fit-content;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(255,105,180,0.4);
}

.before-after-container {
  max-width: 600px;
  margin: 30px auto;
}

.before-after-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

.toggle-btn {
  padding: 10px 30px;
  border: none;
  border-radius: 25px;
  background: #fff;
  color: #ff69b4;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #ff69b4;
}

.toggle-btn.active {
  background: #ff69b4;
  color: white;
  transform: scale(1.05);
}

.image-container {
  position: relative;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.comparison-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.5s ease;
}

.comparison-img.active {
  opacity: 1;
  transform: scale(1);
}

.videos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin: 30px 0;
}

.videos video {
  width: 100%;
  border-radius: 16px;
  cursor: pointer;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial {
  background: #fff;
  padding: 15px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: center;
}

.testimonial img {
  max-width: 100%;
  border-radius: 12px;
  margin-bottom: 10px;
}

.stars {
  color: gold;
  font-size: 18px;
}

.badge, .stock-alert {
  text-align: center;
  margin: 20px 0;
  font-size: 16px;
  font-weight: bold;
}

.badge {
  background: #e0ffe0;
  padding: 10px;
  border-radius: 12px;
  color: #2e7d32;
}

.stock-alert {
  color: #d32f2f;
}

.countdown {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
  }

  .real-review {
    max-width: 800px;
    margin: 40px auto;
    background: #fff0f5;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }

  .real-review h2 {
    text-align: center;
    margin-bottom: 20px;
  }

  .real-review .fb-comments {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .fb-comment {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }

  .fb-comment strong {
    color: #d63384;
    font-size: 16px;
  }

  .fb-photo {
    text-align: center;
    margin-top: 20px;
  }

  .fb-photo img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  .faq-section {
    max-width: 800px;
    margin: 50px auto;
    padding: 0 20px;
  }

  .faq {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    overflow: hidden;
  }

  .faq-question {
    padding: 16px 20px;
    background: #ffe5ec;
    cursor: pointer;
    font-weight: 600;
    position: relative;
  }

  .faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 24px;
    transition: transform 0.3s ease;
  }

  .faq.active .faq-question::after {
    content: '−';
    transform: rotate(180deg);
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #fff0f5;
    padding: 0;
    transition: all 0.3s ease-in-out;
  }

  .faq.active .faq-answer {
    padding: 20px;
    max-height: 200px;
  }

  @media (min-width: 768px) {
  .before-after {
    flex-direction: row;
    justify-content: space-between;
  }

  .before-after img {
    width: 48%;
  }

  .videos {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials {
    flex-direction: row;
  }
}