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

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

h1, h2, h3 {
    font-family: 'Ubuntu', sans-serif;
    color: #1abc9c; /* Зелёный оттенок Узбекистана */
}

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

button {
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    background: linear-gradient(45deg, #1abc9c, #16a085);
    color: #ffffff;
    font-weight: 700;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(26, 188, 156, 0.3);
}

button:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(26, 188, 156, 0.5);
}

.cta-button {
    background: linear-gradient(45deg, #1abc9c, #16a085);
    color: #ffffff;
    text-decoration: none;
    padding: 14px 28px;
    display: inline-block;
    border-radius: 12px;
    margin-top: 20px;
    transition: transform 0.5s ease, background 0.5s ease;
    font-weight: 500;
}

.cta-button:hover {
    transform: scale(1.05);
    background: linear-gradient(45deg, #16a085, #1abc9c);
}

.header {
    background: linear-gradient(90deg, #ffffff 0%, #e8f1f2 100%);
    padding: 20px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: background 0.5s ease;
}

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

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

.logo h1 {
    font-size: 32px;
    margin: 0;
    color: #1abc9c;
    text-transform: uppercase;
}

.logo p {
    font-size: 14px;
    color: #7f8c8d;
    margin: 5px 0 0;
}

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

.header-nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 8px;
    transition: color 0.5s ease, background 0.5s ease;
}

.header-nav a:hover {
    background: #1abc9c;
    color: #ffffff;
}

.cart-link {
    position: relative;
}

.cart-count {
    background: #e74c3c;
    color: #ffffff;
    border-radius: 50%;
    padding: 3px 8px;
    font-size: 12px;
    position: absolute;
    top: -12px;
    right: -12px;
    animation: bounce 1.5s infinite;
}

.cart-dropdown {
    display: none;
    position: absolute;
    top: 70px;
    right: 20px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    padding: 15px;
    width: 320px;
    z-index: 100;
    border: 2px solid #e8f1f2;
}

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

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

.cart-preview-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e8f1f2;
    transition: background 0.3s ease;
}

.cart-preview-item:hover {
    background: #f5f6f5;
}

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

.cart-preview-item p {
    margin: 0;
    font-size: 15px;
    color: #2c3e50;
}

.hero-block {
    background: linear-gradient(135deg, #e8f1f2 0%, #d5e8d4 100%);
    padding: 140px 0;
    text-align: center;
    border-radius: 20px;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

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

.products-block {
    background: #ffffff;
    padding: 60px 0;
    margin: 25px 0;
    border-radius: 20px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
}

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

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

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

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

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

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

.product-price {
    color: #e74c3c;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 20px;
}

.cart-block {
    background: #ffffff;
    padding: 60px 0;
    margin: 25px 0;
    border-radius: 20px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
}

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

.cart-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #f5f6f5;
    border-radius: 15px;
    gap: 25px;
    border: 2px solid #e8f1f2;
    transition: transform 0.3s ease;
}

.cart-item:hover {
    transform: translateX(5px);
}

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

.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: #16a085;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.btn-remove {
    background: #e74c3c;
    padding: 10px 20px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

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

.cart-summary {
    margin-top: 40px;
    text-align: center;
    background: #e8f1f2;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.clear-cart-btn {
    background: #e74c3c;
    padding: 12px 24px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

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

.lead-form-block {
    margin-top: 40px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    background: #e8f1f2;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #1abc9c;
    font-weight: 700;
}

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

.form-group input:focus, .form-group select:focus {
    border-color: #16a085;
    box-shadow: 0 0 8px rgba(22, 160, 133, 0.5);
    outline: none;
}

.form-message {
    margin-top: 20px;
    color: #27ae60;
    font-weight: 700;
}

.benefits-block {
    background: #ffffff;
    padding: 60px 0;
    margin: 25px 0;
    border-radius: 20px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
}

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

.benefit-item {
    padding: 25px;
    background: #f5f6f5;
    border-radius: 15px;
    border: 2px solid #e8f1f2;
    transition: transform 0.5s ease;
}

.benefit-item:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tips-block {
    background: linear-gradient(135deg, #d5e8d4 0%, #e8f1f2 100%);
    padding: 60px 0;
    margin: 25px 0;
    border-radius: 20px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
}

.tips-block ul {
    list-style-type: disc;
    padding-left: 30px;
    color: #7f8c8d;
}

.faq-block {
    background: #ffffff;
    padding: 60px 0;
    margin: 25px 0;
    border-radius: 20px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
}

.faq-item {
    margin-bottom: 25px;
}

.faq-question {
    font-weight: 700;
    color: #1abc9c;
    cursor: pointer;
    padding: 10px 15px;
    background: #e8f1f2;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #d5e8d4;
}

.faq-answer {
    display: none;
    margin-top: 10px;
    padding: 15px;
    background: #f5f6f5;
    border-radius: 8px;
    color: #7f8c8d;
}

.promotion-block {
    background: linear-gradient(135deg, #d5e8d4 0%, #e8f1f2 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: #2c3e50;
}

.promotion-block h2 {
    color: #1abc9c;
}

.reviews-block {
    background: #ffffff;
    padding: 60px 0;
    margin: 25px 0;
    border-radius: 20px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
}

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

.review-item {
    background: #f5f6f5;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    color: #7f8c8d;
    border: 2px solid #e8f1f2;
    transition: transform 0.5s ease;
}

.review-item:hover {
    transform: rotate(2deg) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.footer-block {
    background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
    color: #ffffff;
    padding: 50px 0;
    text-align: center;
    margin-top: 50px;
    border-top: 5px solid #ffffff;
}

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

.footer-content a:hover {
    color: #ffffff;
    transform: scale(1.1);
}

.medical-disclaimer {
    text-align: center;
    padding: 15px;
    background: #e8f1f2;
    color: #e74c3c;
    font-size: 15px;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-btn {
    padding: 12px 25px;
    margin: 0 15px;
    background: #16a085;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    transition: transform 0.5s ease, background 0.5s ease;
}

.cookie-btn:hover {
    transform: translateY(-2px);
    background: #138d75;
}

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

@keyframes bounce {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

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

@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;
        padding: 8px 15px;
    }
    .hero-text h1 {
        font-size: 36px;
    }
    .hero-text p {
        font-size: 18px;
    }
    .product-grid, .benefits-grid, .review-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;
    }
}