        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #f9fbf8;
            color: #1e2f23;
            line-height: 1.5;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Цветовая схема: природный зелёный, акцент травяной */
        .accent-green {
            color: #2b5e3b;
        }
        .bg-light-green {
            background-color: #eaf3e5;
        }

        /* Кнопки */
        .btn {
            display: inline-block;
            background-color: #2b5e3b;
            color: white;
            font-weight: 600;
            padding: 14px 36px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1.2rem;
            transition: all 0.2s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 8px 16px rgba(43, 94, 59, 0.2);
            letter-spacing: 0.3px;
        }

        .btn:hover {
            background-color: #1e462a;
            transform: translateY(-2px);
            box-shadow: 0 12px 20px rgba(43, 94, 59, 0.3);
        }

        .btn-small {
            padding: 10px 24px;
            font-size: 1rem;
        }

        /* Шапка */
        header {
            padding: 20px 0;
            background: white;
        }

        .header-flex {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }

        .logo img {
            max-height: 70px;
            width: auto;
            display: block;
        }

        .header-badge {
            display: flex;
            align-items: center;
            gap: 15px;
            color: #2b5e3b;
            font-weight: 500;
        }

        .header-badge i {
            font-size: 1.8rem;
        }

        .header-badge span {
            font-size: 1.2rem;
            border-left: 2px solid #c0dbc4;
            padding-left: 15px;
        }

        /* Герой (первый экран) */
        .hero {
            padding: 50px 0 30px;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .hero h1 {
            font-size: 2.8rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
            color: #1c3c2a;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: #3c5e4c;
            margin-bottom: 20px;
            font-weight: 500;
            background: #e1ecdd;
            padding: 10px 20px;
            border-radius: 40px;
            display: inline-block;
        }

        .hero-description {
            font-size: 1.1rem;
            margin-bottom: 25px;
            color: #2a4233;
        }

        .hero-highlight {
            background: #f5f9f2;
            border-radius: 20px;
            padding: 20px;
            margin: 30px 0;
            border-left: 6px solid #2b5e3b;
        }

        .hero-highlight p {
            font-size: 1.15rem;
            font-style: italic;
        }

        .hero-image {
            background: #d9e8db;
            border-radius: 40px 40px 40px 40px;
            padding: 30px 20px;
            text-align: center;
            box-shadow: 0 25px 40px -10px rgba(30, 60, 30, 0.3);
        }

        .bottle-placeholder {
            font-size: 12rem;
            color: #2b5e3b;
            line-height: 1;
            filter: drop-shadow(0 10px 10px rgba(0,0,0,0.1));
        }

        .bottle-caption {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1d3e27;
            background: white;
            display: inline-block;
            padding: 10px 40px;
            border-radius: 60px;
            margin-top: 0px;
        }

        .volume-tag {
            background: #ffd966;
            color: #1e3a2a;
            font-weight: 700;
            font-size: 1.4rem;
            padding: 6px 20px;
            border-radius: 60px;
            display: inline-block;
            margin-top: 20px;
        }

        /* Полоска преимуществ */
        .benefits-strip {
            background-color: #1c3c2a;
            color: white;
            padding: 16px 0;
            margin: 40px 0 20px;
        }

        .benefits-strip .container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 20px;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
        }

        .benefit-item i {
            font-size: 2rem;
            color: #b1e6b9;
        }

        /* Раздел состав и свойства */
        .section-title {
            font-size: 2.2rem;
            color: #1e3a2a;
            margin-bottom: 20px;
            font-weight: 600;
            position: relative;
            padding-bottom: 10px;
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: #2b5e3b;
            border-radius: 4px;
        }

        .composition-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin: 40px 0;
        }

        .comp-card {
            background: white;
            border-radius: 24px;
            padding: 30px;
            box-shadow: 0 8px 20px rgba(0,30,0,0.04);
        }

        .comp-card h3 {
            font-size: 1.8rem;
            color: #2b5e3b;
            margin-bottom: 20px;
        }

        .list-accent {
            list-style: none;
        }

        .list-accent li {
            margin-bottom: 12px;
            padding-left: 30px;
            position: relative;
            font-weight: 500;
        }

        .list-accent li:before {
            content: "🌱";
            position: absolute;
            left: 0;
            color: #2b5e3b;
            font-size: 1.2rem;
        }

        .amino-badge {
            background: #f0f7ee;
            border-radius: 16px;
            padding: 18px;
            margin-top: 20px;
        }

        /* Эффективность и отчет */
        .stats-block {
            background: #ddebe0;
            border-radius: 30px;
            padding: 40px;
            margin: 60px 0;
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: #1c5e33;
            line-height: 1;
        }

        .quote {
            font-size: 1.2rem;
            font-weight: 500;
            background: white;
            border-radius: 40px;
            padding: 30px;
            box-shadow: 0 8px 0 #2b5e3b;
            margin: 40px 0;
        }

        /* Таблица применения */
        .apply-simple {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
            margin: 30px 0;
        }

        .apply-step {
            background: white;
            border-radius: 30px;
            padding: 30px;
            flex: 1 1 220px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
            border: 1px solid #cde0d1;
        }

        .apply-step i {
            font-size: 2.5rem;
            color: #2b5e3b;
            margin-bottom: 15px;
        }

        /* Свидетельство и реквизиты */
        .certificate {
            background: white;
            border-radius: 28px;
            padding: 30px;
            border: 1px dashed #2b5e3b;
            margin: 40px 0;
            font-size: 0.95rem;
            color: #2a4233;
        }

        .eac-sign {
            display: inline-block;
            background: #203d2b;
            color: white;
            padding: 6px 14px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-right: 10px;
        }

        /* Футер */
        footer {
            background: #16291e;
            color: #bcd0c0;
            padding: 40px 0;
            margin-top: 60px;
        }

        .footer-warning {
            background: #ffecb3;
            color: #3b2f0b;
            padding: 20px;
            border-radius: 30px;
            text-align: center;
            font-weight: 600;
            margin-bottom: 40px;
        }

        /* Мобильность */
        @media (max-width: 768px) {
            .hero-grid {
                grid-template-columns: 1fr;
            }
            .header-flex {
                flex-direction: column;
                text-align: center;
            }
            .header-badge span {
                border-left: none;
                padding-left: 0;
            }
            .composition-grid {
                grid-template-columns: 1fr;
            }
            .btn {
                width: 100%;
                text-align: center;
            }
        }




/* ========== СТИЛИ ДЛЯ СТАТЕЙ ========== */

/* Секция статей на главной */
.articles-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.articles-slider-container {
    margin-top: 3rem;
    position: relative;
    padding: 0 40px;
}

.articles-slider {
    overflow: hidden;
}

.article-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.05);
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.article-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.article-card:hover .article-card-image img {
    transform: scale(1.05);
}

.article-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary);
    color: var(--primary);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow);
}

.article-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.article-date {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.article-views {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.article-card-content h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.4;
}

.article-card-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.articles-all-link {
    text-align: center;
    margin-top: 3rem;
}

/* Навигация слайдера */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary);
    background: rgba(255,255,255,0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: var(--shadow);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--secondary);
    color: var(--primary);
}

.swiper-pagination-bullet {
    background: var(--primary);
}

.swiper-pagination-bullet-active {
    background: var(--secondary);
}

/* Страница со списком статей */
.articles-list-page {
    padding: 3rem 0 5rem;
}

.articles-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.filter-btn {
    background: var(--bg-white);
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: white;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.no-articles {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    padding: 3rem;
}

/* Страница отдельной статьи */
.article-page {
    padding: 3rem 0 5rem;
    background: var(--bg-light);
}

.article-breadcrumbs {
    margin-bottom: 2rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.article-breadcrumbs a {
    color: var(--primary);
    text-decoration: none;
}

.article-breadcrumbs a:hover {
    text-decoration: underline;
}

.article-container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
}

.article-content-wrapper {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.article-header {
    margin-bottom: 2rem;
}

.article-meta-top {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.article-category {
    background: var(--secondary);
    color: var(--primary);
    padding: 0.2rem 1rem;
    border-radius: 50px;
    font-weight: 600;
}

.article-header h1 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-author {
    color: var(--text-light);
    font-size: 0.95rem;
}

.article-image {
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.article-content h2 {
    color: var(--primary);
    font-size: 1.6rem;
    margin: 2rem 0 1rem;
}

.article-content h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content ul,
.article-content ol {
    margin: 1rem 0 1.5rem 2rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-share {
    margin: 3rem 0 2rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.article-share h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.share-buttons {
    display: flex;
    gap: 1rem;
}

.share-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.share-btn.vk { background: #4C75A3; }
.share-btn.telegram { background: #0088CC; }
.share-btn.whatsapp { background: #25D366; }

.share-btn:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.article-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}

.article-navigation a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.article-navigation a:hover {
    color: var(--secondary);
}

.all-articles {
    background: var(--primary);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
}

.all-articles:hover {
    background: var(--secondary);
    color: var(--primary) !important;
}

/* Сайдбар статей */
.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.sidebar-widget h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary);
}

.popular-item {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.popular-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.popular-item a {
    display: flex;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
}

.popular-item img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
}

.popular-item h4 {
    color: var(--primary);
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.popular-item .date {
    font-size: 0.8rem;
    color: var(--text-light);
}

.categories-widget ul {
    list-style: none;
}

.categories-widget li {
    margin-bottom: 0.8rem;
}

.categories-widget a {
    color: var(--text-dark);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    transition: all 0.3s;
}

.categories-widget a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.categories-widget span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.cta-widget {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    text-align: center;
}

.cta-widget h3 {
    color: white;
    border-bottom-color: var(--secondary);
}

.cta-widget p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.cta-widget .btn {
    margin-top: 0;
    width: 100%;
}

.widget-phone {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary);
    margin-top: 1rem;
}

/* Адаптация для мобильных */
@media (max-width: 992px) {
    .article-container {
        grid-template-columns: 1fr;
    }
    
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .articles-slider-container {
        padding: 0 20px;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .article-header h1 {
        font-size: 1.6rem;
    }
    
    .article-navigation {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .article-meta-top {
        flex-wrap: wrap;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        text-align: center;
    }
}

/* Баннер */
.banner-section {text-align: center;    margin: 40px 0 10px 0;}
.banner-section img {width: 100%;}


/* about.css - стили для блока "О нас" */

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9fbf8 0%, #f0f7f0 100%);
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Декоративный элемент */
.about-decoration {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(43, 94, 59, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 2;
}

/* Левая колонка */
.about-left {
    display: flex;
    flex-direction: column;
}

.about-badge {
    display: inline-block;
    background: rgba(43, 94, 59, 0.1);
    color: #2b5e3b;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    padding: 8px 16px;
    border-radius: 40px;
    margin-bottom: 20px;
    align-self: flex-start;
    text-transform: uppercase;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1e2f23;
}

.about-title span {
    color: #2b5e3b;
    display: block;
    font-size: 2.2rem;
    font-weight: 600;
    margin-top: 10px;
}

.about-image-wrapper {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 40px -15px rgba(30, 60, 30, 0.4);
    margin-top: auto;
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover {
    transform: scale(1.05);
}

/* Правая колонка */
.about-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2a4233;
    margin: 0;
}

.about-highlight {
    background: white;
    border-left: 6px solid #2b5e3b;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
}

.about-highlight p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #1e3a2a;
    margin: 0;
    font-style: italic;
}

.about-highlight strong {
    color: #2b5e3b;
    font-weight: 700;
}

/* Блок сертификации */
.about-certified {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(43, 94, 59, 0.05);
    border-radius: 20px;
    padding: 20px;
    margin: 10px 0;
}

.certified-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
}

.certified-text h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e3a2a;
    margin: 0 0 5px 0;
}

.certified-text p {
    font-size: 0.95rem;
    color: #4d6b55;
    margin: 0;
}

/* Категории продуктов */
.product-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0;
}

.category-item {
    background: white;
    color: #2b5e3b;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 18px;
    border-radius: 40px;
    border: 1px solid rgba(43, 94, 59, 0.2);
    transition: all 0.2s ease;
    cursor: default;
}

.category-item:hover {
    background: #2b5e3b;
    color: white;
    border-color: #2b5e3b;
}

/* Футер блока */
.about-footer {
    margin-top: 20px;
}

.about-open-text {
    font-size: 1rem;
    color: #3c5e4c;
    font-weight: 500;
    margin-bottom: 20px;
}

.about-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(145deg, #2b5e3b, #1e462a);
    color: white;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 60px;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px -5px rgba(43, 94, 59, 0.4);
    transition: all 0.3s ease;
    margin-bottom: 15px;
    border: none;
    cursor: pointer;
}

.about-button:hover {
    background: linear-gradient(145deg, #1e462a, #14331f);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px -5px rgba(43, 94, 59, 0.5);
    gap: 15px;
}

.about-button svg {
    transition: transform 0.2s ease;
}

.about-button:hover svg {
    transform: translateX(5px);
}

.about-marketplace {
    font-size: 0.95rem;
    color: #4d6b55;
}

.about-marketplace strong {
    color: #2b5e3b;
    font-weight: 600;
}

/* Адаптация для мобильных */
@media (max-width: 992px) {
    .about-grid {
        gap: 40px;
    }
    
    .about-title {
        font-size: 2.2rem;
    }
    
    .about-title span {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-left {
        order: 1;
    }
    
    .about-right {
        order: 2;
    }
    
    .about-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-title {
        text-align: center;
    }
    
    .about-badge {
        align-self: center;
    }
    
    .about-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 1.8rem;
    }
    
    .about-title span {
        font-size: 1.6rem;
    }
    
    .about-highlight {
        padding: 20px;
    }
    
    .about-certified {
        flex-direction: column;
        text-align: center;
    }
    
    .product-categories {
        justify-content: center;
    }
    
    .category-item {
        font-size: 0.85rem;
        padding: 6px 14px;
    }
}