:root {
    --primary-text-color: #301a1a;
    --gray-text-color: #7c7c7c;
}

/* Reset CSS */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: "Montserrat";
    src: url("./fonts/Montserrat/Montserrat-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Montserrat";
    src: url("./fonts/Montserrat/Montserrat-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Montserrat";
    src: url("./fonts/Montserrat/Montserrat-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Montserrat";
    src: url("./fonts/Montserrat/Montserrat-ExtraBold.woff2") format("woff2");
    font-weight: 800;
    font-style: normal;
}

html,
body {
    height: 100%;
    font-family: "Montserrat", sans-serif;
    background-color: #f2f2f2;
    color: var(--primary-text-color);
    font-size: clamp(12px, 3vw, 16px);
    line-height: 125%;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

h1 {
    font-size: clamp(20px, 4vw, 24px);
}

h2 {
    font-size: clamp(18px, 3.5vw, 22px);
}

h3 {
    font-size: clamp(16px, 3vw, 20px);
}

h4 {
    font-size: clamp(14px, 2.5vw, 18px);
}


img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

.container {
    max-width: 1470px;
    margin: 0 auto;
    padding: 0 15px;
}

.mt-94 {
    margin-top: 94px;
}

.no-gap {
    gap: 0px !important;
}

.col-1 {
    flex: 1 1 100%;
}

.col-2 {
    flex: 1 1 calc(50% - 16px);
}

.col-3 {
    flex: 1 1 calc(33.333% - 16px);
}

.col-4 {
    flex: 1 1 calc(25% - 16px);
}

.col-5 {
    flex: 1 1 calc(20% - 16px);
}

/* Button */

.btn {
    display: inline-block;
    padding: 16px;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    font-size: clamp(11px, 3.59vw, 16px);
    font-weight: 600;
    box-shadow: 0 6px 10px rgba(20, 23, 26, 0.12);
}

.btn:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.btn-transparent {
    background-color: transparent;
    border: none;
}

.btn-primary {
    background-color: #4caf50;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #3e8e41;
    text-decoration: underline;
    outline: 4px solid #ffffff;
}

.btn-primary-outline {
    background-color: #ffffff;
    color: #4caf50;
    outline: 2px solid #4caf50;
}

.btn-primary-outline:hover {
    background-color: #3e8e41;
    text-decoration: underline;
    outline: 4px solid #ffffff;
    color: #ffffff;
}

/* Background color */
.bg-white {
    background-color: #ffffff;
}

.bg-black {
    background-color: #000000;
}

.bg-gray {
    background-color: #f2f2f2;
}

.bg-green {
    background-color: #cff199;
}

.bg-blue {
    background-color: #d5ebd5;
}

.bg-yellow {
    background-color: #f1e499;
}

/* Headers font */
.h1 {
    font-size: clamp(24px, 8vw, 80px);
    font-weight: 800;
    line-height: clamp(1.2em, 3vw, 1.5em);
}

.h2 {
    font-size: clamp(20px, 6vw, 40px);
    font-weight: 800;
}

.h3 {
    font-size: clamp(18px, 5vw, 36px);
    font-weight: 700;
}

/* Header */

.header {
    background-color: #ffffff;
    box-shadow: 0px 6px 10px rgba(20, 23, 26, 0.12);
    margin-bottom: 16px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.header__container {
    max-width: 1470px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.header__logo {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    gap: 16px;
}

.header__logo img {
    width: 55px;
    height: 55px;
}

.header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 2;
}

.header__body {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
    height: 80px;
    align-items: center;
}

.header__burger {
    display: none;
}

.header__list {
    display: flex;
    position: relative;
    z-index: 2;
}

.header__list li {
    list-style: none;
    margin: 0 0 0 20px;
}

.header__link {
    color: var(--primary-text-color);
    font-size: clamp(16px, 4vw, 18px);
    font-weight: 500;
}

.header__logo-text {
    font-size: clamp(18px, 5vw, 24px);
    font-weight: 600;
    line-height: clamp(24px, 7vw, 32px);
}

.header__contacts {
    display: flex;
    align-items: center;
    z-index: 2;
    gap: 16px;
}

.header__phone {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.header__phone-icon {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.header__phone-text {
    font-size: clamp(14px, 4vw, 16px);
    font-weight: 500;
}

.header__cart {
    display: flex;
    background: #4caf50;
    border: none;
    cursor: pointer;
    padding: 16px;
    border-radius: 16px;
    gap: 10px;
}

.header__cart-icon {
    width: 20px;
    height: 20px;
}

.header__cart-count {
    background-color: #ffffff;
    font-size: 12px;
    border-radius: 20px;
    padding: 2px 6px;
}

/* Slider */
.slider {
    margin-bottom: 16px;
    /*height: min(610px, 560px);*/
}

.slider__wrapper {
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    /*height: 100%;*/
}

.slider__wrapper .slider-text,
.slider__wrapper .slider-images {
    flex: 1;
    position: relative;
}

.slider__wrapper .slider-text .swiper-slide,
.slider__wrapper .slider-images .swiper-slide {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.slider__wrapper .slider-text .swiper-slide-active,
.slider__wrapper .slider-images .swiper-slide-active {
    opacity: 1;
    visibility: visible;
}

.slider__container {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    height: 100%;
}

.slider__content {
    flex: 1;
    padding: 32px 16px 16px 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

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

.slider__title {
    font-size: clamp(21px, 6vw, 40px);
    font-weight: 600;
}

.slider__text {
    font-size: clamp(13px, 4vw, 18px);
}

.slider__button--action {
    padding: 20px 30px;
    background-color: #fff;
    color: #4caf50;
    text-decoration: none;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.slider__button--action:hover {
    background-color: #4caf50;
    color: #ffffff;
}

.slider__button a {
    text-align: center;
}

.slider__image {
    flex: 1;
    text-align: right;
    align-content: center;
    height: 100%;
}

.slider__image img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.slider__controls {
    position: absolute;
    bottom: 16px;
    right: 16px;
    display: flex;
    background-color: transparent;
    border-radius: 16px;
    outline: 2px solid #ffffff;
    z-index: 1;
}

.slider__control {
    background-color: transparent;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 20px;
}

.slider__control.swiper-button-disabled {
    opacity: 0.25;
    cursor: default;
}

.slider__control:hover {
}

.custom-pagination {
    position: absolute;
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 16px 0;
    z-index: 3;
    left: 16px;
}

.custom-pagination__item {
    background-color: var(--primary-text-color);
    border-radius: 16px;
    transition: all 0.3s ease;
    width: clamp(8px, 1.36rem, 20px);
    height: clamp(2px, 0.14rem, 4px);
    opacity: 0.25;
}

.custom-pagination__item.active {
    width: clamp(20px, 2.72rem, 35px);
    opacity: 1;
}

/* Category */
.categories {
    margin-bottom: 16px;
}

.categories__list {
    display: flex;
    gap: 16px;
    justify-content: space-between;
}

.categories__item {
    display: flex;
    flex-direction: column;
    flex: 1;
    background-color: #fff;
    border-radius: 16px;
    padding: 16px;
}

.categories__item:hover {
    outline: 4px solid #4caf50;
}

.categories__item--active {
    outline: 4px solid #4caf50;
}

.categories__icon {
    width: 55px;
    height: 55px;
    margin-bottom: 15px;
}

.categories__title {
    margin-bottom: 10px;
}

.categories__button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4caf50;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.categories__button:hover {
    background-color: #58c352;
}

/* Product slider */
.product-slider {
    margin-bottom: 16px;
}

.product-slider__container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
    border-radius: 16px;
    padding: 16px;
    overflow: hidden;
    background-color: #ffffff;
}

.product-slider__header {
}

.product-slider__title {
}

.product-slider__title span {
    color: #4caf50;
}

.product-slider__switcher {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    background-color: #f2f2f2;
    border-radius: 16px;
    padding: 4px;
}

.product-switch__item {
    flex: 1;
    padding: 20px;
    text-align: center;
    font-size: clamp(11px, 2vw, 16px);
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-switch__item:hover {
    background-color: #ffffff;
    border-radius: 16px;
}

.product-switch__item--active {
    background-color: #ffffff;
    border-radius: 16px;
}

.product-slider__items {
    margin-bottom: 16px;
    display: flex;
    gap: 10px;
}

.product-slider__items .swiper-slide {
    width: auto;
}

.product-slider__item {
    width: min(270px, 248px);
    margin-right: min(9px, 10px);
    outline: 2px solid #f2f2f2;
    border-radius: 16px;
    overflow: hidden;
}

.product-slider__image {
    overflow: hidden;
}

.product-slider__image img {
    width: 100%;
    height: auto;
    transform: scale(1.1);
}

.product-slider__info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
}

.product-slider__price {
    font-size: 24px;
    font-weight: 600;
}

.product-slider__price span {
    font-size: 16px;
    font-weight: 600;
}

.product-slider__name {
}

.product-slider__description {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.product-slider__category {
    color: var(--gray-text-color);
}

.product-slider__detail {
    display: flex;
    justify-content: space-between;
    align-items: end;
    white-space: nowrap;
}

.product-slider__name {
    font-size: clamp(12px, 4vw, 18px);
    font-weight: 500;
    color: #110f0f;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
}

.product-slider__weight {
    font-size: 18px;
    font-weight: 600;
    color: #978c8c;
}

.product-slider__button {
    display: inline-block;
    padding: 20px;
    background-color: #ffffff;
    color: #110f0f;
    border: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 6px 10px rgba(20, 23, 26, 0.12);
    transition: background-color 0.3s ease;
}

.product-slider__button:hover {
    background-color: #4caf50;
    color: #ffffff;
    text-decoration: underline;
    outline: 4px solid #ffffff;
}

.product-slider__controls {
    display: flex;
    gap: 2px;
    background-color: #f2f2f2;
    border-radius: 16px;
    overflow: hidden;
    outline: 2px solid #f2f2f2;
}

.product-slider__prev,
.product-slider__next {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    border: none;
    background-color: #ffffff;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-slider__prev:hover,
.product-slider__next:hover {
    background-color: #f0f0f0;
}

.product-slider__prev svg,
.product-slider__next svg {
    opacity: 1;
}

.product-slider__prev.swiper-button-disabled,
.product-slider__next.swiper-button-disabled {
    opacity: 0.25;
    cursor: default;
    background-color: #f5f5f5;
}

.product-slider__control:nth-child(3) {
    padding: 0 20px;
}

/* About */
.about {
    margin-bottom: 16px;
}

.about__container {
    border-radius: 16px;
    overflow: hidden;
}

.about__info {
    display: flex;
    flex-direction: row;
}

.about--reversed {
    flex-direction: row-reverse;
}

.about__image {
    position: relative;
    min-width: 50%;
    overflow: hidden;
}

.about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__brand {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    color: #fff;
    font-size: clamp(20px, 5vw, 40px);
    font-weight: 800;
}

.about__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px;
}

.about__description {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about__title {
    font-size: clamp(20px, 6vw, 40px);
    font-weight: 800;
}

.about__title span {
    color: #4caf50;
}

.about__text {
    font-size: clamp(13px, 2vw, 18px);
}

.about__header {
    font-size: clamp(20px, 6vw, 40px);
    font-weight: 800;
    padding: 16px;
}

.about__header span {
    color: #4caf50;
}

/* Stats */
.stats {
    margin-bottom: 16px;
}

.stats__container {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    border-radius: 16px;
    overflow: hidden;
}

.stats__item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
}

.stats__item img {
    width: 55px;
    height: 55px;
}

.stats__text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    height: 100%;
}

.stats__value {
    font-size: clamp(52px, 6vw, 80px);
    font-weight: 700;
}

.stats__value--middle {
    font-size: clamp(22px, 4vw, 40px);
}

.stats__description {
    font-size: clamp(15px, 1.5vw, 18px);
    font-weight: 500;
}

.stats__description--middle {
    font-size: clamp(13px, 2vw, 18px);
}

/* News */
.news {
    margin-bottom: 16px;
}

.news__container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
    border-radius: 16px;
    overflow: hidden;
}

.news__header span {
    color: #4caf50;
}

.news__list {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.news__list .swiper-slide {
    height: auto;
}

.news__item {
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    outline: 1px solid #f2f2f2;
    height: 100%;
}

.news__item:hover {
    box-shadow: 0 6px 10px rgba(20, 23, 26, 0.12);
    outline: 4px solid #4caf50;
}

.news__image {
    width: 100%;
    height: auto;
}

.news__date {
    font-size: 14px;
    color: var(--gray-text-color);
    margin: 8px 16px 0;
}

.news__subtitle {
    font-size: 16px;
    font-weight: 600;
    margin: 8px 16px 16px;
}

/* Social */
.social {
    margin-bottom: 16px;
}

.social_container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
    border-radius: 16px;
    overflow: hidden;
}

.social__header span {
    color: #4caf50;
}

.social__list {
    gap: 16px;
    flex-wrap: wrap;
    align-items: stretch;
    display: flex;
    flex-direction: row;
    flex-shrink: 0;
    position: relative;
}

.social__item {
    display: block;
    width: 100%;
    position: relative;
    outline: 2px solid #cecece;
    border-radius: 16px;
    overflow: hidden;
}

.item-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6); /* Полупрозрачный фон */
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none; /* Отключаем кликабельность на скрытом состоянии */
}

.social__item:hover .item-hover {
    opacity: 1; /* Показываем при наведении */
}

.item-inner {
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;
}

.likes, .comments {
    font-size: 28px;
    font-weight: bold;
    margin: 0 5px;
    display: flex;
    align-items: center;
}

.likes {
    color: #ff5a5f; /* Цвет для лайков */
}

.comments {
    color: #ffffff; /* Цвет для комментариев */
}

.likes span, .comments span {
    margin-right: 5px; /* Расстояние между иконкой и текстом */
}

.social__item:hover {
}

.social__item a {
    display: block;
    overflow: hidden;
    padding-bottom: 133.33%;
    position: relative;
}

.social__image {
    object-fit: cover;
    left: 0;
    width: 100%;
    height: 100%;
    top: 0;
    position: absolute;
    transition: transform 0.3s ease;
}

.social__item:hover .social__image {
    transform: scale(1.1); /* Увеличение изображения при наведении */
}

.video {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px;
    border-radius: 50%;
}

.video i {
    color: #fff;
    font-size: 18px;
}

.social__link {
    text-align: center;
}

/* Seeds */
.seeds {
    margin-bottom: 16px;
}

.seeds__container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
    border-radius: 16px;
    overflow: hidden;
}

.seeds__header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 32px;
    align-items: center;
}

.seeds__header span {
    color: #4caf50;
}

.seeds__switcher {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    flex: 1;
    background-color: #f2f2f2;
    border-radius: 16px;
    padding: 4px;
}

.seeds__item {
    padding: 20px;
    text-align: center;
    font-size: clamp(11px, 2vw, 16px);
    font-weight: 600;
    transition: all 0.3s ease;
}

.seeds__item:hover {
    background-color: #ffffff;
    border-radius: 16px;
    cursor: pointer;
}

.seeds__item--active {
    background-color: #ffffff;
    border-radius: 16px;
}

.seeds__wrapper {
    display: flex;
    flex-direction: column;
    gap: 2px;
    outline: 2px solid #f2f2f2;
    border-radius: 16px;
    overflow: hidden;
}

.seeds__categories {
    display: flex;
    gap: 2px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.seeds__category {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 120px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.seeds__category--active {
    background-color: #d5ebd5;
}

.seeds__category:hover {
    background-color: #d5ebd5;
}

.seeds__category-title {
    font-size: clamp(11px, 2vw, 16px);
    font-weight: 600;
    text-align: center;
}

.seeds__controls {
    display: flex;
    gap: 2px;
    outline: 2px solid #f2f2f2;
}

.seeds__control {
    border: none;
    cursor: pointer;
}

.seeds__control.swiper-button-disabled {
    opacity: 0.25;
    cursor: default;
}

.seeds__prev,
.seeds__next {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    background-color: #ffffff;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.seeds__products {
    display: flex;
    flex-direction: row;
    padding: 16px;
}

.seeds__product {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex: 1;
}

.seeds__product-image {
    border-radius: 8px;
    overflow: hidden;
}

.seeds__product-image img {
    max-width: 320px;
    height: auto;
}

.seeds__product-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.seeds__product-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.seeds__product-title {
    font-size: clamp(20px, 6vw, 32px);
    font-weight: 800;
}

.seeds__product-title span {
    font-size: 16px;
    color: var(--gray-text-color);
    font-weight: 400;
    white-space: nowrap;
}

.seeds__product-code {
    font-size: 16px;
    color: var(--gray-text-color);
}

.seeds__product-info {
    display: flex;
    flex-direction: row;
    gap: 32px;
    height: 100%;
}

.seeds__product-description {
    position: relative;
    max-width: 600px; /* Максимальная ширина контейнера */
}

.seeds__product-description-content {
    position: relative;
    max-height: 200px; /* Высота для свернутого состояния */
    overflow: hidden; /* Прячем текст за границами */
    transition: max-height 0.3s ease; /* Плавный переход */
}

.seeds__product-description-content::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50px;
    transition: opacity .3s ease;
    opacity: 1;
    background: linear-gradient(to bottom, #fff0, #fff);
    pointer-events: none;
}

.seeds__product-description.expanded .seeds__product-description-content {
    max-height: 100%; /* Большое значение для развёрнутого состояния */
}

.seeds__product-description.expanded .seeds__product-description-content::after {
    opacity: 0;
}

.seeds__product-toggle-description {
    margin-top: 10px;
    background: none;
    border: none;
    cursor: pointer;
    display: none;
}

.seeds__product-toggle-description:hover {
    text-decoration: underline;
}

.quantity_plus_minus {
    display: inline-flex;
    padding: 16px;
    gap: 10px;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 10px rgba(20, 23, 26, 0.12);
    align-items: center;
}

.add-down, .add-up {
    color: var(--primary-text-color);
    cursor: pointer;
    background: none;
    border: none;
}

.add-down:disabled, .add-up:disabled {
    cursor: not-allowed;
    opacity: 0.2;
}

.quantity-num {
    border: none;
    background-color: transparent;
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-text-color);
    width: 80px;
    text-align: center;
}

.seeds__product-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: space-between;
}

.seeds__product-properties-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.seeds__product-properties__title {
    font-size: clamp(13px, 2vw, 18px);
    font-weight: 600;
}

.seeds__product-properties {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.seeds__product-property__item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: clamp(12px, 2vw, 16px);
}

.seeds__product-property__label {
    color: var(--gray-text-color);
}

.seeds__product-property__label,
.seeds__product-property__value {
    flex: 1;
}

.seeds__product-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
    justify-content: flex-start;
}

.seeds__product-price {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.seeds__product-price-info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.seeds__product-price-details {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 10px;
}

.seeds__product-price-amount {
    font-size: clamp(21px, 3vw, 26px);
    font-weight: 600;
    line-height: 20px;
}

.seeds__product-price-amount span {
    font-size: clamp(13px, 3vw, 16px);
    font-weight: 600;
}

.seeds__product-package {
    font-size: clamp(11px, 3vw, 16px);
}

.seeds__product-price-unit {
    font-size: clamp(13px, 3vw, 16px);
    line-height: 14px;
}

.seeds__product-actions {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.seeds__product-actions button {
    flex: 1;
}

.seeds__product-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.seeds__product-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-basis: calc(100% / 4 - 8px);
}

.seeds__product-icon-image {
    width: 55px;
    height: 55px;
}

.seeds__product-icon-text {
    white-space: normal;
}

/* Testimonials */
.testimonials {
    margin-bottom: 16px;
}

.testimonials__container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
    border-radius: 16px;
    overflow: hidden;
}

.testimonials__header span {
    color: #4caf50;
}

.testimonials__list {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.testimonials__list .swiper-slide {
    height: auto;
}

.testimonials__item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    outline: 2px solid #f2f2f2;
    padding: 16px;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
}

.testimonials__product-info {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
}

.testimonials__info {
}

.testimonials__author {
    font-size: 16px;
    font-weight: 500;
}

.testimonials__rating {
    display: flex;
    gap: 4px;
}

.testimonials__star {
    font-size: 16px;
    color: #cbc6c6;
}

.testimonials__star--filled {
    color: #f1e499;
}

.testimonials__text {
    font-size: 14px;
}

.testimonials__controls {
    display: flex;
    gap: 2px;
    outline: 2px solid #f2f2f2;
    border-radius: 16px;
    overflow: hidden;
}

.testimonials__prev,
.testimonials__next {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    border: none;
    background-color: #ffffff;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.testimonials__prev:hover,
.testimonials__next:hover {
    background-color: #f0f0f0;
}

.testimonials__prev svg,
.testimonials__next svg {
    opacity: 1;
}

.testimonials__prev.swiper-button-disabled,
.testimonials__next.swiper-button-disabled {
    opacity: 0.25;
    cursor: default;
    background-color: #f5f5f5;
}

/* Footer */
.footer {
    margin-bottom: 16px;
}

.footer__container {
    display: flex;
    flex-direction: row;
    gap: 2px;
    border-radius: 16px;
    overflow: hidden;
}

.footer__item-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2px;
    height: 100%;
}

.footer__item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-basis: calc(100% / 3);
}

.footer__logo {
    display: flex;
    align-items: center;
    padding: 16px;
}

.footer__logo-image {
    width: 55px;
    height: 55px;
    margin-right: 10px;
}

.footer__logo-text {
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
}

.footer__info {
    display: flex;
    flex-direction: column;
    padding: 16px;
    gap: 16px;
}

.footer__awards {
    display: flex;
    gap: 16px;
}

.footer__links {
    display: flex;
    flex-direction: column;
}

.footer__navigation,
.footer__subscribe,
.footer__contacts,
.footer__social {
    padding: 16px;
    height: 100%;
}

.footer__nav .footer__menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer__menu-item {
    font-weight: 500;
}

.footer__menu-link {
    display: flex;
    text-decoration: none;
    align-items: center;
    gap: 5px;
}

.footer__menu-link img {
    width: 20px;
    height: 20px;
}

.footer__subscribe-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    gap: 16px;
}

.footer__subscribe-title {
    font-size: 14px;
    font-weight: 500;
}

.footer__subscribe-form {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer__subscribe-form__wrapper {
    display: flex;
    border: 2px solid #f2f2f2;
    border-radius: 8px;
    overflow: hidden;
    flex: 1;
}

.footer__subscribe-form__input {
    flex: 1;
    padding: 16px;
    border: none;
    outline: none;
}

.footer__subscribe-form__input::placeholder {
    color: #978c8c;
}

.footer__subscribe-form__button {
    background-color: transparent;
    color: #978c8c;
    border: none;
    padding: 16px;
    cursor: pointer;
}

.footer__social-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.footer__social-list {
    display: flex;
    gap: 10px;
}

.footer__social-link {
    padding: 16px;
    border-radius: 8px;
    outline: 2px solid #f2f2f2;
}

/* Popup cart */
#cart .cart-popup {
    position: absolute;
    top: 110%;
    right: 0;
    background-color: #fff;
    width: min(49.66rem, 730px);
    border-radius: 16px;
    box-shadow: 0 6px 10px rgba(20, 23, 26, 0.12);
    height: calc(100svh - min(6.26rem, 77px) - min(1.36rem, 20px));
}

.cart__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #f2f2f2;
}

.cart__title-left {
    display: flex;
    gap: 10px;
    align-items: end;
    padding: 15px;
}

.cart__title-right {
    padding: 8px;
}

.cart-popup__close {
    background-color: #f2f2f2;
    border: none;
    padding: 12px;
    cursor: pointer;
    fill: #BDBDBD;
    border-radius: 50%;
}

.cart__title-text {
    font-size: min(1.72rem, 40px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-text-color);
}

.cart__title-count {
    font-size: min(1.12rem, 26px);
    font-weight: 500;
    color: var(--gray-text-color);
}

.cart__items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 8px;
    flex-grow: 1;
    overflow-y: auto;
    position: relative;
    scrollbar-width: none;
}

.cart__item {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    padding: 8px;
    border-radius: 16px;
    background-color: #f2f2f2;
}

.cart__item-image {
    height: min(10.88rem, 160px);
    width: min(10.88rem, 160px);
}

.cart__item-thumb {
    display: block;
    max-height: min(10.88rem, 160px);
    width: 100%;
    mix-blend-mode: multiply;
}

.cart__item-info {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex: 1;
    gap: 16px;
}

.cart__item-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.cart__item-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cart__item-category {
    color: var(--gray-text-color);
}

.cart__item-name {
    font-size: min(1.22rem, 18px);
    line-height: 1.22;
    font-weight: 500;
}

.cart__item-details {
    display: flex;
    gap: 32px;
}

.cart__item-price {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cart__item-total {
    font-size: min(1.77rem, 26px);
    font-weight: 500;
    line-height: 1.15;
}

.cart__item-total .cs-currency {
    font-size: min(1.09rem, 16px);
    line-height: 1.25;
}

.cart__item-unit-price {
    color: var(--gray-text-color);
    font-size: min(.95rem, 14px);
}

.cart__item-details .remove {
    cursor: pointer;
}

.cart__item-details .remove:hover svg {
    fill: var(--primary-text-color);
}

.cart__items-wrapper {
    display: flex;
    flex-flow: column;
    flex-grow: 1;
    height: 1px;
    justify-content: space-between;
}

.cart-popup__item {
    display: flex;
    flex-flow: column;
    height: 100%;
    overflow: hidden;
}

.cart__totals {
    border-top: 1px solid #f2f2f2;
}

.cart__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    font-size: min(1.77rem, 26px);
    font-weight: 500;
    line-height: 1.15;
}

.cart__total-title {

}

.cart__total-text {
    font-weight: 700;
}

.form-container {
    margin: 10px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    border: 1px solid #00a046;
    border-radius: 16px;
}

.form-container__title {
    margin: 16px 0 32px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-container__title-top {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: clamp(18px, 3.5vw, 22px);
    font-weight: bold;
}

.form-container__title-bottom {

}

.form-container__row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex: 1;
}

.form-container__field {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.form-container__label {
    position: absolute;
    left: 0;
    top: -10px;
    padding: 0 4px;
    color: #000000;
    font-weight: bold;
    pointer-events: none;
    transition: all 0.2s ease;
    background: white;
    z-index: 1;
}

.form-container__label .req {
    color: red;
    font-weight: bold;
}

.form-container__input {
    width: 100%;
    padding: 10px 12px;
    font-size: 16px;
    border: 2px solid #cecece;
    border-radius: 16px;
    outline: none;
    background-color: #ffffff;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-container__input:hover,
.form-container__input:focus {
    border-color: #4caf50;
    box-shadow: 0 1px 4px rgba(76, 175, 80, 0.4);
}

.form-container__input::placeholder {
    color: #595959 !important;
    opacity: 1;
}

.form-container__input::-webkit-input-placeholder {
    color: #595959 !important;
    opacity: 1;
}

.form-container__input:-ms-input-placeholder {
    color: #595959 !important;
    opacity: 1;
}

.form-container__input::-ms-input-placeholder {
    color: #595959 !important;
    opacity: 1;
}

.form-container__input::-moz-placeholder {
    color: #595959 !important;
    opacity: 1;
}

.form-container__button-wrapper {
    flex-basis: 100%;
}

.form-container__button {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 16px;
    cursor: pointer;
}

.form-container__info {
    font-size: clamp(11px, 3vw, 13px);
    font-weight: bold;
    color: #717186;
    text-align: center;
}

.error_input {
    border-color: #f43b2f;
    box-shadow: 0 0 0 4px rgba(244, 59, 47, .32);
}

.help.is-danger {
    color: #f43b2f;
    font-weight: 500;
    font-size: clamp(11px, 1vw, 14px);
}

.help.is-danger::before {
    content: "!";
    display: inline-block;
    background-color: #f43b2f;
    color: #fff;
    font-weight: bold;
    font-size: 10px;
    width: 16px;
    height: 16px;
    text-align: center;
    line-height: 16px;
    border-radius: 50%;
    margin-right: 8px;
}

/* Modal Style */
.overlay, .modal {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

html.is-modal-open .overlay,
.modal.is-visible {
    opacity: 1;
    visibility: visible;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    background: hsla(0, 6%, 6%, .64);
    inset: 0;
    z-index: 10;
}

html.is-modal-open {
    overflow: hidden;
}

/* Cart Preloader */
#cart-preloader {
    display: none;
    position: absolute;
    z-index: 100;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cart-overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background: hsla(0, 0%, 100%, .64);
    inset: 0;
    z-index: 10;
    border-radius: 16px;
}

/* Основной стиль для модального окна */
#modal-addorder {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1050; /* Убедитесь, что оно будет поверх других элементов */
    background: #fff;
    min-width: 320px;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* Анимация появления */
#modal-addorder.is-visible {
    opacity: 1;
}

/* Стили для диалогового окна */
.modal-dialog {
    max-width: 500px;
    width: 100%;
}

/* Стили для контента модального окна */
.modal-content {
    background: #fff;
    border-radius: 8px;
    padding: 16px;
    border: none;
}

/* Блок с текстом и иконкой */
.cs-modal-success {
    text-align: center;
}

.success-icon {
    width: 80px;
    margin-bottom: 20px;
}

/* Текстовое сообщение */
.text-modal-block {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 20px;
}

/* Кнопка закрытия */
button.close {
    background: none;
    border: none;
    font-size: 30px;
    color: #888;
    position: absolute;
    top: 0;
    right: 10px;
    cursor: pointer;
}

button.close:hover {
    color: #333;
}

/* CALLBACK */
#popup-callback {
    background: #fff none repeat scroll 0 0;
    margin: 0 auto;
    min-height: 100px;
    position: relative;
    width: 98%;
    border-radius: 16px;
    overflow: hidden;
    padding: 16px;
}

#popup-callback .mfp-close {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 25px;
    height: 25px;
    cursor: pointer;
    z-index: 1060;
    border: 1px solid #ececec;
    border-radius: 50%;
    font-size: 16px;
    line-height: 23px;
    text-align: center;
    color: #BDBDBD;
    padding: 0;
    background-color: #f2f2f2;
}

#popup-callback .popup-heading {
    margin: 0;
    padding: 0;
    font-size: min(1.5rem, 26px);
    font-weight: bold;
    line-height: 1.2;
}

#popup-callback .popup-center {
    display: block;
    overflow: hidden;
    padding-top: 25px;
    position: relative;
    width: 100%;
}

#popup-callback .popup-contact {
    border-radius: 12px;
    border: 1px solid #f4f4f4;
    width: 100%;
    display: block;
    overflow: hidden;
    margin-top: 25px;
    margin-bottom: 10px;
    padding: 20px;
}

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

#popup-callback .form-control {
    width: 100%;
    padding: 12px 20px;
    font-size: 16px;
    border: 1px solid #f2f2f2;
    height: 46px;
    border-radius: 16px;
    outline: none;
    background-color: transparent;
    transition: border-color 0.3s, box-shadow 0.3s;
}

#popup-callback .form-control:focus {
    border-color: #4caf50;
    box-shadow: 0 1px 4px rgba(76, 175, 80, 0.4);
}

#popup-callback .form-control.start {
    border: 1px solid #f4f4f4 !important;
    border-radius: 12px;
}

#popup-callback .input-group-addon {
    background: #fff;
    border-width: 1px 1px 1px 0;
    border-style: solid;
    border-color: #f4f4f4;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    position: relative;
    min-width: 54px;
}

#popup-callback .input-group-addon::before {
    content: '';
    position: absolute;
    top: 9px;
    bottom: 9px;
    left: 0;
    border-left: 1px solid #f4f4f4;
}

#popup-callback .form-group.sections_block_rquaired .input-group:before {
    content: "*";
    position: absolute;
    left: 10px;
    top: 50%;
    color: red;
    width: 8px;
    height: 14px;
    z-index: 9;
    margin-top: -12px;
}

.error_input:-moz-placeholder {
    color: red !important;
}

.error_input::-moz-placeholder {
    color: red !important;
    opacity: 1
}

.error_input:-ms-input-placeholder {
    color: red !important;
}

.error_input::-webkit-input-placeholder {
    color: red !important;
}


#popup-callback.wcb-4 {
    max-width: 400px;
}

#popup-callback.wcb-5 {
    max-width: 500px;
}

#popup-callback .btn-callback:focus,
#popup-callback .btn-callback {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%;
    background: #00BC52;
    border: 0;
    border-radius: 12px;
    color: #ffffff;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 0;
    padding: 12px 24px;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    overflow: hidden;
}

#popup-callback .btn-callback:hover,
#popup-callback .btn-callback:active {
    background: #04A349;
    color: #ffffff;
}

#popup-callback .btn-callback.disabled, #popup-callback .btn-callback[disabled], fieldset[disabled] #popup-callback .btn-callback {
    cursor: not-allowed;
    pointer-events: none;
    opacity: .65;
}

#popup-callback .form-control.time_callback {
    width: 50%;
}

#popup-success-callback {
    background: #dff0d8 none repeat scroll 0 0;
    border-color: #d6e9c6;
    color: #3c763d;
    line-height: 25px;
    margin: 0 auto;
    max-width: 650px;
    min-height: 50px;
    padding: 10px 12px;
    position: relative;
    width: 90%;
}

#popup-callback .sections_block_rquaired .fa {
    color: #fc5c3c !important;
}

#popup-callback .sections_block .fa {
    color: #67ca67 !important;
}

#popup-callback .sections_block, .sections_block_rquaired {
    overflow: hidden;
    position: relative;
}

#popup-callback .btn-callback span.spinner .fa.fa-spinner {
    display: none;
}

#popup-callback .btn-callback i.fa {
    display: inline-block;
}

#popup-callback .btn-callback.active span.spinner .fa.fa-spinner {
    display: inline-block;
}

#popup-callback .btn-callback.active i.fa {
    display: none;
}
