@charset "UTF-8";
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

a,
a:link,
a:visited {
  text-decoration: none;
}

button {
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

ul,
ol,
li {
  list-style: none;
}

aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

img {
  vertical-align: top;
}

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

input[type=file] {
  max-width: 100%;
}

:root {
  --font-family: "Gotham", sans-serif;
  --second-family: "El Messiri", sans-serif;
  --accent-color: #01714b;
  --btn-color: #3a523a;
  --hover-color: #7edcf8;
  --white-color: #fff;
  --background-accent: #01714b;
}

html {
  min-height: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 400;
  background-color: #fef9f3;
  color: #000;
  overflow-x: hidden;
  height: 100%;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 1 0;
}

.page-main {
  padding-top: 150px;
}

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

.no-scroll {
  overflow: hidden;
}

.title {
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.01em;
  color: #000;
}

.call-wrap {
  border-radius: 100%;
  overflow: hidden;
  background-color: rgba(32, 211, 151, 0.3019607843);
  width: 78px;
  height: 78px;
  position: fixed;
  bottom: 40px;
  right: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 98;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.call-wrap:hover {
  animation: shake 0.4s infinite;
  box-shadow: 0 0 15px rgba(1, 113, 75, 0.4);
}

.call {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--background-accent);
}
.call svg {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

@keyframes shake {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(-10deg);
  }
  20% {
    transform: rotate(10deg);
  }
  30% {
    transform: rotate(-8deg);
  }
  40% {
    transform: rotate(8deg);
  }
  50% {
    transform: rotate(-6deg);
  }
  60% {
    transform: rotate(6deg);
  }
  70% {
    transform: rotate(-4deg);
  }
  80% {
    transform: rotate(4deg);
  }
  90% {
    transform: rotate(-2deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.header {
  background-color: var(--background-accent);
  border-radius: 0 0 40px 40px;
  overflow: hidden;
  position: fixed;
  z-index: 999;
  width: 100%;
  padding: 14px 0;
}

.header-space {
  background: var(--background-accent);
  padding-top: 101px;
}

.header__inner {
  display: flex;
  align-items: center;
}
.header__center {
  display: flex;
  align-items: center;
  width: 100%;
}
.header__nav {
  margin: 0 85px;
}
.header__list {
  display: flex;
  align-items: center;
  gap: 50px;
}
.header__link {
  position: relative;
  color: var(--white-color);
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
  padding-bottom: 5px;

}
.header__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--white-color), var(--hover-color));
  transition: width 0.3s ease;
  border-radius: 1px;
}
.header__link-active::after {
  width: 100%;
}
.header__link:hover {
  color: var(--hover-color);
}
.header__link:hover::after {
  width: 100%;
}
.header__link:active {
  transform: scale(0.91);
}
.header__lang {
  margin-left: auto;
  margin-right: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang {
  padding: 4px 7px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.23;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white-color);
  transition: 0.2s ease;
  border-radius: 10px;
  border: 0.5px solid var(--white-color);
  border-radius: 10px;
}
.lang:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
  border-color: var(--hover-color);
}
.lang.active {
  background-color: var(--white-color);
  color: var(--accent);
}

.logo {
  display: block;
}

.cart-btn-wrap {
  margin-left: auto;
}

.cart-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 25px;
  background-color: var(--white-color);
  border-radius: 10px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.11;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--accent-color);
  transition: all 0.2s ease-in;
}
.cart-btn svg {
  transition: all 0.2s ease-in;
}
.cart-btn:hover {
  background-color: var(--hover-color);
  color: var(--white-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(1, 113, 75, 0.25);
}
.cart-btn:hover svg circle {
  fill: var(--white-color);
  stroke: var(--white-color);
}
.cart-btn:hover svg path {
  stroke: var(--white-color);
}
.cart-btn:active {
  transform: scale(0.97);
  box-shadow: 0 3px 10px rgba(1, 113, 75, 0.2);
}

.cart-wrapper {
  padding: 50px 0 100px;
}

.cart-col {
  display: flex;
  align-items: start;
  gap: 30px;
  min-height: 620px;
  height: 100%;
}

.cart {
  border-radius: 30px;
  max-width: 781px;
  width: 100%;
  height: 100%;
  min-height: 620px;
  background: var(--white-color);
  padding: 50px;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.cart__title {
  margin-bottom: 30px;
}
.cart__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  overflow-x: hidden;
}
.cart__item {
  display: flex;
  justify-content: space-between;
  gap: 70px;
  padding-top: 20px;
  position: relative;
}
.cart__item::before {
  content: "";
  width: 100%;
  display: block;
  height: 0.5px;
  background-color: #000;
  opacity: 0.2;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
}
.cart__link {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
  position: relative;
}
.cart__image {
  border-radius: 10px;
  width: 120px;
  height: 120px;
  padding: 16px 0;
  background: #f0f7f5;
  display: flex;
  justify-content: center;
}
.cart__image img {
  max-width: 62px;
}
.cart__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #000;
}
.cart__code {
  font-size: 14px;
  opacity: 0.5;
}
.cart__price {
  margin-left: auto;
  color: var(--accent-color);
  font-weight: 700;
  max-width: 150px;
  min-width: 80px;
  white-space: nowrap;
}
.cart__control {
  display: flex;
  align-items: center;
  gap: 70px;
}
.cart__form {
  max-width: 429px;
  width: 100%;
  background: #f0f7f5;
  border-radius: 30px;
  padding: 50px;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.08);
}
.cart__form-title {
  text-align: center;
}

.delete {
  transition: all 0.2s ease;
}
.delete:hover {
  transform: scale(1.1);
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.order-form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.order-form__group--icon {
  position: relative;
}
.order-form__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-color);
}
.order-form__input, .order-form__textarea {
  width: 100%;
  border: 1px solid #d3d3d3;
  border-radius: 10px;
  padding: 12px 15px;
  font-size: 14px;
  color: #000;
  opacity: 0.8;
  outline: none;
  transition: border-color 0.2s;
  background-color: var(--white-color);
}
.order-form__input:focus, .order-form__textarea:focus {
  border-color: #009678;
  opacity: 1;
}
.order-form__input::-moz-placeholder, .order-form__textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.368627451);
}
.order-form__input::placeholder, .order-form__textarea::placeholder {
  color: rgba(0, 0, 0, 0.368627451);
}
.order-form__textarea {
  min-height: 120px;
  resize: none;
}
.order-form__input-wrapper {
  position: relative;
}
.order-form__icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.order-form__button {
  width: 100%;
  background: #009678;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 0;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.order-form__button:hover {
  background: #007f63;
  transform: translateY(-2px);
}
.order-form__button:active {
  transform: translateY(0);
}

.in-cart {
  opacity: 0.7;
  cursor: not-allowed;
}

button:disabled:hover,
button:disabled:active {
  /* Сброс стилей, которые могли быть установлены для :hover/:active обычной кнопки */
  opacity: 0.6; /* Устанавливаем то же значение, что и в :disabled */
  background-color: #cccccc;
}

/* 1. Стилизация и блокировка кликов, когда кнопка 'В корзине' отключена */
/* Использование :has() для проверки состояния соседа */
.about-product__cart:has(.cart-link:disabled) .cart-button {
  /* Главное: блокируем клики на кнопках + и - */
  pointer-events: none;
  /* Визуальный эффект неактивности */
  opacity: 0.5;
  cursor: default;
  transition: opacity 0.3s;
}

/* 2. Обеспечиваем, чтобы SVG внутри кнопок также не реагировал на события (для надежности) */
.about-product__cart:has(.cart-link:disabled) .cart-button svg {
  pointer-events: none;
}

.burger {
  display: none;
  position: relative;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 11;
}
.burger span, .burger::before, .burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--white-color);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.burger span {
  top: 50%;
  transform: translateY(-50%);
}
.burger::before {
  top: 0;
}
.burger::after {
  bottom: 0;
}
.burger.active span {
  opacity: 0;
}
.burger.active::before {
  transform: translateY(9px) rotate(45deg);
}
.burger.active::after {
  transform: translateY(-9px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  background-color: var(--background-accent);
  color: #fff;
}
.hero__slider {
  width: 100%;
  height: 100%;
}
.hero__slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__image {
  position: relative;
  width: 33%;
}
.hero__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.hero__image--left {
  left: 0;
}
.hero__image--center {
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1;
  min-height: 400px;
}

.hero__image--center::before {
  content: '';
  display: block;
  padding-top: 36%;
}

.hero__image--center img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__image--right {
  right: 0;
}
.hero__content {
  position: absolute;
    z-index: 2;
    text-align: center;
    max-width: 531px;
    padding-top: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}
.hero__content .hero__title {
  font-weight: 700;
  font-size: 35px;
  line-height: 1.14;
  letter-spacing: -0.01em;
  color: var(--white-color);
  margin-bottom: 15px;
}
.hero__content .hero__text {
  line-height: 1.37;
  letter-spacing: -0.01em;
  color: var(--white-color);
  margin-bottom: 45px;
}
.hero__content .btn--white {
  display: inline-block;
  background: var(--white-color);
  color: var(--btn-color);
  padding: 18px 57px;
  font-size: 18px;
  border-radius: 10px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.hero__content .btn--white:hover {
  background: var(--hover-color);
  color: var(--white-color);
}
.hero .swiper-pagination {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}
.hero .swiper-pagination .swiper-pagination-bullet {
  background: rgba(#01714b, 0.6);
  width: 8px;
  height: 8px;
  transition: 0.3s;
}
.hero .swiper-pagination .swiper-pagination-bullet-active {
  background: #01714b;
}

.advantages {
  padding: 100px 0;
  position: relative;
}
.advantages .decor-element-left {
  position: absolute;
  top: -55px;
  left: 0;
  max-width: 251px;
}
.advantages .decor-element-left img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.advantages__title {
  text-align: center;
  margin-bottom: 97px;
}
.advantages .advantages-bg-decor {
  position: relative;
}
.advantages .advantages-bg-decor-img {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.advantages__list {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.advantages__list::after {
  content: "";
  display: block;
  width: 276px;
  height: 298px;
  position: absolute;
  background-image: url("./../assets/img/decor-2.png");
  background-repeat: no-repeat;
  background-size: contain;
  top: -150px;
  right: -90px;
  z-index: -1;
}
.advantages__item {
  max-width: 394px;
  min-height: 300px;
  width: 100%;
  background-color: var(--background-accent);
  border-radius: 30px;
  padding: 0 40px 40px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
.advantages__top {
  position: relative;
  z-index: 2;
  margin-top: -46px;
}
.advantages__content {
  position: relative;
  z-index: 2;
  color: var(--white-color);
}
.advantages__item-title {
  font-weight: 700;
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.advantages__item-text {
  line-height: 1.37;
  letter-spacing: -0.01em;
}

.popular {
  padding: 80px 0 100px;
  background-color: var(--background-accent);
  background-image: url("./../assets/img/bg-card-line-light.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
  overflow: hidden;
  position: relative;
}
.popular::after {
  content: "";
  display: block;
  background-image: url("./../assets/img/decor-3.png");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 227px;
  height: 240px;
  left: 0;
  top: -70px;
}
.popular__top {
  margin-bottom: 50px;
  position: relative;
}
.popular__title {
  color: var(--white-color);
  text-align: center;
}
.popular__navigtion {
  display: flex;
  align-items: center;
  gap: 15px;
  position: absolute;
  top: 0;
  right: 0;
}
.popular__btn {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background-color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.popular__btn:hover {
  transform: scale(1.02);
}
.popular__btn:active {
  transform: scale(0.9);
}
.popular__slider {
  padding: 0 80px;
  overflow: visible;
}
.popular__slider .swiper-wrapper {
  align-items: stretch;
}
.popular .swiper-slide {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.popular .swiper-slide-active {
  transform: scale(1.05);
  z-index: 2;
}
.popular__item {
  background-color: var(--white-color);
  border-radius: 30px;
  padding: 5px;
}
.popular__item-top{
    border-radius: 26px;
    background-color: #f0f7f5;
    padding: 30px 0;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.popular__item-top img{
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
.popular__item-content {
  padding: 20px 15px 25px;
}
.popular__item-name {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.11;
  letter-spacing: -0.01em;
  color: #000;
  margin-bottom: 14px;
}
.popular__item-text {
  font-size: 14px;
  line-height: 1.43;
  color: #000;
  margin-bottom: 22px;
  text-wrap: balance;
}
.popular__item-btn {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.29;
  letter-spacing: -0.01em;
  text-align: center;
  color: var(--white-color);
  background-color: var(--background-accent);
  border-radius: 10px;
  padding: 10px 0;
  width: 100%;
}

.banner {
  padding: 50px 0 100px;
}
.banner__inner {
  position: relative;
}
.banner__inner-decor {
  position: absolute;
  right: -90px;
  bottom: -110px;
}
.banner .banner-slider {
  padding-top: 50px;
}
.banner .banner-slide {
  position: relative;
}
.banner .banner-slide img {
  width: 100%;
  border-radius: 30px;
}
.banner .banner-slide-top {
    display: inline-block;
    padding: 12px 35px;
    background-color: var(--background-accent);
    color: var(--white-color);
    box-shadow: inset 0 2px 1px 0 rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}
.banner .swiper-pagination {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
}
.banner .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: var(--background-accent);
  opacity: 0.5;
}
.banner .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

.brands {
  padding: 20px 0;
  position: relative;
  z-index: 2;
  background: #0c2529;
  color: var(--white-color);
}
.brands .swiper-wrapper {
  transition-timing-function: linear !important;
}

.brands .swiper-slide {
  width: 250px;
}

.brands .brands-item {
  font-weight: 500;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.01em;
  /* max-width: 130px; */
}
.brands .brands-item img {
  width: 100%;
  max-height: 40px;
}

.main-reviews {
  padding: 100px 0 0;
  position: relative;
}
.main-reviews__top {
  position: relative;
  margin-bottom: 50px;
}
.main-reviews__decor {
  position: absolute;
  top: -140px;
  left: 0;
}
.main-reviews__title {
  text-align: center;
}
.main-reviews__navigtion {
  display: flex;
  align-items: center;
  gap: 15px;
  position: absolute;
  top: 0;
  right: 0;
}
.main-reviews__btn {
  background-color: var(--background-accent);
  width: 50px;
  height: 50px;
  border-radius: 100%;
  transition: all 0.2s ease-in;
}
.main-reviews__btn:hover {
  transform: scale(1.05);
}
.main-reviews__btn:active {
  transform: scale(0.87);
}
.main-reviews .main-reviews-slider {
  padding: 0 80px;
}
.main-reviews .swiper-wrapper {
  align-items: stretch;
}
.main-reviews .swiper-slide {
  display: flex;
  height: auto !important;
  overflow: hidden;
  border-radius: 30px;
}
.main-reviews .main-reviews-slide {
  flex: 1;
  height: 100%;
  border-radius: 30px;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.08);
  background-color: var(--white-color);
  padding: 50px 30px 30px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.main-reviews .main-reviews-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.main-reviews .swiper-slide-active .main-reviews-slide {
  background-color: #f0f7f5;
}
.main-reviews__ava {
  width: 98px;
  height: 98px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #006d48;
  border-radius: 100%;
  overflow: hidden;
}
.main-reviews__ava img {
  width: 90px;
  height: 90px;
  border-radius: 100%;
}
.main-reviews__name {
  margin: 25px 0 30px;
  opacity: 0.8;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.11;
  letter-spacing: -0.01em;
}
.main-reviews__text {
  letter-spacing: -0.01em;
  opacity: 0.8;
}

.form-section {
  padding: 192px 0 200px;
  background-color: var(--background-accent);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  position: relative;
  overflow: hidden;
}
.form-section__title {
  text-align: center;
  margin-bottom: 50px;
  color: var(--white-color);
  margin-left: 60px;
}
.form-section__col {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  position: relative;
  z-index: 10;
}
.form-section__socials {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-section__social {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease;
}
.form-section__social:hover {
  transform: scale(1.12);
}
.form-section__social img {
  width: 22px;
  height: 22px;
}
.form-section .container {
  position: relative;
  z-index: 10;
}

.form {
  max-width: 300px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 10;
}
.form__input {
  padding: 13px 20px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.43;
  letter-spacing: -0.01em;
  color: #000;
  background-color: var(--white-color);
  border-radius: 10px;
  width: 100%;
  outline: none;
  border: 1px solid var(--white-color);
}
.form__input:focus {
  border-color: #00ff22;
}
.form__input::-moz-placeholder {
  opacity: 0.8;
}
.form__input::placeholder {
  opacity: 0.8;
}
.form__area {
  background-color: var(--white-color);
  color: #000;
  font-size: 14px;
  line-height: 1.43;
  letter-spacing: -0.01em;
  resize: none;
  padding: 15px 20px;
  border-radius: 10px;
  border: 1px solid var(--white-color);
  min-height: 140px;
  outline: none;
}
.form__area:focus {
  border-color: #00ff22;
}
.form__btn {
  padding: 13px 0;
  width: 100%;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.43;
  letter-spacing: -0.01em;
  color: #fff;
  background: #0c2529;
  border-radius: 10px;
  transition: all 0.2s ease;
}
.form__btn:hover {
  background: #10525c;
}
.form__btn:active {
  transform: scale(0.9);
}

.form-section-main {
  margin-top: -100px;
  margin-bottom: -220px;
}

.form-section-contacts {
  margin-bottom: -220px;
}

.form-section-image {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
}

.form-section-image-left {
  left: 0;
  top: 0;
}

.form-section-image-right {
  bottom: 155px;
  right: 0;
}

.breadcrumbs {
  font-weight: 400;
  font-size: 14px;
  line-height: 114%;
  letter-spacing: -0.01em;
}
.breadcrumbs ul {
  display: flex;
  align-items: center;
  gap: 5px;
}
.breadcrumbs__home {
  color: #828080;
}
.breadcrumbs__link {
  color: #1a7f5c;
}

.catalog {
  padding: 50px 0 100px;
  position: relative;
}
.catalog::after {
  content: "";
  position: absolute;
  display: block;
  background-image: url("./../assets/img/decor-8.png");
  background-repeat: no-repeat;
  background-size: contain;
  top: -75px;
  right: -100px;
  width: 300px;
  height: 290px;
  z-index: -1;
}
.catalog__inner {
  position: relative;
  z-index: 11;
}
.catalog__title {
  text-align: center;
  margin-bottom: 50px;
}
.catalog__list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 29px;
}
.catalog__item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(1, 113, 75, 0.2);
  max-width: 394px;
  width: 100%;
  min-height: 300px;
  border-radius: 30px;
  overflow: hidden;
  transition: all 0.2s ease;
  position: relative;
  z-index: 2;
}
.catalog__item::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}
.catalog__item:nth-child(1)::before {
  background-image: url("./../assets/img/catalog/l1.png");
}
.catalog__item:nth-child(2)::before {
  background-image: url("./../assets/img/catalog/l2.png");
}
.catalog__item:nth-child(3)::before {
  background-image: url("./../assets/img/catalog/l3.png");
}
.catalog__item:nth-child(4)::before {
  background-image: url("./../assets/img/catalog/l4.png");
}
.catalog__item:nth-child(5)::before {
  background-image: url("./../assets/img/catalog/l5.png");
}
.catalog__item:nth-child(6)::before {
  background-image: url("./../assets/img/catalog/l6.png");
}
.catalog__item:nth-child(7)::before {
  background-image: url("./../assets/img/catalog/l7.png");
}
.catalog__item:nth-child(8)::before {
  background-image: url("./../assets/img/catalog/l8.png");
}
.catalog__item:hover {
  background: var(--background-accent);
}
.catalog__item:hover .catalog__name {
  color: var(--white-color);
}
.catalog__item:hover .catalog__img::after {
  opacity: 1;
}
.catalog__item:last-child:hover {
  background: var(--background-accent);
}
.catalog__item:last-child:hover .catalog__img::after {
  opacity: 0;
}
.catalog__item:last-child .catalog__img {
  position: static;
}
.catalog__item:last-child .catalog__img img {
  position: absolute;
  width: 394px;
  height: 300px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.catalog__item:last-child .catalog__name {
  color: var(--white-color);
  position: absolute;
  z-index: 2;
  left: 50px;
  bottom: 50px;
}
.catalog__item:last-child a {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.catalog__link {
  position: relative;
  width: 100%;
  padding: 40px 0;
  z-index: 3;
}
.catalog__img {
  transition: all 0.2s ease;
  position: relative;
}
.catalog__img::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  opacity: 0;
  filter: blur(100px);
  background: var(--white-color);
}
.catalog__name {
  margin-top: 28px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #01714b;
  transition: all 0.2s ease;
}

.categories {
  padding: 50px 0 100px;
}
.categories__title {
  margin-bottom: 20px;
}
.categories__result {
  font-size: 14px;
  line-height: 1.43;
  letter-spacing: -0.01em;
  opacity: 0.5;
}
.categories__col {
  margin-top: 50px;
  display: flex;
  gap: 35px;
}
.categories__filter {
  max-width: 287px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.1);
  background: #fff;
  padding: 30px 16px 30px 24px;
  height: -moz-fit-content;
  height: fit-content;
}
.categories__info {
  flex: 1;
}
.categories__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.categories__item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  padding: 5px;
}
.categories__item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}
.categories__item .categories__link {
  display: block;
}
.categories__item .categories__link-top {
  padding: 23px 0;
  display: flex;
  justify-content: center;
  max-height: 250px;
  height: 100%;
  border-radius: 26px;
  background-color: #f0f7f5;
  margin-bottom: 20px;
  position: relative;
}
.categories__item img {
  max-width: 145px;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.categories__item .categories__item-bt {
  padding: 0 15px 30px;
}
.categories__item .categories__name {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.11;
  letter-spacing: -0.01em;
  color: var(--accent-color);
  margin-bottom: 17px;
}
.categories__item .categories__price {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.11;
  letter-spacing: -0.01em;
  color: var(--accent-color);
  display: block;
  margin-bottom: 18px;
}
.categories__item .categories__btn {
  width: 100%;
  border-radius: 10px;
  padding: 10px 0;
  font-size: 13px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.29;
  letter-spacing: -0.01em;
  background: var(--background-accent);
  color: #fff;
  transition: background 0.3s;
}
.categories__item .categories__btn:hover {
  background: #0a4d35;
}

.filter__title {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 30px;
}
.filter__group {
  margin-bottom: 22px;
}
.filter__label {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}
.filter .filter__range {
  display: flex;
  align-items: center;
  gap: 8px;
}
.filter .price-field {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  /* убрать стрелки в WebKit (Chrome, Safari) */
  /* плейсхолдер зеленоват (цифра 0 как на макете) */
}
.filter .price-field__label {
  color: var(--accent-color);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.29;
  display: block;
}
.filter .price-field input[type=number] {
  max-width: 102px;
  width: 100%;
  padding: 11px 10px;
  border: 1px solid #d3d3d3;
  border-radius: 10px;
  background: #fff;
  font-size: 14px;
  caret-color: #0c573b;
  -moz-appearance: textfield; /* firefox — убрать стрелки */
}
.filter .price-field input[type=number]::-webkit-outer-spin-button,
.filter .price-field input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.filter .price-field input::-moz-placeholder {
  color: #0c8a5c;
  font-weight: 700;
}
.filter .price-field input::placeholder {
  color: #0c8a5c;
  font-weight: 700;
}
.filter .price-field input:focus {
  outline: none;
  border-color: #0c573b;
  box-shadow: 0 0 0 4px rgba(12, 87, 59, 0.06);
}
.filter .filter__dash {
  font-size: 14px;
  color: #000;
  opacity: 0.8;
  display: inline-flex;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin-top: 27px;
}
.filter__btn {
  margin-top: 30px;
  width: 100%;
  background: var(--background-accent);
  color: #fff;
  border-radius: 10px;
  padding: 10px 0;
  cursor: pointer;
  transition: background 0.3s;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.12;
}
.filter__btn:hover {
  background: #118a5f;
}

.checkbox {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  margin-bottom: 10px;
}
.checkbox span {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: -0.01em;
}
.checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkbox input + span::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid var(--background-accent);
  border-radius: 6px;
  background: #fff;
  margin-right: 15px;
  vertical-align: middle;
  transition: all 0.3s;
}
.checkbox input:checked + span::before {
  background-color: var(--background-accent);
  background-image: url("./../assets/icons/check.svg");
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: center;
  transition: all 0.3s;
}

.pagination-list {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
.pagination-list a {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination-list .pagination-btn {
  background-color: var(--background-accent);
  border-radius: 6px;
  transition: all 0.2s ease;
}
.pagination-list .pagination-btn:hover {
  background-color: #0c573b;
}
.pagination-list .pagination-item {
  border-radius: 6px;
  background-color: #cce3db;
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
}
.pagination-list .pagination-item:hover, .pagination-list .pagination-item.active {
  background: var(--background-accent);
  color: #fff;
}

.badge {
  font-size: 16px;
  line-height: 1.12;
  color: var(--white-color);
  padding: 6px 15px;
  border-radius: 22px;
  background: linear-gradient(180deg, #01714b 0%, #14a876 100%);
  position: absolute;
  top: 20px;
  left: 20px;
}

.about-product {
  padding: 50px 0;
}
.about-product__inner {
  display: flex;
  gap: 50px;
}
.about-product__left {
  max-width: 603px;
}
.about-product__right {
  padding-top: 50px;
  max-width: 590px;
  width: 100%;
}
.about-product__code {
  font-size: 14px;
  line-height: 1.14;
  letter-spacing: -0.01em;
  opacity: 0.5;
  margin-bottom: 20px;
}
.about-product__title {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.about-product__title span {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: -0.01em;
  color: var(--accent-color);
  padding: 7px 12px;
  background: rgba(1, 113, 75, 0.1019607843);
  border-radius: 14px;
}
.about-product__prices {
  display: flex;
  align-items: center;
  gap: 20px;
}
.about-product__price {
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  color: var(--accent-color);
}
.about-product__old-price {
  text-decoration: line-through;
  color: #979797;
}
.about-product__cart {
  margin-top: 225px;
  display: flex;
  gap: 50px;
}

.about-product-swiper {
  margin-bottom: 20px;
}
.about-product-swiper .swiper-slide {
  border-radius: 30px;
  overflow: hidden;
}
.about-product-swiper__slide {
  border-radius: 30px;
  overflow: hidden;
  width: 100%;
  padding: 55px 0;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.08);
  background: #f0f7f5;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}
.about-product-swiper .badge {
  top: 30px;
  left: 30px;
}
.about-product-swiper img {
  max-width: 273px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.about-product-small .swiper-slide {
  border-radius: 20px;
  overflow: hidden;
}
.about-product-small .swiper-slide-thumb-active .about-product-small__slide {
  border-color: var(--background-accent);
}
.about-product-small__slide {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--white-color);
  border-radius: 20px;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.08);
  background: #fff;
  width: 100%;
}
.about-product-small__slide img {
  max-width: 72px;
  width: 100%;
}

.line {
  max-width: 590px;
  height: 2px;
  background-color: #000;
  opacity: 0.2;
  margin: 30px 0 20px;
}

.cart-link {
  border-radius: 10px;
  background-color: var(--background-accent);
  color: var(--white-color);
  padding: 14px 0;
  max-width: 300px;
  width: 100%;
  font-weight: 500;
  text-align: center;
}

.cart-btns {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cart-button {
  border: 1px solid #01714b;
  border-radius: 5px;
  width: 25px;
  height: 25px;
  background: rgba(217, 217, 217, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.cart-button svg {
  transition: all 0.2s ease;
}
.cart-button svg path {
  fill: var(--accent-color);
}
.cart-button:hover {
  background-color: var(--background-accent);
}
.cart-button:hover svg {
  transition: all 0.2s ease;
}
.cart-button:hover svg path {
  fill: var(--white-color);
}

.product-info {
  background: #fdfbf8;
  min-height: 352px;
}
.product-info__tabs {
  display: flex;
  gap: 40px;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 24px;
}
.product-info__tab {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  background: none;
  border: none;
  padding-bottom: 12px;
  cursor: pointer;
  position: relative;
  transition: color 0.3s;
}
.product-info__tab:hover {
  color: #009678;
}
.product-info__tab--active {
  color: #009678;
}
.product-info__tab--active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #009678;
}
.product-info__content {
  position: relative;
}
.product-info__panel {
  display: none;
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}
.product-info__panel--active {
  display: block;
  animation: fadeIn 0.3s ease-in;
}
.product-info .description-text {
  max-width: 868px;
}
.product-info__certificates {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.certificate-card {
  max-width: 225px;
  border-radius: 12px;
  transition: transform 0.2s;
}
.certificate-card img {
  width: 100%;
}
.certificate-card:hover {
  transform: translateY(-4px);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.related-products {
  padding: 100px 0;
}
.related-products__title {
  margin-bottom: 50px;
  font-size: 25px;
}
.related-products__swiper .swiper-wrapper {
  align-items: stretch;
}
.related-products__item {
  border-radius: 30px;
  background-color: var(--white-color);
  padding: 5px;
}
.related-products__top {
  display: block;
  max-height: 250px;
  height: 100%;
  background: #f0f7f5;
  border-radius: 26px;
  padding: 22px 0;
  display: flex;
  justify-content: center;
  position: relative;
}
.related-products__top img {
  max-width: 145px;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
.related-products__bottom {
  padding: 20px 15px;
}
.related-products__name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.related-products__text {
  margin-bottom: 22px;
}
.related-products__btn {
  background: #0c2529;
  border-radius: 10px;
  padding: 10px 0;
  width: 100%;
  font-weight: 500;
  color: var(--white-color);
}

.about {
  padding: 50px 0 100px;
}
.about__inner {
  display: flex;
  gap: 50px;
}
.about__img {
  max-width: 603px;
  width: 100%;
}
.about__img img {
  max-width: 100%;
  width: 100%;
  border-radius: 30px;
}
.about__info {
  padding-top: 50px;
  max-width: 497px;
}
.about__title {
  color: var(--accent-color);
  margin-bottom: 30px;
}
.about__text {
  opacity: 0.8;
  line-height: 1.62;
  letter-spacing: -0.01em;
}

.about-mission {
  padding-bottom: 127px;
}
.about-mission__inner {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
.about-mission__left {
  max-width: 544px;
  width: 100%;
}
.about-mission__title {
  margin-bottom: 30px;
}
.about-mission__text {
  margin-bottom: 25px;
  opacity: 0.8;
}
.about-mission__text:last-child {
  margin-bottom: 0;
}
.about-mission__list {
  margin-top: 80px;
  display: flex;
  gap: 40px;
}
.about-mission__item {
  max-width: 178px;
  color: var(--accent-color);
}
.about-mission__item-title {
  margin-bottom: 20px;
  font-size: 40px;
  line-height: 0.75;
  font-weight: 700;
}
.about-mission__item-text {
  transition: all 0.2s ease-in;
}
.about-mission__item-text:hover {
  opacity: 0.8;
}
.about-mission__cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.about-mission__cards::after {
  content: "";
  display: block;
  position: absolute;
  top: -100px;
  right: -67px;
  background-image: url("./../assets/img/decor-2.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 166px;
  height: 183px;
  z-index: -1;
}
.about-mission__card {
  border-radius: 30px 0 30px 30px;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.08);
  background: #fff;
  padding: 30px 27px 30px 40px;
  display: flex;
  align-items: center;
  gap: 30px;
  transition: all 0.2s ease;
  max-width: 603px;
}
.about-mission__card:hover {
  background: #f0f7f5;
  transform: translateX(-30px);
}
.about-mission__round {
  width: 50px;
  height: 50px;
  background-color: var(--background-accent);
  border-radius: 100%;
}
.about-mission__card-info {
  flex: 1;
}
.about-mission__card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}
.about-mission__card-text {
  opacity: 0.8;
}

.page-main-about .popular {
  padding: 100px 0;
  background-image: none;
}
.page-main-about .popular::after {
  background-image: url(./../assets/img/decor-5.png);
  left: -100px;
  top: -40px;
}
.page-main-about .popular .swiper-slide img {
  width: 100%;
}
.page-main-about .advantages__list::after {
  display: none;
}

.about-album {
  padding-bottom: 100px;
}
.about-album__title {
  margin-bottom: 50px;
}
.about-album__list {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-auto-rows: 287px;
  grid-gap: 30px;
}
.about-album__item:nth-child(1) {
  grid-column: 2 span;
}

.about-album__item:nth-child(6) {
  grid-column: 2 span;
}

.about-album__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.contacts {
  padding: 50px 0 100px;
}
.contacts__inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.contacts__info {
  max-width: 318px;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contacts__group {
  border-radius: 30px;
  background-color: var(--background-accent);
  padding: 30px;
  position: relative;
  transition: all 0.2s ease;
}
.contacts__group:nth-child(3) .contacts__title {
  margin-bottom: 20px;
}
.contacts__group::after {
  content: "";
  display: block;
  width: 100%;
  height: 88px;
  filter: blur(20px);
  background: #01714b;
  opacity: 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  transition: all 0.2s ease;
  z-index: -1;
}
.contacts__group:hover::after {
  opacity: 0.7;
}
.contacts__title {
  color: var(--white-color);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.contacts__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contacts__item {
  color: var(--white-color);
  max-width: 194px;
}
.contacts__link {
  color: inherit;
}
.contacts__map {
  max-width: 869px;
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
}
.contacts__map iframe {
  outline: none;
  border: none;
}

.privacy {
  padding: 60px 0 87px;
}
.privacy__title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 1.11;
  opacity: 0.8;
}
.privacy__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.privacy__item {
  font-size: 14px;
  line-height: 1.64;
  opacity: 0.8;
  letter-spacing: -0.01em;
}

.not-found {
  padding: 100px 0;
  text-align: center;
}
.not-found img {
  max-width: 750px;
  width: 100%;
}

.footer {
  color: #fff;
  position: relative;
  overflow: hidden;
}
.footer__wave {
  position: relative;
  top: 5px;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 2;
}
.footer__wave svg {
  display: block;
  width: 100%;
  height: auto;
}
.footer__top {
  padding-top: 40px;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
  background-color: #0c2529;
}
.footer__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 60px;
  justify-content: space-between;
}
.footer__col {
  display: flex;
  flex-direction: column;
}
.footer__logo {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 20px;
}
.footer__desc {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.5;
  max-width: 220px;
}
.footer__title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
}
.footer ul {
  list-style: none;
  padding: 0;
}
.footer ul li {
  margin-bottom: 10px;
}
.footer ul .footer__link {
  font-size: 18px;
  font-weight: 500;
}
.footer ul a {
  font-size: 14px;
  color: #fff;
  opacity: 0.8;
  transition: 0.3s;
}
.footer ul a:hover {
  opacity: 1;
}
.footer__socials {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}
.footer__socials a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--white-color);
  border-radius: 100%;
  transition: all 0.3s ease;
}
.footer__socials a:hover {
  transform: scale(1.1);
}
.footer__socials a img {
  width: 22px;
  height: 22px;
}
.footer__bottom {
  background: #1a3129;
  padding: 15px 0;
  font-size: 14px;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer__bottom a {
  color: var(--white-color);
  opacity: 0.8;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.footer__bottom a:hover {
  text-decoration: underline;
  opacity: 1;
}

.about-hymn {
  margin-top: 30px;
}

.way-element-drop {
    transform: translateY(-100px);
    opacity: 0;
    transition: 0.4s ease-in-out;
}

.way.way--active.way-element-drop {
    transform: translateY(0);
    opacity: 1;
}

.way-opacity {
    opacity: 0;
    transition: 0.4s ease-in-out;
}

.way.way--active.way-opacity {
    opacity: 1;
}


@media (max-width: 1280px) {
  .header__nav {
    margin: 0 50px;
  }
  .header__list {
    gap: 25px;
  }
  .cart-btn-wrap {
    margin-right: 50px;
  }
  .form-section-image-right {
    max-width: 440px;
  }
  .footer__inner {
    gap: 60px;
  }
  .catalog__list {
    justify-content: center;
  }
}
@media (max-width: 1200px) {
  .burger {
    display: block;
  }
  .header__center {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--background-accent);
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
    padding-top: 180px;
    gap: 20px;
    z-index: 10;
    margin: 0;
  }
  .header__center .header__lang {
    margin: 20px;
  }
  .header__center .header__list {
    flex-direction: column;
    gap: 35px;
  }
  .header__center .header__link {
    font-size: 22px;
    padding: 10px 0;
  }
  .header__center.active {
    right: 0;
  }
  .footer__inner {
    gap: 20px;
  }
  .categories__col {
    gap: 20px;
  }
  .categories__list {
    gap: 15px;
  }
  .about-product__inner {
    gap: 30px;
  }
  .about-product__left {
    max-width: 540px;
  }
  .cart,
  .cart__form {
    padding: 50px 20px;
  }
  .cart__item,
  .cart__control {
    gap: 30px;
  }
  .cart__link {
    gap: 20px;
  }
  .cart__price {
    margin-left: 0;
  }
  .about-album__title {
    text-align: center;
  }
  .about-album__list {
    justify-content: center;
    gap: 20px;
  }
  .about-mission__inner {
    flex-direction: column;
  }
  .about-mission__left {
    max-width: 100%;
  }
  .about-mission__title {
    text-align: center;
  }
  .about-mission__text {
    text-align: center;
  }
  .about-mission__list {
    justify-content: center;
  }
  .about-mission__cards {
    justify-content: center;
    align-items: center;
  }
  .about-mission__card {
    border-radius: 30px;
  }
  .about-mission__card:hover {
    transform: translateX(0);
  }
}
@media (max-width: 1024px) {
  .cart-col {
    flex-direction: column;
    align-items: center;
    height: auto;
  }
  .cart {
    max-width: 100%;
  }
  .about__inner {
    gap: 20px;
  }
  .about__info {
    padding-top: 0;
  }
}
@media (max-width: 992px) {
  .about-album__list {
    grid-auto-rows: 200px;
  }
  .form-section-image-left {
    left: -110px;
  }
  .form-section-image-right {
    right: -110px;
  }
  .about-product__inner {
    flex-direction: column-reverse;
    justify-content: center;
  }
  .about-product__left {
    max-width: 480px;
  }
  .about-product__left {
    max-width: 100%;
  }
  .about-product__right,
  .line {
    max-width: 100%;
    padding-top: 0;
  }
  .about-product__cart {
    margin-top: 50px;
  }
  .about__inner {
    flex-direction: column-reverse;
    align-items: center;
  }
  .about__info {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .about-album__list {
    grid-auto-rows: 150px;
  }
  .cart-btn-wrap {
    margin-right: 15px;
  }
  .cart-btn {
    padding: 8px 12px;
    font-size: 14px;
    gap: 4px;
  }
  .logo img {
    width: 100%;
    min-width: 130px;
  }
  .hero__image--left {
    width: 27%;
  }
  .hero__image--right {
    width: 27%;
  }
  .hero__content .hero__title {
    font-size: 28px;
  }
  .hero__content .hero__text {
    max-width: 350px;
    margin: 0 auto;
    margin-bottom: 25px;
  }
  .hero__content .btn--white {
    padding: 12px 35px;
    font-size: 16px;
  }
  .advantages {
    padding: 50px 0;
  }
  .advantages__list {
    flex-wrap: wrap;
    justify-content: center;
  }
  .advantages .advantages-bg-decor-img {
    display: none;
  }
  .advantages__list::after {
    right: 5px;
  }
  .form-section-image-left {
    left: -110px;
    top: 55px;
    max-width: 330px;
  }
  .form-section-image-right {
    right: -90px;
    max-width: 340px;
  }
  .about {
    padding: 30px 0 60px;
  }
  .about-mission__list {
    margin-top: 30px;
    gap: 20px;
  }
  .about-mission__item-title {
    font-size: 28px;
  }
  .about-mission__inner {
    gap: 35px;
  }
  .contacts__inner {
    flex-direction: column;
  }
  .contacts__info {
    max-width: 100%;
  }
  .call-wrap {
    width: 60px;
    height: 60px;
    bottom: 80px;
    right: 20px;
  }
  .call-wrap .call {
    width: 40px;
    height: 40px;
  }
  .call-wrap .call svg {
    width: 22px;
    height: 22px;
  }
}
@media (max-width: 680px) {
  .hero__content {
    max-width: 400px;
    padding-top: 30px;
  }
  .hero__content .hero__title {
    font-size: 22px;
  }
  .hero__content .hero__text {
    font-size: 14px;
    max-width: 290px;
    text-wrap: balance;
  }
  .hero__slider {
    max-height: 600px;
  }
  .hero__image--left {
    width: 33%;
  }
  .hero__image--right {
    width: 33%;
  }
  .advantages .decor-element-left {
    max-width: 120px;
    top: -35px;
  }
  .advantages__item {
    min-height: auto;
    padding: 0 20px 20px 20px;
    justify-content: start;
    gap: 15px;
  }
  .advantages__top {
    margin-top: -25px;
  }
  .advantages__top img {
    max-width: 100px;
  }
  .advantages__title {
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
  }
  .advantages__list::after {
    width: 175px;
    height: 145px;
    top: -100px;
    right: -70px;
  }
  .advantages__item-title {
    font-size: 20px;
  }
  .advantages__item-text {
    font-size: 14px;
  }
  .popular {
    background-size: cover;
  }
  .popular__slider {
    padding: 0 40px;
  }
  .main-reviews .main-reviews-slider {
    padding: 0 30px;
  }
  .popular__top,
  .main-reviews__top {
    position: static;
  }
  .main-reviews__top {
    margin-bottom: 30px;
  }
  .popular__navigtion {
    top: unset;
    bottom: 15px;
    right: 50%;
    transform: translateX(50%);
  }
  .main-reviews__navigtion {
    position: static;
    justify-content: center;
    margin-top: 15px;
  }
  .popular__btn,
  .main-reviews__btn {
    width: 40px;
    height: 40px;
  }
  .banner {
    padding: 30px 0 60px;
  }
  .banner .banner-slider {
    padding-top: 30px;
  }
  .banner .banner-slide-top {
    padding: 8px 15px;
    font-size: 13px;
  }
  .banner .swiper-pagination {
    bottom: 10px;
  }
  .form-section__col {
    flex-direction: column-reverse;
  }
  .form-section__socials {
    flex-direction: row;
  }
  .form-section__title {
    margin-left: 0;
  }
  .form-section-image-left {
    top: 140px;
  }
  .form-section-image-right {
    right: 0;
    top: 0;
  }
  .footer__bottom-inner {
    flex-direction: column;
    gap: 15px;
  }
  .categories__col {
    flex-direction: column;
    margin-top: 20px;
  }
  .categories__filter {
    max-width: 100%;
  }
  .categories {
    padding: 30px 0 60px;
  }
  .product-info__tabs {
    gap: 5px;
    justify-content: space-between;
  }
  .product-info__certificates {
    justify-content: center;
  }
  .cart__list {
    gap: 10px;
  }
  .cart__item {
    padding-top: 15px;
    flex-direction: column;
    gap: 5px;
  }
  .cart__control {
    margin-left: auto;
    margin-right: 10px;
  }
  .about-mission__list {
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
  .about-mission__item {
    max-width: 100%;
  }
  .about-mission__card {
    gap: 15px;
    padding: 25px;
  }
}
@media (max-width: 576px) {
  .about-album__list {
    grid-template-columns: repeat(2,1fr);
  }
}
@media (max-width: 480px) {
  .header-space {
    padding-top: 85px;
  }
  .logo-wrapper {
    max-width: 150px;
  }
  .header__inner {
    gap: 10px;
  }
  .cart-btn-wrap {
    margin-right: 0;
  }
  .breadcrumbs ul {
    flex-wrap: wrap;
  }
  .page-main {
    padding-top: 120px;
  }
  .categories__filter {
    padding: 20px 15px;
  }
  .about-product__title {
    font-size: 24px;
  }
  .about-product__cart {
    margin-top: 30px;
  }
  .product-info__tab {
    font-size: 14px;
  }
  .about-product-swiper img {
    max-width: 225px;
  }
  .about-product-small__slide img {
    max-width: 55px;
  }
  .cart,
  .cart__form {
    padding: 30px 20px;
  }
  .cart__title {
    margin-bottom: 20px;
  }
  .cart__link {
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }
  .cart-wrapper {
    padding: 30px 0 60px;
  }
  .contacts,
  .not-found {
    padding: 30px 0 60px;
  }
  .catalog::after {
    top: 20px;
  }
}
@media (max-width: 380px) {
  .product-info__tab {
    font-size: 13px;
  }
  .product-info__panel {
    font-size: 14px;
  }
}
@media (max-width: 340px) {
  .header__center .header__link {
    font-size: 18px;
  }
}/*# sourceMappingURL=style.css.map */
/* Кнопки фильтра — вертикальная колонка */
.categories__filter .filter__actions{
    display: flex;
    flex-direction: column;   /* <-- одна под другой */
    gap: 10px;
    margin-top: 30px;
}

/* База для обеих (и <a>, и <button>) */
.categories__filter .filter__btn,
.categories__filter .filter__reset{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;             /* обе на всю ширину */
    height: 48px;
    padding: 0 16px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    text-decoration: none;    /* для <a> */
    box-sizing: border-box;
}


/* Сбросить */
.categories__filter .filter__reset{
    background: #fff;
    color: #ef4444;
    border: 2px solid #ef4444;
}
.categories__filter .filter__reset:hover{
    background:#ef4444;
    color:#fff;
}
/* Включаем маркеры ТОЛЬКО внутри карточки товара */
.product-info__panel ul,
.product-info__panel ol,
.description-text ul,
.description-text ol {
    list-style: revert !important;
    list-style-position: outside !important;
    padding-left: 1.5rem !important;
    margin: 0 0 1rem 1.25rem !important;
}

/* Важно — вернуть поведение li, иначе маркеры все равно не появятся */
.product-info__panel li,
.description-text li {
    display: list-item !important;
    list-style: inherit !important;
}

/* Типы списков явно */
.product-info__panel ol,
.description-text ol { list-style-type: decimal !important; }

.product-info__panel ul,
.description-text ul { list-style-type: disc !important; }



/* Таблицы */
.product-info__panel table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}
.product-info__panel th,
.product-info__panel td {
    border: 1px solid #e5e7eb;
    padding: 8px;
    text-align: left;
}
.product-info__panel th { font-weight: 600; }
