@import url(https://fonts.googleapis.com/css?family="Vinnytsia Sans":regular, 500, 600&display=swap);
#loader-wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

:root{
  --ink:#0a0a0a;
  --paper:#ffffff;
  --line:#0a0a0a;
  --muted:#6f6f6f;
  --hair:rgba(10,10,10,.14);
}

#loader,
.simplecheckout_overlay {
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@font-face {
  font-family: "Charpentier Sans Pro 45 Leger";
  font-display: swap;
  src: url(../fonts/CharpentierSansPro-Leger.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Charpentier Sans Pro 55 Normale";
  font-display: swap;
  src: url(../fonts/CharpentierSansPro-Normal.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Vinnytsia Sans";
  src: url(../fonts/VinnytsiaSans-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
}
* {
  padding: 0;
  margin: 0;
  border: 0;
}
*,
*::after,
*::before {
  box-sizing: border-box;
}
*::after,
*::before {
  display: inline-block;
}
body,
html {
  height: 100%;
  min-width: 320px;
}
body {
  color: #000;
  line-height: 1;
  font-family: "Vinnytsia Sans";
  font-size: 1rem;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
button,
input,
textarea {
  font-family: "Vinnytsia Sans";
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  background-color: transparent;
}
input,
textarea {
  width: 100%;
}
label {
  display: inline-block;
}
button,
option,
select {
  cursor: pointer;
}
a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}
ul li {
  list-style: none;
}
img {
  vertical-align: top;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}
* {
  transition: color 0.3s ease, background-color 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: color 0.3s ease, background-color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
  transition: color 0.3s ease, background-color 0.3s ease, opacity 0.3s ease, transform 0.3s ease,
    -webkit-transform 0.3s ease;
}
.lock body {
  overflow: hidden;
  touch-action: none;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}
.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@supports (overflow: clip) {
  .wrapper {
    overflow: clip;
  }
}
.wrapper > main {
  flex: 1 1 auto;
}
.wrapper > * {
  min-width: 0;
}
[class*="__container"] {
  max-width: 90.75rem;
  margin: 0 auto;
  padding: 0 1rem;
}
.icon-menu {
  display: none;
}
.ibg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.ibg--top {
  -o-object-position: top;
  object-position: top;
}
.ibg--bottom {
  -o-object-position: bottom;
  object-position: bottom;
}
.ibg--left {
  -o-object-position: left;
  object-position: left;
}
.ibg--right {
  -o-object-position: right;
  object-position: right;
}
.ibg--contain {
  -o-object-fit: contain;
  object-fit: contain;
}
.btn {
  display: inline-flex;
  padding: 18px 64px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-family: "Vinnytsia Sans";
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  text-transform: uppercase;
  border-radius: 5px;
  border: 1.5px solid transparent;
}
.btn-primary {
  background: var(--White, #fff);
  color: var(--Black, #000);
}
.btn-primary:focus {
  border: 1.5px solid var(--Main, #921213);
}
.btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
}
.btn-secondary {
  color: var(--White, #fff);
  background: var(--Black, #000);
}
.btn-secondary:focus {
  border: 1.5px solid var(--Main, #921213);
}
.btn-secondary:hover {
  background: rgba(0, 0, 0, 0.85);
}
.header {
  height: 84px;
  position: fixed;
  width: 100%;
  z-index: 2;
  top: 0;
  background-color: transparent;
}
.header.scrolled {
  background-color: #fff;
  border-bottom: 1px solid var(--black-15, rgba(0, 0, 0, 0.15));
}
.header.scrolled .icon-menu span,
.header.scrolled .icon-menu::after,
.header.scrolled .icon-menu::before {
  background-color: #000;
}
.header.scrolled .header__logo svg path {
  fill: #000;
}
.header.scrolled .header__action,
.header.scrolled .menu__link {
  color: var(--Black, #000);
}
.header.scrolled .header__action.active,
.header.scrolled .menu__link.active {
  color: var(--black-50, rgba(0, 0, 0, 0.5));
}
.header.scrolled .header__action.active svg,
.header.scrolled .menu__link.active svg {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.header.scrolled .header__action.active svg path,
.header.scrolled .menu__link.active svg path {
  stroke: var(--black-50, rgba(0, 0, 0, 0.5));
}
.header.scrolled svg path {
  stroke: #000;
}
.header.active {
  background-color: #fff;
}
.header.active .icon-menu span,
.header.active .icon-menu::after,
.header.active .icon-menu::before {
  background-color: #000;
}
.header.active .header__logo svg path {
  fill: #000;
}
.header.active .header__action,
.header.active .menu__link {
  color: var(--Black, #000);
}
.header.active .header__action.active,
.header.active .menu__link.active {
  color: var(--black-50, rgba(0, 0, 0, 0.5));
}
.header.active .header__action.active svg,
.header.active .menu__link.active svg {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.header.active .header__action.active svg path,
.header.active .menu__link.active svg path {
  stroke: var(--black-50, rgba(0, 0, 0, 0.5));
}
.header.active svg path {
  stroke: #000;
}
.header__container {
  height: 100%;
  padding: 20px 16px;
  max-width: 1568px;
  margin: 0 auto;
}
.header__action,
.header__content {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__menu {
  display: flex;
  align-items: center;
}
.top-banner {
  padding: 18px;
  background: #000;
  position: relative;
  z-index: 1;
}

.top-banner__container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  color: #fff;
  gap: 12px;
}
.menu__list {
  display: flex;
  align-items: center;
  gap: 32px;
}
.menu__item .submenu {
  opacity: 0;
  visibility: hidden;
}
.menu__item.active .submenu {
  opacity: 1;
  visibility: visible;
}
.header__action,
.menu__link {
  color: var(--White, #fff);
  font-family: "Vinnytsia Sans";
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}
.header__action.active,
.menu__link.active {
  color: var(--black-50, rgba(0, 0, 0, 0.5));
}
.header__action.active svg,
.menu__link.active svg {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.header__action.active svg path,
.menu__link.active svg path {
  stroke: var(--black-50, rgba(0, 0, 0, 0.5));
}
.header__content > .header__logo {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.menu__mob {
  display: flex;
  gap: 16px;
  align-items: center;
}
.menu__mob .header__logo {
  display: none;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header__search svg {
  display: none;
}
.menu__item.header__wish {
  display: none;
}
.header__action.header__wish {
  display: block;
}
.submenu {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  width: 100%;
  height: calc(100vh - 84px);
  max-height: 333px;
}
.submenu__container {
  padding: 0 16px;
  max-width: 1568px;
  margin: 0 auto;
  height: 100%;
}
.submenu__body {
  padding: 32px 0;
  /* margin-left: 320px; */
}
.submenu__content {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  height: 100%;
}
.submenu__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 210px;
  height: 100%;
  overflow-y: auto;
  padding-right: 10px;
}
.submenu__list::-webkit-scrollbar {
  width: 3px;
  border-radius: 2px;
}
.submenu__list::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.15); /* color of the tracking area */
}
.submenu__list::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.5);
}
.section__products__categories__list::-webkit-scrollbar {
  height: 5px;
  border-radius: 2px;
}
.section__products__categories__list::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.15); /* color of the tracking area */
}
.section__products__categories__list::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.submenu__item {
  font-family: "Vinnytsia Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
}
.submenu__item:hover {
  color: var(--black-50, rgba(0, 0, 0, 0.5));
}
.submenu__products {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  width: 100%;
}
.submenu__product {
  width: 100%;
  max-width: 264px;
  max-height: 333px;
}
.submenu__product img {
  width: 100%;
  max-width: 264px;
  max-height: 333px;
}
.footer {
  margin-top: 140px;
}
.footer__top {
  padding: 32px 0;
  border-top: 1px solid var(--black-15, rgba(0, 0, 0, 0.15));
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
.footer__top p {
  max-width: 325px;
  color: var(--black-50, rgba(0, 0, 0, 0.5));
  font-family: "Vinnytsia Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
  text-transform: uppercase;
}
.footer__top p span {
  color: var(--Black, #000);
}
.footer__form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.footer__form input {
  padding-left: 16px;
  border: none;
  border-bottom: 1.5px solid var(--Black, #000);
  background: var(--White, #fff);
  font-family: "Vinnytsia Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  height: 54px;
}
.footer__content {
  padding: 32px 0;
  border-top: 1px solid var(--black-15, rgba(0, 0, 0, 0.15));
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.footer__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.footer__right {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  max-width: 900px;
  width: 100%;
}
.footer__item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer__title {
  color: var(--black-50, rgba(0, 0, 0, 0.5));
  font-family: "Vinnytsia Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
  text-align: left;
}
.footer__title svg {
  display: none;
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer__link {
  color: var(--Black, #000);
  font-family: "Vinnytsia Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
}
.footer__bottom {
  padding: 32px 0;
  border-top: 1px solid var(--black-15, rgba(0, 0, 0, 0.15));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.footer__bottom p {
  color: var(--black-50, rgba(0, 0, 0, 0.5));
  text-align: center;
  font-family: "Vinnytsia Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  text-transform: uppercase;
}
.footer__bottom p span {
  font-weight: 600;
}
.section__main__slider {
  position: relative;
}
.section__main__slide {
  position: relative;
}
.section__main__slide img {
  width: 100%;
  height: 100%;
  min-height: 625px;
  max-height: 820px;
  -o-object-fit: cover;
  object-fit: cover;
}
.section__main__slide__inner {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 650px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  padding: 0 16px;
}
.section__main__slide__inner h1 {
  color: var(--White, #fff);
  text-align: center;
  font-family: "Vinnytsia Sans";
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}
.section__main__slide__inner p {
  color: var(--White, #fff);
  text-align: center;
  font-family: "Vinnytsia Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
.section__main__slide__link {
  margin-top: 28px;
}
.section__main-prev {
  position: absolute;
  left: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.section__main-next {
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.section__main-next img {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.main_slider-pagination {
  display: none;
}
.section__bestseller {
  padding-top: 140px;
}
.section__bestseller__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section__bestseller__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.section__bestseller__title {
  color: var(--Black, #000);
  font-family: "Vinnytsia Sans";
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
}
.section__bestseller__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px; /* Adjust the value to set the distance from the text */
  width: 82%;
  height: 1px; /* Adjust the height of the underline */
  background-color: var(--black-50, rgba(0, 0, 0, 0.5));
}
.section__bestseller__link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--black-50, rgba(0, 0, 0, 0.5));
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  /* text-decoration-line: underline; */
  text-transform: uppercase;
}
.section__bestseller__link:hover img {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.product__card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
  position: relative;
}
.product__card__top a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}
.product__card__top {
/*  flex: 1 0 0;*/
  position: relative;
  display: flex;
  justify-content: center;
}
.product__card__image {
  height: 100%;
  width: 100%;
  max-width: 439px;
  max-height: 548px;
  object-fit: cover;
}

.product__card__wish {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 28px !important;
  height: 28px !important;
}
.product__card__bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}
.product__card__bottom__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product__card__title {
  color: var(--Black, #000);
  font-family: "Vinnytsia Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
}
.product__card__price {
  /* color: var(--black-50, rgba(0, 0, 0, 0.5)); */
  color: #b11617;
  font-family: "Vinnytsia Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  text-transform: uppercase;
}
.product__card__price__content.price__special {
  display: flex;
  gap: 5px;
}
.product__card__price__content.price__special .product__card__price {
  text-decoration: line-through;
  font-size: 14px;
}
.product__card__price__content.price__special .product__card__price__special {
  color: #921213;
  font-family: "Vinnytsia Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  text-transform: uppercase;
}
.product__card__bottom__options {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}
.product__card__bottom__options input {
  display: none;
}
.product__card__bottom__options input:checked + label::after {
  border: 1.5px solid var(--Black, #000);
}
.product__card__color {
  position: relative;
  cursor: pointer;
}
.product__card__color::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  content: "";
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border-radius: 100px;
}
.product__card__color::after {
  content: "";
  display: flex;
  width: 28px;
  height: 28px;
  padding: 5px;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  border: 1.5px solid var(--black-15, rgba(0, 0, 0, 0.15));
  background: var(--White, #fff);
}
.section__bestseller-pagination {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.section__bestseller-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 100px;
  background: var(--black-15, rgba(0, 0, 0, 0.15));
}
.section__bestseller-pagination .swiper-pagination-bullet-active {
  background: var(--Black, #921213);
}
.section__showrooms {
  padding-top: 140px;
}
.section__showrooms__content {
  display: flex;
  flex-direction: column;
  gap: 52px;
}
.section__showrooms__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.section__showrooms__title {
  color: var(--Black, #000);
  text-align: center;
  font-family: "Vinnytsia Sans";
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
}
.section__showrooms__subtitle {
  max-width: 650px;
  color: var(--black-65, rgba(0, 0, 0, 0.65));
  text-align: center;
  font-family: "Vinnytsia Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
/* .section__product__thumb__wrapper {
  flex-direction: column-reverse!important;
} */
.section__showrooms__btns {
  margin-top: 8px;
  display: flex;
  gap: 16px;
}
.section__showrooms__btn {
  padding: 16px 32px;
  border-radius: 5px;
  border: 1px solid var(--black-15, rgba(0, 0, 0, 0.15));
  color: var(--Black, #000);
  font-family: "Vinnytsia Sans";
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  text-transform: uppercase;
}
.section__showrooms__btn.active {
  background: var(--Black, #000);
  border: 1px solid var(--black-15, #000);
  color: var(--White, #fff);
}
.section__showrooms__inner {
  display: flex;
  flex-direction: column;
  gap: 72px;
}
.section__showrooms__item {
  display: flex;
  align-items: center;
  gap: 64px;
}
.section__showrooms__item:nth-child(2n) {
  flex-direction: row-reverse;
}
.section__showrooms__item__image {
  width: 100%;
  max-width: 678px;
  max-height: 650px;
}
.section__showrooms__item__image img {
  width: 100%;
}
.section__showrooms__item__content {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.section__showrooms__item__tag {
  color: var(--black-65, rgba(0, 0, 0, 0.65));
  font-family: "Vinnytsia Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section__showrooms__item__title {
  color: var(--Main, #921213);
  font-family: "Vinnytsia Sans";
  font-size: 46px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.section__showrooms__item__text {
  color: var(--Black, #000);
  font-family: "Vinnytsia Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 64px;
}
.section__showrooms__item__info {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;
}
.section__showrooms__item__info:not(:last-child) {
  margin-bottom: 64px;
}
.section__showrooms__item__info__item {
  max-width: 307px;
}
.section__showrooms__item__info__title {
  color: var(--Main, #921213);
  leading-trim: both;
  text-edge: cap;
  font-family: "Vinnytsia Sans";
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section__showrooms__item__info__text {
  color: var(--Black, #000);
  font-family: "Vinnytsia Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
.hidden {
  display: none;
}
.swiper {
  overflow: hidden;
}
.swiper-initialized {
  touch-action: pan-y;
}
.swiper-wrapper {
  width: 100%;
  height: 100%;
  box-sizing: content-box;
  display: flex;
  position: relative;
}
.swiper-vertical .swiper-wrapper {
  flex-direction: column;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
}
.swiper-initialized .swiper-slide {
  flex-shrink: 0;
}
.swiper-android .swiper-slide,
.swiper-android .swiper-wrapper {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.swiper-button-lock {
  display: none !important;
}
.section__products,
.seach__content {
  margin-top: 84px;
  padding-top: 64px;
}
.search__form {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 800px;
  min-height: auto !important;
  margin-bottom: 24px;
}
.search__form input[type="button"] {
  background: var(--Black, #000);
  border: 1px solid var(--black-15, #000);
  color: var(--White, #fff);
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
}
.breadcrumbs__list {
  display: flex;
  gap: 12px;
  align-items: center;
  text-wrap: nowrap;
  flex-wrap: wrap;
}

.breadcrumbs__item span {
  display: block;
}
.breadcrumbs__item:last-child span {
  display: none;
}
.breadcrumbs__item.active .breadcrumbs__link {
  color: var(--black-50, rgba(0, 0, 0, 0.5));
}
.breadcrumbs__link {
  display: flex;
  gap: 12px;
  color: var(--Black, #000);
  font-family: "Vinnytsia Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}
.breadcrumbs__link span {
  color: var(--black-50, rgba(0, 0, 0, 0.5));
}
.section__products__content {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section__products__title {
  color: var(--Black, #000);
  font-family: "Vinnytsia Sans";
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
}
.section__products__categories {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.section__products__categories__list {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  max-width: 100%;
  padding-bottom: 12px;
}
.section__products__categories__item.active .section__products__categories__link {
  background: var(--Black, #000);
  color: var(--White, #fff);
}
.section__products__categories__item.active .section__products__categories__link:hover {
  background: rgba(0, 0, 0, 0.85);
}
.section__products__categories__link {
  border: 1px solid var(--black-15, rgba(0, 0, 0, 0.15));
  border-radius: 5px;
  background: var(--Black, #fff);
  padding: 14px 32px;
  color: var(--Black, #000);
  font-family: "Vinnytsia Sans";
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  text-transform: uppercase;
  white-space: nowrap;
}
.section__products__categories__link:hover {
  background: rgba(255, 255, 255, 0.9);
}
.section__products__categories__link:focus {
  border: 1.5px solid var(--Main, #921213);
}
.section__products__filter {
  padding-bottom: 12px;
}
.section__products__filter .section__products__count {
  display: none;
}
.section__products__filter .section__products__filter__btn span {
  display: none;
}
.section__products__filter__btn img {
  display: flex;
  width: 45px;
  height: 45px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-radius: 5px;
  border: 1px solid var(--black-15, rgba(0, 0, 0, 0.15));
}
.section__products__list {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 32px;
  -moz-column-gap: 32px;
  column-gap: 32px;
  row-gap: 52px;
  padding: 0 110px;
}
.section__products__list .product__card {
  max-width: 500px;
  grid-column: span 3;
  justify-self: center;
}
.section__products__list .product__card .product__card__image {
  width: 500px;
  height: 700px;
  object-fit: cover;
  object-position: center;
  max-width: none;
  max-height: none;
}
.section__products__list .product__card:nth-child(3),
.section__products__list .product__card:nth-child(4),
.section__products__list .product__card:nth-child(5),
.section__products__list .product__card:nth-child(7),
.section__products__list .product__card:nth-child(8),
.section__products__list .product__card:nth-child(9) {
  grid-column: span 1;
  justify-self: center;
}
.section__products__list .product__card:nth-child(3) .product__card__image,
.section__products__list .product__card:nth-child(4) .product__card__image,
.section__products__list .product__card:nth-child(5) .product__card__image,
.section__products__list .product__card:nth-child(7) .product__card__image,
.section__products__list .product__card:nth-child(8) .product__card__image,
.section__products__list .product__card:nth-child(9) .product__card__image {
  width: 342px;
  height: 480px;
}
.wishlist .product__card {
  grid-column: span 1 !important;
}
.section__products__list__2items {
  grid-column: span 3;
  display: flex;
  justify-content: center;
  gap: 32px;
}
.section__products .pagination .body-pagination__number.active {
  background: var(--Black, #000);
  color: var(--White, #fff);
}
.section__products .pagination .body-pagination__number {
  display: flex;
  width: 46px;
  height: 46px;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  color: var(--Black, #000);
  font-family: "Vinnytsia Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 16px */
  text-transform: uppercase;
}
.section__products .pagination .pagination__body {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}
.section__products .pagination .pagination__btn {
  color: var(--black-50, rgba(0, 0, 0, 0.5));
  font-family: "Vinnytsia Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 16px */
  text-decoration-line: underline;
  text-transform: uppercase;
}
.section__products .pagination {
  margin-top: 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.catalog-filters__body {
  padding: 32px 0;
  border-bottom: 1px solid var(--black-15, rgba(0, 0, 0, 0.15));
  border-top: 1px solid var(--black-15, rgba(0, 0, 0, 0.15));
  display: none;
}
.catalog-filters__body.active {
  display: flex;
}
.body-filters__col {
  padding: 0 32px;
  border-right: 1px solid var(--black-15, rgba(0, 0, 0, 0.15));
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.body-filters__col:last-child {
  border-right: none;
}

.body-filters__col .body-filters__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  column-gap: 64px;
  flex-wrap: wrap;
  max-height: 185px;
}
.body-filters__list li {
  color: var(--Black, #000);
  font-family: "Vinnytsia Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
}
.body-filters__col .body-filters__title {
  color: var(--black-50, rgba(0, 0, 0, 0.5));
  font-family: "Vinnytsia Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
}
.filter-item label .remove-filter-btn {
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  display: none;
}
.filter-item label {
  cursor: pointer;
}
.filter-item label:has(input:checked) .remove-filter-btn {
  display: block;
}
.filter-item:has(input:checked) .filter-badge {
  background: var(--Black, #000);
  color: var(--White, #fff);
}
.filter-item label {
  position: relative;
  width: 100%;
  display: flex;
  color: var(--Black, #000);
  font-family: "Vinnytsia Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  display: flex;
  align-items: center;
  gap: 12px;
}
.filter-item label input {
  display: none;
}
.filter-item {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}
.filter-item .filter-badge {
  display: flex;
  width: 50px;
  padding: 4px 18px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  border: 1px solid var(--black-15, rgba(0, 0, 0, 0.15));
  color: var(--black-50, rgba(0, 0, 0, 0.5));
  font-family: "Vinnytsia Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}
.filter-color-circle {
  width: 17px;
  height: 17px;
  border: 1px solid var(--black-15, rgba(0, 0, 0, 0.15));
  border-radius: 100px;
}
.catalog__selected {
  display: flex;
  gap: 12px;
}
.catalog__selected__filters {
  color: var(--Black, #000);
  font-family: "Vinnytsia Sans";
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  text-transform: uppercase;
  display: flex;
  padding: 14px 32px;
  justify-content: center;
  gap: 8px;
  border-radius: 5px;
  border: 1px solid var(--black-15, rgba(0, 0, 0, 0.15));
}
.reset__filters__btn {
  color: var(--black-50, rgba(0, 0, 0, 0.5));
  padding: 14px 12px;
  font-family: "Vinnytsia Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  text-decoration-line: underline;
  text-transform: uppercase;
}
.catalog-filters__footer {
  display: none;
}
.pop__up {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: none;
  background: rgba(0, 0, 0, 0.4);
  justify-content: end;
}
.pop__up.active {
  display: flex;
}
.pop__up__content {
  width: 100%;
  max-width: 450px;
  background: var(--White, #fff);
  display: flex;
  height: 100%;
  padding: 32px;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
  padding-right: 24px;
}
.pop__up__top {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.pop__up__title span {
  color: var(--Main, #921213);
}
.pop__up__title {
  color: var(--Black, #000);
  font-family: "Vinnytsia Sans";
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 32px */
  text-transform: uppercase;
}
.pop__up__close {
}
.pop__up__list {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  /* max-height: 500px; */
  padding-right: 8px;
}
.pop__up__list::-webkit-scrollbar {
  width: 3px;
  border-radius: 2px;
}
.pop__up__list::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.15); /* color of the tracking area */
}
.pop__up__list::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.pop__up__item {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--black-15, rgba(0, 0, 0, 0.15));
}
.pop__up__item:first-child {
  padding-top: 0;
}
.pop__up__image {
  width: 125px;
  height: 160px;
}
.pop__up__item__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pop__up__item__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pop__up__item__title {
  color: var(--Black, #000);
  font-family: "Vinnytsia Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 24px */
  text-transform: uppercase;
}
.pop__up__item__text {
  color: var(--black-50, rgba(0, 0, 0, 0.5));
  font-family: "Vinnytsia Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}
.pop__up__item__pricedelete {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.pop__up__item__price {
  color: var(--Main, #921213);
  font-family: "Vinnytsia Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 24px */
  text-transform: uppercase;
}
.pop__up__item__delete {
}
.pop__up__bottom {
  position: sticky;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 24px;
  background-color: #fff;
}
.pop__up__bottom__text {
  color: var(--Black, #000);
  font-family: "Vinnytsia Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pop__up__total span {
  color: var(--black-50, rgba(0, 0, 0, 0.5));
  font-weight: 400;
}
.pop__up__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 8px 0;
  color: var(--Black, #000);
  font-family: "Vinnytsia Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 18px */
}
.pop__up__total p:nth-child(2) {
  color: #b11617;
}
.pop__up__btn {
  display: flex;
  height: 53px;
  padding: 18px 64px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 5px;
  background: var(--Main, #921213);
  color: var(--White, #fff);
  font-family: "Vinnytsia Sans";
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%; /* 16.5px */
  letter-spacing: 0.15px;
  text-transform: uppercase;
}
.section__product {
  margin-top: 84px;
  padding-top: 64px;
}
.section__product__container {
  max-width: 1232px;
}
.section__product__content {
  margin-top: 32px;
  display: grid;
  grid-template-columns: auto 500px;
  gap: 52px;
  width: 100%;
}
.section__product__left {
  max-width: 650px;
  display: flex;
}
.section__product__main__slider {
  max-width: 535px;
  max-height: 675px;
  margin-right: 24px;
  position: relative;
}
.section__product__badge {
  padding: 10px 16px;
  border-radius: 5px;
  background: var(--Black, #000);
  color: var(--White, #fff);
  font-family: "Vinnytsia Sans";
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: 0.15px;
  text-transform: uppercase;
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 1;
}
.section__product__wish {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 1;
  width: 28px;
  height: 28px;
}
.section__product__main__pagination {
  display: none;
}
.section__product__main__wrapper {
  max-width: 535px;
  max-height: 675px;
}
.section__product__main__slide {
  max-width: 535px;
  max-height: 675px;
  width: 100%;
}
.section__product__main__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section__product__thumb__slider__content {
  display: flex;
  flex-direction: column;
}
.section__product__thumb__wrapper {
  overflow-y: auto;
  direction: rtl;
  height: 100%;
  overflow-x: hidden;
  padding: 0 0 0 24px;
  width: 65px;
}
.section__product__thumb__wrapper::-webkit-scrollbar {
  width: 3px; /* Ширина скролбару */
}

/* Стилі для треку скролбару */
.section__product__thumb__wrapper::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.15); /* Колір треку */
  border-radius: 10px; /* Радіус заокруглення */
  width: 1px;
}

/* Стилі для "ручки" скролбару */
.section__product__thumb__wrapper::-webkit-scrollbar-thumb {
  background: #000; /* Колір "ручки" */
  border-radius: 10px; /* Радіус заокруглення */
  width: 3px;
}

/* Стилі для "ручки" скролбару при наведенні */
.section__product__thumb__wrapper::-webkit-scrollbar-thumb:hover {
  background: #555; /* Колір "ручки" при наведенні */
}
.section__product__thumb__slider {
  /* margin-left: 24px; */
  max-height: 675px;
}
.section__product__thumb__slide img {
  width: 65px;
  height: 85px;
}
.section__product__right {
  display: flex;
  flex-direction: column;
}
.section__product__head {
  display: flex;
  flex-direction: column;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.section__product__title {
  color: var(--Main, #921213);
  text-align: center;
  font-family: "Vinnytsia Sans";
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.46px;
  text-transform: uppercase;
}
.section__product__status {
   margin-top: 5px;
   text-align: center;
}

.section__product__status.v-nayavnosti,.in-stock {
  color: green;
}
.section__product__status.pid-zamovlennya,.pre-order {
  color: orange;
}
.section__product__status.pid-zamovlennya,.out-of-stock,.nema-v-nayavnosti {
  color: #b11617;
}

.section__product__description {
  margin-top: 25px;
  color: var(--Black, #000);
  text-align: center;
  font-family: "Vinnytsia Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}
.section__product__options {
  padding: 32px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: center;
  gap: 64px;
}
.section__product__options__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section__product__options__content .product__card__color::before {
  width: 24px;
  height: 24px;
}
.section__product__options__content .product__card__color::after {
  width: 36px;
  height: 36px;
}
.section__product__option__name {
  color: var(--Black, #000);
  font-family: "Vinnytsia Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0.16px;
  text-transform: uppercase;
}
.section__product__quantity {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section__product__quantity__content {
  display: flex;
  border: 1px solid var(--black-15, rgba(0, 0, 0, 0.15));
  border-radius: 0 2px 2px 0;
}
.section__product__quantity__btn {
  padding: 11px 10px 10px 11px;
}
.section__product__quantity__number {
  border-left: 1px solid var(--black-15, rgba(0, 0, 0, 0.15));
  border-right: 1px solid var(--black-15, rgba(0, 0, 0, 0.15));
  width: 62px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--Black, #000);
  font-family: "Vinnytsia Sans";
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: 0.15px;
  text-transform: uppercase;
  text-align: center;
  outline: none;
}
.section__product__total {
  padding-top: 32px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-direction: column;
}
.section__product__total .section__product__add__btn {
  width: 100%;
  max-width: 375px;
}
.section__product__price {
  color: var(--Black, #000);
  font-family: "Vinnytsia Sans";
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.section__product__price_discount {
  text-decoration: line-through;
}
.section__product__add__btn {
  padding: 18px 32px;
  flex: 1 0 0;
  border-radius: 5px;
  background: var(--Main, #921213);
  color: var(--White, #fff);
  font-family: "Vinnytsia Sans";
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: 0.15px;
  text-transform: uppercase;
  border: 1px solid var(--Black, #921213);
}
.section__product__add__btn:hover {
  background: #b11617;
}
.section__product__add__btn:active {
  border: 1px solid var(--Black, #000);
}
.section__product__info {
  margin-top: 64px;
}
.section__product__info__btns {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.section__product__info__btn {
  flex: 1 0 0;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  color: var(--Black, #000);
  text-align: center;
  font-family: "Vinnytsia Sans";
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0.15px;
  text-transform: uppercase;
}
.section__product__info__btn.active {
  color: #921213;
  border-bottom: 1px solid #921213;
}
.section__product__info__content {
  padding-top: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.section__product__info__content__text {
  display: none;
  color: var(--Black, #000);
  font-family: "Vinnytsia Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  white-space: pre-wrap;
}
.section__product__info__content__text.active {
  display: block;
}
.section__product .product__card__color__content:has(input[type="radio"]:checked) .product__card__color::after {
  border: 1.5px solid var(--black-15, rgb(0, 0, 0));
}
.section__contact {
  margin-top: 84px;
  padding-top: 64px;
}
.section__contact__container {
  max-width: 1232px;
}
.section__contact__content {
  margin-top: 24px;
}
.section__contact__title {
  color: var(--Black, #000);
  font-family: "Vinnytsia Sans";
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
}
.section__contact__text {
  margin-top: 24px;
  color: var(--Black, #000);
  font-family: "Vinnytsia Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  max-width: 500px;
}
.section__contact__inner {
  margin-top: 32px;
  display: grid;
  grid-template-columns: auto auto;
  gap: 52px;
  align-items: center;
}
.section__contact__info {
  display: flex;
  flex-direction: column;
}
.section__contact__info__item {
  padding: 24px 0;
  border-bottom: 1px solid var(--black-15, rgba(0, 0, 0, 0.15));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 52px;
}
.section__contact__info__item:last-child {
  border: none;
  padding-bottom: 0;
}
.section__contact__info__item:first-child {
  padding-top: 0;
}
.section__contact__info__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section__contact__info__title {
  color: var(--Main, #921213);
  font-family: "Vinnytsia Sans";
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
}
.section__contact__info__subtitle {
  color: var(--black-50, rgba(0, 0, 0, 0.5));
  font-family: "Vinnytsia Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  max-width: 366px;
}
.section__contact__info__link {
  /* height: 53px; */
  height: 44px;
  padding: 18px 32px;
  width: 100%;
  max-width: 220px;
  /* max-width: 266px; */
  border-radius: 5px;
  background: var(--Black, #000);
  border: 1px solid var(--Main, #000);
  color: var(--White, #fff);
  font-family: "Vinnytsia Sans";
  /* font-size: 15px; */
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
}
.section__contact__info__link:hover {
  background: rgba(0, 0, 0, 0.85);
}
.section__contact__info__link:active {
  border: 1px solid var(--Main, #921213);
}
.section__contact__image {
  width: 100%;
  max-width: 464px;
  max-height: 464px;
}
.section__contact__image img {
  width: 100%;
  object-fit: cover;
  max-width: 464px;
  max-height: 464px;
}
.section__about {
  margin-top: 84px;
  padding-top: 64px;
}
.section__about__container {
  max-width: 1232px;
}
.section__about__content {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.section__about__info {
  display: flex;
  padding: 52px;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  flex: 1 0 0;
  align-self: stretch;
  border-radius: 5px;
  /* background: var(--Black, #000);а */
}
.section__about__title {
  color: #921213;
  font-family: "Vinnytsia Sans";
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
}
.section__about__text {
  color: #000;
  font-family: "Vinnytsia Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}
.section__about__image {
  max-height: 470px;
  border-radius: 5px;
  position: sticky;
  top: 84px;
}
.section__about__image img {
  border-radius: 5px;
  object-position: 50% 40%;
  object-fit: cover;
  max-height: 500px;
  width: 100%;
}
.showrooms {
  margin-top: 84px;
  padding-top: 64px;
}
.showrooms .section__showrooms {
  padding-top: 24px;
}
.showrooms .section__showrooms__top,
.showrooms .section__showrooms__subtitle {
  align-items: start;
  text-align: left;
}
.section__checkout {
  margin-top: 84px;
}
.section__checkout__grid {
  display: grid;
  grid-template-columns: 60% 40%;
  width: 100%;
}
.simplecheckout-left-column,
.simplecheckout-right-column {
  min-width: 0 !important;
  float: none !important;
  margin-right: 0 !important;
  max-width: none !important;
  width: auto !important;
}
.section__checkout .pop__up__list {
  max-height: calc(100vh - 345px) !important;
}
.section__checkout .pop__up__content {
  margin-top: -100px;
  justify-self: end;
  border-left: 1px solid var(--black-15, rgba(0, 0, 0, 0.15));
  width: 100% !important;
  max-width: 450px !important;
}
@media (min-width: 901px) {
  .section__checkout .pop__up__content {
    height: 100vh;
  }
}
.pop__up__toggle__btn.active svg {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.pop__up__toggle__btn {
  display: none;
}
.section__checkout__container {
  /* padding-top: 100px; */
  justify-self: center;
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-end;
}
.section__checkout__content {
  width: 100% !important;
  max-width: 750px !important;
}
.section__checkout__breadcrumbs {
  padding-top: 100px;
  padding-left: 16px;
  padding-right: 16px;
  width: 55%;
  justify-content: end;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section__checkout__breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(0, 0, 0, 0.35);
  font-family: "Vinnytsia Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  text-transform: capitalize;
}
.section__checkout__breadcrumb .show__mob {
  display: none;
}
.section__checkout__breadcrumb svg path {
  stroke: rgba(0, 0, 0, 0.35);
}
.section__checkout__breadcrumb.active,
.section__checkout__breadcrumb.simple-step-current {
  color: var(--Black, #000);
}
.section__checkout__breadcrumb.active svg path {
  stroke: #000;
}
.section__checkout__breadcrumb:last-child svg {
  display: none;
}
.section__checkout__block {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section__checkout__item {
  /* display: none */
}
.section__checkout__item.active {
  display: block;
}
.section__checkout__title {
  color: var(--Black, #000);
  font-family: "Vinnytsia Sans";
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
}
.section__checkout__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section__checkout__form__group {
  display: flex;
  gap: 16px;
}
.section__checkout__input {
  width: 100%;
}
.section__checkout__input input,
#collapse-shipping-address .form-field input {
  width: 100%;
  height: 53px;
  padding-left: 16px;
  border-bottom: 1px solid var(--Black, #000);
  background: var(--White, #fff);
  outline: 0;
  color: var(--black-50, #000);
  font-family: "Vinnytsia Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}
.section__checkout__input input::-webkit-input-placeholder,
#collapse-shipping-address .form-field input::-webkit-input-placeholder {
  color: var(--black-50, rgba(0, 0, 0, 0.5));
}
.section__checkout__input input:-ms-input-placeholder,
#collapse-shipping-address .form-field input:-ms-input-placeholder {
  color: var(--black-50, rgba(0, 0, 0, 0.5));
}
.section__checkout__input input::-ms-input-placeholder,
#collapse-shipping-address .form-field input::-ms-input-placeholder {
  color: var(--black-50, rgba(0, 0, 0, 0.5));
}
.section__checkout__input input::placeholder,
#collapse-shipping-address .form-field input::placeholder {
  color: var(--black-50, rgba(0, 0, 0, 0.5));
}
#collapse-shipping-address .form-field label {
  width: 100%;
}
.section__checkout__input .iti,
.section__checkout__input .iti .iti__country-list {
  width: 100%;
}
.section__checkout__payment {
  width: 100%;
  /* height: 53px; */
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--Black, #000);
  /* align-items: center; */
  gap: 32px;
}
.section__checkout__payment label {
  display: flex;
  flex-direction: row-reverse;
  gap: 32px;
  align-items: center;
  position: relative;
  cursor: pointer;
  padding-left: 36px;
  color: var(--Black, #000);
  font-family: "Vinnytsia Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}
.section__checkout__payment label:after {
  content: "";
  display: flex;
  position: absolute;
  top: 50%;
  left: 14px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  padding: 5px;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  border: 1.5px solid var(--black-15, #000);
  background: var(--White, #fff);
}
.section__checkout__payment label:before {
  background-color: #000;
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 14px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  content: "";
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  border-radius: 100px;
  opacity: 0;
}
.section__checkout__payment label input {
  display: none;
}
.section__checkout__payment label:has(input:checked):before {
  opacity: 1;
}
.section__checkout__payment__title {
  color: var(--black-50, rgba(0, 0, 0, 0.5));
  font-family: "Vinnytsia Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}
.section__checkout__payment__radio {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  gap: 32px;
}
.section__checkout__btn {
  display: flex;
  height: 53px;
  padding: 18px 64px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 5px;
  background: var(--Main, #921213);
  color: var(--White, #fff);
  font-family: "Vinnytsia Sans";
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: 0.15px;
  text-transform: uppercase;
  align-self: center;
  max-width: 250px;
}
.solo__btn {
  justify-content: center !important;
}
.section__checkout__delivery__country {
  display: flex;
  gap: 12px;
}
.section__checkout__delivery__country button {
  display: flex !important;
  padding: 14px 32px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex: 1 0 0;
  border-radius: 1000px;
  border: 1px solid var(--black-15, rgba(0, 0, 0, 0.15));
  color: var(--Black, #000);

  cursor: pointer;
}
.section__checkout__delivery__country button {
  font-family: "Vinnytsia Sans";
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  text-transform: uppercase;
}
.simplecheckout_shipping_btns,
.simplecheckout-button-block {
  display: none !important;
}
.section__checkout__btns.active {
  display: flex !important;
}
/* .section__checkout__delivery__country label input {
  display: none
} */
.section__checkout__delivery__country button.active {
  background: var(--Black, #000);
  color: var(--White, #fff);
}
.section__checkout__input select,
#collapse-shipping-address .form-select-wrapper select {
  width: 100%;
  padding: 14px 16px 15px 16px;
  border-bottom: 1px solid var(--Black, #000);
  background: var(--White, #fff);
  color: var(--Black, #000);
  font-family: "Vinnytsia Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  outline: 0;
}
#collapse-shipping-address .form-group.form-field label {
  width: 100%;
}
.section__checkout__btns {
  display: flex;
  justify-content: space-between;
}
.section__checkout__btn__back {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--Black, #000);
  font-family: "Vinnytsia Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}
.section__checkout__info {
  display: flex;
  gap: 24px;
  border-bottom: 1px solid var(--black-15, rgba(0, 0, 0, 0.15));
  border-top: 1px solid var(--black-15, rgba(0, 0, 0, 0.15));
  padding: 24px 0;
  align-items: center;
  justify-content: space-between;
}
.section__checkout__info__title {
  color: var(--Main, #921213);
  font-family: "Vinnytsia Sans";
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.section__checkout__info__text {
  margin-bottom: 20px;
  color: var(--Black, #000);
  font-family: "Vinnytsia Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
}
.section__checkout__info__text:last-child {
  margin-bottom: 0;
}
.section__checkout__info__btn {
  color: var(--black-50, rgba(0, 0, 0, 0.5));
  font-family: "Vinnytsia Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  text-decoration-line: underline;
  text-transform: uppercase;
}
.section__checkout__checkbox {
  display: flex;
  align-items: center;
  color: var(--black-50, rgba(0, 0, 0, 0.5));
  font-family: "Vinnytsia Sans";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
.section__checkout__checkbox input {
  width: 32px;
  height: 32px;
  border-radius: 5px;
  border: 1.5px solid var(--Main, #921213);
  margin-right: 12px;
}
.section__checkout__checkbox a {
  color: var(--Black, #000);
  text-decoration: underline;
  margin-left: 4px;
  display: inline;
}
.simplecheckout-block-content {
  padding: 0 !important;
}
#iti-0__dropdown-content > .iti__search-input {
  display: none !important;
}
.section__success {
  margin-top: 84px;
  padding-top: 64px;
}
.section__success__container {
  max-width: 782px;
}
.section__success__content {
  display: grid;
  gap: 24px;
}
.section__success__title {
  color: var(--Black, #000);
  text-align: center;
  font-family: "Vinnytsia Sans";
  font-size: 46px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
}
.section__success__text {
  color: var(--black-50, rgba(0, 0, 0, 0.5));
  text-align: center;
  font-family: "Vinnytsia Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}
.section__success__inner {
  display: grid;
  gap: 24px;
}
.section__checkout__info__item {
  width: 100%;
}
.section__checkout__info__products {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
}
.section__checkout__info__product {
  display: flex;
  gap: 24px;
}
.section__checkout__info__image img {
  width: 125px;
  height: 160px;
}
.section__checkout__info__product__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.section__checkout__info__product__description {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.section__checkout__info__total__text {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  color: var(--Black, #000);
  font-family: "Vinnytsia Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}
.section__checkout__info__total__price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  color: var(--Black, #000);
  font-family: "Vinnytsia Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}
.section__success__btn {
  display: flex;
  height: 53px;
  padding: 18px 64px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 5px;
  background: var(--Black, #000);
  color: var(--White, #fff);
  font-family: "Vinnytsia Sans";
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: 0.15px;
  text-transform: uppercase;
  max-width: 365px;
  justify-self: center;
}
.section__checkout__info__total {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.filter__header {
  display: none;
}
.body-filters__col.colors .remove-filter-btn {
  display: none;
}
.menu__mob__links {
  display: none;
}
.submenu__body__collections {
  margin-left: 170px;
}
.pop__up__bottom__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pop__up__total__text {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #b11617;
}
.pop__up__bottom__list__close.active svg {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.pop__up__bottom__list.active {
  display: none;
}
@media (min-width: 901px) {
  .header.scrolled .header__action:hover,
  .header.scrolled .menu__link:hover {
    color: var(--black-50, rgba(0, 0, 0, 0.5));
  }
  .header.scrolled .header__action:hover svg,
  .header.scrolled .menu__link:hover svg {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .header.scrolled .header__action:hover svg path,
  .header.scrolled .menu__link:hover svg path {
    stroke: var(--black-50, rgba(0, 0, 0, 0.5));
  }
  .header.active .header__action:hover,
  .header.active .menu__link:hover {
    color: var(--black-50, rgba(0, 0, 0, 0.5));
  }
  .header.active .header__action:hover svg,
  .header.active .menu__link:hover svg {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .header.active .header__action:hover svg path,
  .header.active .menu__link:hover svg path {
    stroke: var(--black-50, rgba(0, 0, 0, 0.5));
  }
  .header__action:hover,
  .menu__link:hover {
    color: var(--black-50, rgba(0, 0, 0, 0.5));
  }
  .header__action:hover svg,
  .menu__link:hover svg {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .header__action:hover svg path,
  .menu__link:hover svg path {
    stroke: var(--black-50, rgba(0, 0, 0, 0.5));
  }
  .footer__link:hover {
    color: var(--black-50, rgba(0, 0, 0, 0.5));
  }
}
@media (max-width: 1200px) {
  .menu__list {
    gap: 10px;
  }
  .header__action,
  .menu__link {
    gap: 0;
  }
  .header__actions {
    gap: 10px;
  }
  .submenu__body {
    /* margin-left: 270px; */
  }
  .submenu__body__collections {
    margin-left: 145px;
  }
}
@media (max-width: 1100px) {
  .pop__up__btn {
    font-size: 12px;
  }

  .section__product {
    padding-top: 32px;
  }
  .section__product__content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .section__product__left {
    max-width: none;
    justify-content: center;
  }
  .section__product__main__slider {
    margin-left: -16px;
    margin-right: -16px;
    max-height: 470px;
    width: 100%;
  }
  .section__product__badge {
    top: 16px;
    left: 16px;
    padding: 10px;
    font-size: 12px;
  }
  .section__product__wish {
    top: 16px;
    right: 16px;
  }
  .section__product__wish img {
    width: 24px;
    height: 24px;
  }
  .section__product__main__pagination {
    position: absolute;
    top: 50%;
    right: 16px;
    z-index: 1;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .section__product__main__pagination .swiper-pagination-bullet {
    height: 5px;
    width: 5px;
    border-radius: 1000px;
    background: var(--Black, #000);
  }
  .section__product__main__pagination .swiper-pagination-bullet-active {
    height: 25px;
  }
  .section__product__main__slide {
    max-height: 470px;
  }
  .section__product__main__slide img {
    max-height: 470px;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: top;
    object-position: top;
  }
  .section__product__thumb__slider {
    display: none;
  }
  .section__product__head {
    padding-bottom: 24px;
    align-items: center;
  }
  .section__product__title {
    font-size: 30px;
    /* font-size: 36px; */
  }
  .section__product__description {
    font-size: 15px;
    max-width: 500px;
  }
  .section__product__options {
    padding: 24px 0;
  }
  .section__product__quantity__btn {
    padding: 7px;
  }
  .section__product__quantity__number {
    font-size: 14px;
  }
  .section__product__total {
    padding-top: 24px;
    justify-content: center;
  }
  .section__product__add__btn {
    max-width: 375px;
    font-size: 14px;
  }
  .section__product__info {
    padding-bottom: 24px;
    margin-left: -16px;
    margin-right: -16px;
  }
  .section__product__info__btn {
    font-size: 14px;
    padding-bottom: 12px;
  }
  .section__product__info__btn:last-child {
    padding-right: 16px;
  }
  .section__product__info__content {
    margin: 0 16px;
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .section__product__info__content__text {
    font-size: 14px;
  }
  .section__contact {
    padding-top: 52px;
  }
  .section__contact__title {
    font-size: 30px;
  }
  .section__contact__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .section__contact__info__item {
    padding: 32px 0;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    text-align: center;
  }
  .section__contact__info__item:last-child {
    border-bottom: 1px solid var(--black-15, rgba(0, 0, 0, 0.15));
    padding-bottom: 32px;
  }
  .section__contact__info__item:first-child {
    border-top: 1px solid var(--black-15, rgba(0, 0, 0, 0.15));
    padding-top: 32px;
  }
  .section__contact__info__title {
    font-size: 22px;
  }
  .section__contact__info__subtitle {
    font-size: 15px;
  }
  .section__contact__info__link {
    font-size: 12px;
    height: 44px;
    max-width: 220px;
  }
  .section__contact__image {
    justify-self: center;
  }
  .section__about {
    padding-top: 52px;
  }
}
@media (max-width: 900px) {
  .product__card__bottom {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: start;
    flex-direction: column-reverse;
  }

  .product__card__bottom__content {
    /* margin: 0 auto; */
  }

  .pop__up__bottom__list__close,
  .pop__up__bottom__list {
    display: none;
  }
  .submenu__body {
    margin-left: 0;
    padding: 0;
  }
  .submenu__body__collections {
    margin-left: 0;
  }
  .menu__mob__links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
    color: var(--White, #000);
    font-family: "Vinnytsia Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    text-transform: uppercase;
  }
  .menu__mob__link {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .menu__mob__link img {
    width: 22px;
    height: 22px;
  }
  .menu__mob__link i {
    font-size: 20px;
  }
  .menu__body {
    position: fixed;
    width: 100%;
    height: 100%;
    left: -100%;
    top: 0;
    overflow: auto;
    padding: 3.125rem 0.9375rem 0.9375rem 1.875rem;
    transition: left 0.3s;
  }
  .menu__body::before {
    content: "";
    position: fixed;
    width: 100%;
    height: 4.375rem;
    left: -100%;
    top: 0;
    transition: left 0.3s;
    z-index: 2;
  }
  .menu-open .menu__body {
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    position: absolute;
    top: 100%;
    left: 0;
    padding: 0;
    background-color: #fff;
    height: calc(100vh - 84px);
  }
  .menu-open .menu__body::before {
    left: 0;
  }
  .icon-menu {
    display: block;
    position: relative;
    width: 1.375rem;
    height: 1rem;
    z-index: 5;
  }
  .icon-menu span,
  .icon-menu::after,
  .icon-menu::before {
    border-radius: 2px;
    content: "";
    transition: all 0.3s ease 0s;
    right: 0;
    position: absolute;
    width: 100%;
    height: 0.125rem;
    background-color: #fff;
  }
  .icon-menu::before {
    top: 0;
  }
  .icon-menu::after {
    bottom: 0;
  }
  .icon-menu span {
    top: calc(50% - 0.0625rem);
  }
  .menu-open .icon-menu span {
    background-color: #000;
    width: 0;
  }
  .menu-open .icon-menu::after,
  .menu-open .icon-menu::before {
    background-color: #000;
  }
  .menu-open .icon-menu::before {
    top: calc(50% - 0.0625rem);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .menu-open .icon-menu::after {
    bottom: calc(50% - 0.0625rem);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .btn {
    font-size: 14px;
    padding: 17px 64px;
  }
  .menu__list {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }
  .submenu {
    height: auto;
  }
  .submenu__list {
    overflow: visible;
  }
  .menu__item .submenu {
    opacity: 1;
    visibility: visible;
    display: none;
  }
  .menu__item.active .submenu {
    display: block;
  }
  .menu__item {
    padding: 16px 16px 14px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    width: 100%;
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
    /* min-height: 56px; */
  }
  .menu__link {
    width: 100%;
    justify-content: space-between;
  }
  .header__action,
  .menu__link {
    font-size: 14px;
  }
  .header__content > .header__logo {
    display: none;
  }
  .menu__mob .header__logo {
    display: block;
    position: static;
    -webkit-transform: none;
    transform: none;
  }
  .menu__mob .header__logo svg {
    width: 78px;
    height: 30px;
  }
  .header__search svg {
    display: block;
  }
  .header__search span {
    display: none;
  }
  .menu__item.header__wish {
    display: block;
  }
  .header__action.header__wish {
    display: none;
  }
  .submenu {
    border-top: none;
    position: static;
  }
  .submenu__container {
    padding: 0;
    padding-top: 16px;
  }
  .submenu__list {
    gap: 28px;
  }
  .submenu__products {
    display: none;
  }
  .footer {
    margin-top: 75px;
  }
  .footer__top {
    flex-direction: column;
  }
  .footer__form {
    flex-direction: column;
    width: 100%;
    gap: 24px;
  }
  .footer__form input {
    width: 100%;
  }
  .footer__form__btn {
    width: 100%;
  }
  .footer__content {
    flex-direction: column;
  }
  .footer__left {
    flex-direction: row;
    justify-content: space-between;
  }
  .footer__right {
    flex-direction: column;
    gap: 24px;
    max-width: none;
  }
  .footer__item .footer__list {
    display: none;
  }
  .footer__item.active .footer__list {
    display: flex;
  }
  .footer__item.active .footer__title svg {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .footer__item.active .footer__title svg path {
    stroke: var(--black-50, rgba(0, 0, 0, 0.5));
  }
  .footer__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .footer__title svg {
    display: block;
  }
  .section__main__slide__inner h1 {
    font-size: 36px;
  }
  .section__main-prev {
    left: 16px;
    bottom: 16px;
    -webkit-transform: none;
    transform: none;
    top: auto;
  }
  .section__main-prev img {
    width: 32px;
    height: 32px;
  }
  .section__main-next {
    right: 16px;
    bottom: 16px;
    -webkit-transform: none;
    transform: none;
    top: auto;
  }
  .section__main-next img {
    width: 32px;
    height: 32px;
  }
  .main_slider-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    position: absolute;
    bottom: 30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .main_slider-pagination .swiper-pagination-bullet {
    width: 30px;
    height: 6px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.5);
  }
  .main_slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--White, #fff);
  }
  .section__bestseller {
    padding-top: 75px;
  }
  .section__bestseller__top {
    flex-direction: column;
    align-items: flex-start;
  }
  .section__bestseller__title {
    /* font-size: 52px; */
    font-size: 30px;
    align-self: center;
  }
  .section__bestseller__link {
    font-size: 14px;
  }
  .product__card {
    gap: 20px;
  }
  .product__card__image {
    max-width: 319px;
    max-height: 400px;
  }
  .product__card__wish {
    top: 12px;
    right: 12px;
  }
  .product__card__bottom__content {
    gap: 8px;
  }
  .product__card__title {
    font-size: 14px;
    line-height: 110%;
  }
  .product__card__price {
    font-size: 14px;
    font-weight: 600;
  }
  .product__card__bottom__options {
    /* display: none; */
  }
  .section__product .product__card__bottom__options {
    display: flex;
  }
  .section__showrooms {
    padding-top: 75px;
  }
  .section__showrooms__content {
    gap: 42px;
  }
  .section__showrooms__top {
    align-items: flex-start;
  }
  .section__showrooms__title {
    font-size: 30px;
    text-align: left;
  }
  .section__showrooms__subtitle {
    text-align: left;
  }
  .section__showrooms__btns {
    gap: 12px;
    margin-top: 0;
    overflow-x: auto;
    max-width: 100%;
  }
  .section__showrooms__btn {
    padding: 14px 20px;
    font-size: 14px;
  }
  .section__showrooms__inner {
    gap: 64px;
  }
  .section__showrooms__item {
    flex-direction: column;
    gap: 42px;
  }
  .section__showrooms__item:nth-child(2n) {
    flex-direction: column;
  }
  .section__showrooms__item__title {
    font-size: 46px;
  }
  .section__showrooms__item__text {
    font-size: 15px;
    margin-bottom: 42px;
  }
  .section__showrooms__item__info {
    gap: 24px;
    align-items: normal;
    grid-template-columns: repeat(2, calc(50% - 12px));
  }
  .section__showrooms__item__info:not(:last-child) {
    margin-bottom: 24px;
  }
  .section__showrooms__item__info__title {
    font-size: 24px;
  }
  .section__showrooms__item__info__text {
    font-size: 15px;
    word-break: break-all;
  }
  .section__products {
    padding-top: 52px;
  }
  .breadcrumbs__link {
    font-size: 15px;
  }
  .section__products__content {
    gap: 24px;
  }
  .section__products__title {
    /* font-size: 52px; */
    font-size: 30px;
    text-align: center;
  }
  .section__products__categories {
    flex-direction: column;
    align-items: flex-start;
  }
  .section__products__categories__list {
    border-bottom: 1px solid var(--black-15, rgba(0, 0, 0, 0.15));
    padding-bottom: 24px;
    width: 100%;
  }
  .section__products__categories__link {
    padding: 14px 20px;
    font-size: 14px;
  }
  .section__products__filter {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .section__products__filter .section__products__count {
    display: block;
    color: var(--black-50, rgba(0, 0, 0, 0.5));
    font-family: "Vinnytsia Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    text-transform: uppercase;
  }
  .section__products__filter .section__products__filter__btn span {
    display: block;
    color: var(--black-50, rgba(0, 0, 0, 0.5));
    font-family: "Vinnytsia Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    text-decoration: underline;
    text-transform: uppercase;
  }
  .section__products__filter .section__products__filter__btn img {
    display: none;
  }
  .section__products__list {
    margin-top: 18px;
    -webkit-column-gap: 16px;
    -moz-column-gap: 16px;
    column-gap: 16px;
    row-gap: 32px;
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
  }
  .section__products__list .product__card:nth-child(2) {
    grid-column: span 2;
  }
  .section__products__list .product__card:nth-child(3) {
    grid-column: span 2;
    justify-self: center;
  }
  .section__products__list .product__card:nth-child(4) {
    grid-column: span 2;
    justify-self: center;
  }
  .section__products__list .product__card:nth-child(6) {
    grid-column: span 1;
  }
  .section__products__list .product__card:nth-child(7) {
    grid-column: span 2;
    justify-self: center;
  }
  .section__products__list .product__card:nth-child(n+10) {
    grid-column: span 1;
    justify-self: center;
  }
  .section__products__list .section__products__list__2items {
    gap: 16px;
    grid-column-start: 1;
    grid-column-end: 3;
  }
  .wishlist {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .wishlist .product__card {
    grid-column: span 1 !important;
    justify-self: center;
  }
  .section__about__content {
    grid-template-columns: 1fr;
  }
  .section__about__info {
    padding: 56px 16px;
  }
  .section__about__title {
    font-size: 30px;
  }
  .section__about__text {
    font-size: 15px;
  }
  .showrooms {
    padding-top: 52px;
  }
  .section__checkout__grid {
    grid-template-columns: 1fr;
  }
  .section__checkout .pop__up__content {
    margin-top: 0;
  }
  .simple-content {
    margin: 0px !important;
  }
  .section__checkout .pop__up__content.active {
    position: fixed;
    top: 84px;
    right: 0;
    z-index: 2;
  }
  .section__checkout .pop__up__bottom__text,
  .section__checkout .pop__up__list,
  .section__checkout .pop__up__top {
    display: none;
  }
  .pop__up__content {
    padding: 16px;
    border-left: none;
    /* height: calc(100% - 32px) */
  }
  .pop__up__content.active {
    position: fixed;
    top: 84px;
    right: 0;
    z-index: 2;
  }
  .pop__up__content.active .pop__up__bottom__text,
  .pop__up__content.active .pop__up__list,
  .pop__up__content.active .pop__up__top {
    display: flex;
  }
  .section__checkout__container {
    /* padding-top: 60px; */
    align-items: center;
  }
  .section__checkout__breadcrumbs {
    padding-top: 60px;
    width: 100%;
    justify-content: start;
    gap: 8px;
  }
  .section__checkout__breadcrumb {
    gap: 8px;
  }
  .section__checkout__breadcrumb .show__mob {
    display: block;
  }
  .section__checkout__breadcrumb .hide__mob {
    display: none;
  }
  .section__checkout__title {
    font-size: 30px;
  }
  .section__checkout__title span {
    display: none;
  }
  .section__checkout__form__group {
    flex-direction: column;
    gap: 24px;
  }
  .section__checkout__payment__radio:after {
    content: none;
  }
  .section__checkout__payment {
    flex-direction: column;
    gap: 20px;
    height: auto;
    border: none;
    align-items: flex-start;
    padding-left: 0;
  }
  .section__checkout__btn {
    max-width: none;
    width: 100%;
    font-size: 14px;
    padding: 18px 32px;
  }
  .section__checkout__delivery__country {
    flex-direction: column;
    font-size: 14px;
  }
  .section__checkout__btns {
    flex-direction: column-reverse;
    gap: 24px;
  }
  .section__checkout__btn__back {
    justify-content: center;
  }
  .section__checkout__info {
    align-items: flex-start;
  }
  .section__checkout__info__title {
    font-size: 24px;
  }
  .section__checkout__info__btn {
    font-size: 14px;
  }
  .pop__up__toggle__btn {
    display: block;
  }
  .section__success {
    padding-top: 52px;
  }
  .section__success__title {
    text-align: left;
    font-size: 36px;
  }
  .section__success__text {
    text-align: left;
  }
  .section__success__inner {
    grid-template-rows: repeat(4, auto);
  }
  .section__checkout__info__products {
    grid-template-columns: 1fr;
  }
  .section__checkout__info__total__text {
    font-size: 15px;
  }
  .section__checkout__info__total__price {
    font-size: 16px;
  }
  .section__success__btn {
    max-width: 100%;
    padding: 18px 32px;
    font-size: 14px;
  }
  .section__checkout__products {
    grid-row: 1/2;
  }
  .section__checkout__total {
    grid-row: 2/3;
  }
  .section__checkout .pop__up__content {
    border-left: none;
  }
  .catalog-filters__body.active {
    flex-direction: column;
    position: fixed;
    background: #fff;
    width: calc(100% - 32px);
    z-index: 1;
    top: 84px;
    overflow-y: auto;
    max-height: calc(100vh - 84px);
    padding: 0;
    padding-right: 8px;
    border: none;
  }
  .body-filters__col {
    padding: 24px 0;
    border-bottom: 1px solid var(--black-15, rgba(0, 0, 0, 0.15));
    border-right: none;
  }
  .body-filters__col .body-filters__list {
    max-height: none;
  }
  .filter-item label .remove-filter-btn {
    left: 0;
  }
  .filter-item label:has(input:checked) {
    padding-left: 16px;
  }
  .catalog__selected {
    display: none !important;
  }
  .filter__header {
    padding: 16px 0;
    border-bottom: 1px solid var(--black-15, rgba(0, 0, 0, 0.15));
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }
  .filter__close {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--Black, #000);
    font-family: "Vinnytsia Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 24px */
    text-transform: uppercase;
  }
  .reset__filters__btn {
    font-size: 14px;
  }
  /* .body-filters__col.colors .filter-item label:has(input:checked){
    display: block;
    } */
  .search__form {
    flex-direction: column;
    max-width: none;
    align-items: flex-start;
  }
  .submenu {
    max-height: none;
  }
}
@media (max-width: 900px) and (any-hover: none) {
  .icon-menu {
    cursor: default;
  }
}
.checkout__coupon {
  display: none;
  flex-direction: column;
  gap: 34px;
  align-items: center;
}
.checkout__coupon.active {
  display: flex;
}
.simplecheckout-step.section__checkout__grid:has(#simplecheckout_shipping) .checkout__coupon,
.simplecheckout-step.section__checkout__grid:has(#simplecheckout_summary) .checkout__coupon {
  display: flex;
}
.checkout__coupon__title {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  color: rgba(0, 0, 0, 0.5);
}
.checkout__coupon__inner {
  display: flex;
  align-items: center;
  width: 100%;
}
.checkout__coupon__input {
  width: 100%;
  position: relative;
  outline: 0;
  resize: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  font-family: inherit;
  background: #fff;
  border: none;
  border-bottom: 1.5px solid #000;
  border-radius: 0;
  padding: 13px 15px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  height: 100%;
}
.checkout__coupon__btn {
  /* height: 100%; */
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 0;
  gap: 8px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  padding: 15px 32px;
  border: none;
  -webkit-transition: all 0.2s ease !important;
  transition: all 0.2s ease !important;
  background: 0 0;
  color: inherit;
  outline: 0 !important;
  /* font-family: Manrope, sans-serif; */
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  /* line-height: 17.6px; */
  background-color: #000;
  color: #fff;
}
.section__product__total .checkout__coupon__inner {
  gap: 12px;
}
.section__product__total .checkout__coupon__btn {
  border-radius: 5px;
  text-transform: uppercase;
  display: none;
}
.section__product__total .checkout__coupon__btn.presubmit {
  display: flex;
}
.fade {
  display: none !important;
}
.preorder__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.preorder__text {
  color: var(--Black, #000);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
}
.modal {
  display: none; /* Приховано за замовчуванням */
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  justify-content: center;
  align-items: center;
}

.modal {
}
.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  position: relative;
  padding: 64px;
  /* min-height: 357px; */
}

.modal-content h2 {
  color: var(--Black, #000);
  text-align: center;

  /* font-family: "Charpentier Sans Pro 45 Leger"; */
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 32px */
  text-transform: uppercase;
}
.modal-content p {
  max-width: 490px;
  text-align: center;
  color: var(--black-50, rgba(0, 0, 0, 0.5));
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}
.checkoutClose {
  position: absolute;
  right: 24px;
  top: 24px;
}
.modal-content button {
  text-transform: uppercase;
  border-radius: 5px;
}
.modal-content #stayHere {
  padding: 18px 64px;
  text-transform: uppercase;
  border-radius: 5px;
}
.modal-content #confirmLeave {
  margin-top: 16px;
}
@media (max-width: 768px) {
  .section__main__slide__link {
    margin-top: 90%;
  }
  .submenu__item {
    font-size: 16px;
  }
  .checkoutClose {
    position: absolute;
    right: 16px;
    top: 16px;
  }
  .modal-content {
    padding: 32px 24px;
  }
  .modal-content h2 {
    font-size: 30px;
  }
  .modal-content p {
    font-size: 15px;
  }
  .modal-content #confirmLeave {
    margin-top: 8px;
  }
  .modal-content button {
    font-size: 14px;
  }
  .modal-content #stayHere {
    padding: 18px 0;
    width: 100%;
  }
  .product__card__bottom__options {
    gap: 5px;
    flex-wrap: wrap;
  }
  .product__card__color::before {
    width: 12px;
    height: 12px;
  }
  .product__card__color::after {
    width: 18px;
    height: 18px;
  }
  .section__products .pagination .pagination__btn {
    font-size: 12px;
  }
  .section__products .pagination .body-pagination__number {
    font-size: 12px;
    width: 30px;
    height: 30px;
  }
  .section__products .pagination {
    gap: 6px;
  }
  .section__product__options__content .product__card__color::after{
    width: 30px;
    height: 30px;
  }
  .section__product__options__content .product__card__color::before{
    width: 20px;
    height: 20px;
  }
}
.text_select {
  display: block !important;
}
.others-lang {
  display: flex;
  gap: 6px;
}
/* .disabled-lang{
  color: var(--black-50, rgba(0, 0, 0, 0.5));
} */

.product-badges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /*padding: 5px;*/
  position: absolute;
  top: 24px;
  left: 0;
  z-index: 1;
}

@media (max-width:768px){
   .product-badges{
     /*top: 52%;  */
   } 
}

.product-badges.sm {
  top: 12px;
  left: 12px
}

.product-badges.sm .product-badge {
  font-size: 10px;
  padding: 5px 10px
}

.product-badge {
  padding: 8px 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  background: #000;
  color: #fff!important;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 0.8rem;
  font-weight: 700
}

.unavailable {
  content: '';
  width: 32px;
  height: 1px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-142deg);
  background: #AAAAAA;
}

#loader-request {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

#loader-request.active {
  opacity: 1;
  pointer-events: auto;
}

.popup-bg {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0,0,0,0.3);
  transition: 0.3s;
  cursor: pointer;
  pointer-events: none;
  opacity: 0;
}

.popup {
  position: fixed;
  padding: 42px 45px 25px;
  z-index: 101;
  background-color: white;
  width: calc(100vw - 20px);
  max-width: 450px;
  top: 50%;
  left: calc(50% - 225px);
  transform: translate(0, -50%);
  display: flex;
  flex-direction: column;
  gap: 30px;
  transition: 0.3s;
  pointer-events: none;
  opacity: 0;
}

.popup-close {
  position: absolute;
  right: 45px;
  top: 34px;
  font-size: 21px;
  cursor: pointer;
  user-select: none;
}

.popup-bg.active,
.popup.active {
  pointer-events: auto;
  opacity: 1;
}

.popup-logo {
  height: 45px;
}

.popup-text {
  text-align: center;
  font-size: 16px;
  line-height: 22.4px;
}

.popup-form-input {
  padding: 13px 15px;
  border-bottom: 1.5px solid #000;
  width: 100%;
  outline: none !important;
}

.popup-form-success {
  color: green;
  text-align: center;
  font-weight: bold;
}

.popup-form {
  display: flex;
  flex-direction: column;
}

.popup-form-input {
  padding: 13px 15px;
  border-bottom: 1.5px solid #000;
  width: 100%;
  outline: none !important;
  margin-bottom: 24px;
}

.btn.popup-form-btn {
  background-color: #000;
  color: #fff;
  width: 100%;
  margin: 0 0 8px;
  border-radius: 0;
  padding: 15px 32px;
  font-size: 17px;
  font-weight: 500;
  line-height: 17.6px;
  text-transform: none;
}

.btn.popup-form-transparent-btn {
  font-size: 17px;
  font-weight: 500;
  line-height: 17.6px;
  text-transform: none;
}

#simplecheckout_shipping_address .form-group:nth-last-child(1) h5 {
  white-space: pre-wrap;
  line-height: 140%;
}

.simplecheckout-wayforpay-description {
  line-height: 140%;
}

.coupon-alert {
  position: fixed;
  top: 188px;
  background: #000;
  right: 20px;
  z-index: 99;
  color: #fff;
  font-size: 14px;
  padding: 11px 14px;
  border: none !important;
  display: flex;
  align-items: center;
  border-radius: 4px;
  transition: 0.3s;
  animation: slideIn 0.5s, fadeOut 0.5s 2.5s;
  animation-fill-mode: forwards;
  pointer-events: none;
}

.coupon-alert > .close {
  color: white;
  opacity: 1;
  font-size: 18px;
  line-height: 14px;
  margin-left: 7px;
  margin-bottom: 3px;
}

@keyframes slideIn {
  from {
    transform: translate(0, 0);
    opacity: 0;
  }
  to {
    transform: translate(0, -20px);
    opacity: 1;
  }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

@media (max-width: 470px) {
  .popup {
    left: 10px;
  }
}
@media (max-width: 1350px) {
  .section__products__list .product__card .product__card__image {
    width: 400px;
    height: 560px;
  }
  .section__products__list .product__card:nth-child(3) .product__card__image,
  .section__products__list .product__card:nth-child(4) .product__card__image,
  .section__products__list .product__card:nth-child(5) .product__card__image,
  .section__products__list .product__card:nth-child(7) .product__card__image,
  .section__products__list .product__card:nth-child(8) .product__card__image,
  .section__products__list .product__card:nth-child(9) .product__card__image {
    width: 265px;
    height: 371px;
  }
  .section__products__list {
    padding: 0 50px;
  }
}
@media (max-width: 1000px) {
  .section__products__list .product__card .product__card__image {
    width: 300px;
    height: 420px;
  }
  .section__products__list .product__card:nth-child(3) .product__card__image,
  .section__products__list .product__card:nth-child(4) .product__card__image,
  .section__products__list .product__card:nth-child(5) .product__card__image,
  .section__products__list .product__card:nth-child(7) .product__card__image,
  .section__products__list .product__card:nth-child(8) .product__card__image,
  .section__products__list .product__card:nth-child(9) .product__card__image {
    width: 250px;
    height: 350px;
  }
  .section__products__list {
    padding: 0 20px;
  }
}
@media (max-width: 900px) {
  .section__products__list .product__card:nth-child(3) .product__card__image,
  .section__products__list .product__card:nth-child(4) .product__card__image,
  .section__products__list .product__card:nth-child(5) .product__card__image,
  .section__products__list .product__card:nth-child(7) .product__card__image,
  .section__products__list .product__card:nth-child(8) .product__card__image,
  .section__products__list .product__card:nth-child(9) .product__card__image {
    width: 300px;
    height: 420px;
  }
}
@media (max-width: 700px) {
  .section__products__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .section__products__list .product__card .product__card__image {
    width: calc(50vw - 1.5rem);
    height: auto;
    aspect-ratio: 1 / 1.4;
  }
  .section__products__list > .product__card:nth-child(5) .product__card__image,
  .section__products__list > .product__card:nth-child(8) .product__card__image,
  .section__products__list > .product__card:nth-child(9) .product__card__image {
    width: calc(50vw - 1.5rem);
    height: auto;
    aspect-ratio: 1 / 1.4;
  }
  .section__products__list > .product__card:nth-child(2) .product__card__image,
  .section__products__list > .product__card:nth-child(3) .product__card__image,
  .section__products__list > .product__card:nth-child(4) .product__card__image,
  .section__products__list > .product__card:nth-child(7) .product__card__image {
    width: calc(100vw - 1.5rem);
    height: auto;
    aspect-ratio: 1 / 1.4;
  }
  .section__products__list {
    padding: 0 0px;
  }
}

.cart-cross-sale {
  padding: 24px;
}

.cart-cross-sale__title {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 600;
}

.cart-cross-sale__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.cart-cross-sale__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  color: inherit;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.cart-cross-sale__thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 2 / 2;
  overflow: hidden;
  border-radius: 6px;
  background: #fafafa;
}

.cart-cross-sale__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-cross-sale__name {
  font-size: 12px;
  line-height: 1.35;
  min-height: 34px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cart-cross-sale__price-wrap {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-top: auto;
  flex-direction: column;
}

.cart-cross-sale__price-old {
  color: #8f8f8f;
  text-decoration: line-through;
  font-size: 12px;
}

.cart-cross-sale__price {
  color: #111;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.2;
}

.cart-cross-sale__btn {
  position: absolute;
  right: 0;
  bottom: 0;
  cursor: pointer;
}

@media (max-width: 768px) {
  .cart-cross-sale__grid {
    grid-template-columns: 1fr;
  }

  .cart-cross-sale__thumb {
    aspect-ratio: 2 / 1;
  }
}

.region-modal-overlay{
  position:fixed;inset:0;
  background:rgba(245,245,243,.55);
  backdrop-filter:blur(7px) saturate(.9);
  -webkit-backdrop-filter:blur(7px) saturate(.9);
  display:flex;align-items:center;justify-content:center;
  padding:24px;z-index:50;
  opacity:0;visibility:hidden;
  transition:opacity .5s ease,visibility .5s ease;
}

.region-modal-overlay.open{
  opacity:1;visibility:visible;
}

.region-modal-modal{
  position:relative;
  width:min(460px,100%);
  background:var(--paper);
  border:1px solid var(--line);
  padding:46px 44px 40px;
  transform:translateY(22px) scale(.98);
  opacity:0;
  transition:transform .6s cubic-bezier(.16,1,.3,1),opacity .55s ease;
}

.region-modal-overlay.open .region-modal-modal{
  transform:none;
  opacity:1;
}

.region-modal-modal::before,
.region-modal-modal::after{
  content:"";
  position:absolute;
  width:14px;height:14px;
  border:1px solid var(--ink);
}

.region-modal-modal::before{
  top:-1px;left:-1px;border-right:none;border-bottom:none;
}

.region-modal-modal::after{
  bottom:-1px;right:-1px;border-left:none;border-top:none;
}

.region-modal-close{
  position:absolute;
  top:18px;right:18px;
  width:26px;height:26px;
  border:none;background:none;
  cursor:pointer;
  color:var(--ink);
  opacity:.5;
  transition:opacity .3s,transform .4s;
}

.region-modal-close:hover{
  opacity:1;
  transform:rotate(90deg);
}

.region-modal-stag{
  opacity:0;
  transform:translateY(10px);
}

.region-modal-overlay.open .region-modal-modal > .region-modal-stag{
  animation:region-modal-rise .65s cubic-bezier(.16,1,.3,1) forwards;
}

@keyframes region-modal-rise{
  to{opacity:1;transform:none}
}

.region-modal-label{
  display:flex;align-items:center;gap:9px;
  font-size:10.5px;
  letter-spacing:.34em;
  text-transform:uppercase;
  color:var(--muted);
}

.region-modal-dot{
  width:5px;height:5px;
  border-radius:50%;
  background:var(--ink);
  display:inline-block;
}

.region-modal-title{
  font-weight:300;
  font-size:32px;
  line-height:1.08;
  letter-spacing:-.01em;
  margin:20px 0 6px;
}

.region-modal-title em{font-style:italic}

.region-modal-sub{
  font-style:italic;
  font-weight:300;
  font-size:18px;
  color:var(--muted);
  line-height:1.2;
  margin-bottom:24px;
}

.region-modal-desc{
  font-size:13.5px;
  line-height:1.6;
  color:#3a3a3a;
  padding-bottom:26px;
  border-bottom:1px solid var(--hair);
}

.region-modal-desc span{color:var(--muted)}

.region-modal-choices{
  margin-top:26px;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.region-modal-choice{
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
  cursor:pointer;
  font:inherit;
  text-align:left;
  padding:16px 18px;
  background:none;
  border:1px solid var(--line);
  color:var(--ink);
  transition:background .4s ease,color .4s ease;
}

.region-modal-choice__main{
  display:flex;
  flex-direction:column;
  gap:3px;
}

.region-modal-choice__name{
  font-size:14px;
  font-weight:500;
}

.region-modal-choice__meta{
  font-size:10.5px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--muted);
}

.region-modal-choice__arrow{
  font-size:18px;
}

.region-modal-choice--primary{
  background:var(--ink);
  color:var(--paper);
}

.region-modal-choice--ghost:hover{
  background:var(--ink);
  color:var(--paper);
}

.region-modal-remember{
  margin-top:22px;
  display:flex;
  align-items:center;
  gap:10px;
  font-size:11px;
  letter-spacing:.04em;
  color:var(--muted);
  cursor:pointer;
}

.region-modal-remember input{
  position:absolute;
  opacity:0;
}

.region-modal-box{
  width:15px;height:15px;
  border:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:center;
}

.region-modal-box svg{
  width:9px;height:9px;
  opacity:0;
}

.region-modal-remember input:checked + .region-modal-box{
  background:var(--ink);
}

.region-modal-remember input:checked + .region-modal-box svg{
  opacity:1;
}

.popup.popup-buy-mono,
.popup.popup-buy-privat {
  padding: 35px;
  max-width: 510px;
  left: calc(50% - 255px);
  max-height: calc(100vh - 30px);
  overflow-y: auto;
}

@media (max-width: 550px) {
  .popup.popup-buy-parts {
    left: 10px;
  }
}

.popup-buy-parts-close {
  width: 24px;
  height: 24px;
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
  user-select: none;
}

.popup-buy-parts-close-img {
  width: 24px;
  height: 24px;
}

.popup-buy-parts-content h2 {
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  text-transform: uppercase;
  margin: 15px 0;
}

.popup-buy-parts-content h3 {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 10px;
}

.popup-buy-parts-content li {
  margin: 10px 0 10px 18px;
  font-weight: 400;
  font-size: 15px;
  line-height: 21px;
}

.popup-buy-parts-content p {
  margin: 10px 0;
}

.popup-buy-parts-content a {
  color: #921213;
  text-decoration: underline;
}

.section__product__parts__wrapper {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.section__product__parts {
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.btn-monobank-ico {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.btn-privatbank-ico {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.pop__up__tip {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.mono-parts-selector,
.privat-parts-selector {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  font-size: 15px;
}
.mono-parts-selector__info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mono-parts-selector__controls {
  display: flex;
  align-items: center;
}
.mono-parts-selector__logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.mono-parts-selector__controls {
  margin-left: auto;
  white-space: nowrap;
}
.mono-parts-selector__text {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 13px;
  margin-right: 10px;
  margin-top: 3px;
}
.mono-parts-selector__btn {
  width: 28px;
  height: 28px;
  border: 1px solid #d7d7d7;
  background: #fff;
  line-height: 1;
  text-align: center;
}
.mono-parts-selector__input {
  width: 36px !important;
  height: 28px;
  border: 1px solid #d7d7d7;
  text-align: center;
  background: #fff;
  padding-top: 4px;
}
.mono-parts-selector__count {
  margin-top: 3px;
}
@media (max-width: 575px) {
  .mono-parts-selector,
  .privat-parts-selector {
      align-items: flex-start;
      flex-direction: column;
  }
  .mono-parts-selector__controls {
      margin-left: 0;
  }
}
.row-customer_other_recipient label {
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
}
#customer_other_recipient_1 {
  width: 25px;
  margin-right: 15px;
}