* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.75;
  color: #3d2c34;
  background: #fdf8f9;
  font-size: 18px;
  min-height: 100vh;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.navbar {
  background: linear-gradient(90deg, #8b6b7a 0%, #a07d8c 50%, #b895a0 100%);
  padding: 1.2rem 0;
  box-shadow: 0 4px 24px rgba(139, 107, 122, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid #d4c4c9;
}
.navbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.logo h1 { color: #fff; font-size: 2.4rem; font-weight: 600; letter-spacing: 2px; }
.nav-links { display: flex; list-style: none; gap: 2rem; flex-wrap: wrap; }
.nav-links a { color: #f5eef0; text-decoration: none; font-weight: 600; transition: color 0.25s; font-size: 1rem; }
.nav-links a:hover { color: #fff; }
.hero {
  background: linear-gradient(150deg, #6b4f5a 0%, #8b6b7a 40%, #a07d8c 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, #fdf8f9, transparent);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero-content h2 { font-size: 3.4rem; margin-bottom: 1.2rem; font-weight: 600; line-height: 1.2; letter-spacing: 0.5px; }
.hero-content p { font-size: 1.3rem; margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; opacity: 0.95; }
.cta-button {
  display: inline-block;
  background: #fff;
  color: #6b4f5a;
  padding: 14px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s;
  letter-spacing: 0.5px;
}
.cta-button:hover { background: #f5eef0; transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,0.15); }
/* GaraHerb products - styled to match Wesiro (rose/mauve) */
.products-section {
  background: linear-gradient(135deg, #6b4f5a 0%, #8b6b7a 50%, #a07d8c 100%);
  padding: 80px 24px;
  color: #fff;
}
.products-header { text-align: center; margin-bottom: 50px; }
.promo-badge {
  display: inline-block;
  background: #fff;
  color: #6b4f5a;
  padding: 10px 30px;
  border-radius: 8px;
  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.95; color: #f5eef0; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}
.product-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  text-decoration: none;
  color: #3d2c34;
  transition: all 0.3s;
  border: 2px solid #e8dfe2;
  position: relative;
  overflow: hidden;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 44px rgba(139, 107, 122, 0.2);
  border-color: #b895a0;
}
.product-card.featured { border-color: #d4c4c9; transform: scale(1.03); }
.product-card.best-value {
  border-color: #8b6b7a;
  background: linear-gradient(135deg, #fdf8f9 0%, #faf5f6 100%);
}
.product-ribbon {
  position: absolute;
  top: 20px;
  right: -35px;
  background: #6b4f5a;
  color: #fff;
  padding: 8px 50px;
  font-size: 0.75rem;
  font-weight: 700;
  transform: rotate(45deg);
  letter-spacing: 1px;
}
.product-ribbon.gold {
  background: #a07d8c;
  color: #fff;
}
.product-badge {
  display: inline-block;
  background: linear-gradient(135deg, #8b6b7a 0%, #6b4f5a 100%);
  color: #fff;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.best-value .product-badge {
  background: #b895a0;
  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: #6b4f5a; margin-bottom: 5px; }
.supply { color: #5a4a52; font-size: 0.95rem; margin-bottom: 15px; }
.price-box { margin-bottom: 10px; }
.price { font-size: 3rem; font-weight: 700; color: #8b6b7a; }
.per-bottle { font-size: 1rem; color: #666; }
.savings { color: #6b4f5a; font-weight: 700; margin-bottom: 10px; }
.savings.highlight { font-size: 1.1rem; color: #6b4f5a; }
.savings i { margin-right: 5px; }
.total { font-size: 1.1rem; margin-bottom: 10px; }
.total s { color: #999; }
.total strong { color: #8b6b7a; font-size: 1.2rem; }
.shipping { color: #666; font-size: 0.95rem; margin-bottom: 20px; }
.shipping.free { color: #6b4f5a; font-weight: 700; }
.product-cta {
  background: linear-gradient(135deg, #8b6b7a 0%, #6b4f5a 100%);
  color: #fff;
  padding: 15px 40px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-block;
  transition: all 0.3s;
}
.best-value .product-cta {
  background: #6b4f5a;
  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: 16px;
  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: #f5eef0; }
.guarantee-text p { opacity: 0.9; line-height: 1.6; color: #e8dfe2; }
.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.75rem; margin-bottom: 3rem; color: #6b4f5a; font-weight: 600; letter-spacing: 0.5px; }
.recipe-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 2.25rem; }
.recipe-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(139, 107, 122, 0.12);
  transition: all 0.35s;
  border: 1px solid #e8dfe2;
  cursor: pointer;
}
.recipe-card:hover { transform: translateY(-8px); box-shadow: 0 16px 44px rgba(139, 107, 122, 0.2); border-color: #b895a0; }
.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.5rem; margin-bottom: 0.7rem; color: #6b4f5a; font-weight: 600; line-height: 1.3; letter-spacing: 0.3px; }
.recipe-content p { color: #5a4a52; margin-bottom: 1.2rem; font-size: 1rem; line-height: 1.65; }
.recipe-meta { display: flex; gap: 1.4rem; color: #8b6b7a; font-weight: 600; font-size: 0.95rem; }
.view-recipe-btn {
  margin-top: 1rem;
  padding: 12px 26px;
  background: #8b6b7a;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  font-family: inherit;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}
.view-recipe-btn:hover { background: #6b4f5a; transform: scale(1.02); }
.recipe-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease-out;
  background: #fdf8f9;
  border-top: 1px solid #e8dfe2;
}
.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: #6b4f5a; font-size: 1.2rem; margin-bottom: 0.9rem; font-weight: 600; letter-spacing: 0.3px; }
.recipe-section ul, .recipe-section ol { padding-left: 1.5rem; color: #5a4a52; }
.recipe-section li { margin-bottom: 0.5rem; line-height: 1.6; font-size: 1rem; }
footer {
  background: linear-gradient(90deg, #6b4f5a 0%, #8b6b7a 100%);
  color: #fff;
  padding: 3.2rem 24px 1.8rem;
  border-top: 2px solid #d4c4c9;
}
.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: 600; font-size: 1.2rem; letter-spacing: 0.5px; }
.footer-section p { font-size: 0.98rem; line-height: 1.65; opacity: 0.92; color: #f5eef0; }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 0.6rem; }
.footer-section a { color: #f5eef0; text-decoration: none; transition: color 0.2s; font-size: 0.98rem; }
.footer-section a:hover { color: #fff; }
.company-info { padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,0.25); text-align: center; font-size: 0.92rem; color: #f5eef0; 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: #e8dfe2; }
@media (max-width: 768px) {
  .hero-content h2 { font-size: 2.5rem; }
  .recipe-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 2.2rem; }
}
