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

body {
    font-family: 'Nunito', 'Arial', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(160deg, #f5f0e8 0%, #e8e2d8 50%, #dde0e0 100%);
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
}

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

.navbar {
    background: linear-gradient(135deg, #3d5a6c 0%, #4a7c8c 50%, #5c8a9a 100%);
    padding: 1.2rem 0;
    box-shadow: 0 4px 20px rgba(61, 90, 108, 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: #d4e4e8;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}

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

.hero {
    background: linear-gradient(135deg, #2c3e50 0%, #3d5a6c 40%, #4a7c8c 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(201, 162, 39, 0.08) 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%, #a67c00 100%);
    color: #1a2528;
    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(201, 162, 39, 0.4);
}

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

.products-section {
    background: linear-gradient(135deg, #1e2d38 0%, #3d5a6c 50%, #4a7c8c 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%, #a67c00 100%);
    color: #1a2528;
    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, #c75b4a 0%, #9e4035 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: #2c3e50;
    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: #4a7c8c;
    transform: scale(1.03);
}

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

.product-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: #4a7c8c;
    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%, #a67c00 100%);
    color: #1a2528;
}

.product-badge {
    display: inline-block;
    background: linear-gradient(135deg, #3d5a6c 0%, #4a7c8c 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%, #a67c00 100%);
    color: #1a2528;
}

.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: #3d5a6c;
    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: #4a7c8c;
}

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

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

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

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

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

.total s { color: #999; }

.total strong {
    color: #3d5a6c;
    font-size: 1.2rem;
}

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

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

.product-cta {
    background: linear-gradient(135deg, #3d5a6c 0%, #4a7c8c 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%, #a67c00 100%);
    color: #1a2528;
}

.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: #3d5a6c;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #4a7c8c;
    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(61, 90, 108, 0.15);
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
}

.recipe-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(61, 90, 108, 0.25);
    border-color: #4a7c8c;
}

.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: #3d5a6c;
}

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

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

.view-recipe-btn {
    margin-top: 15px;
    padding: 14px 35px;
    background: linear-gradient(135deg, #3d5a6c 0%, #4a7c8c 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(61, 90, 108, 0.3);
}

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

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

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

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

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

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

footer {
    background: linear-gradient(135deg, #2c3e50 0%, #3d5a6c 100%);
    color: #d4e4e8;
    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: #d4e4e8;
    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; }
}
