* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Lato', 'Segoe UI', sans-serif; line-height: 1.7; color: #3d2c28; background: #faf5f2; font-size: 18px; min-height: 100vh; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.navbar { background: linear-gradient(90deg, #a63d3d 0%, #c45c3e 100%); padding: 1.2rem 0; box-shadow: 0 4px 20px rgba(166, 61, 61, 0.35); position: sticky; top: 0; z-index: 1000; border-bottom: 3px solid #e8c4b8; }
.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: 700; }
.nav-links { display: flex; list-style: none; gap: 2rem; flex-wrap: wrap; }
.nav-links a { color: #f5e6e2; text-decoration: none; font-weight: 600; transition: color 0.25s; font-size: 1rem; }
.nav-links a:hover { color: #fff; }
.hero { background: linear-gradient(145deg, #8b3626 0%, #a63d3d 45%, #c45c3e 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, #faf5f2, transparent); pointer-events: none; }
.hero-content { position: relative; z-index: 1; }
.hero-content h2 { font-size: 3.2rem; margin-bottom: 1.25rem; font-weight: 700; }
.hero-content p { font-size: 1.3rem; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; opacity: 0.95; }
.cta-button { display: inline-block; background: #fff; color: #a63d3d; padding: 16px 44px; border-radius: 12px; text-decoration: none; font-weight: 700; font-size: 1.05rem; transition: all 0.3s; }
.cta-button:hover { background: #faf5f2; transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,0.2); }
.products-section { background: linear-gradient(135deg, #8b3626 0%, #a63d3d 50%, #c45c3e 100%); padding: 80px 24px; color: #fff; }
.products-header { text-align: center; margin-bottom: 50px; }
.promo-badge { display: inline-block; background: #fff; color: #a63d3d; 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.95; color: #f5e6e2; }
.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: #3d2c28; transition: all 0.3s; border: 2px solid #e8c4b8; position: relative; overflow: hidden; }
.product-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(166, 61, 61, 0.2); border-color: #c45c3e; }
.product-card.featured { border-color: #e8c4b8; transform: scale(1.03); }
.product-card.best-value { border-color: #c45c3e; background: linear-gradient(135deg, #fffaf8 0%, #faf5f2 100%); }
.product-ribbon { position: absolute; top: 20px; right: -35px; background: #8b3626; color: #fff; padding: 8px 50px; font-size: 0.75rem; font-weight: 700; transform: rotate(45deg); letter-spacing: 1px; }
.product-ribbon.gold { background: #c45c3e; color: #fff; }
.product-badge { display: inline-block; background: linear-gradient(135deg, #a63d3d 0%, #8b3626 100%); color: #fff; padding: 8px 20px; border-radius: 10px; font-size: 0.8rem; font-weight: 700; margin-bottom: 15px; }
.best-value .product-badge { background: #c45c3e; 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: #a63d3d; margin-bottom: 5px; }
.supply { color: #666; font-size: 0.95rem; margin-bottom: 15px; }
.price-box { margin-bottom: 10px; }
.price { font-size: 3rem; font-weight: 700; color: #c45c3e; }
.per-bottle { font-size: 1rem; color: #666; }
.savings { color: #8b3626; font-weight: 700; margin-bottom: 10px; }
.savings.highlight { font-size: 1.1rem; color: #a63d3d; }
.savings i { margin-right: 5px; }
.total { font-size: 1.1rem; margin-bottom: 10px; }
.total s { color: #999; }
.total strong { color: #a63d3d; font-size: 1.2rem; }
.shipping { color: #666; font-size: 0.95rem; margin-bottom: 20px; }
.shipping.free { color: #8b3626; font-weight: 700; }
.product-cta { background: linear-gradient(135deg, #a63d3d 0%, #8b3626 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: #c45c3e; 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: #e8c4b8; }
.guarantee-text p { opacity: 0.9; line-height: 1.6; color: #f5e6e2; }
.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: 3.5rem; color: #a63d3d; font-weight: 700; }
.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 12px 40px rgba(166, 61, 61, 0.12); transition: all 0.35s; border: 2px solid #e8c4b8; cursor: pointer; }
.recipe-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(166, 61, 61, 0.2); border-color: #c45c3e; }
.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: #a63d3d; font-weight: 700; }
.recipe-content p { color: #5a4540; margin-bottom: 1.25rem; font-size: 1rem; line-height: 1.65; }
.recipe-meta { display: flex; gap: 1.5rem; color: #c45c3e; font-weight: 600; font-size: 0.95rem; }
.view-recipe-btn { margin-top: 1rem; padding: 14px 28px; background: #a63d3d; color: #fff; border: none; border-radius: 12px; font-weight: 600; cursor: pointer; transition: all 0.25s; font-family: inherit; font-size: 0.95rem; }
.view-recipe-btn:hover { background: #8b3626; transform: scale(1.03); }
.recipe-details { max-height: 0; overflow: hidden; transition: max-height 0.6s ease-out; background: #faf5f2; border-top: 2px solid #e8c4b8; }
.recipe-details.active { max-height: 3200px; transition: max-height 0.8s ease-in; padding: 2.5rem 2rem; }
.recipe-section { margin-bottom: 2rem; }
.recipe-section:last-child { margin-bottom: 0; }
.recipe-section h4 { color: #a63d3d; font-size: 1.25rem; margin-bottom: 1rem; font-weight: 700; }
.recipe-section ul, .recipe-section ol { padding-left: 1.5rem; color: #5a4540; }
.recipe-section li { margin-bottom: 0.6rem; line-height: 1.6; font-size: 1rem; }
footer { background: linear-gradient(90deg, #8b3626 0%, #a63d3d 100%); color: #fff; padding: 3.5rem 24px 2rem; border-top: 3px solid #e8c4b8; }
.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: #f5e6e2; }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 0.75rem; }
.footer-section a { color: #f5e6e2; text-decoration: none; transition: color 0.2s; }
.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(245, 230, 226, 0.95); line-height: 1.6; }
.company-info p { margin: 0; }
.copyright { text-align: center; padding-top: 1.5rem; font-size: 0.9rem; opacity: 0.9; color: #e8c4b8; }
@media (max-width: 768px) { .hero-content h2 { font-size: 2.5rem; } .recipe-grid { grid-template-columns: 1fr; } .section-title { font-size: 2.2rem; } }
