@charset "UTF-8";
/*===== VARIABLES CSS =====*/
:root {
  --header-height: 56px;
  /*===== Font and typography =====*/
  --font-family: "Jost", sans-serif;
  --second-family: "Inter", sans-serif;
}
@media (min-width: 1023px) {
  :root {
    --header-height: 64px;
  }
}

/*===== VARIABLES CSS =====*/
:root {
  --header-height: 56px;
  /*===== Font and typography =====*/
  --font-family: "Jost", sans-serif;
  --second-family: "Inter", sans-serif;
}
@media (min-width: 1023px) {
  :root {
    --header-height: 64px;
  }
}

/* http://meyerweb.com/eric/tools/css/reset/
   v5.0.2 | 20191019
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

/* HTML5 hidden-attribute fix for newer browsers */
*[hidden] {
  display: none;
}

body {
  line-height: 1;
}

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

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

::placeholder {
  color: #111;
}

body {
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 400;
  color: #111;
  padding-top: calc(var(--header-height) + 16px);
  background: #fff;
  min-width: 320px;
  position: relative;
  line-height: 144%;
  overflow-x: hidden;
}
body.menu-opened, body.search-opened {
  max-height: 100vh;
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

.wrapper {
  padding: 0 16px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
@media (min-width: 1023px) {
  .wrapper {
    max-width: 1560px;
    padding: 0 20px;
  }
}

.text-center {
  text-align: center;
}

b, strong {
  font-weight: bold;
}

h1, h2, h3, ul, p {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 16px;
  line-height: 132%;
}

h1 {
  font-size: 24px;
}

h2 {
  font-size: 20px;
}

h3 {
  font-size: 18px;
}

h4 {
  font-size: 16px;
}

h5 {
  font-size: 14px;
}

h6 {
  font-size: 12px;
}

ul {
  padding: 0;
  list-style: none;
}

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

a:hover {
  color: #111;
}

.header {
  height: var(--header-height);
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  background-color: #111;
  transition: top 0.2s ease;
  padding: 10px 0;
  box-sizing: border-box;
}
.header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.header__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 17, 17, 0.25);
  z-index: 99997;
  display: none;
}
.header__logo {
  margin: 0 auto;
  flex: none;
}
@media (min-width: 1023px) {
  .header__logo {
    order: 1;
    margin: 0 43px 0 0;
  }
}
.header__logo-link, .header__logo-link img {
  height: 32px;
  width: auto;
  display: block;
}
@media (min-width: 1023px) {
  .header__logo-link, .header__logo-link img {
    height: 44px;
  }
}
.header__menu-toggle {
  padding: 0;
  outline: none;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  width: 20px;
  height: 20px;
  margin-right: 32px;
}
@media (min-width: 1023px) {
  .header__menu-toggle {
    order: 2;
    background: #fcff50;
    display: flex;
    width: 178px;
    flex: none;
    border-radius: 8px;
    padding: 10px;
    height: 44px;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .header__menu-toggle:hover {
    background: #e9ed02;
  }
}
.header__menu-toggle__close {
  display: none;
}
@media (min-width: 1023px) {
  .header__menu-toggle__show {
    display: none;
  }
}
.header__menu-toggle__show-desktop {
  display: none;
}
@media (min-width: 1023px) {
  .header__menu-toggle__show-desktop {
    display: block;
  }
}
.header__menu-toggle__desktop {
  display: none;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  color: #111;
}
@media (min-width: 1023px) {
  .header__menu-toggle__desktop {
    display: block;
  }
}
.header__menu-toggle.active .header__menu-toggle__show {
  display: none;
}
.header__menu-toggle.active .header__menu-toggle__show-desktop {
  display: none;
}
.header__menu-toggle.active .header__menu-toggle__close {
  display: block;
}
@media (min-width: 1023px) {
  .header__menu-toggle.active .header__menu-toggle__close {
    width: 16px;
    height: 16px;
  }
  .header__menu-toggle.active .header__menu-toggle__close path {
    fill: #111111;
  }
}
.header__search-toggle {
  padding: 0;
  outline: none;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  width: 20px;
  height: 20px;
  margin-right: 32px;
}
@media (min-width: 1023px) {
  .header__search-toggle {
    display: none;
  }
}
.header__search-toggle__close {
  display: none;
}
.header__search-toggle.active .header__search-toggle__show {
  display: none;
}
.header__search-toggle.active .header__search-toggle__close {
  display: block;
}
.header__search-box {
  display: none;
}
@media (min-width: 1023px) {
  .header__search-box {
    display: block;
    width: 100%;
    order: 3;
  }
}
.header__search-box.active {
  display: block;
  position: fixed;
  top: calc(var(--header-height));
  left: 0;
  width: 100%;
  padding: 16px;
  box-sizing: border-box;
  max-height: calc(100% - var(--header-height));
}
.header__search-box__wrapper {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  max-height: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1023px) {
  .header__search-box__wrapper {
    overflow: visible;
    position: relative;
  }
}
.header__search-box__form {
  display: flex;
}
.header__search-box__btn {
  background: #fcff50;
  width: 56px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
  cursor: pointer;
}
.header__search-box__btn:hover {
  background: #e9ed02;
}
.header__search-box__btn-searching {
  display: none;
}
.header__search-box__btn-close {
  display: none;
  width: 16px;
  height: 16px;
}
.header__search-box__btn.loading .header__search-box__btn-searching {
  display: block;
}
.header__search-box__btn.loading .header__search-box__btn-send {
  display: none;
}
.header__search-box__btn-clear .header__search-box__btn-close {
  display: block;
}
.header__search-box__btn-clear .header__search-box__btn-send {
  display: none;
}
@media (min-width: 1023px) {
  .header__search-box__btn {
    border-radius: 0 8px 8px 0;
  }
}
@media (min-width: 1023px) {
  .header__search-box_result-showed .header__search-box__btn {
    border-radius: 0 8px 0 0;
  }
}
.header__search-box__input {
  padding: 12px 16px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 132%;
  color: #111;
  width: calc(100% - 56px);
  height: 44px;
  border: 0;
  outline: none;
  background: #fff;
  box-sizing: border-box;
}
@media (min-width: 1023px) {
  .header__search-box__input {
    border-radius: 8px 0 0 8px;
  }
}
@media (min-width: 1023px) {
  .header__search-box_result-showed .header__search-box__input {
    border-radius: 8px 0 0 0;
  }
}
.header__search-box__results {
  display: none;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid #e9e9e9;
  padding: 16px;
  max-height: 100%;
  overflow-y: auto;
}
@media (min-width: 1023px) {
  .header__search-box__results {
    border-radius: 0 0 8px 8px;
  }
}
.header__search-box__results.active {
  display: flex;
}
@media (min-width: 1023px) {
  .header__search-box__results.active {
    display: flex;
    position: absolute;
    top: 100%;
    background-color: #fff;
    width: 100%;
    box-sizing: border-box;
    max-height: 60vh;
  }
}
.header__search-box__results .result-category-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  line-height: 132%;
  color: #111;
  margin: 8px 0;
}
.header__search-box__results a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 132%;
  color: #111;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
}
.header__search-box__results a:hover {
  text-decoration: underline;
}
.header__search-box .spinner {
  animation: rotate 1s linear infinite;
}
.header__search-box .spinner .path {
  stroke-dasharray: 90, 150;
  stroke-dashoffset: 0;
  animation: dash 1.5s ease-in-out infinite;
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
.header__additional-menu {
  display: flex;
  gap: 32px;
  justify-content: space-between;
  align-items: center;
  margin-left: 32px;
}
@media (min-width: 1023px) {
  .header__additional-menu {
    order: 4;
  }
}
.header__additional-menu a, .header__additional-menu svg {
  display: block;
}

.main-navigation {
  position: fixed;
  max-height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99998;
  transition: top 0.2s ease;
  padding: calc(var(--header-height) + 16px) 16px 24px;
  box-sizing: border-box;
  display: none;
}
.main-navigation.active {
  display: block;
}
.main-navigation__wrapper {
  background: #fff;
  max-height: 100%;
  border-radius: 8px;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 16px;
  box-sizing: border-box;
}
@media (min-width: 1023px) {
  .main-navigation__wrapper {
    max-width: 1528px;
    padding: 0;
    overflow: hidden;
    flex-direction: row;
  }
}
.main-navigation__title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  line-height: 132%;
  color: #111;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #e9e9e9;
}
@media (min-width: 1023px) {
  .main-navigation__title {
    display: none;
  }
}
.main-navigation .menu-main-menu-container {
  max-height: 100%;
  overflow-x: auto;
}
@media (min-width: 1023px) {
  .main-navigation .menu-main-menu-container {
    width: 356px;
    padding: 24px;
    box-sizing: border-box;
    background: #fafafa;
    flex: none;
  }
}
.main-navigation .sub-menu {
  display: none;
}
.main-navigation .main-menu {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.main-navigation .main-menu > li > a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 132%;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.main-navigation .main-menu > li > a:after {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.2675 6.58589L7.20751 3.52589C7.0826 3.40173 6.91364 3.33203 6.73751 3.33203C6.56139 3.33203 6.39242 3.40173 6.26751 3.52589C6.20503 3.58787 6.15543 3.6616 6.12158 3.74284C6.08774 3.82408 6.07031 3.91122 6.07031 3.99923C6.07031 4.08723 6.08774 4.17437 6.12158 4.25561C6.15543 4.33685 6.20503 4.41058 6.26751 4.47256L9.33418 7.52589C9.39666 7.58787 9.44626 7.6616 9.48011 7.74284C9.51395 7.82408 9.53138 7.91122 9.53138 7.99923C9.53138 8.08723 9.51395 8.17437 9.48011 8.25561C9.44626 8.33685 9.39666 8.41058 9.33418 8.47256L6.26751 11.5259C6.14198 11.6505 6.0711 11.82 6.07047 11.9969C6.06985 12.1738 6.13953 12.3437 6.26418 12.4692C6.38883 12.5948 6.55825 12.6656 6.73515 12.6663C6.91206 12.6669 7.08198 12.5972 7.20751 12.4726L10.2675 9.41256C10.642 9.03756 10.8524 8.52923 10.8524 7.99923C10.8524 7.46922 10.642 6.96089 10.2675 6.58589Z' fill='%23111111' /%3E%3C/svg%3E");
}
.main-navigation .main-menu.active-inner > li {
  display: none;
}
@media (min-width: 1023px) {
  .main-navigation .main-menu.active-inner > li {
    display: block;
  }
}
.main-navigation .main-menu.active-inner > li > a {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  color: #111;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #e9e9e9;
  justify-content: flex-start;
  align-items: center;
}
@media (min-width: 1023px) {
  .main-navigation .main-menu.active-inner > li > a {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 132%;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 0;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
.main-navigation .main-menu.active-inner > li > a:before {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.59873 9.87884L13.1887 5.28884C13.3761 5.10259 13.6295 4.99805 13.8937 4.99805C14.1579 4.99805 14.4114 5.10259 14.5987 5.28884C14.6925 5.3818 14.7669 5.4924 14.8176 5.61426C14.8684 5.73612 14.8945 5.86683 14.8945 5.99884C14.8945 6.13085 14.8684 6.26156 14.8176 6.38342C14.7669 6.50528 14.6925 6.61588 14.5987 6.70884L9.99873 11.2888C9.905 11.3818 9.83061 11.4924 9.77984 11.6143C9.72907 11.7361 9.70293 11.8668 9.70293 11.9988C9.70293 12.1309 9.72907 12.2616 9.77984 12.3834C9.83061 12.5053 9.905 12.6159 9.99873 12.7088L14.5987 17.2888C14.787 17.4758 14.8934 17.7299 14.8943 17.9953C14.8952 18.2607 14.7907 18.5155 14.6037 18.7038C14.4168 18.8921 14.1626 18.9985 13.8973 18.9994C13.6319 19.0003 13.377 18.8958 13.1887 18.7088L8.59873 14.1188C8.03693 13.5563 7.72137 12.7938 7.72137 11.9988C7.72137 11.2038 8.03693 10.4413 8.59873 9.87884Z' fill='%23111111'/%3E%3C/svg%3E%0A");
}
@media (min-width: 1023px) {
  .main-navigation .main-menu.active-inner > li > a:before {
    display: none;
  }
}
.main-navigation .main-menu.active-inner > li > a:after {
  display: none;
}
@media (min-width: 1023px) {
  .main-navigation .main-menu.active-inner > li > a:after {
    display: block;
  }
}
.main-navigation .main-menu.active-inner > li.active {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1023px) {
  .main-navigation .main-menu.active-inner > li.active {
    display: block;
  }
  .main-navigation .main-menu.active-inner > li.active a {
    font-weight: 600;
  }
}
.main-navigation .main-menu.active-inner > li.active > .sub-menu {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 80vh;
  overflow-y: auto;
}
@media (min-width: 1023px) {
  .main-navigation .main-menu.active-inner > li.active > .sub-menu {
    display: none;
  }
}
.main-navigation .main-menu.active-inner > li.active > .sub-menu > li > a {
  display: block;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 132%;
  color: #111;
  margin-bottom: 8px;
}
.main-navigation .main-menu.active-inner > li.active > .sub-menu .sub-menu {
  display: flex;
  flex-direction: column;
}
.main-navigation .main-menu.active-inner > li.active > .sub-menu .sub-menu a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 180%;
  color: #111;
}
.main-navigation__sub-menu {
  display: none;
  padding: 24px;
  width: 100%;
  box-shadow: 2px 2px 16px 0 rgba(206, 206, 206, 0.16), -2px -2px 16px 0 rgba(206, 206, 206, 0.16);
}
@media (min-width: 1023px) {
  .main-navigation__sub-menu {
    display: block;
  }
}
.main-navigation__sub-menu > .sub-menu {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 24px;
  row-gap: 64px;
}
.main-navigation__sub-menu > .sub-menu > li > a {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  line-height: 132%;
  color: #111;
  margin-bottom: 8px;
  display: block;
}
.main-navigation__sub-menu > .sub-menu .sub-menu {
  display: flex;
  flex-direction: column;
}
.main-navigation__sub-menu > .sub-menu .sub-menu a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 180%;
  color: #111;
}
.main-navigation__sub-menu > .sub-menu .sub-menu a:hover {
  text-decoration: underline;
}

.menu-opened .header__overlay,
.search-opened .header__overlay,
.search-result-showed .header__overlay {
  display: block;
}

.hero-section {
  margin-bottom: 32px;
}
@media (min-width: 1023px) {
  .hero-section {
    display: flex;
    gap: 32px;
    margin-bottom: 120px;
  }
}
.hero-menu {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-menu a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 132%;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.hero-menu a:hover {
  font-weight: 600;
}
.hero-menu a:after {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.2675 6.58589L7.20751 3.52589C7.0826 3.40173 6.91364 3.33203 6.73751 3.33203C6.56139 3.33203 6.39242 3.40173 6.26751 3.52589C6.20503 3.58787 6.15543 3.6616 6.12158 3.74284C6.08774 3.82408 6.07031 3.91122 6.07031 3.99923C6.07031 4.08723 6.08774 4.17437 6.12158 4.25561C6.15543 4.33685 6.20503 4.41058 6.26751 4.47256L9.33418 7.52589C9.39666 7.58787 9.44626 7.6616 9.48011 7.74284C9.51395 7.82408 9.53138 7.91122 9.53138 7.99923C9.53138 8.08723 9.51395 8.17437 9.48011 8.25561C9.44626 8.33685 9.39666 8.41058 9.33418 8.47256L6.26751 11.5259C6.14198 11.6505 6.0711 11.82 6.07047 11.9969C6.06985 12.1738 6.13953 12.3437 6.26418 12.4692C6.38883 12.5948 6.55825 12.6656 6.73515 12.6663C6.91206 12.6669 7.08198 12.5972 7.20751 12.4726L10.2675 9.41256C10.642 9.03756 10.8524 8.52923 10.8524 7.99923C10.8524 7.46922 10.642 6.96089 10.2675 6.58589Z' fill='%23111111' /%3E%3C/svg%3E");
}
.hero-menu__container {
  display: none;
}
@media (min-width: 1023px) {
  .hero-menu__container {
    display: block;
    width: 356px;
    flex: none;
    background: #fafafa;
    border-radius: 8px;
    padding: 24px;
    box-sizing: border-box;
  }
}
@media (min-width: 1023px) {
  .hero-slider {
    width: calc(100% - 356px - 32px);
  }
}

.hero-slider .swiper {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}
.hero-slider__nav {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: flex;
  gap: 16px;
  z-index: 5;
}
@media (min-width: 1023px) {
  .hero-slider__nav {
    gap: 20px;
    left: 20px;
    bottom: 20px;
  }
}
.hero-slider__nav .hero-prev,
.hero-slider__nav .hero-next {
  width: 20px;
  height: 20px;
  background: transparent;
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  padding: 0;
}
@media (min-width: 1023px) {
  .hero-slider__nav .hero-prev,
  .hero-slider__nav .hero-next {
    width: 30px;
    height: 30px;
  }
}
.hero-slider__nav .hero-prev svg,
.hero-slider__nav .hero-next svg {
  display: block;
  width: 20px;
  height: 20px;
}
@media (min-width: 1023px) {
  .hero-slider__nav .hero-prev svg,
  .hero-slider__nav .hero-next svg {
    width: 30px;
    height: 30px;
  }
}

.hero-slide {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
}
.hero-slide img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-slide__text {
  display: none;
}

.section-products {
  margin-bottom: 64px;
}
@media (min-width: 1023px) {
  .section-products {
    margin-bottom: 150px;
  }
}
@media (min-width: 1023px) {
  .section-products {
    position: relative;
  }
}
.section-products__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 132%;
  color: #111;
  margin-bottom: 16px;
}
@media (min-width: 1023px) {
  .section-products__title {
    font-size: 32px;
    margin-bottom: 32px;
  }
}
.section-products__all {
  display: block;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 132%;
  color: #fcff50;
  background: #111;
  border-radius: 8px;
  padding: 12px 16px;
  width: 200px;
  height: 44px;
  margin: 16px auto 0;
  box-sizing: border-box;
  text-align: center;
}
@media (min-width: 1023px) {
  .section-products__all {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
  }
}
.section-products__all:hover {
  color: #111;
  background: #fcff50;
}

.products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media (min-width: 1023px) {
  .products-grid {
    gap: 32px;
  }
}
.products-grid .product-card {
  width: calc(50% - 5px);
}
@media (min-width: 1023px) {
  .products-grid .product-card {
    width: calc(25% - 24px);
  }
}

@media (min-width: 1023px) {
  .home .products-grid,
  .single-product .products-grid {
    gap: 35px;
  }
}
@media (min-width: 1023px) {
  .home .products-grid .product-card,
  .single-product .products-grid .product-card {
    width: calc(20% - 28px);
  }
}
@media (max-width: 1022px) {
  .home .products-grid .product-card:nth-child(n+5),
  .single-product .products-grid .product-card:nth-child(n+5) {
    display: none;
  }
}

:root {
  --card-radius: 8px;
}

.product-card {
  box-sizing: border-box;
  position: relative;
  list-style: none;
  background: #fafafa;
  border-radius: var(--card-radius);
  overflow: hidden;
  padding: 16px;
}
.product-card__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.product-card__badge {
  position: absolute;
  top: 0;
  left: 0;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #000 50%, transparent 50%);
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 12px;
  line-height: 132%;
  color: #fcff50;
  border-top-left-radius: var(--card-radius);
  overflow: hidden;
  z-index: 2;
}
@media (min-width: 1023px) {
  .product-card__badge {
    background: transparent;
  }
}
.product-card__badge span {
  transform: rotate(-45deg);
  position: absolute;
  top: 10px;
  left: 3px;
  width: 30px;
  text-align: center;
}
@media (min-width: 1023px) {
  .product-card__badge span {
    background: #000;
    width: 100px;
    left: -32px;
    top: 10px;
    padding: 3px;
    line-height: 100%;
  }
}
.product-card__favorite {
  position: absolute;
  top: 8px;
  right: 8px;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  color: #fff;
  background: #111;
  z-index: 2;
}
.product-card__favorite:hover {
  background: #fcff50;
}
.product-card__favorite:hover svg path {
  fill: #111;
}
@media (min-width: 1023px) {
  .product-card__favorite {
    width: 40px;
    height: 40px;
  }
  .product-card__favorite svg {
    width: 20px;
    height: 20px;
  }
}
.product-card__image {
  display: block;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
@media (min-width: 1023px) {
  .product-card__image {
    margin-bottom: 16px;
  }
}
.product-card__image img {
  transition: transform 0.2s ease;
  width: 100%;
  display: block;
}
.product-card__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 132%;
  color: #767676;
  margin-bottom: 8px;
}
.product-card__rating .stars {
  display: flex;
  align-items: center;
  gap: 6px;
}
.product-card__rating .rating-value {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  color: #767676;
}
.product-card__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  line-height: 132%;
  color: #111;
  margin-bottom: 12px;
  --ratio: calc(1.32);
  --line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--line-clamp);
  overflow: hidden;
  word-break: break-word;
  max-height: calc(var(--line-clamp) * var(--ratio) * 1em);
  flex: 1;
}
@media (min-width: 1023px) {
  .product-card__title {
    font-size: 16px;
  }
}
.product-card__title a {
  color: inherit;
  text-decoration: none;
}
.product-card__title a:hover {
  text-decoration: underline;
}
.product-card__body {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.product-card__body--sale {
  align-items: flex-end;
}
.product-card__price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
@media (min-width: 1023px) {
  .product-card__price {
    gap: 16px;
    flex-direction: row;
    align-items: center;
  }
}
.product-card__price .price--old {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 132%;
  color: #949494;
  text-decoration: line-through;
}
@media (min-width: 1023px) {
  .product-card__price .price--old {
    font-size: 14px;
  }
}
.product-card__price .price--new {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 132%;
  color: #f33;
}
@media (min-width: 1023px) {
  .product-card__price .price--new {
    font-size: 20px;
  }
}
.product-card__price .price--main {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 132%;
  color: #221f1f;
}
@media (min-width: 1023px) {
  .product-card__price .price--main {
    font-size: 20px;
  }
}
.product-card__buy {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #111;
  border-radius: 6px;
}
@media (min-width: 1023px) {
  .product-card__buy {
    display: none;
  }
}
.product-card__buy-text {
  display: none;
}
@media (min-width: 1023px) {
  .product-card__buy-text {
    display: block;
  }
}
.product-card:hover {
  overflow: visible;
  border-radius: var(--card-radius) var(--card-radius) 0 0;
  z-index: 3;
}
@media (min-width: 1023px) {
  .product-card:hover .product-card__buy {
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    top: 100%;
    left: 0;
    height: 55px;
    width: 100%;
    background: #111;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 18px;
    line-height: 132%;
    color: #fcff50;
    border-radius: 0 0 var(--card-radius) var(--card-radius);
  }
  .product-card:hover .product-card__buy:hover {
    color: #111;
    background: #fcff50;
  }
  .product-card:hover .product-card__buy:hover path {
    fill: #111;
  }
}
@media (min-width: 1023px) {
  .product-card:hover .product-card__image img {
    transition: transform 0.2s ease;
    transform: scale(1.05);
  }
}

.advertising-section {
  margin-bottom: 64px;
}
@media (min-width: 1023px) {
  .advertising-section {
    margin-bottom: 120px;
  }
}
.advertising-section__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 132%;
  color: #111;
  margin-bottom: 16px;
}
@media (min-width: 1023px) {
  .advertising-section__title {
    font-size: 32px;
    margin-bottom: 32px;
  }
}
.advertising-section__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 1023px) {
  .advertising-section__list {
    flex-direction: row;
    justify-content: space-between;
    gap: 32px;
    align-items: flex-start;
  }
}
.advertising-section__item {
  position: relative;
  display: block;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 1023px) {
  .advertising-section__item {
    width: calc(50% - 16px);
  }
}
.advertising-section__item img {
  width: 100%;
  height: auto;
  display: block;
}
.advertising-section__item-text {
  display: none;
}

.woocommerce-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
@media (min-width: 1023px) {
  .woocommerce-breadcrumb {
    margin-bottom: 32px;
  }
}
.woocommerce-breadcrumb a, .woocommerce-breadcrumb span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 132%;
  color: #111;
}
.woocommerce-breadcrumb a:hover {
  text-decoration: underline;
}

.catalog-page__wrapper {
  display: flex;
  gap: 32px;
  margin-bottom: 64px;
}
@media (min-width: 1023px) {
  .catalog-page__wrapper {
    margin-bottom: 120px;
  }
}
.catalog-page__wrapper .products-grid {
  margin-bottom: 32px;
}
@media (min-width: 1023px) {
  .catalog-page__wrapper .products-grid {
    margin-bottom: 64px;
  }
}
.catalog-page__sidebar {
  width: 320px;
  flex: none;
  display: none;
}
@media (min-width: 1023px) {
  .catalog-page__sidebar {
    width: 288px;
    display: block;
  }
}
.catalog-page__sidebar.active {
  display: block;
  position: fixed;
  top: calc(var(--header-height) + 1px);
  right: 0;
  height: calc(100% - var(--header-height) - 1px);
  max-height: calc(100% - var(--header-height) - 1px);
  overflow-y: auto;
  background-color: #fff;
  z-index: 999998;
  padding: 16px;
  box-sizing: border-box;
}
.catalog-page__sidebar-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e9e9e9;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 132%;
  color: #111;
}
@media (min-width: 1023px) {
  .catalog-page__sidebar-title {
    display: none;
  }
}
.catalog-page__sidebar-title-close, .catalog-page__sidebar-title-close svg {
  display: block;
  cursor: pointer;
}
.catalog-page__sidebar .wpc-filters-widget-top-container {
  background: transparent;
}
.catalog-page__sidebar .wpc-widget-top-inside .wpc-inner-widget-chips-wrapper {
  overflow-y: visible;
  width: 100%;
}
.catalog-page__sidebar ul.wpc-filter-chips-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 0 0 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e9e9e9;
}
.catalog-page__sidebar ul.wpc-filter-chips-list.wpc-empty-chips-container {
  display: none;
}
.catalog-page__sidebar ul.wpc-filter-chips-list li,
.catalog-page__sidebar ul.wpc-filter-chips-list li.wpc-filter-chip {
  list-style: none;
  margin: 0;
  padding: 0;
  border: none;
  line-height: 132%;
}
.catalog-page__sidebar ul.wpc-filter-chips-list li a,
.catalog-page__sidebar ul.wpc-filter-chips-list li.wpc-filter-chip a {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 132%;
  color: #111;
  background: #fafafa;
  border-radius: 8px;
  padding: 8px;
  border: 0;
}
.catalog-page__sidebar .wpc-filters-section {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e9e9e9;
}
.catalog-page__sidebar .wpc-filter-title {
  margin-bottom: 16px;
}
.catalog-page__sidebar .wpc-filter-header .wpc-filter-title button {
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 132%;
  color: #111;
}
.catalog-page__sidebar .wpc-wrap-icons .wpc-filter-selected-values {
  display: none;
}
.catalog-page__sidebar .wpc-filters-main-wrap li.wpc-term-item {
  display: flex;
  align-items: center;
  gap: 0;
}
.catalog-page__sidebar .wpc-filters-main-wrap li.wpc-term-item input[type=checkbox] {
  display: none;
}
.catalog-page__sidebar .wpc-filters-main-wrap li.wpc-term-item label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #111;
  padding: 0;
  gap: 0;
}
.catalog-page__sidebar .wpc-filters-main-wrap li.wpc-term-item label::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='15' height='15' rx='1.5' stroke='%23D9D9D9'/%3E%3C/svg%3E");
  transition: all 0.2s ease;
}
.catalog-page__sidebar .wpc-filters-main-wrap li.wpc-term-item label .wpc-term-count {
  color: #545454;
  margin: 0;
}
.catalog-page__sidebar .wpc-filters-main-wrap li.wpc-term-item input[type=checkbox]:checked + label::before {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='16' height='16' rx='2' fill='%23111111'/%3E%3Cpath d='M5.87459 12.3313C5.53396 12.3315 5.20728 12.1961 4.96662 11.955L2.22153 9.21093C1.92616 8.91546 1.92616 8.43651 2.22153 8.14104C2.517 7.84567 2.99595 7.84567 3.29142 8.14104L5.87459 10.7242L12.7086 3.89023C13.004 3.59486 13.483 3.59486 13.7785 3.89023C14.0738 4.1857 14.0738 4.66465 13.7785 4.96012L6.78256 11.955C6.5419 12.1961 6.21523 12.3315 5.87459 12.3313Z' fill='white'/%3E%3C/svg%3E");
}
.catalog-page__sidebar .wpc-filters-range-wrapper input[type=number] {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  box-sizing: border-box;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 132%;
  color: #111;
}
.catalog-page__sidebar .wpc-filters-range-inputs .ui-slider-horizontal .ui-slider-range {
  background-color: #111;
}
.catalog-page__sidebar .wpc-filters-range-inputs .ui-slider .ui-slider-handle {
  width: 20px;
  height: 20px;
  top: -9px;
  background-color: #111;
  border: 0;
  box-shadow: none;
}
.catalog-page__main {
  flex: 1;
}

.woocommerce-products-header__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 132%;
  color: #111;
  margin-bottom: 8px;
}
@media (min-width: 1023px) {
  .woocommerce-products-header__title {
    font-size: 32px;
    margin-bottom: 12px;
  }
}
.woocommerce-products-header .wpc-custom-selected-terms {
  display: none;
}

.woocommerce-result-count {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 132%;
  color: #111;
  margin-bottom: 24px;
}

.woocommerce-ordering {
  width: calc(50% - 5px);
}
@media (min-width: 1023px) {
  .woocommerce-ordering {
    width: auto;
    margin-left: auto;
  }
}
.woocommerce-ordering select {
  width: 100%;
  height: 44px;
  padding: 12px;
  border: none;
  outline: none;
  border-radius: 8px;
  background: #fafafa;
  box-sizing: border-box;
}
@media (min-width: 1023px) {
  .woocommerce-ordering select {
    margin-left: auto;
    border-radius: 8px;
    height: 53px;
  }
}
.woocommerce-ordering__wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
@media (min-width: 1023px) {
  .woocommerce-ordering__wrapper {
    background: #fafafa;
    margin-bottom: 35px;
    padding: 0 16px;
  }
}
.woocommerce-ordering__filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: calc(50% - 5px);
  height: 44px;
  border-radius: 8px;
  background: #111;
  color: #fcff50;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 132%;
  cursor: pointer;
  transition: all 0.2s ease;
}
@media (min-width: 1023px) {
  .woocommerce-ordering__filter {
    display: none;
  }
}
.woocommerce-ordering__filter:hover {
  background: #fcff50;
  color: #111;
}
.woocommerce-ordering__filter:hover path {
  fill: #111;
}

.woocommerce-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.woocommerce-pagination a,
.woocommerce-pagination span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 132%;
  color: #111;
}
.woocommerce-pagination a,
.woocommerce-pagination span.current {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  transition: all 0.2s ease;
}
.woocommerce-pagination a:hover,
.woocommerce-pagination span.current {
  background: #111;
  color: #fcff50;
}

.single-product {
  overflow-x: hidden;
  max-width: 100vw;
}
.single-product .product-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.single-product .product-nav::-webkit-scrollbar {
  display: none;
}
@media (min-width: 1023px) {
  .single-product .product-nav {
    gap: 32px;
  }
}
.single-product .product-nav__wrapper {
  margin-bottom: 16px;
  padding: 9px 16px;
  position: relative;
  border-radius: 8px;
  width: calc(100vw - 16px);
  background: #fafafa;
  box-sizing: border-box;
}
@media (min-width: 1023px) {
  .single-product .product-nav__wrapper {
    width: 100%;
    padding: 16px 32px;
    margin-bottom: 24px;
  }
}
.single-product .product-nav__wrapper:after {
  content: "";
  position: absolute;
  z-index: 1;
  background: linear-gradient(90deg, rgba(250, 250, 250, 0) 0%, #fafafa 75%);
  width: 48px;
  height: 100%;
  top: 0;
  right: 0;
}
@media (min-width: 1023px) {
  .single-product .product-nav__wrapper:after {
    display: none;
  }
}
.single-product .product-nav svg {
  flex: none;
}
.single-product .product-nav a {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 132%;
  color: #111;
  white-space: nowrap;
}
.single-product .product-nav a:last-child {
  padding-right: 48px;
}
@media (min-width: 1023px) {
  .single-product .product-header {
    display: flex;
    gap: 24px;
    align-items: flex-start;
  }
}
.single-product .product-gallery {
  /* === Основной Swiper === */
  /* === Миниатюры === */
}
.single-product .product-gallery__wrapper {
  background: #fafafa;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  padding: 24px;
  margin-bottom: 16px;
}
@media (min-width: 1023px) {
  .single-product .product-gallery__wrapper {
    width: calc(50% - 12px);
    flex: none;
    padding: 48px;
    margin-bottom: 40px;
    box-sizing: border-box;
  }
}
.single-product .product-gallery__badge {
  position: absolute;
  top: 0;
  left: 0;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #000 50%, transparent 50%);
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 12px;
  line-height: 132%;
  color: #fcff50;
  border-top-left-radius: var(--card-radius);
  overflow: hidden;
  z-index: 2;
}
@media (min-width: 1023px) {
  .single-product .product-gallery__badge {
    background: transparent;
    width: 132px;
    height: 132px;
    font-size: 16px;
  }
}
.single-product .product-gallery__badge span {
  transform: rotate(-45deg);
  position: absolute;
  top: 10px;
  left: 3px;
  width: 30px;
  text-align: center;
}
@media (min-width: 1023px) {
  .single-product .product-gallery__badge span {
    background: #000;
    width: 180px;
    left: -40px;
    top: 42px;
    padding: 6px;
    line-height: 100%;
  }
}
.single-product .product-gallery__main {
  position: relative;
  margin-bottom: 24px;
  padding: 0 28px;
}
@media (min-width: 1023px) {
  .single-product .product-gallery__main {
    margin-bottom: 60px;
    padding: 0 60px;
  }
}
.single-product .product-gallery__main .swiper {
  width: 100%;
}
.single-product .product-gallery__main .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.single-product .product-gallery__main .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}
.single-product .product-gallery__main .swiper-button-prev,
.single-product .product-gallery__main .swiper-button-next {
  background: #111;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  z-index: 5;
}
@media (min-width: 1023px) {
  .single-product .product-gallery__main .swiper-button-prev,
  .single-product .product-gallery__main .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}
.single-product .product-gallery__main .swiper-button-prev::after,
.single-product .product-gallery__main .swiper-button-next::after {
  display: none;
}
.single-product .product-gallery__main .swiper-button-prev {
  left: 0;
}
.single-product .product-gallery__main .swiper-button-next {
  right: 0;
}
.single-product .product-gallery__thumbs .swiper-slide {
  opacity: 1;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  transition: opacity 0.2s ease, outline 0.2s ease;
  padding: 4px;
  box-sizing: border-box;
  border: 1px solid transparent;
}
@media (min-width: 1023px) {
  .single-product .product-gallery__thumbs .swiper-slide {
    padding: 8px;
  }
}
.single-product .product-gallery__thumbs .swiper-slide.swiper-slide-thumb-active {
  border: 1px solid #111;
}
.single-product .product-gallery__thumbs .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}
@media (min-width: 1023px) {
  .single-product .product-info__wrapper {
    width: calc(50% - 12px);
    flex: none;
  }
}
.single-product .product-summary__header {
  background: #fafafa;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
  box-sizing: border-box;
}
@media (min-width: 1023px) {
  .single-product .product-summary__header {
    padding: 32px;
    margin-bottom: 24px;
  }
}
.single-product .product-summary__header .product_title entry-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 132%;
  color: #111;
  margin-bottom: 8px;
}
@media (min-width: 1023px) {
  .single-product .product-summary__header .product_title entry-title {
    font-size: 32px;
    margin-bottom: 16px;
  }
}
.single-product .product-summary__header .woocommerce-product-details__short-description {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 132%;
  color: #111;
  margin-bottom: 16px;
}
.single-product .product-summary__header .product-rating {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (min-width: 1023px) {
  .single-product .product-summary__header .product-rating {
    margin-bottom: 0;
  }
}
.single-product .product-summary__header .product-rating__stars {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-right: 8px;
}
.single-product .product-summary__header .product-rating__value {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 130%;
  color: #767676;
  margin-right: 24px;
}
.single-product .product-summary__header .product-rating__reviews {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 132%;
  color: #111;
}
.single-product .product-summary__header .product_meta {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 132%;
  color: #111;
}
.single-product .product-summary__header .product_meta .sku {
  font-weight: 600;
}
@media (min-width: 1023px) {
  .single-product .product-summary__header-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.single-product .product-summary__purchase {
  background: #fafafa;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
  box-sizing: border-box;
  position: relative;
}
@media (min-width: 1023px) {
  .single-product .product-summary__purchase {
    padding: 27px 32px;
    margin-bottom: 24px;
  }
}
.single-product .product-summary__favorite {
  position: absolute;
  top: 16px;
  right: 16px;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  color: #fff;
  background: #111;
  z-index: 2;
}
.single-product .product-summary__favorite:hover {
  background: #fcff50;
}
.single-product .product-summary__favorite:hover svg path {
  fill: #111;
}
@media (min-width: 1023px) {
  .single-product .product-summary__favorite {
    width: 40px;
    height: 40px;
    top: 27px;
    right: 32px;
  }
  .single-product .product-summary__favorite svg {
    width: 20px;
    height: 20px;
  }
}
.single-product .product-summary__stock {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 132%;
  color: #111;
  margin-bottom: 6px;
}
.single-product .product-summary__price {
  display: flex;
  gap: 16px;
  flex-direction: row;
  align-items: center;
  margin-bottom: 12px;
}
.single-product .product-summary__price .price--old {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 132%;
  color: #949494;
  text-decoration: line-through;
}
@media (min-width: 1023px) {
  .single-product .product-summary__price .price--old {
    font-size: 20px;
  }
}
.single-product .product-summary__price .price--new {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 132%;
  color: #f33;
}
@media (min-width: 1023px) {
  .single-product .product-summary__price .price--new {
    font-size: 32px;
  }
}
.single-product .product-summary__price .price--main {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 132%;
  color: #221f1f;
}
@media (min-width: 1023px) {
  .single-product .product-summary__price .price--main {
    font-size: 32px;
  }
}
.single-product .product-summary__buy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #111;
  height: 44px;
  border-radius: 8px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 132%;
  color: #fcff50;
}
.single-product .product-summary__delivery {
  background: #fafafa;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
  box-sizing: border-box;
  position: relative;
}
@media (min-width: 1023px) {
  .single-product .product-summary__delivery {
    padding: 32px;
    margin-bottom: 24px;
  }
}
.single-product .product-summary__delivery-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 132%;
  color: #111;
  margin-bottom: 16px;
}
.single-product .product-summary__delivery-item {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #e8e8e8;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.single-product .product-summary__delivery-item__icon {
  flex: none;
}
.single-product .product-summary__delivery-item__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 132%;
  color: #111;
}
.single-product .product-summary__delivery-item__text p {
  margin-bottom: 8px;
}
.single-product .product-summary__delivery-item__text p:last-child {
  margin-bottom: 0;
}
.single-product .product-summary__delivery-item__cost {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  line-height: 132%;
  color: #111;
  margin-left: auto;
}
.single-product .product-summary__delivery-item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
.single-product .product-summary__payment {
  background: #fafafa;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
  box-sizing: border-box;
  position: relative;
}
@media (min-width: 1023px) {
  .single-product .product-summary__payment {
    padding: 32px;
    margin-bottom: 40px;
  }
}
.single-product .product-summary__payment-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 132%;
  color: #111;
  margin-bottom: 16px;
}
.single-product .product-summary__payment-item {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #e8e8e8;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.single-product .product-summary__payment-item__icon {
  flex: none;
}
.single-product .product-summary__payment-item__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 132%;
  color: #111;
}
.single-product .product-summary__payment-item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
.single-product .product-summary__attributes {
  background: #fafafa;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
  box-sizing: border-box;
  position: relative;
}
@media (min-width: 1023px) {
  .single-product .product-summary__attributes {
    padding: 32px;
    margin-bottom: 64px;
  }
}
.single-product .product-summary__attributes-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 132%;
  color: #111;
  margin-bottom: 16px;
}
@media (min-width: 1023px) {
  .single-product .product-summary__attributes-title {
    font-size: 32px;
    margin-bottom: 24px;
  }
}
.single-product .product-summary__attributes .product-attribute-item {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #e8e8e8;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
@media (min-width: 1023px) {
  .single-product .product-summary__attributes .product-attribute-item {
    gap: 32px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
.single-product .product-summary__attributes .product-attribute-item .attr-name {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  line-height: 150%;
  color: #111;
  width: 50%;
}
.single-product .product-summary__attributes .product-attribute-item .attr-value {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #111;
  width: 50%;
}
.single-product .product-summary__attributes .product-attribute-item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
.single-product .product-summary__description {
  background: #fafafa;
  border-radius: 8px;
  padding: 16px;
  box-sizing: border-box;
  position: relative;
  margin-bottom: 32px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #111;
}
@media (min-width: 1023px) {
  .single-product .product-summary__description {
    padding: 32px;
    margin-bottom: 64px;
    font-size: 16px;
  }
}
.single-product .product-summary__description-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 132%;
  color: #111;
  margin-bottom: 16px;
}
@media (min-width: 1023px) {
  .single-product .product-summary__description-title {
    font-size: 32px;
    margin-bottom: 24px;
  }
}

.footer {
  background: #111;
  padding: 24px 8px;
  color: #fff;
}
@media (min-width: 1023px) {
  .footer {
    padding: 64px 0;
  }
}
.footer-top {
  border-bottom: 1px solid #4a4a4a;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
@media (min-width: 1023px) {
  .footer-top {
    display: flex;
    gap: 65px;
  }
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 132%;
  color: #fff;
}
@media (min-width: 1023px) {
  .footer-bottom {
    flex-direction: row;
    gap: 65px;
    justify-content: space-between;
    align-items: center;
  }
}
.footer-bottom__menu {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-bottom__menu-item {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 132%;
  color: #fff;
}
.footer-bottom__menu-item:hover {
  color: #fff;
  text-decoration: underline;
}
.footer__logo {
  margin-bottom: 24px;
}
@media (min-width: 1023px) {
  .footer__logo {
    margin-bottom: 0;
  }
}
.footer__logo-link {
  display: block;
}
.footer__logo-link img {
  display: block;
  max-width: 196px;
  height: auto;
}
@media (min-width: 1023px) {
  .footer__subscribe {
    display: flex;
    align-items: center;
    gap: 75px;
    flex: 1;
  }
}
.footer__subscribe-text {
  margin-bottom: 24px;
  padding-left: 60px;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-image: url("data:image/svg+xml,%3Csvg width='44' height='44' viewBox='0 0 44 44' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_1_3598)'%3E%3Cpath d='M2.24583 15.5229C2.44017 15.2974 15.5467 2.65655 15.5467 2.65655C17.2742 0.961624 19.5992 0.0144065 22.0194 0.0195521C24.4395 0.0246977 26.7605 0.981793 28.4808 2.68405C28.4808 2.68405 41.5598 15.2974 41.7523 15.5174L25.8885 31.383C24.8404 32.3821 23.448 32.9395 22 32.9395C20.552 32.9395 19.1596 32.3821 18.1115 31.383L2.24583 15.5229ZM28.4808 33.9827C26.7562 35.6905 24.4271 36.6485 22 36.6485C19.5729 36.6485 17.2438 35.6905 15.5192 33.9827L0.419833 18.8834C0.156291 19.7191 0.014886 20.5885 0 21.4647L0 34.8334C0.00291107 37.2636 0.969617 39.5935 2.68807 41.312C4.40652 43.0304 6.73641 43.9971 9.16667 44H34.8333C37.2636 43.9971 39.5935 43.0304 41.3119 41.312C43.0304 39.5935 43.9971 37.2636 44 34.8334V21.4647C43.9851 20.5885 43.8437 19.7191 43.5802 18.8834L28.4808 33.9827Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1_3598'%3E%3Crect width='44' height='44' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
@media (min-width: 1023px) {
  .footer__subscribe-text {
    margin-bottom: 0;
  }
}
.footer__subscribe-text h3 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 132%;
  color: #fff;
  margin-bottom: 8px;
}
.footer__subscribe-text p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 132%;
  color: #fff;
  margin-bottom: 0;
}
.footer__subscribe-form {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
@media (min-width: 1023px) {
  .footer__subscribe-form {
    flex: 1;
  }
}
.footer__subscribe-form input {
  background: #fff;
  border: 0;
  outline: none;
  flex: 1;
  height: 44px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 132%;
  color: #7e7e7e;
  padding: 5px 12px;
  box-sizing: border-box;
  width: calc(100% - 129px);
}
.footer__subscribe-form button {
  background: #fcff50;
  border: 0;
  padding: 5px 12px;
  outline: none;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 132%;
  color: #111;
  width: 129px;
  flex: none;
  box-sizing: border-box;
  cursor: pointer;
}
.footer__subscribe-form button:hover {
  background: #e9ed02;
}

/*# sourceMappingURL=index.css.map */
