* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; line-height: 1.6; color: #2d3436; background: linear-gradient(135deg, #f0fff4 0%, #e8f5e9 50%, #dcedc8 100%); }
h1, h2, h3, h4 { font-family: 'DM Serif Display', serif; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.navbar { background: linear-gradient(135deg, #2e7d32 0%, #388e3c 50%, #43a047 100%); padding: 1.2rem 0; box-shadow: 0 4px 20px rgba(46, 125, 50, 0.25); position: sticky; top: 0; z-index: 1000; }
.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.logo h1 { color: white; font-size: 2.5rem; font-weight: 700; }
.nav-links { display: flex; list-style: none; gap: 2.5rem; }
.nav-links a { color: #c8e6c9; text-decoration: none; font-weight: 500; font-size: 1rem; transition: all 0.3s; }
.nav-links a:hover { color: white; }

.hero { background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 30%, #388e3c 60%, #43a047 100%); color: white; padding: 100px 20px; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: '🥗'; position: absolute; font-size: 18rem; opacity: 0.06; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.hero-content { position: relative; z-index: 1; }
.hero-tag { display: inline-block; background: rgba(255,255,255,0.15); padding: 10px 30px; border-radius: 30px; font-size: 0.9rem; font-weight: 500; letter-spacing: 2px; margin-bottom: 25px; }
.hero-content h2 { font-size: 4.2rem; margin-bottom: 1.5rem; text-shadow: 2px 2px 4px rgba(0,0,0,0.2); }
.hero-content p { font-size: 1.35rem; margin-bottom: 2.5rem; opacity: 0.95; font-weight: 300; }
.cta-button { display: inline-block; background: white; color: #2e7d32; padding: 18px 45px; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 1.1rem; transition: all 0.3s; box-shadow: 0 6px 25px rgba(255, 255, 255, 0.3); }
.cta-button:hover { transform: scale(1.08) translateY(-3px); background: #c8e6c9; }

.products-section { background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 50%, #388e3c 100%); padding: 80px 20px; color: white; }
.products-section.bottom { margin-top: 0; }
.products-header { text-align: center; margin-bottom: 50px; }
.promo-badge { display: inline-block; background: rgba(255,255,255,0.15); color: white; padding: 10px 30px; border-radius: 30px; font-weight: 700; font-size: 0.9rem; margin-bottom: 20px; }
.promo-badge.urgent { background: white; color: #2e7d32; animation: pulse 1.5s infinite; }
.products-header h2 { font-size: 2.8rem; margin-bottom: 15px; }
.products-header p { font-size: 1.2rem; opacity: 0.9; }

.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-bottom: 50px; }
.product-card { background: white; border-radius: 25px; padding: 30px 20px; text-align: center; text-decoration: none; color: #2d3436; transition: all 0.3s; border: 3px solid transparent; position: relative; overflow: hidden; }
.product-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0,0,0,0.15); }
.product-card.featured { border-color: #43a047; transform: scale(1.03); box-shadow: 0 20px 50px rgba(0,0,0,0.15); }
.product-card.best-value { border-color: #c8e6c9; background: linear-gradient(135deg, #f0fff4 0%, #e8f5e9 100%); }
.product-ribbon { position: absolute; top: 20px; right: -35px; background: #43a047; color: white; padding: 8px 50px; font-size: 0.75rem; font-weight: 700; transform: rotate(45deg); }
.product-ribbon.gold { background: linear-gradient(135deg, #66bb6a 0%, #81c784 100%); }
.product-badge { display: inline-block; background: linear-gradient(135deg, #2e7d32 0%, #43a047 100%); color: white; padding: 8px 22px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; margin-bottom: 15px; }
.best-value .product-badge { background: linear-gradient(135deg, #66bb6a 0%, #81c784 100%); }
.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.8rem; font-weight: 700; color: #2e7d32; margin-bottom: 5px; }
.supply { color: #666; font-size: 0.95rem; margin-bottom: 15px; }
.price-box { margin-bottom: 10px; }
.price { font-size: 3.2rem; font-weight: 700; color: #2e7d32; }
.per-bottle { font-size: 1rem; color: #666; }
.savings { color: #43a047; font-weight: 700; margin-bottom: 10px; }
.savings.highlight { font-size: 1.1rem; color: #e74c3c; }
.savings i { margin-right: 5px; }
.total { font-size: 1.1rem; margin-bottom: 10px; }
.total s { color: #999; }
.total strong { color: #2e7d32; font-size: 1.2rem; }
.shipping { color: #666; font-size: 0.95rem; margin-bottom: 20px; }
.shipping.free { color: #2e7d32; font-weight: 700; }
.product-cta { background: linear-gradient(135deg, #2e7d32 0%, #43a047 100%); color: white; padding: 16px 45px; border-radius: 50px; font-weight: 700; display: inline-block; transition: all 0.3s; }
.best-value .product-cta { background: linear-gradient(135deg, #43a047 0%, #66bb6a 100%); }
.product-card:hover .product-cta { transform: scale(1.05); }
.pulse { animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }

.guarantee-box { display: flex; align-items: center; justify-content: center; gap: 30px; background: rgba(255,255,255,0.1); padding: 35px 45px; border-radius: 20px; max-width: 800px; margin: 0 auto 40px; border: 2px solid rgba(255,255,255,0.2); }
.guarantee-img { width: 120px; height: auto; }
.guarantee-text h4 { font-size: 1.4rem; margin-bottom: 10px; }
.guarantee-text p { opacity: 0.9; line-height: 1.6; font-size: 0.95rem; }
.trust-badges { display: flex; justify-content: center; gap: 25px; flex-wrap: wrap; }
.trust-badges img { height: 60px; opacity: 0.9; }

.recipes-section { padding: 80px 20px; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-tag { display: inline-block; background: linear-gradient(135deg, #2e7d32 0%, #43a047 100%); color: white; padding: 8px 25px; border-radius: 30px; font-size: 0.85rem; font-weight: 600; letter-spacing: 1px; margin-bottom: 15px; }
.section-title { font-size: 3rem; color: #2e7d32; margin-bottom: 15px; }
.section-subtitle { font-size: 1.2rem; color: #66bb6a; }
.recipe-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; }
.recipe-card { background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(46, 125, 50, 0.1); transition: all 0.3s; cursor: pointer; }
.recipe-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(46, 125, 50, 0.2); }
.recipe-image { position: relative; overflow: hidden; }
.recipe-card img { width: 100%; height: 250px; object-fit: cover; transition: transform 0.3s; }
.recipe-card:hover img { transform: scale(1.08); }
.recipe-tag { position: absolute; top: 15px; left: 15px; background: linear-gradient(135deg, #2e7d32 0%, #43a047 100%); color: white; padding: 6px 15px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }
.recipe-content { padding: 25px; }
.recipe-content h3 { font-size: 1.6rem; margin-bottom: 12px; color: #2e7d32; }
.recipe-content p { color: #555; margin-bottom: 15px; line-height: 1.7; font-size: 0.95rem; }
.recipe-meta { display: flex; gap: 25px; color: #43a047; font-weight: 500; font-size: 0.9rem; }
.view-recipe-btn { margin-top: 15px; padding: 14px 35px; background: linear-gradient(135deg, #2e7d32 0%, #43a047 100%); color: white; border: none; border-radius: 50px; font-weight: 600; cursor: pointer; transition: all 0.3s; }
.view-recipe-btn:hover { transform: scale(1.05); box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3); }
.recipe-details { max-height: 0; overflow: hidden; transition: max-height 0.5s ease-out; background: linear-gradient(135deg, #f0fff4 0%, #e8f5e9 100%); }
.recipe-details.active { max-height: 2000px; transition: max-height 0.8s ease-in; padding: 25px; border-top: 3px solid #43a047; }
.recipe-section { margin-bottom: 25px; }
.recipe-section h4 { color: #2e7d32; font-size: 1.3rem; margin-bottom: 15px; }
.recipe-section ul, .recipe-section ol { padding-left: 25px; color: #2d3436; }
.recipe-section li { margin-bottom: 10px; line-height: 1.6; }

footer { background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%); color: #a5d6a7; padding: 50px 20px 30px; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; margin-bottom: 30px; }
.footer-section h3, .footer-section h4 { color: white; margin-bottom: 15px; font-size: 1.4rem; }
.footer-section p { line-height: 1.8; }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 10px; }
.footer-section a { color: #a5d6a7; text-decoration: none; transition: all 0.3s; }
.footer-section a:hover { color: white; padding-left: 5px; }
.disclaimer-text { text-align: center; font-size: 0.85rem; opacity: 0.6; padding: 20px; border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 20px; }
.copyright { text-align: center; font-size: 0.95rem; }

@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; } }
@media (max-width: 768px) { .nav-links { display: none; } .hero-content h2 { font-size: 2.8rem; } .products-header h2 { font-size: 2rem; } .section-title { font-size: 2.2rem; } .recipe-grid { grid-template-columns: 1fr; } .trust-badges img { height: 45px; } }
