@charset "UTF-8";

/* dev */

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Убираем внутренние отступы */
ul[class],
ol[class] {
  padding: 0;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}


:root {
  --font-family: "Futura PT", sans-serif;
  --standart-transition: all 0.2s linear;

}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  position: relative;

}

body,
html {
  overflow-x: hidden;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul[class],
ol[class] {
  list-style: none;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
  color: #000;
}

/* Упрощаем работу с изображениями */
img {
  max-width: 100%;
  display: block;
}

/* Указываем понятную периодичность в потоке данных у article*/
article>*+* {
  margin-top: 1em;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: transparent;
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  outline: none;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;

  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;

  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;

  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
  appearance: none;
}

[type=button]:focus,
[type=button]:hover,
[type=submit]:focus,
[type=submit]:hover,
button:focus,
button:hover {

  background-color: unset;

}

[type=button]:focus,
[type=submit]:focus,
button:focus {
  outline: none;
}

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

.elementor-kit-9 button,
.elementor-kit-9 input[type="button"],
.elementor-kit-9 input[type="submit"],
.elementor-kit-9 .elementor-button {
  font-family: unset;
  font-size: unset;
  font-weight: unset;
  line-height: unset;
  letter-spacing: unset;
  color: unset;
  background-color: unset;
  border-radius: 0px 0px 0px 0px;
  padding: 0px;
}

[type=button],
[type=submit],
button {
  border: none;
}

.elementor-kit-9 {
  line-height: normal;
}

@font-face {
  font-family: "Futura PT";
  src: url("../fonts/FuturaPT-Book.woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Futura PT";
  src: url("../fonts/FuturaPTCond-Medium.woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Futura PT";
  src: url("../fonts/FuturaPT-Demi.woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

html,
body {
  font-family: var(--font-family) !important;
  font-weight: 400 !important;
  color: #000 !important;
}

p {
  font-weight: 400;
  font-size: 16px;
  line-height: 137%;
  color: #000;

}

p:not(:last-child) {
  margin-bottom: 16px;
}

.container {
  width: 93.33%;
  max-width: 100%;
  margin: 0 auto;
}

/* HEADER */

.header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.11);
  padding: 24px 0 21px;
  position: relative;


}

.hamburger-menu {
  position: absolute;
  width: 100%;
  top: 100%;
  background: #fff;
  z-index: 5;
  margin-top: 10px;
  padding: 10px 0 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.11);
  display: none;

  ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  li {
    color: #000;
    font-size: 16px;
    text-transform: uppercase;
    width: fit-content;
  }

  ul.sub-menu {
    display: none;
    padding: 20px;
  }

  .menu-item-has-children.open>ul.sub-menu {
    display: flex;
  }

  .menu-item-has-children.open>a {
    color: #EE8EA1;
  }
}

.hamburger-menu__open {
  transition: var(--standart-transition);

  & span {
    transition: var(--standart-transition);
  }

  & span:nth-child(1) {
    transform: rotate(45deg) translate(3px, 2px);
  }

  & span:nth-child(3) {
    transform: rotate(-45deg) translate(3px, -3px);
  }

  & span:nth-child(2) {
    opacity: 0;
  }


}

.hamburger {
  transition: var(--standart-transition);
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
  margin-top: 15px;

  & span {
    height: 2px;
    width: 20px;
    background: #080808;
  }
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.header-logo {
  width: 11.7%;
}

.header-info {
  width: 50.7%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-info__item {
  display: flex;
  gap: 8px;
  position: relative;

  & svg {
    position: absolute;
    left: -15px;
    top: 4px;
  }
}

.header-info__text {
  font-size: 16px;
  line-height: 137%;
}

.fw-600 {
  font-weight: 600;
}

a.header-tel {
  font-size: 16px;
  color: #000;
}

.header-top__right {
  width: 25.7%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.header-socials {
  display: flex;
  gap: 8px;
}

.header-social {
  width: 24px;
  height: 24px;
}

.search {
  height: 40px;
  display: flex;
  width: 72%;

  & .aws-container .aws-search-field {
    border: 1px solid #030303;
    padding: 10px 0 10px 16px;
    height: 40px;

  }

  & .aws-container .aws-search-form .aws-form-btn {
    width: 40px;
    height: 40px;
    background-color: #030303 !important;
    background-image: url(/wp-content/themes/hello-elementor/assets/img/search.svg) !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
  }

  & .aws-container .aws-search-form .aws-form-btn svg {
    display: none;
  }
}

.search-input {
  width: 81%;
  height: 40px;
  border: 1px solid #030303;
  padding: 10px 0 10px 16px;

}

.search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #030303;
}

.header-nav ul {
  display: flex;
  align-items: center;
  gap: 24px;

  & a {
    font-size: 16px;
    text-transform: uppercase;
    color: #000;
  }

  & li {
    display: flex;
  }

  .menu-item-has-children {
    position: relative;

    &:hover>.sub-menu {
      display: flex;
    }

  }

  .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;

    flex-direction: column;
    gap: 10px;
    padding: 20px 0 20px 20px;
    ;
    border: 1px solid #E5E5E5;
    background: #fff;
    z-index: 10;
    width: auto;
    min-width: 300px;
    text-align: left;
    align-items: flex-start;

  }
}

.menu-item-has-children>a {
  position: relative;

  &:after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -10px;
    height: 3px;
    width: 6px;
    background-image: url("../img/submenu-arrow.svg");
    background-repeat: no-repeat;
  }
}

/* HEADER */

/* HERO */

.section-hero {
  margin-top: 24px;
  margin-bottom: 56px;
}

.swiper-hero-slider {
  position: relative;
  overflow: hidden;
}

button.slider-btn {
  width: 24px;
  height: 24px;
  background: #090909;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.slider-btn__prev {
  left: 0;
}

.slider-btn__next {
  right: 0;
}

.hero-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 2;
  bottom: 16px !important;

  & .swiper-pagination-bullet {
    background: #a1a1a1;
    opacity: 1;

  }

  & .swiper-pagination-bullet-active {
    background: #090909;
    opacity: 1;
  }
}

/* HERO */

/* HITS */

.hits {
  margin-bottom: 72px;
}

.main-h2 {
  font-size: 32px;
  text-transform: uppercase;
  margin-bottom: 48px;
  font-weight: 400;
}

.section-catalog__btn {
  margin-bottom: 120px;
}

.btn {
  border: 1px solid #000;
  background: #090909;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  text-align: center;
  height: 42px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
}

.show-all-catalog {

  width: 200px;


  margin: 0 auto;


}

/* HITS */

/* ABOUT US*/

.section-about-us {
  margin-bottom: 120px;
}

.about-us__wrapper {
  display: flex;
  justify-content: space-between;
}

.about-us__left {
  width: 51%;
}

.about-us__right {
  width: 43.6%;
}

/* ABOUT US*/

/* REASONS */


.section-reasons {
  margin-bottom: 80px;

  & .main-h2 {
    margin-bottom: 24px;
  }
}

.reasons-text {
  margin-bottom: 24px;
}

ul.reasons-list {
  display: flex;
  flex-direction: column;
  gap: 16px;

  & ul.dot-list {
    margin-bottom: 40px;
  }
}

.reasons-item {
  display: flex;
  gap: 16px;
}

.reasons-item__number {
  width: 32px;
  height: 32px;
  background: #090909;
  display: flex;
  justify-content: center;
  align-items: center;

  font-weight: 600;
  font-size: 16px;
  color: #fff;
}

.reasons-wrapper {
  max-width: 853px;
}

.reasons-item__right {
  flex: 1;
}

.reasons-item__text {}

.list {}

ul.dot-list {
  display: flex;
  flex-direction: column;
  gap: 8px;

  & li {
    position: relative;
    display: flex;
    padding-left: 14px;
  }

  & li::before {
    content: url(../img/pink-dot.svg);
    position: absolute;
    width: 6px;
    height: 6px;

    top: -2px;
    left: 0;
  }
}

.reasons-bottom {
  display: flex;
  align-items: center;
  gap: 16px;
}

.reasons-btn {
  width: 200px;
}


.section-seo-1 {
  margin-bottom: 80px;

  & .main-h2 {
    margin-bottom: 40px;
  }

  ul.seo-grid-list {
    margin-bottom: 40px;
  }
}

.seo-wrapper {
  max-width: 893px;
}

ul.seo-grid-list {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  row-gap: 8px;
  column-gap: 50px;
}

.mb-16 {
  margin-bottom: 16px;
}

ul.mb-16 {
  margin-bottom: 16px;
}

.section-seo-2 {
  margin-bottom: 80px;

  & .main-h2 {
    margin-bottom: 34px;
  }
}


.opacity-05 {
  opacity: 0.5;
}

ul.line-list {
  display: flex;
  flex-direction: column;
  gap: 12px;

  & li {
    position: relative;
    display: flex;
    padding-left: 20px;
  }

  & li::before {
    content: url(../img/pink-line.svg);
    position: absolute;
    width: 11px;
    height: 2px;

    top: -5px;
    left: 0;
  }
}

.section-seo-3 {
  margin-bottom: 100px;
}

.section-feedback {
  padding: 64px 0 64px;
  margin-bottom: 120px;

  & p {
    text-align: center;
  }

}

.section-black {
  background: #080808;

  & p {
    color: #fff;
  }

  & a {
    color: #fff;
  }
}

.container {}

.h2-feedback {
  font-weight: 400;
  font-size: 48px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
  text-align: center;
}

.feedback-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;

  & input[type='email'],
  textarea {
    display: none;
  }

  & button {
    background: #ee8ea1;
    width: 200px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 16px;
    color: #fff;
    align-self: flex-end;
  }
}

.feedback-form__item {
  display: flex;
  flex-direction: column;
  gap: 4px;

  & label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
  }

  & input {
    background: #fff;
    padding: 10px 10px 10px 16px;
    width: 200px;
    height: 48px;
  }


}


.section-reviews {
  margin-bottom: 160px;
}



.reviews-wrapper {
  display: flex;
  justify-content: space-between;
}

.yandex-reviews {
  width: 49%;
  max-width: 760px;

  & iframe body {
    background: unset;
  }
}

.reviews-cards {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.review-card {
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  min-height: 155px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 10px;

  & img {
    width: 50%;
  }
}

.footer {
  padding: 40px 0 56px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-contacts {
  & h3 {

    font-weight: 400;
    font-size: 40px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 27px;
  }
}

.footer-contacts__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 36px;
}

.footer-contact__item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact__icon {}

.footer-contact__text {
  font-size: 16px;
  color: #fff;
}

.footer-shipping,
.footer-payments {
  margin-top: 20px;

  & h4 {

    font-size: 24px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
    font-weight: 400;

  }

  & a {
    display: block;
    margin-bottom: 8px;
  }
}

.footer-payments {}

.footer-payments__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 30px;
  column-gap: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;

}

.footer-bottom__trepel {
  display: flex;
  gap: 24px;

  & span {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
  }
}

.footer-bottom__socials {
  display: flex;
  gap: 8px;
}

.footer-dev {

  margin-top: 20px;
  font-size: 16px;
  color: #fff;

  & .footer-dev__link {
    font-size: 16px;
    color: #EE8EA1;
  }
}


.woocommerce-page .product section.related ul.products {
  gap: 24px !important;

  & li {
    display: grid !important;
    grid-template-rows: subgrid;
    grid-row: auto / span 4;
  }
}


ul.products-list,
.woocommerce-page .product section.related ul.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;

  & img {
    width: 100%;
    margin-bottom: 16px;
  }

  & .woocommerce-loop-product__title {

    font-size: 16px;
    text-align: center;
    color: #000;
    margin-bottom: 4px;
    text-transform: uppercase;
  }

  & .price {
    font-weight: 600;
    font-size: 16px;
    line-height: 137%;
    text-align: center;
    color: #ee8ea1;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  & .shopengine-quickview-trigger,
  .add_to_cart_button {
    display: none;
  }




  li {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: auto / span 4;

  }
}



/* REASONS */


/* VARIATIONS POPUP */


.variation-popup {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 450px;
  padding: 40px 40px 32px;

  & input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #EE8EA1;
  }

  & input[type="checkbox"]:focus {
    outline: none;
  }

  & input[type="checkbox"]:checked {
    background-color: transparent;
  }

  & .variations-loop {
    display: flex;
  }
}

.variation-popup__wrapper {
  display: flex;
  flex-direction: column;

}

.variation-popup__title {
  font-weight: 500;
  font-size: 32px;
  color: #000;
  margin-bottom: 16px;
}

.variation-popup__text {
  font-weight: 400;
  font-size: 16px;
  color: #000;
}

.variation-popup__transport-text {
  cursor: pointer;
  flex: 1;

  p {
    margin-bottom: 0;
  }
}

.variation-popup__transport-price {
  position: relative;

  svg {
    position: absolute;
    top: 50%;
    transform: translate(-50%);
    left: calc(100% + 8px);
  }
}

.variation-popup__text-choice {
  margin-bottom: 16px;
}

.variation-popup__variations {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.variation-popup__text-variations {}

.variation-popup__variations-list {}

.variation-popup__transport {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.variation-popup__transport-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

button.variation-popup__btn {
  display: block;
  font-weight: 400;
  font-size: 16px;
  color: #fff;

  background: #090909;
  padding: 10px;
  width: 336px;
  height: 42px;
  text-align: center;
  cursor: pointer;
  align-self: center;
}

.variation-popup__text--accent {
  font-weight: 600;
  font-size: 16px;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: #ee8ea1;
}

.variation-popup__transport-about {
  margin-top: 16px;
  margin-bottom: 15px;

  font-weight: 400;
  font-size: 16px;
  color: rgba(9, 9, 9, 0.5);
}



/* VARIATIONS POPUP */

/* variations-loop */

.variations-loop {
  display: none;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;

  & input {
    position: absolute;
    z-index: -1;
    opacity: 0;
  }

  & label {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid #000;
    font-weight: 400;
    font-size: 16px;
    color: #090909;
    cursor: pointer;
  }
}

label.label-accent {
  background: #ee8ea1;
  font-weight: 900;
  font-size: 16px;
  color: #fff;
  border: 1px solid #ee8ea1;

}


.add-to-cart__btn {
  width: 100%;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid #000;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 16px;
  color: #000;
}




/* variations-loop */






/* HIDDEN */

.mob,
.hidden-kora,
.search-mob {
  display: none;
}

.hero-slide-mob {
  display: none;
}

/* HIDDEN */


@media (max-width:1100px) {
  .header-info {
    display: none;
  }

  .header-top__right {
    width: 50%;
  }

  .header-nav ul {
    gap: 16px;

    & a {
      font-size: 14px;

    }
  }


}

@media (max-width:870px) {

  .header-top__right,
  .header-nav {
    display: none;
  }

  .header-logo {
    width: 103px;
  }

  .mob,
  .search-mob {
    display: flex;

  }

  .search-mob {
    margin-bottom: 20px;
    width: 100%;

    .aws-container {
      width: 100%;
    }
  }

  .header {
    padding: 16px 0 0 0;
    border-bottom: none;
  }
}

@media (max-width:728px) {
  .hero-slide-mob {
    display: block;
  }

  .slider-btn {
    display: none;
  }

  .hero-slide-desk {
    display: none;
  }

  .hero-pagination {
    position: static;
  }

  .swiper-hero .swiper-wrapper {
    margin-bottom: 8px;
  }

  .hits .main-h2 {
    text-align: center;
  }

  .section-catalog__btn {
    margin-bottom: 88px;
  }

  .about-us__wrapper {
    flex-direction: column;
    gap: 24px;

    & .main-h2 {
      margin-bottom: 32px;
    }
  }

  .about-us__left,
  .about-us__right {
    width: 100%;
  }

  .section-about-us {
    margin-bottom: 88px;
  }

  .section-reasons {
    margin-bottom: 88px;

    & .main-h2 {
      font-size: 20px;
      margin-bottom: 32px;
    }
  }

  .reasons-bottom {
    flex-direction: column-reverse;
    align-items: start;
  }

  .section-seo {
    margin-bottom: 88px;

    & .main-h2 {
      font-size: 20px;
      margin-bottom: 32px;
    }
  }

  ul.seo-grid-list {
    grid-template-columns: 1fr;
  }

  .h2-feedback {
    font-size: 32px;
    margin-bottom: 32px;
  }

  .section-feedback {
    padding: 56px 0 56px;
    margin-bottom: 88px;

    & p {
      width: 280px;
      margin: 0 auto 40px;

    }
  }

  .feedback-form {
    flex-direction: column;

    & button {
      align-self: center;
    }
  }

  .feedback-phone {
    margin-bottom: 8px;
  }

  .reviews-wrapper {
    flex-direction: column;
    gap: 20px;
    px;
  }

  .reviews-cards,
  .yandex-reviews {
    width: 100%;
  }

  .section-reviews {
    margin-bottom: 88px;
  }

  .footer {
    padding: 56px 0 56px;
  }

  .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .footer-contacts {
    & h3 {
      font-size: 48px;
      margin-bottom: 16px;
    }
  }

  .footer-contacts__list {
    margin-bottom: 24px;
  }

  .footer-payments__list {
    grid-template-columns: repeat(3, 0.2fr);
  }

  .footer-bottom {
    & .footer-bottom__socials {
      display: none;
    }
  }

  .footer-bottom__trepel {
    flex-direction: column;
    gap: 8px;
  }

  ul.products-list,
  .woocommerce-page .product section.related ul.products {

    grid-template-columns: repeat(2, 1fr);
    row-gap: 0;
    column-gap: 8px;

    li {
      grid-row: auto / span 2;
      margin-bottom: 40px;
    }
  }

  .variation-popup__variations {
    flex-direction: column;
    align-items: flex-start;
  }

  .variation-popup {
    padding: 24px 12px;
  }

  .variation-popup__btn {
    width: 100%;
  }

  .variation-popup__title {
    font-size: 24px;
  }



}



/* catalog page */

.main-catalog {
  margin-top: 112px;
  margin-bottom: 120px;
}

h1.h1-catalog {
  font-weight: 400;
  font-size: 40px;
  color: #000;
  margin-bottom: 60px;
  text-align: center;
  text-transform: uppercase;
}

.seo-catalog {
  color: #000;
  font-size: 16px;
}

.seo-after-h1 {
  margin-bottom: 60px;
}

.catalog-wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}

.catalog-aside {
  width: 22%;
}

.catalog-aside__top {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  align-items: flex-end;
}

.catatalo-aside__title {
  font-weight: 400;
  font-size: 32px;
  color: #000;
}

button.catalog-filter__reset {
  font-weight: 400;
  font-size: 16px;
  color: #ee8ea1;
  line-height: normal;

}

.catalog-filters {}

.catalog-filter__price {
  margin-bottom: 40px;

  .catalog-filter__name {
    margin-bottom: 15px;
  }
}

.catalog-filter__name {

  font-weight: 400;
  font-size: 16px;
  color: #000;
  line-height: normal;
}

.price-slider {
  margin-bottom: 20px;
}

.catalog-filter__price-inputs {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

input.catalog-filter__price-input {
  background: #f0f0f0;
  padding: 10px 16px 10px 8px;
  width: 66px;
  height: 24px;
  text-align: center;
}

.catalog-filter__price-input--min {}

.catalog-filter__price-input--max {}

.catalog-filter__select {
  display: flex;
  flex-direction: column;
  gap: 20px;

  margin-bottom: 16px;

  .catalog-filter__name {
    flex: 1;
    padding: 10px;
    background: #f0f0f0;
    height: 40px;

  }

}

button.catalog-filter__select-btn {
  height: 40px;
  display: flex;
  text-align: left;
}

.catalog-filter__categories-wrapper {
  display: none;
}

ul.catalog-filter__categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.catalog-filter__category {
  display: flex;
  gap: 8px;
  align-items: flex-end;

  label {
    font-weight: 400;
    font-size: 16px;
    color: #090909;
  }
}

.rotate-180 {
  transform: rotate(180deg);
  transition: var(--standart-transition);
}

input[name="filter-category"] {
  border: 1px solid rgba(0, 0, 0, 0.5);
  width: 12px;
  height: 12px;
  accent-color: #EE8EA1;
}


input[name="filter-category"] {
  outline: none;
}

input[name="filter-category"] {
  background-color: transparent;
}

.catalog-filter__select-square {
  background: #090909;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalog-products__wrapper {
  width: 75%;

  .products-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.catalog-products__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}

.catalog-products__sort {
  display: flex;
  gap: 12px;
  align-items: center;

  .catalog-filter__name {
    margin-right: 4px;
  }
}

button.catalog-products__sort-btn {
  font-weight: 400;
  font-size: 16px;
  color: #090909;
  background: #f0f0f0;
  height: 30px;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.catalog-products__sort-pop {}

.catalog-products__sort-price--desc {}

.catalog-products__sort-price-asc {}

.catalog-products__all {
  display: flex;
  gap: 8px;
  align-items: center;
}

.catalog-products__all-quantity {
  font-weight: 900;
  font-size: 16px;
  color: #ee8ea1;
}

.catalog-products__list {}

.seo-bottom-text {}

button.filter-submit {
  width: 100%;
  line-height: normal;
  padding: 20px 10px;
  background: #000;
  color: #fff;
  transition: var(--standart-transition);
  font-size: 16px;
  text-align: center;
  border: 1px solid #000;
  margin-top: 40px;

  &:hover {
    background: #fff;
    color: #000;
  }
}

input[name="sort-by"] {
  display: none;
}

@media (max-width:1199px) {
  .catalog-products__sort-btn {
    label {
      font-size: 12px;
    }

  }

  .sort-by__desk {
    display: none;
  }
}

@media (min-width:1200px) {
  .sort-by__mob {
    display: none;
  }
}

@media (max-width:1024px) {
  .catalog-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .catalog-aside,
  .catalog-products__wrapper {
    width: 100%;
  }
}

@media (max-width: 728px) {
  .catalog-products__wrapper {
    .products-list {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  .catalog-products__all {
    align-self: flex-end;
  }

  .catalog-products__sort {
    flex-wrap: wrap;
    row-gap: 8px;
    column-gap: 4px;

  }

  .catalog-products__sort {
    .catalog-filter__name {
      width: 100%;
    }
  }

  button.catalog-products__sort-btn {
    padding: 4px;
  }

  .catalog-filter__name {
    letter-spacing: -0.5px;
  }

  .catalog-aside {
    display: none;
  }
}

button.show-filters__btn {
  width: 100%;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #ee8ea1;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
}

@media (min-width: 729px) {
  button.show-filters__btn {
    display: none;
  }
}


ul.products-list {

  /* перенести на проде в нужное место*/
  & img {

    aspect-ratio: 3 / 4;
    object-fit: cover;
  }
}

/* catalog page */

/* single product page */

.single-product #primary {
  padding: 0 40px;
}

.section-back {
  margin: 64px 0 40px;
}

.product-back {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--standart-transition);
}

button.product-back:hover {
  color: #090909;
  background-color: unset;
}

.product-back__text {
  font-size: 16px;
  color: #090909;
}


.woo-variation-gallery-wrapper .woo-variation-gallery-slider img {
  aspect-ratio: 453 / 560;
  object-fit: cover;
}

.woocommerce div.product {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.product-title__wrap {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.woocommerce div.product h1.product_title {
  font-weight: 500;
  font-size: 32px;
  color: #090909;
}

.woocommerce div.product .product-title__wrap p.price {
  /* border: 1px solid #000; */
  padding: 10px;
  font-size: 16px;
  color: #080808;
}

.product-warning {
  border: 1px solid #000;
  padding: 10px;
  font-size: 16px;
  color: #080808;
  margin-bottom: 24px;
}


.product-tabs {
  margin-bottom: 24px;
}

.product-tabs__list {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}

.product-tabs__item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 120px;
  height: 40px;
  border: 1px solid #090909;
  color: #090909;
  cursor: pointer;
}

.product-tabs__item-acive {
  background: #000;
  color: #fff;
}

.product-tabs__content-item:not(.product-tabs__content-item[data-id="1"]) {
  display: none;
}

.product-tabs__content-item,
.product-tabs__content-item p {
  font-size: 16px;
  color: #090909;
}

.woocommerce div.product form.cart .variations tr {
  display: flex;
  align-items: center;
  height: fit-content;
  flex-wrap: wrap;
  gap: 17px;
}

.woocommerce div.product form.cart .variations th {
  display: flex;
  width: auto;
}

.woocommerce div.product form.cart .variations td {
  display: flex;
  width: auto;
}

.woocommerce div.product form.cart .variations th.label {
  font-size: 16px !important;
  color: #090909;
}

.woocommerce div.product form.cart .reset_variations {
  display: flex;
  align-items: center;
}

.woocommerce div.product .woocommerce-variation span.price {
  font-weight: 600;
  font-size: 40px;
  color: #ee8ea1;
  margin-bottom: 24px;
}

.product-gabarits {
  display: flex;
  gap: 15px;
  margin-bottom: 24px;
}

.product-gabarits__item {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #090909;
}

.product-gabarits__item span {

  font-weight: 500;
}

.ppom-wrapper input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #EE8EA1;
}

.ppom-input-option-label {
  font-weight: 400;
  font-size: 16px;
  color: #090909;
}


/* .ppom-wrapper input[type="checkbox"] {
  appearance: none;
  margin-top: 0;
 }
 
 .ppom-wrapper input[type="checkbox"]:focus {
  outline: none;
 }
 
 .ppom-wrapper input[type="checkbox"]:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px; 
  background-color: #eaeaea;
  border: 1px solid #000;
 }
 
 input[type="checkbox"]:checked:before {
  border-color: #44944A; 
  background-color: #fff; 
  background-image: url("https://fs17.getcourse.ru/fileservice/file/download/a/198593/sc/117/h/0efc8821947572c435d4597d7c90cac8.png");
  background-size: 80%; 
  background-repeat: no-repeat;
  background-position: center;
 } */



.add-to-cart__wrapper {
  display: flex;
  align-items: center;
  gap: 24px;
}

.add-to-cart-quantity__wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.add-to-cart-quantity__btn {
  cursor: pointer;
}

.woocommerce .quantity .qty {
  font-size: 16px;
  color: #000;
}

.woocommerce div.product form.cart div.quantity {
  margin: 0;
}

.woocommerce div.product form.cart .button.single_add_to_cart_button {
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  background: #030303;
  width: 147px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.woocommerce-product-details__short-description {
  display: none;
}

@media (max-width:768px) {
  .single-product #primary {
    padding: 0 10px;
  }
}




/* single product page */


/* cart page */

.entry-title {
  background-color: #F0F0F0;
  text-align: center;
  margin-bottom: 30px;
  padding: 30px 10px 30px 10px;
  font-size: 20px;
  font-weight: 500;
}

.woocommerce-cart .woocommerce {
  margin-bottom: 40px;
}


.woocommerce-cart-form__contents {}

.shop-table__header {
  display: grid;
  grid-template-columns: 4fr 2fr 2fr 1fr;
  padding: 15px;
  background-color: #F0F0F0;
  margin-bottom: 20px;
}

.shop-table__bottom {
  display: none;
}


.woocommerce-cart-form__cart-item {
  display: grid;
  grid-template-columns: 1fr 3fr 2fr 2fr 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.woocommerce-cart-form__cart-item .product-thumbnail {
  position: relative;
  margin-right: 25px;
}

.woocommerce-cart-form__cart-item .product-remove {
  position: absolute;
  top: 0;
  right: 0;
}

.woocommerce .cart-collaterals .shop-table__cart-totals {
  padding: 30px 30px 30px 30px;
  background-color: #F7F8FB;
}

.shop-table__cart-totals .order-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  width: 100%;
  background-color: #000 !important;
  color: #fff;
  padding: 20px;
  margin-bottom: 0 !important;

  &:hover {
    color: #F7F8FB !important;
  }

}

.woocommerce-cart .wc-proceed-to-checkout {
  padding: 0 !important;
}

.shop-table__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.add-to-order-text {
  display: flex;
  justify-content: flex-end;
  width: 100%;

  cursor: pointer;
  margin-bottom: 20px;

  color: #000;
  font-size: 22px;
  font-weight: 500;
}

.add-to-order-text span {
  width: fit-content;
  border-bottom: 1px dashed black;
  padding-bottom: 0;
}

.cart__related-products-wrapper {
  display: none;
}

@media(max-width:768px) {
  .shop-table__header {
    display: none;
  }

  .woocommerce-cart-form__cart-item {
    grid-template-columns: 2fr 4fr;
  }

  .woocommerce-cart-form__cart-item {
    .product-thumbnail {
      grid-row: 1 / span 4;
    }

    .product-name {
      grid-row: 1;
    }

    .product-price {
      display: none;
    }

    .product-quantity {
      grid-column: 2;
      grid-row: 4;
    }

    .product-subtotal {
      grid-column: 2;
      grid-row: 3;
    }

  }



}




/* cart page */


/* checkout */

.woocommerce-checkout {

  input[type=text],
  input[type=url],
  input[type=tel],
  input[type=email],
  select,
  textarea {
    border: 1px solid #E5E5E5;
    border-radius: 5px;
  }
}

.woocommerce-checkout #payment {
  background-color: #f0f0f0;
  border-radius: 5px;

}

.woocommerce #payment #place_order {
  background-color: #000 !important;
  color: #E5E5E5 !important;
}



/* checkout */