/* Общие стили */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
    background: #F9FAFB;
}

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

h1, h2, h3 {
    font-family: 'Lora', serif;
    color: #1E3A8A;
}

h2.section-title {
    text-align: center;
    margin: 40px 0 20px;
    font-size: 28px;
}

button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button {
    background: #22C55E;
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    display: inline-block;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background: #16A34A;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Шапка */
.header {
    background: #1E3A8A;
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    margin: 0;
    font-size: 24px;
    color: #E0F2E9;
}

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

.nav-menu a {
    margin-left: 20px;
    text-decoration: none;
    color: #E0F2E9;
    font-weight: 500;
}

.nav-menu a:hover {
    color: #22C55E;
}

/* Герой-секция */
.hero {
    background: linear-gradient(135deg, #E0F2E9, #FFFFFF);
    padding: 60px 0;
    text-align: center;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-text h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 30px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Преимущества */
.features {
    padding: 40px 0;
    background: #FFFFFF;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.feature-card {
    padding: 20px;
    background: #F9FAFB;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-card p {
    margin: 10px 0 0;
    color: #64748B;
    font-size: 16px;
}

/* Описание */
.description {
    padding: 40px 0;
    background: #FFFFFF;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.description-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.description-text h3 {
    margin: 20px 0;
    font-size: 22px;
}

.description-text p {
    margin-bottom: 15px;
    font-size: 16px;
}

/* Продукты */
.products {
    padding: 40px 0;
    background: #FFFFFF;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    background: #F9FAFB;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-card img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.product-info h3 {
    margin: 15px 0;
    font-size: 20px;
}

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

.product-info p {
    font-size: 14px;
    color: #64748B;
    margin-bottom: 15px;
}

.btn-add-cart {
    background: #22C55E;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    margin-top: 10px;
    margin-right: 10px;
}

.btn-add-cart:hover {
    background: #16A34A;
}

/* О компании */
.about {
    padding: 40px 0;
    background: #FFFFFF;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text h3 {
    margin: 20px 0;
    font-size: 22px;
}

.about-values ul {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.about-values li {
    margin: 10px 0;
    font-size: 16px;
}

/* Контакты */
.contact {
    padding: 40px 0;
    background: #FFFFFF;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.contact-info {
    text-align: center;
    margin-bottom: 30px;
}

.contact-info p {
    margin: 5px 0;
    font-size: 16px;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
    color: #1E3A8A;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #E5E7EB;
    border-radius: 5px;
    font-size: 14px;
}

.form-message {
    margin-top: 10px;
    text-align: center;
}

/* Футер */
.footer {
    background: #1E3A8A;
    color: white;
    padding: 30px 0;
    text-align: center;
    margin-top: 20px;
}

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

.footer-links a:hover {
    color: #22C55E;
}

/* Адаптивность */
@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }

    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .nav-menu {
        margin-top: 15px;
    }

    .nav-menu a {
        margin: 0 10px;
        display: block;
        padding: 5px 0;
    }

    .hero-text h1 {
        font-size: 24px;
    }

    .hero-text p {
        font-size: 14px;
    }

    .features-grid, .products-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        margin-bottom: 20px;
    }

    .contact-form {
        max-width: 100%;
    }
}

/* Куки-уведомление */
.cookie-notice {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #1E3A8A;
    color: white;
    padding: 20px;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
}

.cookie-notice.show {
    display: block;
    animation: slideUp 0.5s ease;
}

.cookie-buttons {
    margin-top: 15px;
}

.cookie-btn {
    padding: 10px 20px;
    margin: 0 10px;
    background: #22C55E;
    color: white;
    border: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    background: #16A34A;
}

/* Предупреждение */
.medical-disclaimer {
    color: #EF4444;
    text-align: center;
    font-size: 14px;
    margin: 15px 0;
    padding: 10px;
    background: #FEF2F2;
    border-radius: 5px;
}

/* Анимации */
@keyframes slideUp {
    0% { transform: translateY(100%); }
    100% { transform: translateY(0); }
}

@keyframes fadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; }
}

/* Корзина */
.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    margin-bottom: 15px;
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.cart-item img {
    max-width: 80px;
    margin-right: 15px;
}

.btn-remove {
    background: #EF4444;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

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

.cart-summary {
    margin-top: 20px;
    padding: 20px;
    background: #F9FAFB;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.cart-total {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
}