/* ===== Базовые сбросы ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-family: 'Montserrat Alternates';
    line-height: 1.6;
}

body {
    background-image: url('/assets/images/background.png');
    /* background-size: 100%;
    background-position: center; */
    background-repeat: no-repeat;
    color: #fff;
}

/* ТОЛЬКО ТАК ПЕРЕБЬЁТ !important */
.footer-minimal .nav__link--footer {
    color: white !important;
}

.footer-minimal .nav__link--footer:hover {
    color: #D4AF37 !important;
}

.container {
    width: 100%;
    /* занимает всю доступную ширину */
    max-width: 2560px;
    /* максимальная ширина контейнера */
    margin: 0 auto;
    /* центрируем */
    padding: 0 30px;
    box-sizing: border-box;
    /* чтобы padding учитывался внутри ширины */
}

/* ===== Блок header ===== */
.header {
    position: relative;
    z-index: 1000;
    background-color: transparent;
    padding: 15px 0;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    width: 68px;
    height: 68px;
}

.header__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ===== Блок nav ===== */
.nav {
    display: flex;
    gap: 60px;
}

.nav__link {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav__link:hover {
    color: #FFC107;
}

.nav__link--active {
    color: #FFC107;
}

/* ===== Блок hero ===== */
.hero {
    display: flex;
    align-items: center;
    height: 100%;
}

.hero__container {
    width: 90%;
    padding: 110px 139px 120px;
    display: flex;
    flex-direction: column;
}

.hero__title {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 10px;
}

.hero__subtitle {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 20px;
}

.hero__description {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 60px;
    max-width: 600px;
}

.hero__buttons {
    display: flex;
    gap: 20px;
}

/* ===== Блок button ===== */
.button {
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    width: 224px;
}

a.button--primary,
.button--secondary {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    align-content: center;
}

.button--primary {
    background-color: rgba(205, 168, 49, 1);
    /* убрать прозрачность */
    color: #fff;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(205, 168, 49, 0.3);
    font-family: 'Montserrat Alternates Regular';
    transition: 0.2s;

}

.button--primary:hover {
    background-color: rgb(185, 148, 29);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(205, 168, 49, 0.4);
}

.button--secondary {
    background-color: white;
    color: #9C7C2E;
    /* приглушённый золотой */
    border: 2px solid rgba(205, 168, 49, 0.5);
    /* золотая обводка */
    font-family: 'Montserrat Alternates Regular';
    transition: 0.2s;
}

.button--secondary:hover {
    border-color: rgba(205, 168, 49, 1);
    /* ярче обводка */
    color: #8B6C25;
    box-shadow: 0 2px 10px rgba(205, 168, 49, 0.2);
    transform: translateY(-3px);
}

/* ===== Блок production ===== */
.production {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #D1E8E2;
    padding: 5% 0 5% 0;
}

/* Swiper wrapper */
.production__banner {
    max-width: 2560px;
    position: relative;
    overflow: hidden;
    background-color: #E0F2ED;
    border-radius: 20px;
    padding: 40px 65px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.production__slide {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Левая часть с текстом */
.production__left {
    display: flex;
    height: 100%;
    flex: 1 1 55%;
    flex-direction: column;
    justify-content: space-between;
}

.production__title {
    font-weight: 400;
    font-size: 48px;
    margin-bottom: 16px;
    color: #CDA831;
}

.production__subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: black;
}

.product-price .current {
    font-size: 32px;
    font-weight: bold;
    color: #CDA831;
}

/* Правая часть с изображением */
.production__right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.production__image {
    max-width: 100%;
    max-height: 350px;
    object-fit: contain;
    border-radius: 20px;
}

/* Пагинация */
.production__pagination {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    text-align: center;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.6);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #ffc107;
}

.swiper-button-prev {
    background-image: url('/assets/images/next.svg');
    /* Обычное состояние */
    rotate: 180deg;
    opacity: 0.5;
}

.swiper-button-next {
    background-image: url('/assets/images/next.svg');
    /* Обычное состояние */
    opacity: 0.5;
}

.swiper-button-prev,
.swiper-button-next {
    display: inline-block;
    width: 30px;
    /* Задайте нужные размеры */
    height: 40px;
    border: none;
    background-color: transparent;
    /* Прозрачный фон */
    background-size: 100% 100%;
    /* Растягиваем картинку на всю кнопку */
    background-repeat: no-repeat;
    background-position: center;
    color: transparent;
    /* Скрываем текст, если он не нужен */
    font-size: 0;
    /* Скрываем текст */
    cursor: pointer;
    padding: 0;
    text-indent: -9999px;
    /* Альтернативный способ скрыть текст */
    transition: 0.3s;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    opacity: 1;
}



/* ===== Блок catalog ===== */
.catalog {
    display: flex;
    background-color: #D1E8E2;
}

.catalog__container {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.catalog__title {
    font-family: 'Montserrat Alternates Regular';
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 10px;
    padding-top: 20px;
    color: black;
}

.catalog__subtitle {
    font-family: 'Montserrat Alternates Light';
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
    text-align: center;
    color: black;
}

.catalog__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    padding: 5% 0;
}

.catalog__item {
    width: 300px;
    height: 590px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #FFE786;
    border-radius: 36px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.catalog__item>img {
    width: 100%;
    height: 300px;
    border-radius: 36px 36px 0 0;
    object-fit: contain;
}

.catalog__item-title {
    font-family: 'Montserrat Alternates SemiBold';
    font-size: 22px;
    color: black;
    padding: 20px 7%;
    text-align: center;
    margin: 0;
    min-height: 90px;
    /* МИНИМАЛЬНАЯ высота */
    max-height: 110px;
    /* МАКСИМАЛЬНАЯ высота */
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    /* Межстрочный интервал */
    overflow: hidden;
    /* Если текст слишком длинный */
}

.catalog__item-description {
    font-family: 'Montserrat Alternates Regular';
    font-size: 16px;
    color: black;
    padding: 0 7%;
    margin: 0;
    min-height: 100px;
    max-height: 150px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    /* Ограничение по строкам */
    -webkit-box-orient: vertical;
    line-height: 1.4;
}

.catalog__item-footer {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 7% 7%;
}

.catalog__item-price {
    font-family: 'Montserrat Alternates Medium';
    color: black;
    font-size: 15px;
    text-decoration: underline;
}

.button--more {
    width: 140px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat Alternates Medium';
    background-color: #CDA831;
    color: white;
    font-size: 15px;
}

.catalog__buttons {
    display: flex;
    gap: 20px;
}

/* ===== Блок health ===== */

.health {
    display: flex;
    background-color: #E6E3C6;
}

.health__container {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.health__title {
    font-family: 'Montserrat Alternates Regular';
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
    color: black;
    padding-top: 20px;
}

.health__subtitle {
    text-align: center;
    font-family: 'Montserrat Alternates Light';
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
    color: black;
}

.health__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    padding: 5% 0;
}

.health__item {
    width: 300px;
    height: 590px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #EFFCFF;
    border-radius: 36px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.health__item>img {
    width: 100%;
    height: 300px;
    border-radius: 36px 36px 0 0;
    object-fit: contain;
}

.health__item-title {
    font-family: 'Montserrat Alternates SemiBold';
    font-size: 22px;
    color: black;
    padding: 20px 7%;
    text-align: center;
    margin: 0;
    min-height: 90px;
    /* МИНИМАЛЬНАЯ высота */
    max-height: 110px;
    /* МАКСИМАЛЬНАЯ высота */
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    /* Межстрочный интервал */
    overflow: hidden;
    /* Если текст слишком длинный */
}

.health__item-time {
    font-family: 'Montserrat Alternates Regular';
    font-size: 16px;
    color: black;
    padding: 0 7%;
}

.health__item-description {
    font-family: 'Montserrat Alternates Regular';
    font-size: 16px;
    color: black;
    padding: 0 7%;
    margin: 0;
    min-height: 100px;
    max-height: 150px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    line-height: 1.4;
}

.health__item-footer {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 7% 7%;
}

.health__item-price {
    font-family: 'Montserrat Alternates Medium';
    color: black;
    font-size: 15px;
    text-decoration: underline;
}

/* ===== Блок advantages ===== */

.advantages {
    display: flex;
    background-color: #E6E3C6;
}

.advantages__container {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.advantages__title {
    font-family: 'Montserrat Alternates Regular';
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
    color: black;
    padding-top: 20px;
}

.advantages__subtitle {
    text-align: center;
    font-family: 'Montserrat Alternates Light';
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
    color: black;
}

.advantages__list {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 5% 0 10%;
    align-items: center;
}

.advantages__item {
    width: 1150px;
    height: 148px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #EFFCFF;
    border-radius: 36px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.advantages__item>img {
    width: 75px;
    height: 75px;
    border-radius: 36px 36px 0 0;
}

.advantages__item-icon {
    display: flex;
    justify-content: center;
    width: 165px;
}

.advantages__item-content {
    height: 130px;
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.advantages__item-title {
    font-family: 'Montserrat Alternates SemiBold';
    font-size: 18px;
    color: black;
}

.advantages__item-description {
    width: 95%;
    font-family: 'Montserrat Alternates Regular';
    font-size: 14px;
    color: black;
}

/* .advantages__item-footer {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 7% 7%;
}

.advantages__item-price {
    font-family: 'Montserrat Alternates Medium';
    color: black;
    font-size: 15px;
    text-decoration: underline;
} */

/* Футер */

/* Основные стили футера */
.footer-minimal {
    background: #2C3E50;
    /* Тёмно-синий фон */
    color: white;
    padding: 30px 0 20px;
    border-top: 3px solid #D4AF37;
    /* Золотая полоска сверху */
}

.footer-minimal .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Верхняя часть футера */
.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Блок с логотипом */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand img {
    height: 40px;
    width: auto;
}

.footer-brand span {
    font-size: 20px;
    font-weight: 600;
    color: #D4AF37;
    /* Золотой цвет для названия */
    letter-spacing: 0.5px;
}

/* Контакты */
.footer-contact {
    display: flex;
    gap: 25px;
    align-items: center;
}

.footer-contact a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 4px;
}

.footer-contact a:hover {
    color: #D4AF37;
    /* Золотой при наведении */
    background: rgba(212, 175, 55, 0.1);
}

.footer-contact a:first-child {
    padding: 8px 16px;
    border-radius: 4px;
}

.footer-contact a:first-child:hover {
    background: rgba(212, 175, 55, 0.2);
}

/* Нижняя часть футера */
.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-bottom p {
    margin: 8px 0;
}

.footer-bottom a {
    color: #D4AF37;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #ffd166;
    /* text-decoration: underline; */
}

/* Дисклеймер */
.footer-bottom .disclaimer {
    margin-top: 15px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom .disclaimer small {
    font-size: 12px;
}

/* Дополнительные эффекты */
.footer-minimal {
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.footer-minimal a {
    position: relative;
}

.footer-minimal a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #D4AF37;
    transition: width 0.3s ease;
}

.footer-minimal a:hover:after {
    width: 100%;
}

/* Адаптивность */

/* ===== АДАПТИВНОСТЬ (desktop-first) ===== */

@media (max-width: 2560px) {

    
    .production__banner {
        width: 95%;
        padding: 50px 60px;
    }
}

@media (max-width: 1440px) {
    .production__banner {
        padding: 40px 50px;
    }
}

/* Планшеты и небольшие ноутбуки (до 1200px) */
@media (max-width: 1200px) {
    .production__banner {
        width: 90%;
        padding: 30px 40px;
    }
    
    .production__title {
        font-size: 42px;
    }
    
    .advantages__item {
        width: 90%;
    }
}

/* Планшеты (до 992px) */
@media (max-width: 992px) {
    .production__banner {
        width: 95%;
        padding: 25px 50px;
    }
    
    .production__left {
        width: 100%;
        padding-bottom: 4%;
        box-sizing: border-box;
    }
    
    .production__title {
        font-size: 36px;
    }
    
    .production__image {
        max-height: 300px;
    }
    
    .advantages__item {
        flex-direction: column;
        height: auto;
        padding: 30px 20px;
    }
    
    .advantages__item-icon {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .advantages__item-content {
        height: auto;
        width: 100%;
        gap: 10px;
    }
    
    .advantages__item-description {
        width: 100%;
    }
}

/* Планшеты и большие телефоны (до 768px) */
@media (max-width: 768px) {
    .header {
        padding: 10px 0;
    }
    
    .header__container {
        flex-direction: column;
        gap: 15px;
    }
    
    .header__logo {
        width: 50px;
        height: 50px;
    }
    
    .nav {
        gap: 30px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav__link {
        font-size: 16px;
    }
    
    .hero__container {
        padding: 60px 20px;
        width: 100%;
        align-items: center;
        text-align: center;
    }
    
    .hero__title {
        font-size: 32px;
    }
    
    .hero__subtitle {
        font-size: 24px;
    }
    
    .hero__description {
        font-size: 15px;
        margin-bottom: 40px;
        max-width: 100%;
    }
    
    .hero__buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    /* .button {
        width: 200px;
        padding: 12px 20px;
    } */
    
    .production {
        padding: 40px 0;
    }
    
    .production__banner {
        width: 95%;
        padding: 20px;
        margin-top: 20px;
    }
    
    .production__title {
        font-size: 28px;
    }
    
    .production__subtitle {
        font-size: 14px;
    }
    
    .product-price .current {
        font-size: 24px;
    }
    
    .catalog__title,
    .health__title,
    .advantages__title {
        font-size: 32px;
    }
    
    .catalog__subtitle,
    .health__subtitle,
    .advantages__subtitle {
        font-size: 16px;
        padding: 0 15px;
    }
    
    .catalog__grid,
    .health__grid {
        gap: 30px;
        padding: 30px 0 50px;
    }
    
    .catalog__item,
    .health__item {
        width: 45%;
        height: auto;
        min-height: 390px;
    }
    
    .catalog__item > img,
    .health__item > img {
        height: 200px;
    }
    
    .catalog__item-title,
    .health__item-title {
        font-size: 20px;
        padding: 15px 10px;
        min-height: 70px;
    }

    .health__item-time {
        padding: 0 10px;
        font-size: 16px;
    }
    
    .catalog__item-description,
    .health__item-description {
        font-size: 14px;
        padding: 0 10px;
        min-height: 80px;
    }
    
    .catalog__item-footer,
    .health__item-footer {
        padding: 15px 10px;
    }
    
    .advantages__item {
        width: 95%;
    }
    
    .advantages__item-title {
        font-size: 18px;
    }
    
    .advantages__item-description {
        font-size: 14px;
    }
    
    /* Футер */
    .footer-minimal {
        padding: 30px 0 20px;
    }
    
    .footer-main {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .footer-contact {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-brand {
        justify-content: center;
    }
    
    .footer-brand span {
        font-size: 18px;
    }
}

/* Телефоны (до 576px) */
@media (max-width: 576px) {
    .header__logo {
        width: 45px;
        height: 45px;
    }
    
    .nav {
        gap: 15px;
    }
    
    .nav__link {
        font-size: 14px;
    }
    
    .hero__container {
        padding: 40px 15px;
    }
    
    .hero__title {
        font-size: 28px;
    }
    
    .hero__subtitle {
        font-size: 20px;
    }
    
    .hero__description {
        font-size: 14px;
    }
    
    .production__title {
        font-size: 24px;
    }
    
    .production__image {
        max-height: 200px;
    }
    
    .catalog__grid,
    .health__grid {
        flex-direction: column;
        align-items: center;
    }
    
    .catalog__item,
    .health__item {
        width: 90%;
        max-width: 350px;
        padding: 5%;
    }
    
    .catalog__title,
    .health__title,
    .advantages__title {
        font-size: 28px;
    }
    
    .advantages__list {
        gap: 20px;
    }
    
    .advantages__item {
        padding: 20px 15px;
    }
    
    .advantages__item-icon > img {
        height: 50px;
    }
    
    /* .button {
        width: 180px;
        padding: 10px 15px;
        font-size: 13px;
    } */
    
    .button--more {
        width: 120px;
        height: 35px;
        font-size: 13px;
    }
}

/* Маленькие телефоны (до 375px) */
@media (max-width: 375px) {
    .header__logo {
        width: 40px;
        height: 40px;
    }
    
    .nav {
        gap: 10px;
    }
    
    .nav__link {
        font-size: 13px;
    }
    
    .hero__container {
        padding: 30px 10px;
    }
    
    .hero__title {
        font-size: 24px;
    }
    
    .hero__subtitle {
        font-size: 18px;
    }
    
    .hero__description {
        font-size: 13px;
        margin-bottom: 30px;
    }
    
    .hero__buttons {
        width: 100%;
    }
    
    /* .button {
        width: 160px;
        padding: 8px 12px;
        font-size: 12px;
    } */
    
    .production__banner {
        padding: 15px;
    }
    
    .production__title {
        font-size: 22px;
    }
    
    .production__subtitle {
        font-size: 13px;
    }
    
    .production__image {
        max-height: 180px;
    }
    
    .product-price .current {
        font-size: 22px;
    }
    
    .catalog__title,
    .health__title,
    .advantages__title {
        font-size: 24px;
    }
    
    .catalog__subtitle,
    .health__subtitle,
    .advantages__subtitle {
        font-size: 14px;
    }
    
    .catalog__item,
    .health__item {
        width: 95%;
    }
    
    .catalog__item > img,
    .health__item > img {
        height: 160px;
    }
    
    .catalog__item-title,
    .health__item-title {
        font-size: 18px;
        min-height: 60px;
    }
    
    .catalog__item-description,
    .health__item-description {
        font-size: 13px;
        min-height: 70px;
    }

    .health__item-time {
        font-size: 12px;
        padding: 0 5px;
    }
    
    .catalog__item-price,
    .health__item-price {
        font-size: 14px;
    }
    
    .advantages__item-title {
        font-size: 16px;
    }
    
    .advantages__item-description {
        font-size: 13px;
    }
    
    .swiper-button-prev,
    .swiper-button-next {
        width: 25px;
        height: 35px;
    }
    
    .footer-contact a {
        font-size: 14px;
        padding: 6px 10px;
    }
    
    .footer-brand span {
        font-size: 16px;
    }
    
    .footer-bottom {
        font-size: 12px;
    }
}

/* Очень маленькие телефоны (до 320px) */
@media (max-width: 320px) {
    .header__logo {
        width: 35px;
        height: 35px;
    }
    
    .nav {
        gap: 8px;
    }
    
    .nav__link {
        font-size: 12px;
    }
    
    .hero__title {
        font-size: 22px;
    }
    
    .hero__subtitle {
        font-size: 16px;
    }
    
    .hero__description {
        font-size: 12px;
    }
    
    .hero__buttons {
        gap: 10px;
    }
    
    /* .button {
        width: 160px;
        padding: 8px 10px;
        font-size: 11px;
        height: 40px;
    } */
    
    .production__title {
        font-size: 20px;
    }
    
    .production__image {
        max-height: 150px;
    }
    
    .catalog__title,
    .health__title,
    .advantages__title {
        font-size: 22px;
    }
    
    .catalog__subtitle,
    .health__subtitle,
    .advantages__subtitle {
        font-size: 13px;
    }
    
    .catalog__item,
    .health__item {
        width: 100%;
    }
    
    .catalog__item > img,
    .health__item > img {
        height: 150px;
    }
    
    .catalog__item-title,
    .health__item-title {
        font-size: 16px;
        padding: 10px 5px;
    }
    
    .catalog__item-description,
    .health__item-description {
        font-size: 12px;
        padding: 0 5px;
        -webkit-line-clamp: 4;
    }
    
    .advantages__item {
        padding: 15px 15px;
    }
    
    .advantages__item-icon > img {
        height: 40px;
    }
    
    .advantages__item-title {
        font-size: 15px;
    }
    
    .advantages__item-description {
        font-size: 12px;
    }
    
    .swiper-button-prev,
    .swiper-button-next {
        width: 20px;
        height: 30px;
    }
    
    .footer-contact a {
        font-size: 13px;
        padding: 5px 8px;
    }
    
    .footer-bottom {
        font-size: 11px;
    }
    
    .footer-bottom .disclaimer small {
        font-size: 10px;
    }
}

/* ===== ЭФФЕКТ ФОНА ДЛЯ ЭКРАНОВ ОТ 1200px ДО 2559px ===== */
@media (min-width: 1200px) and (max-width: 2559px) {
    body {
        background-image: url('/assets/images/background.png');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        position: relative;
    }
    
    /* Затемнение + блюр */
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(3px);
        z-index: -1;
        pointer-events: none;
    }
    
    /* Шум/текстура */
    body::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJmIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iLjc0IiBudW1PY3RhdmVzPSIzIiAvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbHRlcj0idXJsKCNmKSIgb3BhY2l0eT0iMC4xIiAvPjwvc3ZnPg==');
        opacity: 0.1;
        pointer-events: none;
        z-index: -1;
    }
    
    /* Контент поверх фоновых слоёв */
    .header, .hero, .production, .catalog, .health, .advantages, .footer-minimal {
        position: relative;
        z-index: 1;
    }
}

/* ===== ДЛЯ 4K ЭКРАНОВ (2560px И БОЛЬШЕ) ===== */
@media (min-width: 2560px) {
    body {
        /* Градиентный фон (он будет использоваться) */
        /* background-image: 
            radial-gradient(circle at 20% 30%, rgba(30, 60, 80, 0.8) 0%, rgba(10, 20, 30, 0.95) 100%),
            repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 2px, transparent 2px, transparent 6px); */
        background-size: cover, auto;
        background-attachment: fixed;
        position: relative;
    }
    
    /* Затемняющий слой с блюром (усиленный для 4K) */
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(4px);
        z-index: -1;
        pointer-events: none;
    }
    
    /* Шумовая текстура */
    body::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJmIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iLjc0IiBudW1PY3RhdmVzPSIzIiAvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbHRlcj0idXJsKCNmKSIgb3BhY2l0eT0iMC4xIiAvPjwvc3ZnPg==');
        opacity: 0.15;
        pointer-events: none;
        z-index: -1;
    }
    
    /* Контент поверх */
    .header, .hero, .production, .catalog, .health, .advantages, .footer-minimal {
        position: relative;
        z-index: 1;
    }
}


/* @media (max-width: 480px) {
    .footer-minimal {
        padding: 20px 0 15px;
    }

    .footer-bottom {
        font-size: 13px;
    }

    .footer-bottom .disclaimer small {
        font-size: 11px;
    }
} */