body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #fff;
  margin: 0;
  color: #333;
}

header {
  background: #b8002f;
  color: #fff;
  padding: 14px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

nav {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}




.logo {
  font-size: 1.5em;
  font-weight: 900;
  text-decoration: none;
  color: #fff;
}

.za-icon {
  width: 32px;
  height: 20px;
  font-size: 14px;
  vertical-align: middle;
  border: 1px solid #fff;
  border-radius: 4px;
  box-shadow: 0 0 4px rgba(0,0,0,0.2);
}


/* Add pulsing animation */
/* Add pulsing animation *//* Phone Number CTA */

.nav-phone {
  font-weight: bold;
  color: #fff;
  background: #920022;
  padding: 6px 12px;
  border-radius: 6px;
  margin: 20px 20px;
  text-decoration: none;
  transition: background 0.3s;
  white-space: nowrap;
}

.nav-phone:hover {
  color: #b8002f;
  background: #fff;
}

/* Phone Icon Signal Effect */
.nav-phone .icon {
  position: relative;
  display: inline-block;
  font-size: 20px;
}

.nav-phone .icon::before,
.nav-phone .icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  border: 2px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  animation: ringSignal 2s infinite;
}

.nav-phone .icon::after {
  animation-delay: 1s; /* second wave */
}

@keyframes ringSignal {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.2);
    opacity: 0;
  }
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  padding: 12px;
  border-radius: 6px;
  font-weight: 600;
  margin: 0 12px;
  transition: color 0.3s;
  border-bottom: 1px solid rgb(184 0 47 / 24%);

}

.nav-links a:hover {
  color: #b8002f;
  background: #fff;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}


/* Default desktop styles */
.nav-links {
  display: flex;
/*  gap: 1.5rem; */
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  transition: 0.3s;
}

/* Mobile styles */
@media (max-width: 768px) {
  .nav-links {
    display: none; /* hidden by default */
    position: absolute;
    top: 60px;
    right: 20px;
    flex-direction: column;
    background: #ffffffdb; /* Slightly transparent */
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  }

  .nav-links a {
    color: rgb(184, 0, 47);
  }

  .nav-links.active {
    display: flex; /* show on toggle */
  }

  .hamburger {
    display: flex;
  }

  /* Animate hamburger to X */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

p {
  line-height: 1.4;
}

.hero {
  position: relative;
  background: url('img/bg.png') center/cover no-repeat;
/*  padding: 80px 0; */
  color: #fff;
}

.hero-overlay {
  background: rgba(184, 0, 47, 0.4); /* Light red overlay */
  padding: 60px 20px;
}

.hero-content {
  display: flex;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-left {
  flex: 1;
}

.hero-left h1 {
  font-size: 2.5em;
  margin-bottom: 0.3em;
  font-weight: 900;
}

.hero-left h2 {
  font-size: 1.5em;
  margin-bottom: 0.5em;
  font-weight: 700;
}

.hero-left p {
  font-size: 1.1em;
  margin-bottom: 1.5em;
  line-height: 1.6;
}

.hero-btn {
  background: #b8002f;
  color: #fff;
  font-size: 1.2em;
  border: none;
  padding: 14px 36px;
  border-radius: 30px;
  text-decoration: none;
  cursor: pointer;
  font-weight: 700;
  transition: background 0.3s;
}
.hero-btn:hover {
  background: #920022;
}



.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-img {
  width: 500px;
  
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  object-fit: cover;
  background: url('img/za-flag.png') center/cover no-repeat;

}

@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  .hero-left {
    order: 2;
  }
  .hero-right {
    order: 1;
  }

  p{
    font-size: 14px;
    text-align: center;

  }

  .hero-btn {
    font-size: 13px;
    padding: 12px;
  }
  
}

@media (max-width: 600px) {
  .hero-left h1 {
    font-size: 34px;
    margin: -40px 0 -10px 0;
    font-weight: 900;
}
.hero-left h2 {
    font-size: 18px;
    margin-bottom: 0.5em;
    font-weight: 700;
}

.hero-left p {
    font-size: 13px;
    margin-bottom: 1.5em;
    line-height: 1.6;
}

  .hero-img { height: 250px; border-radius: 0px; width: 360px; margin: -60px 0 0 0;}
  .product-img { width: 100%; max-width: 220px; }
}



/* Badges Section */
.badges {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin: 30px 0;
}
.badge {
  background: #fff;
  border: 2px solid #b8002f;
  color: #b8002f;
  border-radius: 25px;
  padding: 8px 24px;
  font-weight: 700;
}

@media screen and (max-width: 600px) {
 .badges { /*flex-direction: column;*/ gap: 5px; }
  
  .badge {
    background: rgb(255, 255, 255);
    border: 2px solid rgb(184, 0, 47);
    color: rgb(184, 0, 47);
    border-radius: 25px;
    padding: 3px 16px;
    font-weight: 700;
    text-align: center;
    width: 77px;
    font-size: 13px;
}
  
}

.promo {
  background: #ffe8ee;
  color: #b8002f;
  text-align: center;
  padding: 18px 0;
  margin: -45px 0 0 0;
  font-weight: bold;
}
.old-price {
  text-decoration: line-through;
}
.new-price {
  font-size: 1.3em;
}


/* Countdown timer - horizontal, centered */
.deal-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;   /* allow wrapping but keep row */
  margin: 0 auto;
  padding: 6px 0;
}

/* Time box */
.time-box {
  background: #fff;
  color: #b8002f;
  border-radius: 10px;
  padding: 8px 10px;
  width: 70px;              /* fixed width keeps them aligned */
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Numbers */
.time-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: #b8002f;
}

/* Labels */
.time-label {
  font-size: 0.75rem;
  color: #555;
  margin-top: 4px;
  text-transform: uppercase;
}

/* Mobile adjustments */
@media (max-width: 520px) {
  .deal-timer {
    gap: 6px;
  }
  .time-box {
    width: 60px;   /* slightly smaller */
    padding: 6px;
  }
  .time-value {
    font-size: 1rem;
  }
  .time-label {
    font-size: 0.7rem;
  }
}

/* Only for ultra-small screens */
@media (max-width: 340px) {
  .deal-timer {
    flex-direction: column;
  }
  .time-box {
    width: 100%;
  }
}

.section {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 18px;
}
.section h2 {
  color: #b8002f;
  text-align: center;
}

.section h3 {
  color: #b8002f;
}
.product-showcase {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 18px;
  margin-bottom: 18px;
}
.product-img {
  width: 320px;
  border-radius: 16px;
  display: block;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

@media (max-width: 900px) {

  .product-showcase { flex-direction: column; gap: 18px; }
  .product-img { width: 100%; max-width: 320px; }

.section h2 {
  text-align: center;
  width: 326px;
  font-size: 20px;
  margin-bottom: 20px;
}

.section h3 {
  text-align: center;
  font-size: 15px;
  margin-bottom: -10px;
}

}



.intro-text {
  text-align: center;
  margin: 0 auto 30px;
  color: #444;
}


/* Ingredients Grid */
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
/*  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); */
  gap: 30px;
  margin-top: 20px;
}
.ingredient {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 20px 5px;
  text-align: center;
  transition: transform 0.3s;
  box-shadow: 0 2px 10px rgb(139 35 35 / 55%);
}

.ingredient:hover {
  transform: translateY(-5px);
}
.ingredient img {
  width: 60px;
  max-width: 120px;
  margin-bottom: 12px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

#ingredients h2 {
  text-align: center;
  margin: 20px 0 2px 0;
}

.ingredient h3 {
  color: #b8002f;
  margin: 0 0 -4px 0;
}


/* Tablet view (2 per row) */
@media (max-width: 992px) {
  .ingredients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

/* Mobile view (1 per row) */
@media (max-width: 600px) {
  .ingredients-grid {
  /*  grid-template-columns: 1fr; */
  }
}




/* Benefits Grid */

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.benefits {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 20px 5px;
  text-align: center;
  transition: transform 0.3s;
  box-shadow: 0 2px 10px rgb(139 35 35 / 55%);
}

.benefits:hover {
  transform: translateY(-5px);
}

.benefits span {
  font-size: 40px;
  margin-bottom: 12px;
}
#benefits h2 {
  text-align: center;
  margin: 20px 0 2px 0;

}

.benefits h3 {
  color: #b8002f;
  margin: 0 0 -4px 0;
}

/* Tablet view (2 per row) */
@media (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }


}

/* Mobile view (1 per row) */
@media (max-width: 600px) {
  .benefits-grid {
   /* grid-template-columns: 1fr; */
  }
}


/* Call to Action */
.cta {
  text-align: center;
  margin: 30px 0;
}
.cta button {
  background: #b8002f;
  color: #fff;
  font-size: 1.3em;
  border: none;
  padding: 15px 40px;
  border-radius: 32px;
  cursor: pointer;
  font-weight: 700;
  transition: background 0.3s;
}
.cta button:hover {
  background: #920022;
}

.contact {
  background: #b8002f;
  color: #fff;
  padding: 26px 0 1px 0;
  text-align: center;
}
.contact a {
  color: #fff;
  text-decoration: underline;
}

.creator {
  font-size: 10px;
  color: #fff;
  margin-top: 10px;
}

.creator a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

@media (max-width: 900px) {
  .cta button { font-size: 18px; padding: 12px 30px; line-height: 1.4;  }
  .contact {font-size: 15px; line-height: 1.4;}
}
@media (max-width: 600px) {
/*  nav { flex-direction: column; }  */
  .product-img { width: 100%; max-width: 220px; }
}

#how-to-use h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #b8002f;
}

#how-to-use h3 {
  color: #b8002f;
}

.how-to-use-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.step {
  text-align: center;
  padding: 5px;
  border-radius : 14px;
  transition: transform 0.3s;
  box-shadow: 0 2px 10px rgb(139 35 35 / 55%);
}

.step:hover {
  transform: translateY(-5px);
}

.step img {
  width: 70px;
  height: 70px;
  margin-bottom: 12px;
}

/*
#usage-storage {
  text-align: center;
  padding: 50px 20px;
  background: #fff5f5;
  border-radius: 12px;
  margin-top: 40px;
}

#usage-storage h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
*/

.storage-guidelines {
  margin: 20px auto;
  max-width: 600px;
  text-align: left;
}

.storage-guidelines ul {
  list-style: none;
  padding: 0;
}

.storage-guidelines li {
  margin: 8px 0;
  padding-left: 20px;
  position: relative;
}

.storage-guidelines li::before {
  content: "✔️";
  position: absolute;
  left: 0;
}

.note {
  margin-top: 20px;
  font-style: italic;
  text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
  .how-to-use-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

@media (max-width: 600px) {
  .how-to-use-grid {
  /*  grid-template-columns: 1fr; */
  }
}



/* Testimonials Section */

.testimonial-slider {
  display: flex;
  gap: 20px;
  overflow: hidden;
  scroll-behavior: smooth;
  justify-content: center;
}

.testimonial-card {
  flex: 0 0 50%;
  max-width: 100%;
  margin: 10px 0;
  background: #fff;
  border-radius: 15px;
  padding: 20px;
/*  box-shadow: 0 4px 12px rgba(0,0,0,0.1); */
  transition: transform 0.3s ease;
  text-align: center;
  box-shadow: 0 2px 10px rgb(139 35 35 / 55%);
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.testimonial-card p {
/*  font-size: 1rem; */
  color: #444;
  line-height: 1.4;
  margin-bottom: 10px;
}

.testimonial-card strong {
  color: #b8002f;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
  .testimonial-card { 
         flex: 0 0 50%;  /* Show 2 at once */
         padding: 10px;
          }
  
}

@media (min-width: 1024px) {
  .testimonial-card { flex: 0 0 33.33%; } /* Show 3 at once */

}