body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
    background: linear-gradient(135deg, #f0f4f8 0%, #e0e7ff 100%);
    overflow-x: hidden;
}

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

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    color: #1976D2;
}

h2.section-title {
    text-align: center;
    margin: 40px 0 25px;
    font-size: 28px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.5s;
}

button {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background: linear-gradient(45deg, #1976D2, #42A5F5);
    color: white;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 16px;
}

button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(25, 118, 210, 0.4);
}

.cta-button {
    background: linear-gradient(45deg, #1976D2, #42A5F5);
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    display: inline-block;
    border-radius: 8px;
    margin-top: 20px;
    transition: transform 0.3s ease;
    font-weight: 500;
}

.cta-button:hover {
    transform: scale(1.05);
}

.header {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

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

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

.header-nav a {
    margin: 0 10px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 6px 10px;
    transition: color 0.3s ease;
}

.header-nav a:hover {
    color: #42A5F5;
}

.header-nav .cart-link {
    position: relative;
}

.cart-count {
    background: #EF5350;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    position: absolute;
    top: -5px;
    right: -10px;
}

.hero-block {
    background: #E3F2FD;
    padding: 100px 0;
    text-align: center;
    border-radius: 12px;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1.5s ease;
}

.hero-text h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1976D2;
}

.hero-text p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 25px;
    color: #333;
}

.products-block {
    padding: 40px 0;
    background: #fff;
    margin: 20px 0;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

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

.product-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.2s;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.product-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.product-item:hover img {
    transform: scale(1.02);
}

.product-details {
    text-align: center;
    padding-top: 15px;
}

.product-details h3 {
    margin: 10px 0;
    font-size: 20px;
    color: #1976D2;
}

.product-price {
    color: #D81B60;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
}

.cart-block {
    padding: 40px 0;
    background: #fff;
    margin: 20px 0;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

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

.cart-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    gap: 20px;
}

.cart-image {
    max-width: 100px;
    height: auto;
    border-radius: 8px;
}

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

.btn-remove {
    background: #EF5350;
}

.btn-remove:hover {
    background: #D32F2F;
}

.cart-summary {
    margin-top: 20px;
    text-align: center;
}

.clear-cart-btn {
    background: #EF5350;
}

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

.lead-form-block {
    margin-top: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #1976D2;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: #1976D2;
    box-shadow: 0 0 5px rgba(25, 118, 210, 0.5);
    outline: none;
}

.form-message {
    margin-top: 15px;
    color: #1976D2;
    font-weight: 500;
}

.contact-section, .about-section, .blog-section, .policy-section, .terms-section {
    padding: 40px 0;
    background: #fff;
    margin: 20px 0;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.contact-content, .about-content, .blog-post, .policy-content, .terms-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-post {
    margin-bottom: 30px;
}

.blog-post h2 {
    font-size: 24px;
    color: #1976D2;
}

.blog-post p {
    font-size: 16px;
    color: #666;
}

.sidebar-block {
    padding: 20px 0;
    background: #F5F5F5;
    margin: 20px 0;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.sidebar-block ul {
    list-style: none;
    padding: 0;
}

.sidebar-block ul li a {
    color: #1976D2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-block ul li a:hover {
    color: #42A5F5;
}

.symptoms-block {
    padding: 40px 0;
    background: #fff;
    margin: 20px 0;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.symptoms-block ul {
    list-style-type: disc;
    padding-left: 20px;
    color: #666;
}

.symptoms-block p {
    margin-top: 15px;
    color: #333;
}

.prevention-block {
    padding: 40px 0;
    background: #F5F5F5;
    margin: 20px 0;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.prevention-block ul {
    list-style-type: disc;
    padding-left: 20px;
    color: #666;
}

.reviews-block {
    padding: 40px 0;
    background: #fff;
    margin: 20px 0;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

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

.review-item {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    color: #666;
}

.review-item p {
    margin: 0;
}

.footer-block {
    background: #1976D2;
    color: white;
    padding: 30px 0;
    text-align: center;
    margin-top: 40px;
}

.footer-content a {
    color: #BBDEFB;
    margin: 0 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-content a:hover {
    color: white;
}

.medical-disclaimer {
    text-align: center;
    padding: 15px;
    background: #E3F2FD;
    color: #D32F2F;
    font-size: 14px;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(25, 118, 210, 0.1);
}

.cookie-notice {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 20px;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    animation: slideUp 0.5s ease;
}

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

.cookie-btn {
    padding: 10px 20px;
    margin: 0 10px;
    background: #1976D2;
    color: white;
    border: none;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.cookie-btn:hover {
    transform: scale(1.05);
}

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

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

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

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    .header-logo {
        margin-bottom: 15px;
    }
    .header-nav {
        flex-direction: column;
        align-items: center;
    }
    .header-nav a {
        margin: 8px 0;
    }
    .hero-text h1 {
        font-size: 28px;
    }
    .hero-text p {
        font-size: 16px;
    }
    .product-grid {
        grid-template-columns: 1fr;
    }
    .review-grid {
        grid-template-columns: 1fr;
    }
    .cart-item {
        flex-direction: column;
        text-align: center;
    }
    .cart-image {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .btn-remove {
        margin-top: 10px;
    }
    .sidebar-block {
        margin: 10px 0;
    }
}