* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f6f1;
    color: #333;
    line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 70px 0; }
.section-title { text-align: center; font-size: 2.4rem; margin-bottom: 16px; color: #2d3a3a; }
.section-lead { text-align: center; max-width: 720px; margin: 0 auto 40px; color: #555; font-size: 1.05rem; }

.navbar {
    background: #2d3a3a;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}
.navbar .container { display: flex; justify-content: space-between; align-items: center; gap: 20px; position: relative; }
.logo a { color: #f4a261; font-size: 22px; font-weight: bold; text-decoration: none; display: flex; align-items: center; gap: 10px; }
.logo img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; background: #fff; }
.nav-links { display: flex; list-style: none; gap: 22px; flex-wrap: wrap; align-items: center; }
.nav-links a { color: #f0e6d3; text-decoration: none; font-weight: 500; transition: color 0.3s; }
.nav-links a:hover, .nav-links a.active { color: #f4a261; }
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.burger-menu span { display: block; width: 26px; height: 3px; background: #f4a261; border-radius: 2px; }

.btn {
    display: inline-block;
    background: #f4a261;
    color: #2d3a3a;
    padding: 14px 36px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.18); }
.btn-dark { background: #2d3a3a; color: #f4a261; }
.btn-outline { background: transparent; color: #f4a261; border: 2px solid #f4a261; }

.hero {
    background: linear-gradient(135deg, #2d3a3a 0%, #4a5a5a 100%);
    color: white;
    padding: 80px 0;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
.hero h1 { font-size: 3rem; margin-bottom: 18px; color: #f4a261; line-height: 1.15; }
.hero p { font-size: 1.15rem; margin-bottom: 28px; max-width: 620px; }
.hero img { max-width: 340px; margin: 0 auto; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); background: #fff; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.features-grid, .cards-grid, .blog-grid, .team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.feature-card, .card, .price-card, .blog-card, .team-card, .testimonial, .faq-item, .legal-card {
    background: white;
    padding: 28px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
.feature-card { text-align: center; transition: transform 0.3s; }
.feature-card:hover { transform: scale(1.03); }
.feature-icon { font-size: 2.6rem; margin-bottom: 12px; }
.card img, .blog-card img { width: 100%; height: 180px; object-fit: cover; border-radius: 12px; margin-bottom: 16px; }

.pricing { background: white; }
.price-grid { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.price-card { width: 270px; text-align: center; position: relative; }
.price-card.featured { outline: 3px solid #f4a261; transform: scale(1.04); }
.badge { position: absolute; top: -12px; right: 16px; background: #e63946; color: #fff; font-size: 12px; padding: 4px 10px; border-radius: 20px; }
.old-price { text-decoration: line-through; color: #999; }
.new-price { font-size: 2rem; color: #e63946; font-weight: bold; }
.features-list { list-style: none; margin: 18px 0; text-align: left; }
.features-list li { padding: 5px 0; }
.features-list li::before { content: "✔️ "; }

.ingredient-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.ingredient { background: #fff; border-radius: 15px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.08); }
.ingredient img { height: 160px; width: 100%; object-fit: cover; }
.ingredient div { padding: 18px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.split img { border-radius: 16px; width: 100%; height: 360px; object-fit: cover; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step { background: #fff; padding: 24px; border-radius: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.08); }
.step-num { color: #f4a261; font-size: 2rem; font-weight: bold; }

.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial .stars { color: #f4a261; margin-bottom: 10px; }
.testimonial footer { margin-top: 14px; color: #666; font-size: 0.95rem; }

.faq-item { margin-bottom: 12px; }
.faq-item h3 { cursor: pointer; color: #2d3a3a; font-size: 1.1rem; display: flex; justify-content: space-between; gap: 12px; }
.faq-item p { display: none; margin-top: 10px; color: #555; }
.faq-item.open p { display: block; }

.blog-card h3 { color: #2d3a3a; margin-bottom: 8px; }
.blog-card a.title-link { color: inherit; text-decoration: none; }
.blog-card .meta { color: #888; font-size: 0.9rem; margin-bottom: 10px; }
.page-hero { background: linear-gradient(135deg, #2d3a3a 0%, #4a5a5a 100%); color: #fff; padding: 60px 0; text-align: center; }
.page-hero h1 { color: #f4a261; font-size: 2.6rem; margin-bottom: 12px; }
.page-hero p { max-width: 700px; margin: 0 auto; }

.blog-post { background: #fff; border-radius: 15px; padding: 40px; box-shadow: 0 5px 15px rgba(0,0,0,0.08); max-width: 900px; margin: 0 auto; }
.blog-post h2 { color: #2d3a3a; font-size: 1.8rem; margin: 28px 0 12px; }
.blog-post h3 { color: #f4a261; font-size: 1.3rem; margin: 22px 0 8px; }
.blog-post p { margin-bottom: 14px; }
.blog-post img { border-radius: 10px; margin: 18px 0; }
.blog-meta { color: #999; font-size: 0.9rem; border-bottom: 2px solid #f9f6f1; padding-bottom: 18px; margin-bottom: 24px; }
.tip-box, .ingredient-card { background: #f9f6f1; border-left: 5px solid #f4a261; padding: 18px; border-radius: 0 10px 10px 0; margin: 18px 0; }
.cta-box { background: linear-gradient(135deg, #f4a261 0%, #e8894d 100%); padding: 28px; border-radius: 15px; text-align: center; margin: 28px 0; }
.cta-box h3 { color: #2d3a3a; margin-bottom: 10px; }
.related { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-top: 20px; }
.related a { background: #fff; padding: 16px; border-radius: 12px; text-decoration: none; color: #2d3a3a; box-shadow: 0 4px 12px rgba(0,0,0,0.08); }

.team-card { text-align: center; }
.team-card img { width: 140px; height: 140px; object-fit: cover; border-radius: 50%; margin: 0 auto 14px; }

.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 30px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; color: #2d3a3a; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 14px; border: 1px solid #ddd; border-radius: 10px; font: inherit; background: #fff;
}
.form-group textarea { min-height: 110px; resize: vertical; }
.checkbox { display: flex; gap: 10px; align-items: flex-start; }
.checkbox input { margin-top: 5px; }
.alert { padding: 16px 18px; border-radius: 10px; margin-bottom: 18px; }
.alert-success { background: #e8f5e9; color: #1b5e20; border: 1px solid #a5d6a7; }
.alert-error { background: #ffebee; color: #b71c1c; border: 1px solid #ef9a9a; }
.info-box p { margin-bottom: 8px; }

.legal { background: #fff; border-radius: 15px; padding: 36px; box-shadow: 0 5px 15px rgba(0,0,0,0.08); max-width: 900px; margin: 0 auto; }
.legal h2 { color: #2d3a3a; margin: 28px 0 10px; }
.legal ul, .legal ol { margin: 10px 0 10px 22px; }
.legal table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.legal th, .legal td { border: 1px solid #ddd; padding: 8px; text-align: left; }
.legal th { background: #f4f4f4; }
.date { color: #777; font-size: 0.9em; margin-bottom: 12px; }

.poll-box { max-width: 620px; margin: 0 auto; background: #fff; padding: 28px; border-radius: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.08); }
.poll-box label { display: block; margin: 8px 0; }

.footer { background: #2d3a3a; color: white; padding: 40px 0; margin-top: 40px; }
.footer .container { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 24px; }
.footer a { color: #f4a261; text-decoration: none; }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer p { margin-bottom: 6px; }

.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; background: #333; color: white;
    padding: 12px 16px; display: none; z-index: 1000;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.25);
}
.cookie-banner p { margin-bottom: 8px; font-size: 0.95rem; }
.cookie-banner button { padding: 10px 18px; margin-right: 8px; margin-top: 4px; border: none; border-radius: 5px; cursor: pointer; }
.cookie-btn-all { background: #4caf50; color: white; }
.cookie-btn-settings { background: #ff9800; color: white; }
.cookie-btn-decline { background: #f44336; color: white; }

.not-found { text-align: center; padding: 80px 20px; }
.not-found h1 { font-size: 4rem; color: #f4a261; }

.disclaimer { margin-top: 24px; font-size: 14px; color: #666; text-align: center; }

@media (max-width: 900px) {
    .hero-grid, .split, .contact-grid, .ingredient-list, .steps, .testimonials { grid-template-columns: 1fr; }
    .hero { text-align: center; }
    .hero p { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .price-card.featured { transform: none; }
}
@media (max-width: 768px) {
    .burger-menu { display: flex; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #2d3a3a;
        flex-direction: column;
        padding: 18px 20px 24px;
        gap: 14px;
        box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    }
    .nav-links.active { display: flex; }
    .hero h1, .page-hero h1, .section-title { font-size: 2rem; }
    .blog-post { padding: 20px; }
    body.no-scroll { overflow: hidden; }
}
