* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Source Sans 3', 'Arial', sans-serif;
    line-height: 1.6;
    color: #2a2a2a;
    background: linear-gradient(160deg, #f8f4ee 0%, #efe8df 50%, #e5dcd2 100%);
}

h1, h2, h3, h4 { font-family: 'Libre Baskerville', serif; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.navbar {
    background: linear-gradient(135deg, #4a2c2a 0%, #6b2d3c 50%, #8b3d4c 100%);
    padding: 1.2rem 0;
    box-shadow: 0 4px 20px rgba(107, 45, 60, 0.35);
    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;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.nav-links { display: flex; list-style: none; gap: 2.5rem; }

.nav-links a {
    color: #e8d8dc;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}

.nav-links a:hover { color: #fff; }

.hero {
    background: linear-gradient(135deg, #2a2020 0%, #6b2d3c 40%, #8b3d4c 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.12) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-content { position: relative; z-index: 1; }

.hero-content h2 { font-size: 4rem; margin-bottom: 1.5rem; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }

.hero-content p { font-size: 1.4rem; margin-bottom: 2.5rem; opacity: 0.95; }

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #c9a227 0%, #b8860b 100%);
    color: #1a1a1a;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 6px 25px rgba(184, 134, 11, 0.4);
}

.cta-button:hover {
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 10px 35px rgba(184, 134, 11, 0.5);
}

.products-section {
    background: linear-gradient(135deg, #3d2525 0%, #6b2d3c 50%, #8b3d4c 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: linear-gradient(135deg, #c9a227 0%, #b8860b 100%);
    color: #1a1a1a;
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.promo-badge.urgent {
    background: linear-gradient(135deg, #8b3d4c 0%, #6b2d3c 100%);
    color: white;
    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: 20px;
    padding: 30px 20px;
    text-align: center;
    text-decoration: none;
    color: #2a2a2a;
    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.2);
}

.product-card.featured { border-color: #8b3d4c; transform: scale(1.03); }

.product-card.best-value {
    border-color: #b8860b;
    background: linear-gradient(135deg, #fffef8 0%, #faf6eb 100%);
}

.product-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: #6b2d3c;
    color: white;
    padding: 8px 50px;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.product-ribbon.gold {
    background: linear-gradient(135deg, #c9a227 0%, #b8860b 100%);
    color: #1a1a1a;
}

.product-badge {
    display: inline-block;
    background: linear-gradient(135deg, #6b2d3c 0%, #8b3d4c 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.best-value .product-badge {
    background: linear-gradient(135deg, #c9a227 0%, #b8860b 100%);
    color: #1a1a1a;
}

.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: #6b2d3c; 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: #8b3d4c; }

.per-bottle { font-size: 1rem; color: #666; }

.savings { color: #2d6b4a; font-weight: 700; margin-bottom: 10px; }

.savings.highlight { font-size: 1.1rem; color: #8b3d4c; }

.savings i { margin-right: 5px; }

.total { font-size: 1.1rem; margin-bottom: 10px; }

.total s { color: #999; }

.total strong { color: #6b2d3c; font-size: 1.2rem; }

.shipping { color: #666; font-size: 0.95rem; margin-bottom: 20px; }

.shipping.free { color: #2d6b4a; font-weight: 700; }

.product-cta {
    background: linear-gradient(135deg, #6b2d3c 0%, #8b3d4c 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-block;
    transition: all 0.3s;
}

.best-value .product-cta {
    background: linear-gradient(135deg, #c9a227 0%, #b8860b 100%);
    color: #1a1a1a;
}

.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; color: #c9a227; }

.guarantee-text p { opacity: 0.9; line-height: 1.6; }

.trust-badges { display: flex; justify-content: center; gap: 25px; flex-wrap: wrap; }

.trust-badges img { height: 60px; opacity: 0.9; transition: opacity 0.3s; }

.trust-badges img:hover { opacity: 1; }

.recipes-section { padding: 80px 20px; }

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 15px;
    color: #6b2d3c;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #8b3d4c;
    margin-bottom: 50px;
}

.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(107, 45, 60, 0.12);
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
}

.recipe-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(107, 45, 60, 0.22);
    border-color: #8b3d4c;
}

.recipe-card > img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s;
}

.recipe-card:hover > img { transform: scale(1.08); }

.recipe-content { padding: 25px; }

.recipe-content h3 { font-size: 1.6rem; margin-bottom: 12px; color: #6b2d3c; }

.recipe-content p { color: #5a6c7d; margin-bottom: 15px; line-height: 1.7; }

.recipe-meta { display: flex; gap: 25px; color: #8b3d4c; font-weight: 600; font-size: 0.95rem; }

.view-recipe-btn {
    margin-top: 15px;
    padding: 14px 35px;
    background: linear-gradient(135deg, #6b2d3c 0%, #8b3d4c 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.view-recipe-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(107, 45, 60, 0.3);
}

.recipe-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    background: linear-gradient(135deg, #faf6f0 0%, #f0e8e0 100%);
}

.recipe-details.active {
    max-height: 2000px;
    transition: max-height 0.8s ease-in;
    padding: 25px;
    border-top: 2px solid #8b3d4c;
}

.recipe-section { margin-bottom: 25px; }

.recipe-section h4 { color: #6b2d3c; font-size: 1.4rem; margin-bottom: 15px; }

.recipe-section ul, .recipe-section ol { padding-left: 25px; color: #2a2a2a; }

.recipe-section li { margin-bottom: 10px; line-height: 1.6; }

footer {
    background: linear-gradient(135deg, #3d2525 0%, #6b2d3c 100%);
    color: #e8d8dc;
    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: #e8d8dc; 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.7;
    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; }
}
