body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
    background: linear-gradient(135deg, #f0fff0 0%, #ffffff 100%);
    overflow-x: hidden;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M10 10 L90 90 M90 10 L10 90" stroke="%232e7d32" stroke-width="1"/></svg>');
    background-size: 150px 150px;
}

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

h1, h2, h3 {
    font-family: 'Noto Serif', serif;
    color: #2e7d32; /* Zielony motyw */
}

h2.section-title {
    text-align: center;
    margin: 40px 0 25px;
    font-size: 36px;
    opacity: 0;
    animation: fadeInSlide 1s ease forwards 0.5s;
    text-transform: uppercase;
    border-bottom: 3px dotted #ffd700; /* Złoty motyw */
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 10"><line x1="0" y1="5" x2="100" y2="5" stroke="%23ffd700" stroke-width="2"/></svg>') repeat-x center;
}

button {
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    background: linear-gradient(45deg, #2e7d32, #66bb6a);
    color: #fff;
    font-weight: 600;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    font-size: 16px;
    box-shadow: 0 3px 10px rgba(46, 125, 50, 0.3);
}

button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.5);
}

.cta-button {
    background: linear-gradient(45deg, #2e7d32, #66bb6a);
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    display: inline-block;
    border-radius: 10px;
    margin-top: 20px;
    transition: transform 0.4s ease, background 0.4s ease;
    font-weight: 700;
}

.cta-button:hover {
    transform: scale(1.1);
    background: linear-gradient(45deg, #1b5e20, #2e7d32);
}

.header {
    background: linear-gradient(90deg, #f0fff0 0%, #e8f5e9 100%);
    padding: 25px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: background 0.5s ease;
    border-bottom: 3px solid #ffd700;
}

.header:hover {
    background: linear-gradient(90deg, #e8f5e9 0%, #f0fff0 100%);
}

.header-logo {
    text-align: center;
    margin-bottom: 20px;
}

.logo h1 {
    font-size: 32px;
    margin: 0;
    color: #2e7d32;
    font-family: 'Noto Serif', serif;
}

.logo p {
    font-size: 16px;
    color: #666;
    margin: 8px 0 0;
}

.header-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.header-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 8px;
    transition: background 0.5s ease, color 0.5s ease;
    border: 1px solid #66bb6a;
}

.header-nav a:hover {
    background: #2e7d32;
    color: #fff;
}

.cart-link {
    position: relative;
}

.cart-count {
    background: #ffd700;
    color: #2e7d32;
    border-radius: 50%;
    padding: 3px 8px;
    font-size: 14px;
    position: absolute;
    top: -12px;
    right: -12px;
    font-weight: bold;
}

.cart-dropdown {
    display: none;
    position: absolute;
    top: 70px;
    right: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    padding: 20px;
    width: 320px;
    z-index: 100;
    border: 2px solid #ffd700;
    animation: slideDown 0.5s ease;
}

.cart-dropdown.active {
    display: block;
}

.cart-items {
    max-height: 250px;
    overflow-y: auto;
}

.cart-preview-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 2px dashed #66bb6a;
    animation: fadeIn 0.6s ease;
}

.cart-preview-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 15px;
    border: 2px solid #2e7d32;
}

.cart-preview-item p {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.hero-block {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 150px 0;
    text-align: center;
    border-radius: 20px;
    margin: 25px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    animation: fadeInZoom 1.2s ease;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23ffd700" stroke-width="2"/></svg>');
    background-size: 200px 200px;
}

.hero-text h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #2e7d32;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.hero-text p {
    font-size: 22px;
    max-width: 900px;
    margin: 0 auto 30px;
    color: #555;
}

.products-block {
    background: #f0fff0;
    padding: 60px 0;
    margin: 25px 0;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border: 3px double #66bb6a;
    animation: slideUp 1.2s ease;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.product-item {
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    text-align: center;
    border: 2px solid #ffd700;
    animation: bounceIn 0.8s ease;
}

.product-item:hover {
    transform: translateY(-15px) rotate(2deg);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.product-item img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.5s ease;
    border: 3px solid #2e7d32;
}

.product-item:hover img {
    transform: scale(1.1) rotate(-2deg);
}

.product-details h3 {
    font-size: 24px;
    margin: 20px 0;
    color: #2e7d32;
}

.product-price {
    color: #ffd700;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px #2e7d32;
}

.cart-block {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 60px 0;
    margin: 25px 0;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border: 2px dashed #ffd700;
    animation: fadeInSlide 1.2s ease;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    gap: 25px;
    border: 2px solid #66bb6a;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: slideIn 0.8s ease;
}

.cart-image {
    max-width: 120px;
    height: auto;
    border-radius: 10px;
    border: 2px solid #2e7d32;
}

.cart-item .product-details {
    flex: 1;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 15px 0;
}

.quantity-control button {
    padding: 8px 15px;
    background: #ffd700;
    color: #2e7d32;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
}

.quantity-control button:hover {
    background: #ffca28;
}

.btn-remove {
    background: #66bb6a;
    padding: 10px 20px;
    border-radius: 8px;
    color: #fff;
}

.btn-remove:hover {
    background: #1b5e20;
}

.cart-total {
    font-size: 28px;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin: 25px 0;
    text-shadow: 2px 2px 5px #2e7d32;
}

.cart-summary {
    margin-top: 40px;
    text-align: center;
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    animation: fadeIn 1s ease;
    border: 2px solid #66bb6a;
}

.clear-cart-btn {
    background: #66bb6a;
    padding: 12px 25px;
    border-radius: 8px;
    color: #fff;
    font-weight: 700;
}

.clear-cart-btn:hover {
    background: #1b5e20;
}

.lead-form-container {
    margin-top: 40px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    background: #f0fff0;
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #ffd700;
    animation: bounceIn 1s ease;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2e7d32;
    font-weight: 500;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #66bb6a;
    border-radius: 10px;
    font-family: 'Roboto', sans-serif;
    transition: border-color 0.5s ease, box-shadow 0.5s ease;
    background: #fff;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: #2e7d32;
    box-shadow: 0 0 8px rgba(46, 125, 50, 0.5);
    outline: none;
}

.form-message {
    margin-top: 20px;
    color: #ffd700;
    font-weight: 600;
    text-align: center;
}

.tips-block {
    background: linear-gradient(135deg, #ffffff 0%, #f0fff0 100%);
    padding: 60px 0;
    margin: 25px 0;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border: 3px dotted #66bb6a;
    animation: slideUp 1.2s ease;
}

.tips-block ul {
    list-style-type: square;
    padding-left: 30px;
    color: #666;
}

.reviews-block {
    background: #fff;
    padding: 60px 0;
    margin: 25px 0;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #ffd700;
    animation: fadeInSlide 1.2s ease;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.review-item {
    background: #f0fff0;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    color: #555;
    border: 2px dashed #66bb6a;
    transition: transform 0.5s ease;
    animation: bounceIn 0.8s ease;
}

.review-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.benefits-block {
    background: #ffffff;
    padding: 60px 0;
    margin: 25px 0;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border: 3px double #ffd700;
    animation: fadeInZoom 1.2s ease;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    text-align: center;
}

.benefit-item {
    padding: 25px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 15px;
    border: 2px solid #2e7d32;
    transition: transform 0.5s ease;
    animation: slideIn 0.8s ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.faq-block {
    background: linear-gradient(135deg, #c8e6c9 0%, #e8f5e9 100%);
    padding: 60px 0;
    margin: 25px 0;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    animation: fadeInSlide 1.2s ease;
}

.faq-item {
    margin-bottom: 25px;
    border-bottom: 2px dashed #2e7d32;
    padding-bottom: 15px;
}

.faq-question {
    font-weight: 600;
    color: #2e7d32;
    cursor: pointer;
}

.faq-answer {
    display: none;
    margin-top: 15px;
    color: #555;
}

.promotion-block {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 60px 0;
    margin: 25px 0;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-align: center;
    color: #333;
    animation: bounceIn 1.2s ease;
}

.promotion-block h2 {
    color: #ffd700;
}

.gallery-block {
    background: #fff;
    padding: 60px 0;
    margin: 25px 0;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    animation: slideUp 1.2s ease;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    border: 3px solid #66bb6a;
    transition: transform 0.5s ease;
    animation: fadeInZoom 0.8s ease;
}

.gallery-grid img:hover {
    transform: scale(1.1);
}

.success-stories-block {
    background: linear-gradient(135deg, #f0fff0 0%, #e8f5e9 100%);
    padding: 60px 0;
    margin: 25px 0;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    animation: slideIn 1.2s ease;
}

.video-tips-block {
    background: #fff;
    padding: 60px 0;
    margin: 25px 0;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    animation: fadeInSlide 1.2s ease;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(560px, 1fr));
    gap: 30px;
    justify-items: center;
}

.footer-block {
    background: linear-gradient(135deg, #2e7d32 0%, #66bb6a 100%);
    color: #fff;
    padding: 50px 0;
    text-align: center;
    margin-top: 50px;
    animation: fadeInZoom 1.2s ease;
}

.footer-content a {
    color: #ffd700;
    margin: 0 20px;
    text-decoration: none;
    transition: color 0.5s ease;
}

.footer-content a:hover {
    color: #ffca28;
}

.medical-disclaimer {
    text-align: center;
    padding: 20px;
    background: #f0fff0;
    color: #2e7d32;
    font-size: 16px;
    margin-top: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.1);
    animation: slideUp 1s ease;
}

.cookie-notice {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(240, 255, 240, 0.95);
    color: #333;
    padding: 25px;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15);
    animation: slideUp 0.6s ease;
}

.cookie-notice.show {
    display: block;
}

.cookie-btn {
    padding: 12px 25px;
    margin: 0 15px;
    background: #ffd700;
    color: #2e7d32;
    border: none;
    border-radius: 10px;
    transition: transform 0.5s ease;
    font-weight: 600;
}

.cookie-btn:hover {
    transform: scale(1.1);
    background: #ffca28;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInSlide {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInZoom {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

@keyframes slideDown {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateX(-20px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes bounceIn {
    0% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    .header-logo {
        margin-bottom: 20px;
    }
    .header-nav {
        flex-direction: column;
        align-items: center;
    }
    .header-nav a {
        margin: 10px 0;
    }
    .hero-text h1 {
        font-size: 36px;
    }
    .hero-text p {
        font-size: 18px;
    }
    .product-grid, .benefits-grid, .review-grid, .gallery-grid, .video-grid {
        grid-template-columns: 1fr;
    }
    .cart-item {
        flex-direction: column;
        text-align: center;
    }
    .cart-image {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .btn-remove {
        margin-top: 15px;
    }
    .video-grid iframe {
        width: 100%;
        height: 220px;
    }
}