* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Nunito', 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: #0c3d4d;
  background: #f0f8fc;
  font-size: 18px;
  min-height: 100vh;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.navbar {
  background: linear-gradient(90deg, #0a6b7a 0%, #0d8a9a 50%, #10a5b5 100%);
  padding: 1.2rem 0;
  box-shadow: 0 4px 24px rgba(10, 107, 122, 0.4);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid #5bc4d4;
}
.navbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.logo h1 { color: #fff; font-size: 2.2rem; font-weight: 800; letter-spacing: 0.5px; }
.nav-links { display: flex; list-style: none; gap: 2rem; flex-wrap: wrap; }
.nav-links a { color: #c8f0f5; text-decoration: none; font-weight: 700; transition: color 0.25s, transform 0.25s; font-size: 1rem; }
.nav-links a:hover { color: #fff; transform: translateY(-2px); }
.hero {
  background: linear-gradient(160deg, #065a68 0%, #0a6b7a 45%, #0d8a9a 100%);
  color: #fff;
  padding: 130px 24px;
  text-align: center;
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to top, #f0f8fc, transparent);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero-content h2 { font-size: 3.2rem; margin-bottom: 1.25rem; font-weight: 800; line-height: 1.2; }
.hero-content p { font-size: 1.3rem; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; opacity: 0.96; }
.cta-button {
  display: inline-block;
  background: #fff;
  color: #0a6b7a;
  padding: 16px 44px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05rem;
  transition: all 0.3s;
}
.cta-button:hover { background: #c8f0f5; color: #065a68; transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,0.2); }
/* GaraHerb products - styled to match Qiclo (blue/teal) */
.products-section {
  background: linear-gradient(135deg, #065a68 0%, #0a6b7a 50%, #0d8a9a 100%);
  padding: 80px 24px;
  color: #fff;
}
.products-header { text-align: center; margin-bottom: 50px; }
.promo-badge {
  display: inline-block;
  background: #fff;
  color: #0a6b7a;
  padding: 10px 30px;
  border-radius: 14px;
  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.96; color: #c8f0f5; }
.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: #0c3d4d;
  transition: all 0.3s;
  border: 2px solid #b8e8ee;
  position: relative;
  overflow: hidden;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 48px rgba(10, 107, 122, 0.25);
  border-color: #0d8a9a;
}
.product-card.featured { border-color: #10a5b5; transform: scale(1.03); }
.product-card.best-value {
  border-color: #0d8a9a;
  background: linear-gradient(135deg, #f0f8fc 0%, #e8f6fa 100%);
}
.product-ribbon {
  position: absolute;
  top: 20px;
  right: -35px;
  background: #065a68;
  color: #fff;
  padding: 8px 50px;
  font-size: 0.75rem;
  font-weight: 700;
  transform: rotate(45deg);
  letter-spacing: 1px;
}
.product-ribbon.gold {
  background: #10a5b5;
  color: #fff;
}
.product-badge {
  display: inline-block;
  background: linear-gradient(135deg, #0d8a9a 0%, #0a6b7a 100%);
  color: #fff;
  padding: 8px 20px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.best-value .product-badge {
  background: #10a5b5;
  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: #065a68; margin-bottom: 5px; }
.supply { color: #1a5a66; font-size: 0.95rem; margin-bottom: 15px; }
.price-box { margin-bottom: 10px; }
.price { font-size: 3rem; font-weight: 700; color: #0a6b7a; }
.per-bottle { font-size: 1rem; color: #666; }
.savings { color: #0d8a9a; font-weight: 700; margin-bottom: 10px; }
.savings.highlight { font-size: 1.1rem; color: #065a68; }
.savings i { margin-right: 5px; }
.total { font-size: 1.1rem; margin-bottom: 10px; }
.total s { color: #999; }
.total strong { color: #0a6b7a; font-size: 1.2rem; }
.shipping { color: #666; font-size: 0.95rem; margin-bottom: 20px; }
.shipping.free { color: #10a5b5; font-weight: 700; }
.product-cta {
  background: linear-gradient(135deg, #0d8a9a 0%, #0a6b7a 100%);
  color: #fff;
  padding: 15px 40px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-block;
  transition: all 0.3s;
}
.best-value .product-cta {
  background: #10a5b5;
  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: #c8f0f5; }
.guarantee-text p { opacity: 0.9; line-height: 1.6; color: #b8e8ee; }
.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-section { padding: 90px 20px; }
.section-title { text-align: center; font-size: 2.6rem; margin-bottom: 3rem; color: #0a6b7a; font-weight: 800; }
.recipe-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 2.25rem; }
.recipe-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(10, 107, 122, 0.15);
  transition: all 0.35s;
  border: 2px solid #b8e8ee;
  cursor: pointer;
}
.recipe-card:hover { transform: translateY(-8px); box-shadow: 0 18px 48px rgba(10, 107, 122, 0.25); border-color: #0d8a9a; }
.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: 1.9rem; }
.recipe-content h3 { font-size: 1.45rem; margin-bottom: 0.7rem; color: #065a68; font-weight: 800; line-height: 1.3; }
.recipe-content p { color: #1a5a66; margin-bottom: 1.2rem; font-size: 1rem; line-height: 1.65; }
.recipe-meta { display: flex; gap: 1.4rem; color: #0d8a9a; font-weight: 700; font-size: 0.95rem; }
.view-recipe-btn {
  margin-top: 1rem;
  padding: 12px 26px;
  background: #0d8a9a;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  font-family: inherit;
  font-size: 0.95rem;
}
.view-recipe-btn:hover { background: #0a6b7a; transform: scale(1.03); }
.recipe-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease-out;
  background: #f0f8fc;
  border-top: 2px solid #b8e8ee;
}
.recipe-details.active { max-height: 3200px; transition: max-height 0.8s ease-in; padding: 2.2rem 1.9rem; }
.recipe-section { margin-bottom: 1.8rem; }
.recipe-section:last-child { margin-bottom: 0; }
.recipe-section h4 { color: #0a6b7a; font-size: 1.2rem; margin-bottom: 0.9rem; font-weight: 800; }
.recipe-section ul, .recipe-section ol { padding-left: 1.5rem; color: #1a5a66; }
.recipe-section li { margin-bottom: 0.5rem; line-height: 1.6; font-size: 1rem; }
footer {
  background: linear-gradient(90deg, #065a68 0%, #0a6b7a 100%);
  color: #fff;
  padding: 3.2rem 24px 1.8rem;
  border-top: 3px solid #10a5b5;
}
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2.2rem; margin-bottom: 2.2rem; }
.footer-section h3, .footer-section h4 { margin-bottom: 0.9rem; color: #fff; font-weight: 800; font-size: 1.15rem; }
.footer-section p { font-size: 0.98rem; line-height: 1.65; opacity: 0.92; color: #c8f0f5; }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 0.6rem; }
.footer-section a { color: #c8f0f5; text-decoration: none; transition: color 0.2s; font-size: 0.98rem; font-weight: 700; }
.footer-section a:hover { color: #fff; }
.company-info { padding-top: 1.8rem; border-top: 2px solid rgba(255,255,255,0.25); text-align: center; font-size: 0.92rem; color: #c8f0f5; line-height: 1.6; }
.company-info p { margin: 0; }
.copyright { text-align: center; padding-top: 1.2rem; font-size: 0.88rem; opacity: 0.9; color: #b8e8ee; }
@media (max-width: 768px) {
  .hero-content h2 { font-size: 2.4rem; }
  .recipe-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 2rem; }
}
