
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  font-family: 'Segoe UI', sans-serif;
  background-color: #1a1a1a;
  color: #f0e6d2;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Hero Section */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background-image: url('../images/mh.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding: 60px 30px;
  overflow: hidden;
  gap: 2rem;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero-content, .hero-image {
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  line-height: 1.15;
  font-weight: 800;
}

.hero .highlight {
  color: #e63946;
  display: inline-block;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  max-width: 38ch;
  line-height: 1.5;
}

/* CTA button */
.hero button {
  background-color: #e63946;
  color: white;
  padding: 0.9rem 1.75rem;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  transition: background 0.3s ease, transform 0.2s ease;
}

.hero button:hover {
  background-color: #c5303b;
  transform: translateY(-2px);
}

/* Trust signals */
.trust-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  color: #f0e6d2;
  opacity: 0.9;
}

.trust-item svg {
  flex-shrink: 0;
}

.trust-item .trust-text {
  font-weight: 500;
}

/* Desktop trust icon size */
@media (min-width: 769px) {
  .trust-item {
    font-size: 1rem;
  }
}

/* Product image */
.hero-image {
  flex: 1;
  max-width: 500px;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.5);
}

/* Flat badge */
.badger {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: linear-gradient(135deg, #FFD700, #e6b800);
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  border-radius: 6px;
  color: #1a1a1a;
  font-weight: 600;
  box-shadow: 0 3px 6px rgba(0,0,0,0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero .highlight {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-image {
    max-width: 80%;
    margin-top: 20px;
  }

  .hero button {
    font-size: 1rem;
    padding: 0.7rem 1.4rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
  }

  .trust-icons {
    justify-content: center;
  }
}


/* Slider Section */
.slider {
  max-width: 800px;
  margin: 4rem auto;
  text-align: center;
  position: relative;
  padding: 0 2rem;
  min-height: 200px;
  max-height: 300px;
}

.slider-heading {
  font-size: 2rem;
  margin-bottom: 3rem;
}

.slide {
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  position: absolute;
  width: 100%;
  z-index: 0;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  position: relative;
  z-index: 1;
  pointer-events: auto;
}

.slide img {
  width: 100%;
  max-height: 200px;
  object-fit: contain;
  border-radius: 10px;
}

.slide p {
  margin-top: 1rem;
  font-size: 1.2rem;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  background: #555;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: #e63946;
}

@media (max-width: 768px) {
  .slider {
    padding: 0 1rem;
  }

  .slide img {
    max-height: 200px;
    object-fit: contain;
  }

  .slide p {
    font-size: 1rem;
    padding: 0 1rem;
  }
}

/* Testimonials */
.testimonials-section {
  padding: 2rem 2rem;
  background-color: #111;
  text-align: center;
}

.testimonials-heading {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.testimonials-wrapper {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  max-width: 100vw;
}

.testimonial {
  flex: 0 0 auto;
  min-width: 260px;
  max-width: 260px;
  background: #1e1e1e;
  padding: 1.5rem;
  border-radius: 10px;
  scroll-snap-align: start;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.testimonial p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.testimonial span {
  color: #e63946;
  font-weight: bold;
}

/* Purchase Options */
.purchase-section {
  padding: 4rem 2rem;
  text-align: center;
}

.purchase-heading {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.purchase-wrapper {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  scroll-snap-type: x mandatory;
  padding-left: 1rem;
  max-width: 100vw;
}

.purchase-card {
  flex: 0 0 auto;
  min-width: 260px;
  max-width: 260px;
  background: #1e1e1e;
  padding: 1.5rem;
  border-radius: 10px;
  scroll-snap-align: start;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  text-align: center;
}

.purchase-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.price-strike {
  text-decoration: line-through;
  color: #888;
}

.price-now {
  color: #e63946;
  font-weight: bold;
}

.purchase-card button {
  background: #e63946;
  color: white;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

/* Contact Section */
.contact-section {
  background: #111;
  padding: 4rem 2rem;
  text-align: center;
}

.contact-heading {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.contact-subheading {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.form-container {
  background: #1e1e1e;
  padding: 2rem;
  border-radius: 10px;
  max-width: 400px;
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

form label {
  display: block;
  margin-top: 1rem;
  text-align: left;
}

form input, form select {
  width: 100%;
  padding: 0.6rem;
  background: #333;
  color: #f0e6d2;
  border: none;
  border-radius: 5px;
  margin-top: 0.3rem;
}

form button {
  margin-top: 1.5rem;
  background: #e63946;
  color: white;
  padding: 0.8rem 1.2rem;
  border: none;
  width: 100%;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

.inline-whatsapp {
  display: inline-block;
  background-color: #25D366;
  color: white;
  padding: 0.4rem 0.8rem;
  margin-left: 0.5rem;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
}

.inline-whatsapp:hover {
  background-color: #1ebe5d;
}

/* Trust Badges */
.trust-badges-wrapper {
  padding: 3rem 1rem;
  background-color: #1e1e1e;
  text-align: center;
}

.trust-badges {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1rem;
  padding: 1rem;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  max-width: 100vw;
  box-sizing: border-box;
}

.trust-badges .badge {
  flex: 0 0 auto;
  min-width: 260px;
  max-width: 260px;
  background: #2a2a2a;
  padding: 1.5rem;
  border-radius: 10px;
  color: #f0e6d2;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  scroll-snap-align: start;
  text-align: center;
}

.trust-badges .badge img {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}

.trust-badges .badge h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #e63946;
}

.trust-badges .badge p {
  font-size: 0.95rem;
}

/* FAQ */
.faq-toggle-wrapper {
  text-align: center;
  padding: 3rem 1rem;
  background-color: #111;
}


.faq {
  max-width: 800px;
  margin: 2rem auto;
  text-align: left;
}

.faq-item {
  margin-bottom: 1rem;
  border-bottom: 1px solid #333;
}

.faq-question {
  background: none;
  color: #e63946;
  font-size: 1.1rem;
  padding: 1rem;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-weight: bold;
}

.faq-answer {
  display: none;
  padding: 0 1rem 1rem;
  color: #f0e6d2;
  font-size: 1rem;
}

.faq-answer.open {
  display: block;
}

/* Footer */
.site-footer {
  background-color: #111;
  color: #888;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
}
.sticky-order-btn {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 9999;
  background: transparent;
}

.sticky-order-btn button {
  background: #e63946;
  color: white;
  border: none;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .sticky-order-btn {
    display: none !important;
  }
}


.toggle-faq-btn {
  background-color: #e63946;
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.toggle-faq-btn:hover {
  background-color: #c42d3c;
}
.trust-heading {
  font-size: 2rem;
  color: #f0e6d2;
  text-align: center;
  margin-bottom: 2rem;
}
  .timer-container {
    text-align: center;
    padding: 20px;
    font-family: Arial, sans-serif;
  }

  .timer-title {
    font-size: 2rem;
    font-weight: 700;
    color: #d32f2f;
    margin-bottom: 20px;
  }

  #big-timer {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: #222;
    padding: 20px 40px;
    border: 4px solid #d32f2f;
    border-radius: 20px;
    display: inline-block;
    background: #fff5f5;
  }

  .timer-sub {
    font-size: 1.3rem;
    color: #444;
    margin-top: 20px;
  }