/* ======= NAVBAR STYLING ======= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #024b30;
  padding: 1rem 2rem;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #ffcc00;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  color: white;
  border: none;
  cursor: pointer;
}

/* ======= RESPONSIVE MENU ======= */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #024b30;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    padding: 1rem 2rem;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-links li {
    margin: 1rem 0;
  }
}/* ======= HERO SECTION ======= */
.hero {
  background: url('assets/garlic1.jpg') no-repeat center center/cover;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0 1rem;
}

.hero-content {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 12px;
  max-width: 600px;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.hero-btn {
  background-color: #ffcc00;
  color: #024b30;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.hero-btn:hover {
  background-color: #e6b800;
}/* ======= BENEFITS SECTION ======= */
.benefits {
  padding: 4rem 1.5rem;
  background-color: #f5f5f5;
  text-align: center;
}

.benefits h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #024b30;
}

.benefit-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  max-width: 1000px;
  margin: 0 auto;
}

.benefit-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-card h3 {
  color: #02735e;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.benefit-card p {
  color: #333;
  font-size: 1rem;
  line-height: 1.5;
}/* ======= VIDEO SECTION ======= */
.product-video {
  padding: 4rem 1.5rem;
  background-color: #fff;
  text-align: center;
}

.product-video h2 {
  font-size: 2rem;
  color: #024b30;
  margin-bottom: 2rem;
}

.video-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  border-radius: 10px;
  overflow: hidden;
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
}/* ======= OFFER + COUNTDOWN ======= */
.offer-countdown {
  background: #fffcf2;
  padding: 4rem 2rem;
  text-align: center;
  color: #202020;
}

.offer-countdown h2 {
  font-size: 2rem;
  color: #d62828;
  margin-bottom: 1rem;
}

.old-price span {
  text-decoration: line-through;
  color: #999;
  font-size: 1.3rem;
}

.new-price span {
  color: #02735e;
  font-size: 1.8rem;
  font-weight: bold;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.countdown-timer div {
  background: #f1f1f1;
  padding: 1rem;
  border-radius: 10px;
  min-width: 60px;
}

.countdown-timer span {
  font-size: 1.5rem;
  font-weight: bold;
  color: #d62828;
}

.countdown-timer small {
  display: block;
  font-size: 0.8rem;
  margin-top: 5px;
  color: #333;
}

.btn-order {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 1.5rem;
  background: #024b30;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s;
}

.btn-order:hover {
  background: #046c45;
}/* ==== PERSONAL RECOMMENDATION ==== */
.recommendation {
  background: #f9f9f9;
  padding: 3rem 2rem;
  text-align: center;
}

.recommendation h2 {
  font-size: 2rem;
  color: #024b30;
}

.recommendation p {
  font-size: 1rem;
  margin: 1rem 0;
  color: #444;
}

.btn-recommend {
  background: #d62828;
  color: white;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-recommend:hover {
  background: #a11212;
}

/* ==== NEOLIFE STORE LINK ==== */
.neolife-link {
  background: #eefdf5;
  padding: 3rem 2rem;
  text-align: center;
}

.neolife-link h2 {
  font-size: 2rem;
  color: #02735e;
}

.neolife-link p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1rem;
}

.btn-neolife {
  background: #02735e;
  color: white;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-neolife:hover {
  background: #014437;
}.site-footer {
  background: #024b30;
  color: white;
  padding: 3rem 2rem 1rem;
  font-size: 0.95rem;
}

.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.site-footer h3, .site-footer h4 {
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.site-footer ul {
  list-style: none;
  padding: 0;
}

.site-footer ul li {
  margin-bottom: 0.5rem;
}

.site-footer ul li a,
.site-footer a {
  color: #f0f0f0;
  text-decoration: none;
  transition: color 0.3s;
}

.site-footer ul li a:hover,
.site-footer a:hover {
  color: #a5ffd6;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}.garlic-benefits {
  padding: 2rem;
  background-color: #fefefe;
  text-align: center;
}

.garlic-benefits h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #044d29;
}

.benefit {
  margin-bottom: 3rem;
}

.benefit h3 {
  font-size: 1.3rem;
  color: #024b30;
  margin-bottom: 0.5rem;
}

.benefit p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1rem;
}

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