:root {
  --color-green: #12794e;
  --color-green-light: #2a8b48;
  --color-green-alpha: #619473;
  --color-salad: #dae7de;
  --color-red: #b93335;
  --color-red-light: #dd888a;
  --color-red-lighten: #ffd1d2;
  --color-yellow: #f3bb3d;
  --color-yellow-light: #f9de9f;
  --color-dark-blue: #373f4f;
  --color-icon-border: #454b54;
  --color-white: white;
  --color-black: black;
  --color-black-light: #0000006b;
  --color-grey: #f1f1f1;
  --color-border: lightgrey;
  --color-dark-grey: #dfdfdf;
  --color-blue: #3578bd;
  --c-lightness: 52.71%;
  --c-red: oklch(52.71% 0.168 23.85);
}* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
}*::before,
*::after {
  box-sizing: border-box;
}select,
a,
button,
input {
  all: initial;
  box-sizing: border-box;
}li {
  list-style-type: none;
}a {
  cursor: pointer;
}html * {
  font-family:
    "Open Sans",
    "Dejavu Sans",
    Arial,
    Verdana,
    sans-serif;
}html,
body {
  overflow-x: hidden;
}body {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}main {
  position: relative;
}.wrapper {
  padding: 0 3vw;
}button {
  cursor: pointer;
}.burger_icon {
  --bg: var(--color-black);
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 23px;
  height: 2px;
  background: var(--bg);
}.burger_icon::before,
.burger_icon::after {
  position: absolute;
  min-width: 23px;
  height: 2px;
  background: var(--bg);
  transition: all 200ms;
  content: "";
}.burger_icon::before {
  top: -6px;
}.burger_icon::after {
  bottom: -6px;
}.dropdown,
.dropdown_body {
  display: flex;
  white-space: nowrap;
}.dropdown {
  --offset: 5px;
  position: relative;
  align-items: center;
}.dropdown:hover::after {
  position: absolute;
  top: 100%;
  width: 100%;
  height: var(--offset);
  content: "";
}.chevron_down {
  --chevron-color: var(--color-black);
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
}.chevron_down::after,
.chevron_down::before {
  order: 2;
  min-width: 0.5em;
  height: 1px;
  background-color: var(--chevron-color);
  transition: all 0.1s ease-in-out;
  content: "";
}.chevron_down::before {
  margin-left: 10px;
  transform: translateX(2px) rotate(45deg);
}.chevron_down::after {
  transform: rotate(-45deg);
}.popup {
  display: none;
}#popup {
  display: none;
}.subheader {
  position: relative;
  z-index: 99;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 20px;
  background: var(--color-grey);
  box-shadow: 0 -3px 0 var(--color-dark-grey) inset;
}.subheader * {
  font-size: 0.85rem;
}.subheader_city-choice {
  display: flex;
  gap: 2px;
  align-items: center;
  white-space: nowrap;
  cursor: pointer;
}.subheader_menu {
  display: flex;
  gap: 20px;
  align-items: center;
  height: 100%;
  margin-right: auto;
  overflow-x: hidden;
  transition: all 100ms;
}.subheader_menu__item {
  height: 100%;
  opacity: 1;
}.subheader_menu__hover {
  position: absolute;
  top: calc(100% + 5px);
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 15px;
  background: var(--color-grey);
  border: 2px solid var(--color-border);
  border-radius: 10px;
  box-shadow: 0 2px 4px 0 rgb(14 30 37 / 12%), 0 2px 16px 0 rgb(14 30 37 / 32%);
}.subheader_menu__hover::before {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 20px;
  content: "";
}.subheader_menu__hover_item {
  display: flex;
  padding: 5px 10px;
  border-radius: 8px;
}.subheader_menu__hover_item.hide {
  display: none;
}[name=subheaderMenu] {
  display: flex;
  gap: 10px;
  align-items: center;
  width: auto;
  padding: 0.5em 1em;
  color: white;
  background-image: linear-gradient(109.6deg, #e64e41, #b93335 41%, #e64e41 120%);
  background-size: 200%;
  border-radius: 8px;
  transition: all 200ms;
}[name=subheaderMenu] .burger_icon,
[name=subheaderMenu] .burger_icon::before,
[name=subheaderMenu] .burger_icon::after {
  background: white;
}[name=subheaderMenu].active {
  background-position: 100%;
}[name=subheaderMenu].active > .burger_icon {
  height: 0;
}[name=subheaderMenu].active > .burger_icon::before {
  transform: translateY(5px) rotate(45deg);
}[name=subheaderMenu].active > .burger_icon::after {
  transform: translateY(-5px) rotate(-45deg);
}[name=subheaderMenu].active ~ .subheader_menu__hover {
  display: flex;
}.subheader_contacts {
  z-index: +1;
  display: flex;
  gap: 20px;
  align-items: center;
  width: auto;
  height: 100%;
  white-space: nowrap;
  background: var(--color-grey);
  box-shadow: 0 -3px 0 var(--color-dark-grey) inset;
  transition: all 200ms;
}.subheader_contacts__item {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}.subheader_contacts__link {
  font-weight: 700;
  cursor: pointer;
}.search__container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 47px;
  margin-left: auto;
  background-color: var(--color-white);
  border-radius: 100px;
}.search__container::after {
  position: absolute;
  left: -2px;
  z-index: -1;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  background-image: radial-gradient(circle farthest-corner at 10% 20%, rgb(14 174 87 / 100%) 0%, rgb(12 116 117 / 100%) 90%);
  border-radius: 100px;
  content: "";
}.search__container .icon {
  width: 40px;
  height: 40px;
  padding: 7px;
  fill: var(--color-white);
}.search__container label {
  width: 100%;
  height: 100%;
  padding-left: 20px;
}.search__container input {
  width: 100%;
  height: 100%;
}.search_container__submit {
  min-width: 40px;
  height: 40px;
  margin: 6px;
  background-image: radial-gradient(circle farthest-corner at 10% 20%, rgb(14 174 87 / 100%) 0%, rgb(12 116 117 / 100%) 90%);
  border-radius: 50%;
}.header__search {
  position: static;
  height: 40px;
  border: 2px solid var(--color-green);
}.header__search::after {
  display: none;
}.header__search_data {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  display: none;
  width: 100%;
  min-width: 500px;
  max-height: 300px;
  padding: 20px;
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: 10px;
}.header__search_data::before {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 20px;
  content: "";
}.header__search_data:hover,
.header__search_data.active {
  display: flex;
  flex-direction: column;
  gap: 20px;
}.header__search_data_item {
  display: flex;
  gap: 10px;
}.header__search_data_item .icon {
  width: 20px;
  height: 20px;
  padding: 0;
  fill: var(--color-black);
}.header__search_data_button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  margin: auto;
  margin-top: 20px;
  padding: 0 1em;
  border: 2px solid var(--color-border);
  border-radius: 100px;
}.subheader {
  position: relative;
  grid-template-columns: 1fr auto;
  height: 40px;
  box-shadow: none;
}.subheader * {
  font-size: 0.8rem;
  line-height: 1.2;
}.subheader_contacts {
  position: relative;
  gap: 10px;
  box-shadow: none;
}.subheader_menu {
  min-width: 86px;
}.subheader_city-choice {
  display: none;
}.subheader_menu__hover {
  padding: 5px;
}#header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  gap: 20px;
  align-items: center;
  width: 100%;
  height: 50px;
  padding: 0 20px;
  background: var(--color-white);
  box-shadow: 0 4px 15px rgb(0 0 0/12%);
}.navigation_top {
  display: none;
}.catalog_container {
  display: none;
}.header__user_actions {
  display: none;
}.header_logo {
  display: flex;
  align-items: center;
  max-width: 115px;
  height: 45px;
}.header_logo .icon {
  width: 100%;
  height: 100%;
}.search_container__submit {
  min-width: 30px;
  height: 30px;
}.search_container__submit .icon {
  width: 30px;
  height: 30px;
}.navigation_top__call_form {
  position: absolute;
  top: calc(100% + 5px);
  right: 5px;
  z-index: -1;
  display: grid;
  grid-gap: 10px;
  gap: 10px;
  min-width: 250px;
  padding: 20px;
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: 10px;
  transform: translateX(calc(100% + 25px));
  transition: all 0.1s ease-in;
}.navigation_top__call_form button {
  width: 100%;
  height: 40px;
  margin-top: 20px;
  color: var(--color-white);
  text-align: center;
  background-image: linear-gradient(90deg, #0eae57 0, #0c7475 41%, #0eae57 120%);
  background-size: 200% auto;
  border-radius: 8px;
  transition: all 0.2s;
}.navigation_top__call {
  position: relative;
  z-index: +1;
  height: 100%;
  margin-left: auto;
  font-size: 0.9em;
  background: var(--color-white);
}.navigation_top__call::after {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 10;
  width: 100%;
  height: 5px;
  content: "";
}[name=freeCall] {
  display: flex;
  align-items: center;
  height: 100%;
  margin-left: auto;
  font-size: 0.95em;
  line-height: 1.2;
  white-space: nowrap;
}[name=freeCall] .icon {
  width: 33px;
  height: 33px;
}@media screen and (max-width: 660px) { #header {
    padding: 5px;
  }.subheader {
    z-index: 20;
    display: flex;
    gap: 0;
    width: 100%;
    padding: 0 5px;
    background: var(--color-grey);
  }.subheader_menu__hover_item {
    display: flex;
  }.subheader_menu__hover_item.hide {
    display: flex;
  }.subheader_menu__item {
    display: none;
  }.subheader_menu {
    width: 100%;
    background: var(--color-grey);
  }.subheader_contacts {
    position: absolute;
    top: 100%;
    right: 160px;
    z-index: -1;
    flex-direction: column;
    align-items: flex-end;
    width: auto;
    height: auto;
    padding: 10px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 2px 4px 0 rgb(14 30 37 / 12%), 0 2px 16px 0 rgb(14 30 37 / 32%);
    transform: translateY(-110%);
  }#subheaderAllContacts {
    display: flex;
    align-items: center;
    height: 100%;
    margin-left: auto;
    padding: 0 10px;
    background: var(--color-grey);
  }.navigation_top__call {
    margin-left: auto;
    font-size: 0.8em;
    background: var(--color-grey);
  }.navigation_top__call [name=freeCall] {
    line-height: 1;
  }
}.navigation_top__dropdown {
  position: absolute;
  top: 50px;
  left: 0;
  z-index: -1;
  width: 100%;
  padding: 10px 20px;
  background: var(--color-white);
  box-shadow: rgb(0 0 0 / 20%) 0 60px 40px -7px;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 100ms ease-in;
}#footer {
  margin-top: auto;
  background: var(--color-grey);
}.footer_navigation {
  display: flex;
  gap: clamp(10px, 1.2vw, 20px);
  justify-content: space-evenly;
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 2px solid var(--color-dark-grey);
}.footer_menu {
  width: clamp(200px, 20vw, 230px);
}.footer_item {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5em, 2vw, 1em);
  margin-top: clamp(0.5em, 2vw, 1em);
}.footer_item li {
  min-height: 22px;
}.footer_item__title {
  font-size: clamp(1em, 2vw, 1.1em);
  text-transform: uppercase;
}.footer_item__title .chevron_down {
  display: none;
}.footer_item__title.product {
  display: none;
}.footer_item__link {
  font-size: clamp(0.9em, 2vw, 1em);
  cursor: pointer;
}.footer_item__link:hover {
  text-decoration: underline;
}.subfooter {
  position: relative;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-evenly;
  height: auto;
  min-height: 100px;
  padding: 10px 20px;
  background: var(--color-grey);
}.subfooter_item {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}.subfooter_item span {
  font-size: 0.8em;
}.subfooter_social__container {
  display: flex;
  gap: 8px;
}.subfooter_social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  row-gap: 0;
}.subfooter_social__item {
  width: 30px;
  height: 30px;
}.subfooter_social__item .icon {
  width: 30px;
  height: 30px;
}.subfooter_app {
  position: relative;
  display: flex;
  gap: 10px;
  max-width: 205px;
}.subfooter_contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  width: 100%;
  max-width: 754px;
  column-gap: 20px;
  row-gap: 5px;
}[data-footer=main] {
  display: flex;
  flex-direction: column;
  gap: 20px;
}[data-footer=main] .footer_item {
  margin-top: 1px;
}@media screen and (max-width: 890px) { .footer_navigation {
    display: grid;
    grid-template: repeat(2, 1fr) / repeat(2, 1fr);
    gap: 10px;
    justify-items: center;
  }.footer_item {
    gap: 5px;
  }.footer_menu {
    width: 100%;
  }
} @media screen and (max-width: 768px) { [data-footer=main] {
    gap: 0;
  }.footer_navigation {
    display: flex;
    flex-direction: column;
  }.footer_menu {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 720px;
    margin-bottom: -2px;
    padding: 10px;
    border-bottom: 1px solid var(--color-black);
  }.footer_menu:last-child {
    border-bottom: none;
  }.footer_item__title {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    font-size: 1em;
    white-space: nowrap;
    cursor: pointer;
  }.footer_item__title .chevron_down {
    display: flex;
  }.footer_item__title.product {
    display: flex;
  }.footer_item {
    display: flex;
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    transition: all 300ms;
    will-change: max-height;
  }.footer_menu.active .chevron_down::after {
    transform: translateX(-2px) rotate(45deg);
  }.footer_menu.active .chevron_down::before {
    transform: translateX(2px) rotate(-45deg);
  }.footer_menu.active .footer_item {
    margin-top: 10px;
  }
} @media screen and (max-width: 728px) { .subfooter {
    flex-wrap: wrap;
    gap: 0;
  }.subfooter_contacts {
    justify-content: center;
  }.subfooter_item {
    align-items: center;
    min-width: 25%;
  } 
}#scrollTop {
  --color: var(--color-black);
  position: fixed;
  right: 20px;
  bottom: 100px;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding-top: 6px;
  background: var(--color-white);
  border-radius: 50%;
  box-shadow: 0 2px 4px 0 rgb(14 30 37 / 12%), 0 2px 16px 0 rgb(14 30 37 / 32%);
}#scrollTop.active {
  display: flex;
}#scrollTop::after {
  display: block;
  width: 14px;
  height: 14px;
  border: 2px solid var(--color);
  border-right: none;
  border-bottom: none;
  transform: rotate(45deg);
  content: "";
}@media screen and (max-width: 768px) { #scrollTop {
    bottom: 70px;
  }
    .ribbon_line.color {
        top: auto;
        bottom: 120px;
    }
    .ribbon_line.color::after {
        width: 40px;
    }
    .ribbon_line.color .ribbon__text {
        width: 40px;
        padding-left: 0;
    }
    .ribbon_line .ribbon__text .icon {
        width: 25px;
        height: 25px;
    }
}#mobileMenu {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 99;
  display: flex;
  width: 100%;
  height: 50px;
  padding: 0 20px;
  background: var(--color-white);
  border-top: 2px solid var(--color-border);
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -4px 15px rgb(0 0 0/12%);
}#mobileCatalog {
  position: absolute;
  bottom: calc(100% + 2px);
  left: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 370px;
  height: calc(100dvh - 50px);
  overflow: auto;
  background: var(--color-white);
  box-shadow: 5px 0 12px rgb(0 0 0 / 12%);
  transform: translateX(-100%);
  transition: all 100ms;
}#mobileCatalog::-webkit-scrollbar {
  display: none;
}#mobileCatalog:hover {
  transform: translateX(0);
}.mobile_menu__item {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  line-height: 1;
}.mobile_menu__item .icon {
  width: 25px;
  height: 25px;
  pointer-events: none;
}.mobile_menu__item.cart {
  position: relative;
}.mobile_menu__item.cart::after {
  position: absolute;
  top: 2px;
  right: 0;
  padding: 2.5px 0.5em;
  color: var(--color-white);
  font-size: 0.7em;
  background: var(--color-red);
  border-radius: 10px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.1s;
  content: attr(data-cart-count);
}.mobile_menu__item.wishlist {
  position: relative;
}.mobile_menu__item.wishlist .icon {
  fill: var(--color-white);
}.mobile_menu__item.wishlist.active .icon {
  fill: var(--color-red);
}.mobile_menu__item.wishlist.active::after {
  opacity: 1;
}.mobile_menu__item.wishlist::after {
  position: absolute;
  top: 2px;
  right: 0;
  padding: 2.5px 0.5em;
  color: var(--color-white);
  font-size: 0.7em;
  background: var(--color-red);
  border-radius: 10px;
  opacity: 0;
  transition: all 0.1s;
  content: attr(data-count-wishlist);
}.mobile_menu__item.catalog {
  position: relative;
  cursor: pointer;
}.mobile_menu__item.catalog .burger_icon {
  pointer-events: none;
}.mobile_menu__item.catalog.active .burger_icon {
  height: 0;
  pointer-events: none;
}.mobile_menu__item.catalog.active .burger_icon::before {
  transform: translateY(5px) rotate(45deg);
}.mobile_menu__item.catalog.active .burger_icon::after {
  transform: translateY(-5px) rotate(-45deg);
}.mobile_menu__item.catalog.active ~ #mobileCatalog {
  transform: translateX(0);
}.mobile_menu__item.catalog::before {
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
}.mobile_catalog__item {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  cursor: pointer;
}.mobile_catalog__item.new {
  color: var(--color-green);
  font-weight: bold;
  background-image: linear-gradient(to right, rgb(14 174 87 / 20%) 0%, rgb(12 116 117 / 10%) 41%, rgb(14 174 87 / 20%) 120%);
  background-size: 200% auto;
}.mobile_catalog__item.new .icon {
  fill: var(--color-icon-border);
}.mobile_catalog__item.top {
  font-weight: bold;
}.mobile_catalog__item .icon {
  width: 21px;
  height: 21px;
}.mobile_catalog__item:hover {
  background-color: var(--color-grey);
}.mobile_catalog__item:hover .icon {
  fill: var(--color-green);
}#mobileCatalogList {
  display: flex;
  flex-direction: column;
}@media screen and (max-width: 660px) { .mobile_menu__item {
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 2px;
    font-size: clamp(0.7em, 3vw, 0.8em);
  }.mobile_menu__item .burger_icon {
    transform: translateY(-9px);
  }.mobile_menu__item .icon {
    width: 21px;
    height: 21px;
  }
}.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding: 0.6em 20px;
  border-bottom: 1.5px solid lightgray;
}.breadcrumbs__back {
  display: flex;
  gap: 8px;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
}.breadcrumbs__back::before {
  display: block;
  width: clamp(10px, 20vw, 20px);
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 106 62'%3E%3Cpath d='M.88,21.1l16,16a2.9,2.9,0,0,0,4.2,0,2.9,2.9,0,0,0,0-4.2L10.18,22H83a17,17,0,0,1,0,34,3,3,0,0,0,0,6,23,23,0,0,0,0-46H10.18L21.08,5.1a2.9,2.9,0,0,0,0-4.2,2.9,2.9,0,0,0-4.2,0l-16,16A2.9,2.9,0,0,0,.88,21.1Z' transform='translate(0.02)' fill='%23444b54'/%3E%3Cpath d='M53,56a3,3,0,1,0,0,6H63a3,3,0,1,0,0-6Z' transform='translate(0.02)' fill='%23444b54'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  content: "";
}.breadcrumbs__back:hover::before {
  transform: scale(1.1);
}.breadcrumbs__item {
  display: flex;
  font-size: clamp(0.9em, 1.6vw, 1em);
  white-space: nowrap;
  cursor: pointer;
}.breadcrumbs__item a {
  font-size: clamp(0.9rem, 1.6vw, 1rem);
}.breadcrumbs__item span {
  margin-left: 10px;
}.breadcrumbs__link:hover {
  text-decoration: underline;
  cursor: pointer;
}.spinner {
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  max-height: inherit;
}.spinner::after {
  width: 48px;
  height: 48px;
  border: 5px solid var(--color-grey);
  border-bottom-color: var(--color-red);
  border-radius: 50%;
  animation: rotation 1s linear infinite;
  content: "";
}.form_label {
  display: flex;
  flex-direction: column;
}.input_error {
  order: 0;
  font-size: 0.7em;
  opacity: 0;
}.form_input {
  order: 1;
  width: 100%;
  height: 40px;
  padding: 0.5em;
  border: 2px solid var(--color-border);
  border-radius: 8px;
}.form_input:invalid,
.form_input-error {
  border: 2px solid var(--color-red);
}.form_input:invalid ~ .input_error {
  color: var(--color-red);
  opacity: 1;
}[data-currency]::after {
  margin-left: 0.2em;
  font-weight: normal;
  font-size: 0.9em;
  content: attr(data-currency);
}.button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  margin-top: auto;
  padding: 0 20px;
  color: var(--color-white);
  font-size: 1.2em;
  background-image: linear-gradient(90deg, #0eae57 0, #0c7475 41%, #0eae57 120%);
  background-size: 200% auto;
  border-radius: 8px;
  transition: all 0.2s;
}.button:hover {
  background-position: 100%;
}#scrollTop {
  display: none;
}input[placeholder] {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}.subfooter_contacts {
  padding-bottom: 50px;
}.form_label {
  display: flex;
  flex-direction: column;
}.input_error {
  order: 0;
  font-size: 0.7em;
  opacity: 0;
}.form_input {
  order: 1;
  width: 100%;
  height: 40px;
  padding: 0.5em;
  border: 2px solid var(--color-border);
  border-radius: 8px;
}.form_input:invalid {
  border: 2px solid var(--color-red);
}.form_input:invalid ~ .input_error {
  color: var(--color-red);
  opacity: 1;
}.ribbon_line {
  --bg: var(--color-green);
  --c-text: var(--color-white);
  --offset: 10px;
  --height: 38px;
  position: absolute;
  top: 40px;
  left: -10px;
  z-index: 1;
}.ribbon_line::before {
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 0;
  border-top: var(--offset) solid var(--bg);
  border-left: var(--offset) solid transparent;
  filter: brightness(50%);
  content: "";
}.ribbon_line::after {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 170px;
  height: 35px;
  color: var(--c-text);
  text-shadow: 0 1px 1px rgb(0 0 0 / 20%);
  background-color: var(--bg);
  border-radius: 4px 4px 4px 0;
  box-shadow:
    rgb(0 0 0 / 40%) 0 2px 4px,
    rgb(0 0 0 / 30%) 0 7px 13px -3px,
    rgb(0 0 0 / 20%) 0 -3px 0 inset;
  content: attr(data-ribbon-text);
}.ribbon_line .ribbon__text {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 156px;
  height: 35px;
  padding-bottom: 3px;
  padding-left: 10px;
  color: var(--c-text);
  font-size: 1.1em;
  line-height: 1;
}.ribbon_line.right,
.ribbon_line.color {
  right: -10px;
  left: auto;
}.ribbon_line.right::before,
.ribbon_line.color::before {
  right: 0;
  left: auto;
  border-top: var(--offset) solid var(--bg);
  border-right: var(--offset) solid transparent;
  border-left: transparent;
}.ribbon_line.right::after,
.ribbon_line.color::after {
  border-radius: 4px 4px 0;
}.ribbon_line.sale,
.ribbon_line.new_middle {
  top: auto;
  bottom: 170px;
}.ribbon_line.sale::after,
.ribbon_line.new_middle::after {
  width: 60px;
}.ribbon_line.sale .ribbon__text,
.ribbon_line.new_middle .ribbon__text {
  width: 60px;
  padding-left: 0;
}.product_color__prompt {
    position: absolute;
    right: 0;
    bottom: calc(100% + 15px);
    display: none;
    padding: 5px 1em;
    white-space: nowrap;
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: 8px;
    box-shadow: 0 2px 4px 0 rgb(14 30 37 / 12%), 0 2px 16px 0 rgb(14 30 37 / 32%);
}.product_color__prompt::after {
    position: absolute;
    top: 100%;
    right: 2px;
    width: 0;
    height: 0;
    border-top: 10px solid var(--color-white);
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    content: "";
}.product_color__prompt::before {
    position: absolute;
    top: 100%;
    right: -2px;
    width: 0;
    height: 0;
    border-top: 14px solid var(--color-border);
    border-right: 14px solid transparent;
    border-left: 14px solid transparent;
    content: "";
}.product_card__details {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  width: 100%;
  max-width: inherit;
  padding: 0 1em;
  background: var(--color-white);
  border-radius: 0 0 4px 4px;
}.ribbon_line.color:hover .product_color__prompt {
    display: block;
}.product_card__price_bonus {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 5;
  padding: 1px 5px;
  color: var(--color-white);
  font-size: 0.9em;
  background: #7f5cbd;
  border-radius: 5px 5px 0;
  transform: translate(2px, 50%);
}.product_card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 290px;
  padding: 38px 1em 1em;
  background: var(--color-white);
  border-radius: 4px;
  box-shadow: lightgray 0 0 0 2px;
}.product_card:hover,
.product_card.active {
  border-radius: 4px 4px 0 0;
  box-shadow: rgba(var(--color-green-alpha) / 30%) 0 0 0 3px;
  box-shadow: var(--color-green) 0 0 0 2px;
}.product_card:hover .product_card__details {
  z-index: 5;
  display: block;
  box-shadow: 2px 2px 0 var(--color-green), -2px 2px 0 var(--color-green);
}.product_card__top {
  position: absolute;
  top: 10px;
  left: 1em;
  display: flex;
  justify-content: space-between;
  width: calc(100% - 2em);
}.product_card__img_container {
  position: relative;
  width: 100%;
}.product_card__img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  border-radius: 4px;
}.product_card__img_list {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 100%;
}.hide-phone {
    @media (max-width: 650px) {
        display: none;
    }
}.product_card__visible {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: space-between;
}.add_to_wishlist {
  display: flex;
  align-items: center;
  margin-left: auto;
  font-size: 0.9em;
  cursor: pointer;
}.add_to_wishlist .icon_heart {
  width: 18px;
  height: 18px;
  pointer-events: none;
  fill: var(--color-white);
}.product_card__title {
  display: -webkit-box;
  width: 100%;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}.product_card__title:hover {
  text-decoration: underline;
}.product_card__price_container {
  display: flex;
  gap: 6px;
}.product_card__price {
  color: var(--color-dark-blue);
  font-size: 1.7em;
  line-height: 0.8;
}.product_card__old_price {
  color: var(--color-black);
  -webkit-text-decoration-color: var(--color-red);
  text-decoration-color: var(--color-red);
  font-weight: normal;
  font-size: 1.1em;
  line-height: 1;
  transform: translateY(-9px);
}.product_card__price_sale {
  position: relative;
  display: flex;
  flex-direction: column;
}.product_card__vygoda {
  position: absolute;
  bottom: -2px;
  color: var(--color-red);
  font-size: 0.8em;
  line-height: 1;
  white-space: nowrap;
}@media screen and (max-width: 768px) { .product_card:hover,
  .product_card.active {
    border: none;
    border-radius: 4px;
    box-shadow: 0 0 0 2px var(--color-border);
  }.product_card:hover .product_card__details {
    display: none;
  }
}.rating_stars_container {
  display: flex;
  gap: 2px;
  align-items: center;
}.review_star {
  --size: 18px;
  width: var(--size);
  height: var(--size);
  fill: var(--color-dark-grey);
}.review_star * {
  pointer-events: none;
}.review_star.active {
  fill: var(--color-yellow);
}.products_list {
  position: relative;
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  justify-content: space-between;
  width: 100%;
  min-height: 380px;
  padding: 20px 0;
}.slider {
  display: flex;
  width: 100%;
  -webkit-user-select: none;
  -moz-user-select: -moz-none;
  -ms-user-select: none;
  user-select: none;
  touch-action: pan-y;
}.slider-item {
  z-index: 2;
  flex: 1;
  transform: translate3d(var(--transform), 0, 0);
  will-change: transform;
}.products_list {
  position: relative;
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  justify-content: space-between;
  width: 100%;
  min-height: 380px;
  padding: 20px 0;
}#subscription {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 2.6vw, 20px);
  align-items: center;
  justify-content: center;
  min-height: 150px;
  padding: 0 20px;
  font-size: clamp(0.9em, 3vw, 1em);
  background: var(--color-grey);
  border-top: 2px solid var(--color-dark-grey);
}#subscription p {
  font-weight: 500;
}.subscription__container {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, 2.6vw, 20px);
  justify-content: center;
  width: 100%;
}.subscription__container .icon {
  width: 23px;
  height: 23px;
}.subscription__container label {
  display: flex;
  gap: 10px;
  align-items: center;
  width: clamp(200px, 50vw, 400px);
  height: clamp(35px, 8vw, 40px);
  padding: 0 10px;
  background-color: var(--color-white);
  border: 1px solid var(--color-black);
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgb(0 0 0 / 5%), inset 0 0 0 1px #d1d5db;
}[name='subscriptionEmail'] {
  width: 100%;
  height: 100%;
}.button_default {
  height: clamp(35px, 8vw, 40px);
  padding: 0 2em;
  color: var(--color-white);
  background-image: linear-gradient(109.6deg, #e64e41 0, #b93335 41%, #e64e41 120%);
  background-size: 200%;
  border-radius: 4px;
  cursor: pointer;
  transition: all 200ms;
}.button_default:hover {
  background-position: right center;
}#footer {
  margin-top: auto;
  background: var(--color-grey);
}.footer_navigation {
  display: flex;
  gap: clamp(10px, 1.2vw, 20px);
  justify-content: space-evenly;
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 2px solid var(--color-dark-grey);
}.footer_menu {
  width: clamp(200px, 20vw, 230px);
}.footer_item {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5em, 2vw, 1em);
  margin-top: clamp(0.5em, 2vw, 1em);
}.footer_item li {
  min-height: 22px;
}.footer_item__title {
  font-size: clamp(1em, 2vw, 1.1em);
  text-transform: uppercase;
}.footer_item__title .chevron_down {
  display: none;
}.footer_item__title.product {
  display: none;
}.footer_item__link {
  font-size: clamp(0.9em, 2vw, 1em);
  cursor: pointer;
}.footer_item__link:hover {
  text-decoration: underline;
}.subfooter {
  position: relative;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-evenly;
  height: auto;
  min-height: 100px;
  padding: 10px 20px;
  background: var(--color-grey);
}.subfooter_item {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}.subfooter_item span {
  font-size: 0.8em;
}.subfooter_social__container {
  display: flex;
  gap: 8px;
}.subfooter_social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  row-gap: 0;
}.subfooter_social__item {
  width: 30px;
  height: 30px;
}.subfooter_social__item .icon {
  width: 30px;
  height: 30px;
}.subfooter_app {
  position: relative;
  display: flex;
  gap: 10px;
  max-width: 205px;
}.subfooter_contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  width: 100%;
  max-width: 754px;
  column-gap: 20px;
  row-gap: 5px;
}[data-footer='main'] {
  display: flex;
  flex-direction: column;
  gap: 20px;
}[data-footer='main'] .footer_item {
  margin-top: 1px;
}@media screen and (max-width: 890px) { .footer_navigation {
    display: grid;
    grid-template: repeat(2, 1fr) / repeat(2, 1fr);
    gap: 10px;
    justify-items: center;
  }.footer_item {
    gap: 5px;
  }.footer_menu {
    width: 100%;
  }
}@media screen and (max-width: 768px) { [data-footer='main'] {
    gap: 0;
  }.footer_navigation {
    display: flex;
    flex-direction: column;
  }.footer_menu {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 720px;
    margin-bottom: -2px;
    padding: 10px;
    border-bottom: 1px solid var(--color-black);
  }.footer_menu:last-child {
    border-bottom: none;
  }.footer_item__title {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    font-size: 1em;
    white-space: nowrap;
    cursor: pointer;
  }.footer_item__title .chevron_down {
    display: flex;
  }.footer_item__title.product {
    display: flex;
  }.footer_item {
    display: flex;
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    transition: all 300ms;
    will-change: max-height;
  }.footer_menu.active .chevron_down::after {
    transform: translateX(-2px) rotate(45deg);
  }.footer_menu.active .chevron_down::before {
    transform: translateX(2px) rotate(-45deg);
  }.footer_menu.active .footer_item {
    margin-top: 10px;
  }
}@media screen and (max-width: 728px) { .subfooter {
    flex-wrap: wrap;
    gap: 0;
  }.subfooter_contacts {
    justify-content: center;
  }.subfooter_item {
    align-items: center;
    min-width: 25%;
  }
}
.buy_set-button {
      position: absolute;
      right: 0;
      top: 0px;
      display: none;
      align-items: center;
      justify-content: center;
      gap: 8px;

      padding: 8px 18px;
      border: 2px solid transparent;
      border-radius: 8px;

      background:
        linear-gradient(#f1f1f1, #f1f1f1) padding-box,
        linear-gradient(
          to right,
          #0eae57 0%,
          #0c7475 41%,
          #0eae57 120%
        ) border-box;

      background-size: 200% auto;

      color: #0eae57;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;

      transition:
        color 0.3s ease,
        background-position 0.4s ease,
        transform 0.12s ease,
        opacity 0.2s ease,
        box-shadow 0.2s ease;

      user-select: none;
    }

.buy_set-button:hover:not(:disabled):not(.loading) {
      color: #fff;

      background:
        linear-gradient(
          to right,
          #0eae57 0%,
          #0c7475 41%,
          #0eae57 120%
        ) padding-box,
        linear-gradient(
          to right,
          #0eae57 0%,
          #0c7475 41%,
          #0eae57 120%
        ) border-box;

      background-size: 200% auto;
      background-position: right center;

      box-shadow: 0 4px 14px rgba(12, 116, 117, 0.25);
    }

.buy_set-button:active:not(:disabled):not(.loading) {
      transform: scale(0.96);
    }
.buy_set-button:disabled {
      opacity: 0.45;
      cursor: not-allowed;
      color: #7b7b7b;

      background:
        linear-gradient(#f3f3f3, #f3f3f3) padding-box,
        linear-gradient(to right, #bdbdbd, #cfcfcf) border-box;
    }

.buy_set-button.loading {
      color: transparent;
      pointer-events: none;
    }

.buy_set-button.loading::after {
      content: "";

      position: absolute;
      width: 16px;
      height: 16px;

      border: 2px solid rgba(14, 174, 87, 0.25);
      border-top-color: #0c7475;
      border-radius: 50%;

      animation: spin 0.7s linear infinite;
    }

    @keyframes spin {
      to {
        transform: rotate(360deg);
      }
    }
