* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'DM Sans', 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: #1a2a24;
  background: #f8faf8;
  font-size: 18px;
  min-height: 100vh;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Nav */
.navbar {
  background: #0d3d38;
  padding: 1.25rem 0;
  box-shadow: 0 4px 20px rgba(13, 61, 56, 0.35);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid #1a5c54;
}
.navbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.logo h1 {
  color: #e8f4f2;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 2px;
}
.nav-links { display: flex; list-style: none; gap: 2rem; flex-wrap: wrap; }
.nav-links a {
  color: #b8d4d0;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.25s, transform 0.25s;
  font-size: 1rem;
}
.nav-links a:hover { color: #fff; transform: translateY(-2px); }

/* Hero */
.hero {
  background: linear-gradient(160deg, #0d3d38 0%, #1a5c54 45%, #2d7a70 100%);
  color: #fff;
  padding: 140px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, #f8faf8, transparent);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero-content h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.5px;
}
.hero-content p {
  font-size: 1.35rem;
  margin-bottom: 2.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}
.cta-button {
  display: inline-block;
  background: #e8f4f2;
  color: #0d3d38;
  padding: 18px 48px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s;
  border: 2px solid transparent;
}
.cta-button:hover {
  background: #fff;
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.2);
}

/* GaraHerb products - styled to match Jelivo (teal) */
.products-section {
  background: linear-gradient(135deg, #0d3d38 0%, #1a5c54 50%, #2d7a70 100%);
  padding: 80px 24px;
  color: #fff;
}
.products-header { text-align: center; margin-bottom: 50px; }
.promo-badge {
  display: inline-block;
  background: #e8f4f2;
  color: #0d3d38;
  padding: 10px 30px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.products-header h2 { font-size: 2.8rem; margin-bottom: 15px; }
.products-header p { font-size: 1.2rem; opacity: 0.9; color: #b8d4d0; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}
.product-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  text-decoration: none;
  color: #1a2a24;
  transition: all 0.3s;
  border: 2px solid #e0ebe9;
  position: relative;
  overflow: hidden;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(13, 61, 56, 0.2);
  border-color: #1a5c54;
}
.product-card.featured { border-color: #2d7a70; transform: scale(1.03); }
.product-card.best-value {
  border-color: #1a5c54;
  background: linear-gradient(135deg, #f8faf8 0%, #f0f6f4 100%);
}
.product-ribbon {
  position: absolute;
  top: 20px;
  right: -35px;
  background: #0d3d38;
  color: #fff;
  padding: 8px 50px;
  font-size: 0.75rem;
  font-weight: 700;
  transform: rotate(45deg);
  letter-spacing: 1px;
}
.product-ribbon.gold {
  background: #2d7a70;
  color: #fff;
}
.product-badge {
  display: inline-block;
  background: linear-gradient(135deg, #1a5c54 0%, #0d3d38 100%);
  color: #fff;
  padding: 8px 20px;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.best-value .product-badge {
  background: #2d7a70;
  color: #fff;
}
.product-image { margin-bottom: 20px; }
.product-image img { max-width: 200px; height: auto; transition: transform 0.3s; }
.product-card:hover .product-image img { transform: scale(1.05); }
.bottles-count { font-size: 1.6rem; font-weight: 700; color: #0d3d38; margin-bottom: 5px; }
.supply { color: #3d5a54; font-size: 0.95rem; margin-bottom: 15px; }
.price-box { margin-bottom: 10px; }
.price { font-size: 3rem; font-weight: 700; color: #1a5c54; }
.per-bottle { font-size: 1rem; color: #666; }
.savings { color: #2d7a70; font-weight: 700; margin-bottom: 10px; }
.savings.highlight { font-size: 1.1rem; color: #0d3d38; }
.savings i { margin-right: 5px; }
.total { font-size: 1.1rem; margin-bottom: 10px; }
.total s { color: #999; }
.total strong { color: #1a5c54; font-size: 1.2rem; }
.shipping { color: #666; font-size: 0.95rem; margin-bottom: 20px; }
.shipping.free { color: #2d7a70; font-weight: 700; }
.product-cta {
  background: linear-gradient(135deg, #1a5c54 0%, #0d3d38 100%);
  color: #fff;
  padding: 15px 40px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-block;
  transition: all 0.3s;
}
.best-value .product-cta {
  background: #2d7a70;
  color: #fff;
}
.product-card:hover .product-cta { transform: scale(1.05); }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
.product-cta.pulse { animation: pulse 2s infinite; }
.guarantee-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  background: rgba(255,255,255,0.12);
  padding: 35px 45px;
  border-radius: 20px;
  max-width: 800px;
  margin: 0 auto 40px;
  border: 2px solid rgba(255,255,255,0.25);
}
.guarantee-img { width: 120px; height: auto; }
.guarantee-text h4 { font-size: 1.4rem; margin-bottom: 10px; color: #e8f4f2; }
.guarantee-text p { opacity: 0.9; line-height: 1.6; color: #b8d4d0; }
.trust-badges { display: flex; justify-content: center; gap: 25px; flex-wrap: wrap; }
.trust-badges img { height: 60px; opacity: 0.9; }
@media (max-width: 992px) {
  .products-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 50px; }
  .product-card.featured { transform: none; }
  .guarantee-box { flex-direction: column; text-align: center; }
}

/* Recipes */
.recipes-section { padding: 100px 20px; }
.section-title {
  text-align: center;
  font-size: 2.75rem;
  margin-bottom: 3.5rem;
  color: #0d3d38;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.recipe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
}
.recipe-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(13, 61, 56, 0.12);
  transition: all 0.35s;
  border: 2px solid #e0ebe9;
  cursor: pointer;
}
.recipe-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(13, 61, 56, 0.2);
  border-color: #1a5c54;
}
.recipe-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s;
}
.recipe-card:hover img { transform: scale(1.05); }
.recipe-content { padding: 2rem; }
.recipe-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: #0d3d38;
  font-weight: 700;
  line-height: 1.3;
}
.recipe-content p { color: #3d5a54; margin-bottom: 1.25rem; font-size: 1rem; line-height: 1.65; }
.recipe-meta { display: flex; gap: 1.5rem; color: #2d7a70; font-weight: 600; font-size: 0.95rem; }
.view-recipe-btn {
  margin-top: 1rem;
  padding: 14px 28px;
  background: #1a5c54;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  font-family: inherit;
  font-size: 0.95rem;
}
.view-recipe-btn:hover { background: #0d3d38; transform: scale(1.03); }

.recipe-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease-out;
  background: #f0f6f4;
  border-radius: 0 0 20px 20px;
  border-top: 2px solid #e0ebe9;
}
.recipe-details.active {
  max-height: 3200px;
  transition: max-height 0.8s ease-in;
  padding: 2.5rem 2rem;
  margin-top: 0;
}
.recipe-section { margin-bottom: 2rem; }
.recipe-section:last-child { margin-bottom: 0; }
.recipe-section h4 {
  color: #0d3d38;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.recipe-section ul, .recipe-section ol { padding-left: 1.5rem; color: #2d4a44; }
.recipe-section li { margin-bottom: 0.6rem; line-height: 1.6; font-size: 1rem; }

/* Footer */
footer {
  background: #0d3d38;
  color: #e8f4f2;
  padding: 3.5rem 24px 2rem;
  border-top: 3px solid #1a5c54;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-section h3, .footer-section h4 { margin-bottom: 1rem; color: #fff; font-weight: 700; font-size: 1.2rem; }
.footer-section p { font-size: 1rem; line-height: 1.7; opacity: 0.92; color: #b8d4d0; }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 0.75rem; }
.footer-section a { color: #b8d4d0; text-decoration: none; transition: color 0.2s; font-size: 1rem; }
.footer-section a:hover { color: #fff; }
.company-info {
  padding-top: 2rem;
  border-top: 2px solid rgba(255,255,255,0.2);
  text-align: center;
  font-size: 0.95rem;
  color: rgba(232, 244, 242, 0.9);
  line-height: 1.6;
}
.company-info p { margin: 0; }
.copyright {
  text-align: center;
  padding-top: 1.5rem;
  font-size: 0.9rem;
  opacity: 0.85;
  color: #b8d4d0;
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  .hero-content h2 { font-size: 2.5rem; }
  .hero-content p { font-size: 1.15rem; }
  .recipe-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 2.2rem; }
  .recipe-content h3 { font-size: 1.35rem; }
}
