@charset "UTF-8";
/* ==================================================
   BREAKPOINTS
================================================== */
:root {
  /* ---------- FONT FAMILIES ---------- */
  --fm-base: "Roboto", sans-serif;
  --fm-medium: "Roboto-Medium", sans-serif;
  --fm-bold: "Roboto-Semi-Bold", sans-serif;
  --fm-heading: "PF Playskool Pro";
  --fs-base: 16px;
  --fw-base: 400;
  --color-base: #333;
  --color-white: #fff;
  --color-gray: #525252;
  --brand-green-prymary: #00B0A8;
  --brand-green-dark: #009E97;
  --brand-green-light: #00C1B8;
  --brand-secondary: #00B0A8;
  --brand-orange: #FF5A2D;
  --color-link: #00B0A8;
  --color-link-active: #EA5100;
  --gray-light: #989898;
}

/* ==================================================
   FLEX
================================================== */
/* ==================================================
   POSITION
================================================== */
/* ==================================================
   TRANSITIONS
================================================== */
/* ==================================================
   HOVER (desktop only)
================================================== */
/* ==================================================
   TEXT UTILITIES
================================================== */
/* ==================================================
   MEDIA HELPERS
================================================== */
@media (max-width: 1030px) {
  :root {
    --container: 1140px;
  }
}
@media (max-width: 992px) {
  :root {
    --container: 960px;
  }
}
@media (max-width: 769px) {
  :root {
    --container: 720px;
  }
}
@media (max-width: 576px) {
  :root {
    --container: 540px;
  }
}
@media (max-width: 431px) {
  :root {
    --container: 100%;
  }
}
/* ==================================================
   FLEX
================================================== */
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.flex-evenly {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.flex-evenly-start-align {
  display: flex;
  align-items: start;
  justify-content: space-evenly;
}

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

/* ==================================================
   ACCESSIBILITY
================================================== */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ==================================================
   DISPLAY
================================================== */
.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

/* ==================================================
   TEXT ALIGN
================================================== */
.text-center {
  text-align: center;
}

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

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

/* ==================================================
   POSITION
================================================== */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

/* ==================================================
   OVERFLOW
================================================== */
.overflow-hidden {
  overflow: hidden;
}

/* ==================================================
   WIDTH
================================================== */
.w-100 {
  width: 100%;
}

.w-auto {
  width: auto;
}

/* ==================================================
   RESPONSIVE HELPERS
================================================== */
/* скрыть на мобилке */
@media (max-width: 769px) {
  .d-mobile-none {
    display: none !important;
  }
}
/* скрыть на десктопе */
@media (min-width: 992px) {
  .d-desktop-none {
    display: none !important;
  }
}
* {
  box-sizing: border-box;
  outline: transparent none 0;
}
*::-webkit-scrollbar {
  width: 0 !important;
  height: 0;
}
*::-webkit-scrollbar-track {
  background: transparent !important;
}
*::-webkit-scrollbar-thumb {
  background: transparent !important;
}
*:hover::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3) !important;
}

body {
  background: url("../image/bg-body.svg") repeat 50% 0;
  width: 100vw;
  min-height: 100vh;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  font-family: var(--fm-base);
  font-weight: var(--fw-base);
  font-size: var(--fs-base);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
}

.container {
  position: relative;
}

ul {
  margin: unset;
  padding: unset;
}

li {
  list-style: none;
}

svg {
  width: 100%;
  height: 100%;
}

button {
  border: unset;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--fm-heading);
  font-weight: 500;
  margin-bottom: 0;
  padding-bottom: 0;
}

h6 {
  font-family: var(--fm-medium);
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0;
  vertical-align: middle;
}

p {
  font-family: var(--fm-base);
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  margin-bottom: 0;
  padding-bottom: 0;
}
p a {
  color: inherit;
}

a {
  font-size: inherit;
  color: inherit;
  text-decoration: none;
  -webkit-transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  -moz-transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  -ms-transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  -o-transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}
a:hover {
  color: inherit;
}
a:active, a:focus, a:hover {
  border-color: transparent;
  text-decoration: none;
}

.opacity-8 {
  opacity: 0.8;
}

.color-blue {
  color: var(--brand-green-prymary);
}

.color-orange {
  color: var(--brand-orange);
}

.color-white {
  color: var(--color-white);
}

.site-main {
  position: relative;
}

main {
  padding-bottom: 132px;
}
@media (max-width: 576px) {
  main {
    padding-bottom: 25px;
  }
}
main > .section {
  position: relative;
}

.main-page {
  position: relative;
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  gap: 132px;
}
@media (max-width: 576px) {
  .main-page {
    padding-top: 88px;
    gap: 88px;
  }
}

.body-mask {
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 500;
}
.body-mask.opened {
  display: block;
  position: absolute;
  top: 0;
}

#woosw_wishlist {
  display: none !important;
  visibility: unset !important;
}

.pr-info {
  position: absolute;
  right: 25px;
  top: 0;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 200;
}
@media (max-width: 576px) {
  .pr-info {
    right: 10px;
  }
}

.pr-info-new {
  position: absolute;
  right: 0;
  top: -20px;
  display: block;
  width: 100%;
  min-height: 65px;
}

.preorder-book {
  position: absolute;
  top: -30px;
  left: -9px;
  background: url("../image/preorder-label.svg") no-repeat center;
  background-size: contain;
  width: 126px;
  height: 126px;
}
@media (max-width: 576px) {
  .preorder-book {
    width: 80px;
    height: 80px;
    top: -25px;
    left: -5px;
  }
}

.new_book {
  position: absolute;
  right: 62px;
  bottom: 22px;
  background: url("../image/new.svg") no-repeat center;
  background-size: contain;
  float: none;
  width: 67px;
  height: 57px;
  z-index: 100;
  margin-bottom: -15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 576px) {
  .new_book {
    width: 40px;
    height: 40px;
    top: 0;
    right: 40px;
    bottom: auto;
  }
}

.sale_book {
  position: absolute;
  top: 23px;
  right: 16px;
  background: url("../image/bg-discount.svg") no-repeat center;
  background-size: contain;
  float: none;
  width: 55px;
  height: 48px;
  text-align: center;
  color: var(--color-white);
  z-index: 999;
  font-family: var(--fm-heading);
  font-size: 32px;
  font-weight: 400;
  line-height: 120%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 576px) {
  .sale_book {
    width: 38px;
    height: 34px;
    font-size: 22px;
  }
}

.percent {
  color: var(--color-white);
  z-index: 999;
  font-family: var(--fm-heading);
  font-weight: 400;
  font-size: 32px;
  line-height: 120%;
}
@media (max-width: 576px) {
  .percent {
    font-size: 22px;
  }
}

.vidosik {
  font-family: var(--fm-heading);
  font-weight: normal;
  color: white;
  background-image: url("../image/cloud-big_new.png");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  line-height: 21px;
  text-align: center;
  padding: 15px;
  width: 160px;
}

.anm-lady {
  position: absolute;
  width: 43px;
  height: 46px;
  background: url("../image/сонечко.svg") no-repeat center;
  background-size: contain;
  top: -67px;
  left: 353px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}
@media (max-width: 1400px) {
  .anm-lady {
    left: 25%;
  }
}
@media (max-width: 576px) {
  .anm-lady {
    left: 61px;
  }
}

.btn-up {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../image/button-up-gray.svg") no-repeat;
  background-size: cover;
  z-index: 1000;
  position: fixed;
  bottom: 20px;
  right: 20px;
}
.btn-up:hover {
  background: url("../image/button-up-black.svg") no-repeat;
  background-size: cover;
}
.btn-up .fixed {
  opacity: 1;
  pointer-events: auto;
}

/**/
.bg-primary {
  background: #60aadb !important;
  color: #fff;
}

.bg-success {
  background: #64ba4e !important;
  color: #fff;
}

.bg-info {
  background: #9bc6dd !important;
  color: #fff;
}

.bg-warning {
  background: #fec139 !important;
  color: #fff;
}

.text-normal {
  text-transform: none;
}

.flex-two-column {
  display: flex;
  justify-content: center;
}

.preparing-wrap {
  position: relative;
  background-image: url("../image/stroke-preparing.png");
  background-size: 100% calc(100% - 35px);
  background-repeat: no-repeat;
  background-position: center bottom;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1200px) {
  .preparing-wrap {
    background-image: unset;
  }
}
@media (max-width: 992px) {
  .preparing-wrap {
    background: unset;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
  }
}
.preparing-wrap::before {
  content: "";
  background: url("../image/preparing-dog.png") no-repeat center;
  background-size: contain;
  width: 200px;
  height: 200px;
  position: absolute;
  left: 551px;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1281px) {
  .preparing-wrap::before {
    width: 180px;
    height: 180px;
    left: 451px;
  }
}
@media (max-width: 1200px) {
  .preparing-wrap::before {
    display: none;
  }
}
.preparing-wrap::after {
  content: "";
  background: url("../image/preparing-fox.png") no-repeat center;
  background-size: contain;
  width: 300px;
  height: 300px;
  position: absolute;
  right: calc((100% - 1440px) / 2 + 42px);
  bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1281px) {
  .preparing-wrap::after {
    width: 250px;
    height: 250px;
    right: calc((100% - 1280px) / 2 + 23px);
  }
}
@media (max-width: 1200px) {
  .preparing-wrap::after {
    width: 200px;
    height: 200px;
    right: calc((100% - 1100px) / 2 + 23px);
  }
}
@media (max-width: 992px) {
  .preparing-wrap::after {
    display: none;
  }
}
.preparing-wrap h2 {
  font-family: var(--fm-heading);
  font-weight: 400;
  font-size: 70px;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
  position: relative;
  overflow-wrap: break-word; /* Розриває занадто довгі слова, якщо вони не вміщаються */
  word-wrap: break-word; /* Застарілий синтаксис для сумісності зі старими браузерами */
  word-break: normal;
}
@media (max-width: 1030px) {
  .preparing-wrap h2 {
    margin: 0 50px;
    horiz-align: center;
    top: 0;
  }
}
@media (max-width: 576px) {
  .preparing-wrap h2 {
    font-size: 42px;
    line-height: 32px;
    horiz-align: center;
  }
}
.preparing-wrap .preparing-container {
  position: relative;
  gap: 30px;
  padding-bottom: 45px;
}
@media (max-width: 1200px) {
  .preparing-wrap .preparing-container {
    top: 0;
    gap: 40px;
    padding-bottom: 0;
  }
}
.preparing-wrap .flex-two-column {
  justify-content: unset;
  position: relative;
  padding-left: 87px;
}
@media (max-width: 1200px) {
  .preparing-wrap .flex-two-column {
    top: 0;
    padding-left: 0;
    padding-bottom: 0;
  }
}
.preparing-wrap .bg-preparing-wrap {
  display: none;
}
@media (max-width: 1200px) {
  .preparing-wrap .bg-preparing-wrap {
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30%;
    height: 25px;
    overflow: hidden;
    background: url("../image/stroke-preparing-bottom-line.png") no-repeat bottom right;
    background-size: cover;
  }
}
@media (max-width: 992px) {
  .preparing-wrap .bg-preparing-wrap {
    display: none;
  }
}
.preparing-wrap .arrow-preparing-up {
  width: 78px;
  height: 117px;
  background: url("../image/preparing-arrow-red.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  right: 344px;
  bottom: 24px;
}
@media (max-width: 1281px) {
  .preparing-wrap .arrow-preparing-up {
    right: 250px;
  }
}
@media (max-width: 1200px) {
  .preparing-wrap .arrow-preparing-up {
    display: none;
  }
}

.arrow-point-right {
  width: 190px;
  height: 86px;
  background: url("../image/preparing-arrow-green.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  left: calc(100% + 16px);
  top: 340px;
}
@media (max-width: 1200px) {
  .arrow-point-right {
    width: 120px;
    height: 120px;
    right: -40%;
  }
}
@media (max-width: 1030px) {
  .arrow-point-right {
    display: none;
  }
}

.preparing-container {
  padding-top: 0;
  display: flex;
  flex-direction: column;
}
.preparing-container.recommendations {
  padding-top: 0;
  padding-bottom: 30px;
}
.preparing-container.recommendations::before, .preparing-container.recommendations::after {
  content: unset;
}
@media (max-width: 1030px) {
  .preparing-container.recommendations {
    padding-bottom: 0;
    padding-left: 0;
  }
}
@media (max-width: 431px) {
  .preparing-container.recommendations {
    margin-top: 0;
  }
}
@media (max-width: 769px) {
  .preparing-container {
    padding-bottom: 0;
  }
}
.preparing-container::before, .preparing-container::after {
  content: unset;
}
.preparing-container .flex-two-column {
  gap: 225px;
}
@media (max-width: 1281px) {
  .preparing-container .flex-two-column {
    gap: 150px;
  }
}
@media (max-width: 1030px) {
  .preparing-container .flex-two-column {
    justify-content: space-evenly;
    gap: unset;
    top: unset;
  }
}
@media (max-width: 821px) {
  .preparing-container .flex-two-column {
    padding-bottom: 0;
  }
}
@media (max-width: 769px) {
  .preparing-container .flex-two-column {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}
.preparing-container .column {
  position: relative;
  max-width: fit-content;
}
@media (max-width: 769px) {
  .preparing-container .column {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
}
.preparing-container .column-auto {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 12px;
  flex: 1;
  max-width: 450px;
  margin-top: 40px;
}
@media (max-width: 992px) {
  .preparing-container .column-auto {
    margin-top: 0;
  }
}
.preparing-container h3 {
  font-family: var(--fm-heading);
  font-weight: 400;
  font-size: 54px;
  line-height: 120%;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  color: var(--brand-orange);
}
@media (max-width: 769px) {
  .preparing-container h3 {
    font-size: 34px;
  }
}
@media (max-width: 769px) {
  .preparing-container .item {
    margin-top: 0;
  }
}

.preorder-red-stroke {
  background: url("../image/preparing-red-stroke.svg") no-repeat center;
  background-size: 100% 100%;
  width: 383px;
  padding: 5px;
}
@media (max-width: 992px) {
  .preorder-red-stroke {
    background: url("../image/preparing-red-stroke.png") no-repeat center;
    background-size: 100% 100%;
    width: 309px;
  }
}
.preorder-red-stroke .animation-stroke {
  background: url("../image/animation-stroke.gif") no-repeat center;
  background-size: 100% 100%;
  margin: 10px;
  padding: 2px;
}

.preorder-text {
  font-family: var(--fm-bold);
  font-weight: 700;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  color: var(--color-base);
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 30px;
}
@media (max-width: 769px) {
  .preorder-text {
    font-size: 16px;
  }
}
.preorder-text span {
  display: block;
}
.preorder-text .color-blue,
.preorder-text .color-orange {
  font-size: 21px;
}

.preparing-timer {
  background: url("../image/bg-preparing-timer.svg") no-repeat center;
  background-size: 100% 100%;
  font-family: var(--fm-bold);
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
  color: #000000;
  width: 405px;
  height: 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .preparing-timer {
    width: 309px;
  }
}
@media (max-width: 769px) {
  .preparing-timer {
    font-size: 16px;
  }
}
.preparing-timer span {
  display: block;
}

.fox-display .slick-track {
  min-width: 1088px;
  display: flex;
  align-items: start;
  justify-content: space-evenly;
}
@media (max-width: 1281px) {
  .fox-display .slick-track {
    min-width: unset;
  }
}
.fox-display::after {
  content: "";
  background: url("../image/preparing-fox.png") no-repeat center;
  background-size: contain;
  width: 300px;
  height: 300px;
  position: absolute;
  right: calc((100% - 1440px) / 2 + 23px);
  bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1281px) {
  .fox-display::after {
    width: 250px;
    height: 250px;
    right: calc((100% - 1280px) / 2 + 23px);
  }
}
@media (max-width: 1200px) {
  .fox-display::after {
    width: 200px;
    height: 200px;
    right: calc((100% - 960px) / 2 + 23px);
  }
}
@media (max-width: 1030px) {
  .fox-display::after {
    display: none;
  }
}

.favorite_categories {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
}
@media (max-width: 1030px) {
  .favorite_categories {
    gap: 40px;
  }
}
@media (max-width: 576px) {
  .favorite_categories .button-to-buy {
    display: none;
  }
}
.favorite_categories h2 {
  font-family: var(--fm-heading);
  font-weight: 400;
  font-size: 70px;
  line-height: 75px;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
  position: relative;
  overflow-wrap: break-word; /* Розриває занадто довгі слова, якщо вони не вміщаються */
  word-wrap: break-word; /* Застарілий синтаксис для сумісності зі старими браузерами */
  word-break: normal;
}
@media (max-width: 576px) {
  .favorite_categories h2 {
    font-size: 42px;
    line-height: 32px;
    horiz-align: center;
  }
}
.favorite_categories .flex-evenly-start-align {
  flex-wrap: wrap;
  row-gap: 60px;
}
@media (max-width: 1030px) {
  .favorite_categories .flex-evenly-start-align {
    row-gap: 40px;
    column-gap: 18px;
  }
}

.modal-menu {
  display: none;
  position: absolute;
  top: 70%;
  left: 10px;
  background: url("../image/burger-menu-background.svg") no-repeat;
  background-size: contain;
  width: 421px;
  height: 384px;
  padding: 40px 0 20px;
  margin-top: 10px;
  filter: drop-shadow(0 30px 30px rgba(0, 0, 0, 0.3));
  -webkit-filter: drop-shadow(0 30px 30px rgba(0, 0, 0, 0.3));
  /* Хаки для Safari */
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  will-change: filter;
  transition: all 300ms ease-in-out;
  z-index: 9999;
}
.modal-menu.opened {
  display: block;
  transition: all 300ms ease-in-out;
}
@media (max-width: 992px) {
  .modal-menu {
    width: 331px;
    height: 555px;
    background: url("../image/moble-menu-bg.svg") no-repeat;
    background-size: 100% 100%;
    max-width: 100%;
  }
}
.modal-menu .phone {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  width: 100%;
  height: 20px;
  line-height: 32px;
  vertical-align: middle;
}
.modal-menu .phone span {
  width: 26px;
  height: 34px;
}
.modal-menu .phone a {
  color: var(--fm-base);
  font-family: "PF Playskool Pro";
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  height: 30px;
}
.modal-menu .social-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 992px) {
  .modal-menu .social-links {
    gap: 12px;
  }
}
.modal-menu .social-links .ytb-video {
  background: url("../image/video_stroke.svg") no-repeat;
  background-size: 100% 100%;
  display: flex;
  width: 188px;
  height: 64px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: var(--brand-green-prymary);
  font-family: var(--fm-base);
  font-size: 16px;
  line-height: 18px;
  font-style: normal;
  font-weight: 500;
}
@media (max-width: 992px) {
  .modal-menu .social-links .ytb-video {
    background: url("../image/mobile-video-stroke.svg") no-repeat;
    width: 156px;
    height: 52px;
    font-size: 14px;
    line-height: 120%;
  }
}
.modal-menu .social-links .ytb-video span {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
}
@media (max-width: 992px) {
  .modal-menu .social-links .ytb-video span {
    width: 22px;
    height: 22px;
  }
  .modal-menu .social-links .ytb-video span svg {
    width: 100%;
    height: 100%;
  }
}

.menu-wrap {
  padding: 0 40px;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}
@media (min-width: 992px) {
  .menu-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 992px) {
  .menu-wrap {
    padding: 0 35px;
  }
}

.mobile-menu-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  width: 100%;
  height: auto;
  overflow-y: auto;
  overflow-x: hidden;
}
@media (max-width: 992px) {
  .mobile-menu-section {
    gap: 35px;
  }
}

.mobile-catalog-menu {
  display: none;
}
@media (max-width: 992px) {
  .mobile-catalog-menu {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
}
.mobile-catalog-menu .catalog-menu-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.mobile-catalog-menu .catalog-menu-section.opened .mobile-catalog-menu_advanced {
  display: block;
  opacity: 1;
  z-index: 1500;
}
.mobile-catalog-menu .catalog-menu-section.opened .mobile-catalog-menu_advanced #menu {
  padding-bottom: 35px;
}
.mobile-catalog-menu .catalog-menu-section.opened .mobile-catalog-menu_advanced:after {
  display: block;
  content: "";
  width: 100%;
  height: 16px;
  background: url("../image/menu-dot-line.png") no-repeat;
  background-size: cover;
}
.mobile-catalog-menu .mobile-catalog-menu_advanced {
  display: none;
  position: relative;
  transition: all 0.3s ease-in-out;
  padding: unset;
}
.mobile-catalog-menu .mobile-catalog-menu_advanced #menu {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.mobile-catalog-menu .mobile-catalog-menu_advanced .bx_hma_one_lvl.dropdown {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mobile-catalog-menu .mobile-catalog-menu_advanced .bx_hma_one_lvl.dropdown > .root-item {
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 1500;
  flex: 1;
}
.mobile-catalog-menu .mobile-catalog-menu_advanced .bx_hma_one_lvl.dropdown > .root-item span {
  font-family: var(--fm-base);
  font-weight: 500;
  font-size: 18px;
  color: var(--color-base);
  line-height: 1;
  letter-spacing: 0;
  vertical-align: middle;
  flex: 1;
  text-transform: none;
}
.mobile-catalog-menu .mobile-catalog-menu_advanced .bx_hma_one_lvl.dropdown > .root-item:before {
  content: "";
  background-size: contain;
  background: url("../image/dot-red.svg") no-repeat;
  width: 10px;
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.mobile-catalog-menu .mobile-catalog-menu_advanced .bx_hma_one_lvl.dropdown > .root-item:after {
  content: "";
  background-size: contain;
  background: url("../image/arrow-right-red.svg") no-repeat;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transform: rotate(90deg);
}
.mobile-catalog-menu .mobile-catalog-menu_advanced .bx_hma_one_lvl.dropdown:nth-child(2n) > .root-item:before {
  content: "";
  background: url("../image/dot-red.svg") no-repeat;
}
.mobile-catalog-menu .mobile-catalog-menu_advanced .bx_hma_one_lvl.dropdown:nth-child(2n) > .root-item:after {
  content: "";
  background: url("../image/arrow-red-2.svg") no-repeat;
}
@media (min-width: 1030px) {
  .mobile-catalog-menu .mobile-catalog-menu_advanced .bx_hma_one_lvl:hover > .root-item span {
    color: var(--brand-green-dark);
  }
  .mobile-catalog-menu .mobile-catalog-menu_advanced .bx_hma_one_lvl:hover > .root-item::after {
    transform: rotate(270deg);
  }
  .mobile-catalog-menu .mobile-catalog-menu_advanced .bx_hma_one_lvl:hover .bx_hma_one_lvl-ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-family: var(--fm-base);
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    vertical-align: middle;
    color: var(--color-base);
    border-bottom: 2px solid var(--brand-orange);
    padding-bottom: 24px;
  }
  .mobile-catalog-menu .mobile-catalog-menu_advanced .bx_hma_one_lvl:hover .bx_hma_one_lvl-ul .root-item {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: currentColor;
    text-transform: unset;
  }
  .mobile-catalog-menu .mobile-catalog-menu_advanced .bx_hma_one_lvl:hover .bx_hma_one_lvl-ul .root-item span {
    text-transform: unset;
    font-weight: 400;
    font-size: 16px;
  }
  .mobile-catalog-menu .mobile-catalog-menu_advanced .bx_hma_one_lvl:hover .bx_hma_one_lvl-ul .root-item:hover {
    color: var(--brand-green-dark);
  }
}
.mobile-catalog-menu .mobile-catalog-menu_advanced .bx_hma_one_lvl.opened > .root-item span {
  color: var(--brand-green-dark);
}
.mobile-catalog-menu .mobile-catalog-menu_advanced .bx_hma_one_lvl.opened > .root-item::after {
  transform: rotate(270deg);
}
.mobile-catalog-menu .mobile-catalog-menu_advanced .bx_hma_one_lvl.opened .bx_hma_one_lvl-ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: var(--fm-base);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  vertical-align: middle;
  color: var(--color-base);
  border-bottom: 2px solid var(--brand-orange);
  padding-bottom: 24px;
}
.mobile-catalog-menu .mobile-catalog-menu_advanced .bx_hma_one_lvl.opened .bx_hma_one_lvl-ul .root-item {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: currentColor;
  text-transform: unset;
}
.mobile-catalog-menu .mobile-catalog-menu_advanced .bx_hma_one_lvl.opened .bx_hma_one_lvl-ul .root-item span {
  text-transform: unset;
  font-weight: 400;
  font-size: 16px;
}
.mobile-catalog-menu .mobile-catalog-menu_advanced .bx_hma_one_lvl.opened .bx_hma_one_lvl-ul .root-item:hover {
  color: var(--brand-green-dark);
}
.mobile-catalog-menu .mobile-catalog-menu_advanced .bx_hma_one_lvl .bx_hma_one_lvl-ul {
  display: none;
}

.mobile-catalog-menu-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  width: 222px;
  height: 52px;
  background-image: url("../image/bg-catalog-menu-button.svg");
  background-size: contain;
  cursor: pointer;
}
.mobile-catalog-menu-button h3 {
  color: var(--color-white);
  font-family: var(--fm-heading);
  font-weight: 400;
  font-size: 32px;
  line-height: 22px;
  letter-spacing: 0;
  vertical-align: middle;
  margin-bottom: unset;
}
.mobile-catalog-menu-button:before {
  content: "";
  background: url("../image/ant.svg") no-repeat;
  background-size: contain;
  width: 32px;
  height: 32px;
  position: absolute;
  top: -18px;
  left: 48px;
}
@media (max-width: 992px) {
  .mobile-catalog-menu-button:before {
    width: 24px;
    height: 24px;
    top: -18px;
    left: 39px;
  }
}
@media (max-width: 992px) {
  .mobile-catalog-menu-button {
    margin-top: 20px;
  }
}
.mobile-catalog-menu-button span {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../image/arrow-white-menu.svg") no-repeat;
  background-size: cover;
  width: 18px;
  height: 16px;
}

.visual_hover:hover .bx_hma_one_lvl-ul {
  display: block;
}

.mobile-profile-block {
  display: none;
}
@media (max-width: 992px) {
  .mobile-profile-block {
    width: 98%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .mobile-profile-block .header-login-block,
  .mobile-profile-block .header-wishlist-block {
    display: flex;
  }
  .mobile-profile-block .header-basket-block {
    margin-right: 5px;
  }
}

#modal-multilevel-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
  padding-left: 0;
  margin-bottom: 0;
}
#modal-multilevel-menu li a {
  color: var(--color-base);
  font-family: var(--fm-base);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}
#modal-multilevel-menu li a:hover {
  color: var(--brand-green-prymary);
}

.social_sidebar-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  aspect-ratio: 1/1;
  transform: translate(0, 0);
}
.social_sidebar-icon span {
  transform: translate(0, 0);
}
@media (max-width: 992px) {
  .social_sidebar-icon {
    width: 36px;
    height: 36px;
  }
  .social_sidebar-icon span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
  }
}
.social_sidebar-icon:before {
  position: absolute;
  left: 0;
  top: 0;
  content: url("../image/stroke.svg");
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  transition: transform 0.5s;
  transform: rotate(90deg);
}
@media (max-width: 992px) {
  .social_sidebar-icon:before {
    content: url("../image/mobile-stroke.svg");
  }
}
.social_sidebar-icon:hover:before {
  transform: rotate(180deg);
}

.catalog-menu-section {
  position: relative;
}
.catalog-menu-section.opened .catalog-menu_advanced {
  display: flex;
  opacity: 1;
  z-index: 2000;
}
@media (min-width: 821px) {
  .catalog-menu-section.opened .catalog-menu_advanced {
    align-items: center;
  }
}
.catalog-menu-section.opened .catalog-menu-button span {
  transform: rotate(180deg);
}

.catalog-menu-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  width: 298px;
  height: 69px;
  background-image: url("../image/bg-catalog-menu-button.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
  z-index: 2;
}
@media (max-width: 992px) {
  .catalog-menu-button {
    width: 222px;
    height: 55px;
    background-image: url("../image/bg-catalog-menu-button-mobile.svg");
  }
}
.catalog-menu-button h3 {
  color: var(--color-white);
  font-family: var(--fm-heading);
  font-weight: 400;
  font-size: 42px;
  line-height: 32px;
  letter-spacing: 0;
  vertical-align: middle;
  margin-bottom: unset;
}
@media (max-width: 992px) {
  .catalog-menu-button h3 {
    font-size: 32px;
    line-height: 22px;
  }
}
.catalog-menu-button:before {
  content: "";
  background: url("../image/ant.svg") no-repeat;
  background-size: contain;
  width: 32px;
  height: 32px;
  position: absolute;
  top: -20px;
  left: 48px;
}
@media (max-width: 992px) {
  .catalog-menu-button:before {
    width: 24px;
    height: 24px;
    top: -22px;
    left: 39px;
  }
}
.catalog-menu-button span {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../image/arrow-white-menu.svg") no-repeat;
  background-size: cover;
  width: 20px;
  height: 17px;
}

.catalog-menu_advanced {
  display: none;
  opacity: 0;
  z-index: 100;
  position: absolute;
  top: 87%;
  left: -30px;
  transition: all 0.3s ease-in-out;
  background: url("../image/bg-catalog-menu.svg") no-repeat;
  width: 893px;
  height: 352px;
  padding: 0 0 0 50px;
}
@media (max-width: 992px) {
  .catalog-menu_advanced {
    background: url("../image/bg-catalog-menu-mobile.svg") no-repeat;
    background-size: 100% 100%;
    width: 331px;
    min-width: 331px;
    height: 522px;
    max-width: 100%;
    padding: 50px 0 20px;
    top: 90%;
    left: 0;
    overflow: hidden;
  }
}
.catalog-menu_advanced #menu {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 44px;
  border-right: 2px solid var(--brand-orange);
  width: 432px;
}
@media (max-width: 992px) {
  .catalog-menu_advanced #menu {
    gap: 32px;
    border-right: unset;
    width: auto;
    padding: 0 30px;
    overflow: auto;
  }
}
.catalog-menu_advanced .bx_hma_one_lvl.dropdown > .root-item {
  font-family: var(--fm-base);
  font-weight: 500;
  font-size: 18px;
  color: var(--color-base);
  line-height: 120%;
  letter-spacing: 0;
  vertical-align: middle;
  display: flex;
  align-items: center;
  gap: 20px;
  text-transform: unset;
}
.catalog-menu_advanced .bx_hma_one_lvl.dropdown > .root-item:before {
  content: url("../image/dot-red.svg");
  width: 10px;
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.catalog-menu_advanced .bx_hma_one_lvl.dropdown > .root-item:after {
  content: url("../image/arrow-right-red.svg");
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: 32px;
}
.catalog-menu_advanced .bx_hma_one_lvl.dropdown > .root-item span {
  text-transform: unset;
}
@media (max-width: 992px) {
  .catalog-menu_advanced .bx_hma_one_lvl.dropdown > .root-item:after {
    content: url("../image/arrow-down-red.svg");
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}
.catalog-menu_advanced .bx_hma_one_lvl.dropdown:nth-child(2n) > .root-item:before {
  content: url("../image/red-dot-2.svg");
  width: 10px;
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.catalog-menu_advanced .bx_hma_one_lvl.dropdown:nth-child(2n) > .root-item:after {
  content: url("../image/arrow-red-2.svg");
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: 32px;
}
.catalog-menu_advanced .bx_hma_one_lvl.dropdown:nth-child(2n) > .root-item span {
  text-transform: unset;
}
@media (max-width: 992px) {
  .catalog-menu_advanced .bx_hma_one_lvl.dropdown:nth-child(2n) > .root-item:after {
    content: url("../image/arrow-down-red.svg");
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}
.catalog-menu_advanced .bx_hma_one_lvl .visible > .root-item {
  color: var(--brand-green-dark);
}
.catalog-menu_advanced .bx_hma_one_lvl .visible.bx_hma_one_lvl-ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 1500;
}
.catalog-menu_advanced .bx_hma_one_lvl .visible .root-item::after {
  transform: rotate(180deg);
}
.catalog-menu_advanced .bx_hma_one_lvl .visible-none.bx_hma_one_lvl-ul {
  display: none !important;
}
.catalog-menu_advanced .bx_hma_one_lvl .visible-none.bx_hma_one_lvl-ul > .root-item span {
  color: var(--color-base);
}
.catalog-menu_advanced .bx_hma_one_lvl.opened > .root-item {
  color: var(--brand-green-dark);
}
.catalog-menu_advanced .bx_hma_one_lvl.opened .bx_hma_one_lvl-ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 1500;
}
@media (max-width: 992px) {
  .catalog-menu_advanced .bx_hma_one_lvl.opened .root-item::after {
    transform: rotate(180deg);
  }
}
.catalog-menu_advanced .bx_hma_one_lvl-ul {
  position: absolute;
  top: 0;
  left: 450px;
  z-index: 1300;
  display: none;
  overflow: hidden;
  padding: 2px 0 0 22px;
  background-repeat: no-repeat;
  background-position: 100% 100%;
  height: auto;
  font-family: var(--fm-base);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  vertical-align: middle;
  color: var(--color-base);
}
.catalog-menu_advanced .bx_hma_one_lvl-ul .root-item {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: currentColor;
}
.catalog-menu_advanced .bx_hma_one_lvl-ul .root-item span {
  text-transform: unset;
  font-weight: 400;
  font-size: 16px;
}
.catalog-menu_advanced .bx_hma_one_lvl-ul .root-item:hover {
  color: var(--brand-green-dark);
}
@media (max-width: 992px) {
  .catalog-menu_advanced .bx_hma_one_lvl-ul {
    position: relative;
    left: unset;
    top: unset;
    padding: 30px 0;
    border-bottom: 2px solid var(--brand-orange);
  }
}
.catalog-menu_advanced > ul {
  display: block;
  list-style: none;
  margin: unset;
  width: 255px;
  position: relative;
}
.catalog-menu_advanced > ul > li {
  position: static;
}
.catalog-menu_advanced > ul > li span {
  display: block;
  width: 80%;
}

.header-video-button {
  background-color: var(--brand-green-prymary);
  background-image: url("../image/stroke-white-video.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border-radius: 100px;
  display: flex;
  width: 188px;
  height: 64px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: var(--color-white);
  font-family: var(--fm-base);
  font-size: 16px;
  line-height: 18px;
  font-style: normal;
  font-weight: 500;
}
.header-video-button:hover {
  color: var(--color-white);
}
@media (max-width: 992px) {
  .header-video-button {
    display: none;
  }
}

@media (hover: none) {
  .catalog-menu_advanced .bx_hma_one_lvl .bx_hma_one_lvl-ul {
    display: none;
  }
}
.header {
  position: relative;
  width: 100%;
}

.header-top-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.header-top-section {
  position: relative;
  width: 100%;
  padding: 18px 0 30px;
  flex-shrink: 0;
  background: url("../image/Menu-Background.svg") repeat center;
}
@media (max-width: 576px) {
  .header-top-section {
    padding: 12px 0;
  }
}

.header-left-section {
  display: flex;
  align-items: center;
  justify-self: start;
  gap: 52px;
}
@media (max-width: 1030px) {
  .header-left-section {
    gap: 24px;
  }
}
@media (max-width: 992px) {
  .header-left-section {
    gap: 12px;
  }
}

.header-center-section {
  justify-self: center;
}

.header-menu-block {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: fit-content;
  z-index: 9999;
}
.header-menu-block .burger-menu {
  display: block;
  background: url("../image/menu-burger.svg") no-repeat;
  background-size: cover;
  min-width: unset;
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
  transition: all 300ms ease-in-out;
  margin: unset;
}
.header-menu-block .burger-menu.opened {
  background: url("../image/menu-burger-opened.svg") no-repeat;
  background-size: cover;
}
.header-menu-block .burger-menu.opened ~ span {
  color: var(--color-link-active);
}
@media (max-width: 1030px) {
  .header-menu-block .burger-menu {
    width: 32px;
    height: 32px;
  }
}
.header-menu-block span {
  color: var(--color-base);
  font-family: var(--fm-base);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.25s ease-in-out;
}
.header-menu-block span.bubble {
  color: var(--color-white);
}

.burger-title {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
@media (max-width: 1030px) {
  .burger-title span {
    display: none;
  }
}

.header-phone-block .phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 20px;
  line-height: 32px;
  vertical-align: middle;
}
.header-phone-block .phone span {
  width: 26px;
  height: 34px;
}
.header-phone-block .phone a {
  color: var(--fm-base);
  font-family: "PF Playskool Pro";
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  height: 30px;
}
@media (max-width: 992px) {
  .header-phone-block {
    display: none;
  }
}

.header-logo {
  width: 207px;
  height: 82px;
}
@media (max-width: 992px) {
  .header-logo {
    width: 183px;
    height: 72px;
  }
}

.header-right-section {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  justify-self: end;
  gap: 24px;
}
@media (max-width: 992px) {
  .header-right-section {
    gap: 12px;
  }
}

.header-login-link,
.header-wishlist-block,
.header-basket-block,
.header-search-button {
  position: relative;
  width: 48px;
  height: 48px;
  transform: translate(0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-login-link:before,
.header-wishlist-block:before,
.header-basket-block:before,
.header-search-button:before {
  position: absolute;
  left: 0;
  top: 0;
  content: url("../image/stroke.svg");
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  transition: transform 0.5s;
  transform: rotate(90deg);
}
.header-login-link:hover:before,
.header-wishlist-block:hover:before,
.header-basket-block:hover:before,
.header-search-button:hover:before {
  transform: rotate(180deg);
}

.header-login-link:hover span {
  background: url("../image/profile-red.svg") no-repeat;
  background-size: cover;
  transform: translate(0, 0);
}
.header-login-link span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: url("../image/profile-black.svg") no-repeat;
  background-size: cover;
  transform: translate(0, 0);
}

.header-login-block {
  position: relative;
}
@media (max-width: 992px) {
  .header-login-block {
    display: none;
  }
}

.header-wishlist-block:hover .woosw-menu-item-inner {
  width: 24px;
  height: 24px;
  background: url("../image/wishlist-red.svg");
  background-size: cover;
  transform: translate(0, 0);
}
.header-wishlist-block ul {
  position: relative;
  margin-bottom: unset;
  padding-left: unset;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-wishlist-block .woosw-menu-item-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: url("../image/wishlist-black.svg");
  background-size: cover;
  transform: translate(0, 0);
  font-size: 0;
}
.header-wishlist-block .woosw-menu-item-inner:before {
  content: unset;
}
.header-wishlist-block .woosw-menu-item-inner:after {
  content: unset;
}
@media (max-width: 992px) {
  .header-wishlist-block {
    display: none;
  }
}

.header-basket-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.header-basket-block:hover .basket-icon {
  width: 24px;
  height: 24px;
  background: url("../image/basket-red.svg");
  background-size: cover;
  transform: translate(0, 0);
}

.header-search-button:hover .search-icon {
  width: 24px;
  height: 24px;
  background: url(../image/search-red.svg);
  background-size: cover;
  transform: translate(0, 0);
}
.header-search-button .search-icon {
  width: 24px;
  height: 24px;
  background: url(../image/search-black.svg);
  background-size: cover;
  transform: translate(0, 0);
}

.basket-link-wrap {
  text-align: right;
  font-family: var(--fm-base);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-base);
  line-height: 120%;
}
.basket-link-wrap .cart-title {
  font-family: inherit;
}
@media (max-width: 992px) {
  .basket-link-wrap {
    display: none;
  }
}

.bubble {
  position: absolute;
  background-color: var(--brand-orange);
  width: 20px;
  height: 20px;
  top: -1px;
  left: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fm-base);
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  color: white;
}

.basket-icon {
  width: 24px;
  height: 24px;
  background: url(../image/basket-black.svg);
  background-size: cover;
  transform: translate(0, 0);
}

.header-bottom-section {
  position: relative;
  background-color: var(--brand-green-light);
  padding: 23px 0 0;
  margin-top: 6px;
}
@media (max-width: 576px) {
  .header-bottom-section {
    margin-top: 15px;
  }
}
.header-bottom-section:before {
  content: "";
  background: url("../image/top-line-green.svg") repeat center top;
  width: 100%;
  height: 10px;
  position: absolute;
  left: 0;
  top: -4px;
  z-index: 1;
}
@media (max-width: 992px) {
  .header-bottom-section:before {
    background-size: auto 40px;
  }
}
.header-bottom-section:after {
  content: "";
  background: url("../image/bottom-line.svg") no-repeat center bottom;
  background-size: cover;
  width: 100%;
  height: 45px;
  position: absolute;
  left: 0;
  bottom: -23px;
  z-index: -1;
}

.top-cell {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -22px;
  background: url("../image/top-cell.svg") no-repeat top center;
  background-size: 1440px auto;
  width: 1440px;
  height: 24px;
}
@media (max-width: 1400px) {
  .top-cell {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .top-cell {
    width: 100%;
    height: 18px;
    top: -15px;
    background-size: cover;
  }
}

.ladybug {
  width: 28px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../image/ladybug.png") no-repeat;
  background-size: contain;
  display: inline-block;
  position: absolute;
  z-index: 1;
  top: -14px;
  right: -9999px;
  animation: ladybug 11s 0.2s linear forwards;
}
@media (max-width: 992px) {
  .ladybug {
    width: 24px;
    height: 12px;
  }
}

@keyframes ladybug {
  0% {
    right: 0;
  }
  100% {
    right: 400px;
  }
}
.header-main-menu-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.header-search-mobile.opened .aws-container {
  display: block;
  width: 100%;
}

.header-search {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1;
}
.header-search .aws-container {
  display: flex;
  align-items: center;
  height: 60px;
  width: 100%;
  background: var(--brand-green-prymary);
  border-bottom: unset;
  border-radius: 1000px;
  flex: 1;
  overflow: hidden;
}
.header-search .aws-container:hover {
  border: 1px solid var(--color-white);
}
.header-search .aws-container:hover ~ .header-search-button:before {
  transform: rotate(180deg);
}
@media (max-width: 576px) {
  .header-search .aws-container {
    display: none;
    height: 55px;
  }
}
.header-search.opened {
  position: absolute;
  width: 100%;
  z-index: 1500;
}
@media (max-width: 576px) {
  .header-search.opened .header-search-button {
    margin-right: 3px;
  }
  .header-search.opened .header-search-button::before {
    content: "";
    background: url("../image/stroke-white.svg") no-repeat;
    background-size: cover;
  }
  .header-search.opened .aws-search-btn {
    margin-right: 0;
  }
}
.header-search.opened .aws-container {
  display: flex;
}
.header-search .aws-search-field {
  width: 100%;
  height: 100%;
  padding: 20px 6px 20px 32px;
  max-width: unset;
}
.header-search .aws-search-field::placeholder {
  color: var(--color-white);
  font-family: var(--fm-base);
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0;
  vertical-align: middle;
}
@media (max-width: 576px) {
  .header-search .aws-search-field::placeholder {
    font-size: 14px;
    line-height: 1;
  }
}
@media (max-width: 576px) {
  .header-search .aws-search-field {
    padding-left: 20px;
  }
}
.header-search .aws-search-form {
  height: 100%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-search .aws-search-form.aws-focus {
  background: white;
}
.header-search .aws-search-form.aws-focus .aws-search-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: var(--brand-green-prymary);
  gap: 10px;
  z-index: 99;
  border: unset;
  border-radius: 1000px !important;
  padding: 0 12px 0 22px;
  height: 48px;
  width: 122px;
  margin: 5px;
}
@media (max-width: 576px) {
  .header-search .aws-search-form.aws-focus .aws-search-btn {
    margin-right: 3px;
  }
}
.header-search .aws-search-form.aws-focus .aws-search-btn:before {
  content: "Знайти";
  font-family: var(--fm-base);
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0;
  vertical-align: middle;
  color: var(--color-white);
}
.header-search .aws-search-form.aws-focus .aws-search-btn .aws-search-btn_icon {
  width: 24px;
  height: 24px;
}
.header-search .aws-search-form.aws-focus .aws-search-btn .aws-search-btn_icon svg {
  height: 24px;
  width: 24px;
  fill: var(--color-white);
}
.header-search .aws-search-form.aws-focus .custom-aws-clear {
  position: absolute;
  top: 0;
  right: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
  max-height: 100%;
  height: 100%;
  width: 38px;
  z-index: 9999;
  pointer-events: auto !important;
  cursor: pointer;
  padding: 0;
  font-size: 28px !important;
  color: var(--gray-light);
  background: transparent;
}
.header-search .aws-search-form.aws-focus .aws-search-field {
  width: 100%;
  height: 100%;
  max-width: unset;
  color: var(--color-base);
  font-family: var(--fm-base);
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0;
  vertical-align: middle;
}
.header-search .aws-search-form.aws-focus .aws-search-field::placeholder {
  color: var(--gray-light);
  font-family: var(--fm-base);
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0;
  vertical-align: middle;
}
.header-search .aws-wrapper {
  flex: 1;
  height: 100%;
  position: relative;
}
.header-search .header-search-button {
  position: absolute;
  right: 5px;
  width: 48px;
  height: 48px;
  transform: translate(0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 576px) {
  .header-search .header-search-button {
    right: 0;
  }
}
.header-search .header-search-button:before {
  content: "";
  background: url("../image/stroke-white.svg") no-repeat;
  background-size: cover;
}
.header-search .header-search-button .search-icon {
  background: url("../image/search-white.svg");
}

.aws-container .aws-search-form {
  background: transparent;
}
.aws-container .aws-search-form.aws-show-clear.aws-form-active .aws-search-clear {
  display: none !important;
}
.aws-container .aws-search-form .aws-form-btn {
  display: none;
}

.aws_result_scroll {
  scrollbar-width: thin;
  scrollbar-color: var(--brand-green-prymary) transparent;
}
.aws_result_scroll .aws_result_inner {
  padding: 0 20px;
}
.aws_result_scroll::-webkit-scrollbar {
  width: 4px !important;
}
.aws_result_scroll::-webkit-scrollbar-track {
  background: transparent !important;
  min-height: 82px;
}
.aws_result_scroll::-webkit-scrollbar-thumb {
  background: #D9D9D9 !important;
  border-radius: 100px;
  min-height: 82px;
}
.aws_result_scroll::-webkit-scrollbar-button, .aws_result_scroll::-webkit-scrollbar-button:vertical:start:decrement, .aws_result_scroll::-webkit-scrollbar-button:vertical:end:increment {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
}

.aws-form-active {
  z-index: 2000;
}

.aws-search-result {
  line-height: normal;
  margin-top: 5px;
  border-top: 2px solid var(--brand-orange) !important;
  border-bottom: 2px solid var(--brand-orange) !important;
  border-left: 4px solid var(--brand-orange) !important;
  border-right: 5px solid var(--brand-orange) !important;
  border-radius: 10px 15px 30px 15px !important;
  overflow: hidden;
}
.aws-search-result:focus-visible {
  z-index: 2000;
}
.aws-search-result .aws_results .aws_result_item {
  border-bottom: unset;
  padding: 16px 0;
}
.aws-search-result .aws_results .aws_result_item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: url("../image/dots_line.png") no-repeat;
  background-size: cover;
}
.aws-search-result .aws_result_image img {
  width: 140px;
  padding: unset;
}
@media (max-width: 992px) {
  .aws-search-result .aws_result_image img {
    width: 80px;
  }
}
.aws-search-result .aws_result_content .aws_result_head {
  max-width: 90%;
  align-items: center;
  margin-bottom: 8px;
}
.aws-search-result .aws_result_title {
  font-family: var(--fm-medium);
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0;
  vertical-align: middle;
  color: var(--color-base);
}
@media (max-width: 992px) {
  .aws-search-result .aws_result_title {
    margin-bottom: 8px;
  }
}
.aws-search-result .aws_result_excerpt {
  font-family: var(--fm-base);
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0;
  vertical-align: middle;
  color: var(--color-gray);
}
@media (max-width: 992px) {
  .aws-search-result .aws_result_price {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
.aws-search-result .aws_result_price del {
  text-decoration: none !important;
  padding: 0 6px;
  white-space: nowrap;
}
.aws-search-result .aws_result_price del > span {
  font-family: var(--fm-base);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0;
  vertical-align: middle;
  text-decoration: line-through;
  color: #747474;
}
.aws-search-result .aws_result_price ins {
  text-decoration: none;
  padding: unset;
  white-space: nowrap;
}
.aws-search-result .aws_result_price ins > span {
  font-family: var(--fm-heading);
  font-weight: 400;
  font-size: 44px;
  line-height: 110%;
  letter-spacing: 0;
  vertical-align: middle;
  color: var(--brand-orange);
}
.aws-search-result .aws_result_sale {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 48px;
  position: absolute;
  top: 16px;
  right: 0;
  float: unset;
  text-align: unset;
  padding-top: unset;
}
@media (max-width: 576px) {
  .aws-search-result .aws_result_sale {
    width: 35px;
    height: 26px;
    left: 50px;
    right: auto;
  }
}
.aws-search-result .aws_onsale {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  color: transparent;
  background: unset;
  width: 100%;
  height: 100%;
  transform: unset;
  position: relative;
  top: 0;
  right: 0;
  float: unset;
  text-align: unset;
  padding-top: unset;
}
.aws-search-result .aws_onsale::before {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  background: url("../image/sale.svg") no-repeat center;
  background-size: contain;
}
.aws-search-result .aws_result_item:hover {
  background: unset;
}
.aws-search-result .aws_result_item:hover .aws_result_title {
  color: var(--brand-green-dark);
}
.aws-search-result .aws_result_item.aws_search_more {
  margin: 15px auto !important;
  padding: unset;
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: url("../image/stroke-search.svg") no-repeat;
  background-size: cover;
  width: 215px;
  max-width: 215px;
  height: 64px;
  color: var(--brand-secondary);
  font-family: var(--fm-base);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 19.2px */
}
.aws-search-result .aws_result_item.aws_search_more:after {
  position: relative;
  content: "";
  display: block;
  flex: 0 0 15px;
  width: 11px;
  height: 11px;
  background: url("../image/search-arrow.svg") no-repeat center;
  background-size: contain;
}
.aws-search-result .screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.slider .slick-slide:hover {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.slick-dotted.promo-slider {
  margin-bottom: 0;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 8px;
  height: 8px;
  cursor: pointer;
  color: transparent;
  border: 2px solid var(--brand-green-prymary);
  border-radius: 50%;
  outline: none;
  background: transparent;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover::before, .slick-dots li button:focus::before {
  opacity: 1;
}
.slick-dots li button::before {
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: "•";
  text-align: center;
  opacity: 0.25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button {
  border: 2px solid var(--brand-orange);
  background: var(--brand-orange);
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
.slick-slide img {
  display: block;
  margin: 0 auto;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-slide:hover, .slick-slide:active, .slick-slide:focus {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.slick-slide a {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.slick-slide a:hover, .slick-slide a:focus, .slick-slide a:active {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  margin-left: auto;
  margin-right: auto;
}
.slick-track::before {
  display: table;
  content: "";
}
.slick-track::after {
  display: table;
  content: "";
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-loading .slick-list {
  background: #fff url("../image/ajax-loader.gif") center center no-repeat;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}
.slick-prev::before, .slick-prev::after,
.slick-next::before,
.slick-next::after {
  opacity: 1;
}

[dir=rtl] .slick-slide {
  float: right;
}

.banner-wrap {
  position: relative;
  width: 100%;
  height: auto;
  background: var(--brand-green-light);
  z-index: 50;
}
@media (max-width: 1030px) {
  .banner-wrap {
    padding-top: 10px;
    z-index: 20;
  }
}

.banner {
  position: relative;
  width: 100%;
  height: auto;
}
@media (max-width: 431px) {
  .banner {
    background: url("../image/mob-banner.svg") no-repeat 50% 0;
    background-size: auto 100%;
    padding: 8px 0 5px;
  }
}
@media (max-width: 431px) {
  .banner .container {
    padding-right: 0;
    padding-left: 0;
  }
}

.green-line-banner {
  position: relative;
  top: -10px;
  width: 100%;
  height: 35px;
  background: url("../image/green-line-banner.svg") repeat center bottom;
  z-index: -1;
}
@media (max-width: 1030px) {
  .green-line-banner {
    height: 25px;
  }
}

.bottom-line-cell {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  top: -18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  z-index: -5;
  pointer-events: none;
  overflow: hidden;
}
.bottom-line-cell .line-cell {
  position: relative;
  width: 2560px;
  height: 80px;
  background: url("../image/bottom-line-cell.svg") no-repeat center bottom;
  background-size: cover;
}
@media (max-width: 576px) {
  .bottom-line-cell .line-cell {
    height: 60px;
  }
}

.promo-slider-wrap {
  width: 100%;
  height: auto;
}
@media (max-width: 1200px) {
  .promo-slider-wrap {
    background: url("../image/banner.png") no-repeat 50% 0;
    background-size: 100% 100%;
  }
}
@media (max-width: 431px) {
  .promo-slider-wrap {
    background: unset;
    background-size: 0;
    padding: 3px 0;
  }
}

.promo-slider-holder {
  width: 100%;
  position: relative;
  background: url("../image/banner.svg") no-repeat 50% 0;
  background-size: 100% auto;
  padding: 17px;
}
@media (max-width: 1400px) {
  .promo-slider-holder {
    padding: 15px;
  }
}
@media (max-width: 1200px) {
  .promo-slider-holder {
    background: unset;
    background-size: 0;
  }
}
@media (max-width: 1200px) {
  .promo-slider-holder {
    padding: 13px 13px 5px;
  }
}
@media (max-width: 576px) {
  .promo-slider-holder {
    padding: 10px 13px 5px;
  }
}
@media (max-width: 431px) {
  .promo-slider-holder {
    padding: 4px 0 1px;
  }
}

.promo-slider {
  width: 100%;
  height: auto;
  position: relative;
}
.promo-slider .slick-arrow:before,
.promo-slider .slick-dots li button:before {
  content: "";
}
.promo-slider .slick-next:hover:after,
.promo-slider .slick-prev:hover:after {
  transform: rotate(180deg);
}
.promo-slider .slick-arrow {
  background: url("../image/arrow-red-slider.svg") no-repeat center center;
  background-size: 21px 15px;
  width: 50px;
  height: 50px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.promo-slider .slick-arrow.slick-next {
  background: url("../image/arrow-left-slider.svg") no-repeat center center;
  background-size: 21px 15px;
}
.promo-slider .slick-arrow:before {
  content: "";
  background: url("../image/v-line.svg") no-repeat;
  width: 4px;
  height: 243px;
  position: absolute;
  left: 50%;
  top: 65%;
  margin: -128px 0 0 -1px;
}
.promo-slider .slick-arrow:after {
  content: "";
  background: url("../image/arrow-stroke.svg") no-repeat;
  background-size: contain;
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .promo-slider .slick-arrow {
    display: none !important;
  }
}
.promo-slider .slick-prev {
  left: 170px;
}
@media (max-width: 1400px) {
  .promo-slider .slick-prev {
    left: 140px;
  }
}
@media (max-width: 1200px) {
  .promo-slider .slick-prev {
    left: 130px;
  }
}
@media (max-width: 1030px) {
  .promo-slider .slick-prev {
    left: 112px;
  }
}
.promo-slider .slick-next {
  right: 170px;
}
@media (max-width: 1400px) {
  .promo-slider .slick-next {
    right: 140px;
  }
}
@media (max-width: 1200px) {
  .promo-slider .slick-next {
    right: 130px;
  }
}
@media (max-width: 1030px) {
  .promo-slider .slick-next {
    right: 112px;
  }
}
.promo-slider .slick-list {
  padding: 0 245px;
}
@media (max-width: 1400px) {
  .promo-slider .slick-list {
    padding: 0 130px;
  }
}
@media (max-width: 1200px) {
  .promo-slider .slick-list {
    padding: 0 75px;
  }
}
@media (max-width: 576px) {
  .promo-slider .slick-list {
    padding: 0 50px;
  }
}
@media (max-width: 431px) {
  .promo-slider .slick-list {
    padding: 0;
  }
}
.promo-slider .slick-dots {
  height: auto;
  position: relative;
  top: 76px;
  bottom: auto;
  margin-left: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
@media (min-width: 2100px) {
  .promo-slider .slick-dots {
    top: 76px;
  }
}
@media (max-width: 1200px) {
  .promo-slider .slick-dots {
    top: 65px;
  }
}
@media (max-width: 1030px) {
  .promo-slider .slick-dots {
    top: 55px;
  }
}
@media (max-width: 576px) {
  .promo-slider .slick-dots {
    top: 43px;
  }
}
@media (max-width: 431px) {
  .promo-slider .slick-dots {
    top: 49px;
  }
}
.promo-slider .slick-dots li {
  width: 8px;
  height: 8px;
  margin: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 576px) {
  .promo-slider .slick-dots li {
    width: 6px;
    height: 6px;
  }
}
.promo-slider .slick-dots li button {
  width: 8px;
  height: 8px;
  padding: unset;
}
@media (max-width: 576px) {
  .promo-slider .slick-dots li button {
    width: 6px;
    height: 6px;
  }
}
.promo-slider .slick-dots li button::before {
  content: unset;
}
.promo-slider .item {
  height: 370px;
  width: 806px;
  float: left;
}
@media (max-width: 1400px) {
  .promo-slider .item {
    height: 317px;
  }
}
@media (max-width: 1200px) {
  .promo-slider .item {
    height: 250px;
    width: auto;
  }
}
@media (max-width: 1030px) {
  .promo-slider .item {
    height: 270px;
    width: auto;
  }
}
@media (max-width: 992px) {
  .promo-slider .item {
    height: 230px;
    width: auto;
  }
}
@media (max-width: 576px) {
  .promo-slider .item {
    height: 170px;
  }
}
@media (max-width: 431px) {
  .promo-slider .item {
    width: 100%;
    height: auto;
  }
  .promo-slider .item img {
    width: 100%;
    height: auto;
  }
}
.promo-slider .item img {
  max-height: 100%;
  width: auto;
}

.new-product,
.recommendations {
  position: relative;
  padding-bottom: 89px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 1200px) {
  .new-product,
  .recommendations {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-bottom: 0;
  }
}
.new-product::before,
.recommendations::before {
  content: "";
  position: absolute;
  left: 25px;
  right: 25px;
  top: 0;
  height: 50%;
  background: url("../image/top-line-dash.svg") no-repeat center 35px;
  background-size: 100%;
  z-index: -1;
}
@media (max-width: 1200px) {
  .new-product::before,
  .recommendations::before {
    content: unset;
  }
}
.new-product::after,
.recommendations::after {
  content: "";
  position: absolute;
  left: 25px;
  right: 25px;
  bottom: 0;
  height: 50%;
  background: url("../image/bottom-line-dash.svg") no-repeat center bottom;
  background-size: 100%;
  z-index: -1;
}
@media (max-width: 1200px) {
  .new-product::after,
  .recommendations::after {
    content: unset;
  }
}
.new-product h2,
.recommendations h2 {
  font-family: var(--fm-heading);
  font-weight: 400;
  font-size: 70px;
  line-height: 75px;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
  position: relative;
  overflow-wrap: break-word; /* Розриває занадто довгі слова, якщо вони не вміщаються */
  word-wrap: break-word; /* Застарілий синтаксис для сумісності зі старими браузерами */
  word-break: normal;
}
.new-product h2::after,
.recommendations h2::after {
  content: "";
  position: absolute;
  right: 223px;
  top: 5px;
  height: 34px;
  width: 50px;
  background: url("../image/worm.svg") no-repeat center;
  background-size: contain;
  z-index: 1;
  -webkit-animation: worm_book 0.9s 0.3s ease-in forwards;
  -moz-animation: worm_book 0.9s 0.3s ease-in forwards;
  animation: worm_book 0.9s 0.3s ease-in forwards;
}
@media (max-width: 1200px) {
  .new-product h2::after,
  .recommendations h2::after {
    content: unset;
  }
}
@media (max-width: 1200px) {
  .new-product h2,
  .recommendations h2 {
    margin: 0 70px;
    horiz-align: center;
    top: 0;
  }
}
@media (max-width: 576px) {
  .new-product h2,
  .recommendations h2 {
    font-size: 42px;
    line-height: 32px;
    horiz-align: center;
  }
}
.new-product .so_product-link,
.recommendations .so_product-link {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.new-product .slider,
.recommendations .slider {
  margin: 0 75px;
}
@media (max-width: 1200px) {
  .new-product .slider,
  .recommendations .slider {
    padding-bottom: 0;
  }
}
@media (max-width: 992px) {
  .new-product .slider,
  .recommendations .slider {
    margin: 0 0;
  }
}
@media (max-width: 431px) {
  .new-product .slider,
  .recommendations .slider {
    margin: 0 0;
  }
}
.new-product .slick-arrow,
.recommendations .slick-arrow {
  width: 50px;
  height: 50px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../image/arrow-red-slider.svg") no-repeat center center;
  background-size: 26px 17px;
}
.new-product .slick-arrow.slick-next,
.recommendations .slick-arrow.slick-next {
  background: url("../image/arrow-left-slider.svg") no-repeat center center;
  background-size: 26px 17px;
  right: -70px;
}
@media (max-width: 1200px) {
  .new-product .slick-arrow.slick-next,
  .recommendations .slick-arrow.slick-next {
    top: -75px;
  }
}
@media (max-width: 992px) {
  .new-product .slick-arrow.slick-next,
  .recommendations .slick-arrow.slick-next {
    right: 0;
    background: url("../image/mob-arrow-right.svg") no-repeat center center;
    background-size: contain;
  }
  .new-product .slick-arrow.slick-next::after,
  .recommendations .slick-arrow.slick-next::after {
    content: unset;
  }
}
@media (max-width: 576px) {
  .new-product .slick-arrow.slick-next,
  .recommendations .slick-arrow.slick-next {
    right: 0;
    top: -55px;
  }
}
@media (max-width: 394px) {
  .new-product .slick-arrow.slick-next,
  .recommendations .slick-arrow.slick-next {
    top: -75px;
  }
}
.new-product .slick-arrow.slick-next::before,
.recommendations .slick-arrow.slick-next::before {
  content: unset;
}
.new-product .slick-arrow.slick-prev,
.recommendations .slick-arrow.slick-prev {
  left: -70px;
}
@media (max-width: 1200px) {
  .new-product .slick-arrow.slick-prev,
  .recommendations .slick-arrow.slick-prev {
    top: -75px;
  }
}
@media (max-width: 992px) {
  .new-product .slick-arrow.slick-prev,
  .recommendations .slick-arrow.slick-prev {
    left: 0;
    background: url("../image/mob-arrow-left.svg") no-repeat center center;
    background-size: contain;
  }
  .new-product .slick-arrow.slick-prev::after,
  .recommendations .slick-arrow.slick-prev::after {
    content: unset;
  }
}
@media (max-width: 576px) {
  .new-product .slick-arrow.slick-prev,
  .recommendations .slick-arrow.slick-prev {
    left: 0;
    top: -55px;
  }
}
@media (max-width: 394px) {
  .new-product .slick-arrow.slick-prev,
  .recommendations .slick-arrow.slick-prev {
    top: -75px;
  }
}
.new-product .slick-arrow.slick-prev::before,
.recommendations .slick-arrow.slick-prev::before {
  content: unset;
}
.new-product .slick-arrow:after,
.recommendations .slick-arrow:after {
  content: "";
  background: url("../image/color-stroke.svg") no-repeat;
  background-size: contain;
  display: inline-block;
  position: absolute;
  width: 72px;
  height: 72px;
  transition: transform 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .new-product .slick-arrow:after,
  .recommendations .slick-arrow:after {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 576px) {
  .new-product .slick-arrow:after,
  .recommendations .slick-arrow:after {
    background: url("../image/mob-stroke-button.png") no-repeat;
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 1030px) {
  .new-product .slick-arrow,
  .recommendations .slick-arrow {
    top: -75px;
  }
}
@media (max-width: 992px) {
  .new-product .slick-arrow,
  .recommendations .slick-arrow {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 576px) {
  .new-product .slick-arrow,
  .recommendations .slick-arrow {
    top: -55px;
  }
}
@media (max-width: 394px) {
  .new-product .slick-arrow,
  .recommendations .slick-arrow {
    top: -65px;
  }
}
.new-product .slick-next,
.new-product .slick-prev,
.recommendations .slick-next,
.recommendations .slick-prev {
  top: calc(50% + 15px);
}
@media (max-width: 992px) {
  .new-product .slick-next,
  .new-product .slick-prev,
  .recommendations .slick-next,
  .recommendations .slick-prev {
    background-size: 19px 14px;
  }
}
.new-product .slick-next::before, .new-product .slick-next::after,
.new-product .slick-prev::before,
.new-product .slick-prev::after,
.recommendations .slick-next::before,
.recommendations .slick-next::after,
.recommendations .slick-prev::before,
.recommendations .slick-prev::after {
  opacity: 1;
}
.new-product .slick-next:hover:after,
.new-product .slick-prev:hover:after,
.recommendations .slick-next:hover:after,
.recommendations .slick-prev:hover:after {
  transform: rotate(180deg);
  background-size: cover;
}
.new-product .item,
.recommendations .item {
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
}
@media (max-width: 431px) {
  .new-product .item,
  .recommendations .item {
    padding-bottom: 5px;
  }
}

@keyframes worm_book {
  0% {
    top: -40px;
  }
  100% {
    top: 5px;
  }
}
.recommendations h2:after {
  content: unset !important;
}

.preparing-slider {
  position: relative;
  background-image: url("../image/stroke-preparing.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-bottom: 76px;
}
@media (max-width: 1030px) {
  .preparing-slider {
    background: unset;
    padding-bottom: 0;
  }
}
@media (max-width: 576px) {
  .preparing-slider {
    padding-bottom: 0;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
  }
}
.preparing-slider .bg-preparing-wrap {
  display: none;
}
@media (min-width: 576px) {
  .preparing-slider.has-two-slides .slick-track {
    width: 100% !important;
  }
}
.preparing-slider h2 {
  font-family: var(--fm-heading);
  font-weight: 400;
  font-size: 70px;
  line-height: 75px;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
  position: relative;
  top: -35px;
  overflow-wrap: break-word; /* Розриває занадто довгі слова, якщо вони не вміщаються */
  word-wrap: break-word; /* Застарілий синтаксис для сумісності зі старими браузерами */
  word-break: normal;
}
@media (max-width: 1030px) {
  .preparing-slider h2 {
    margin: 0 50px;
    horiz-align: center;
    top: 0;
  }
}
@media (max-width: 576px) {
  .preparing-slider h2 {
    font-size: 42px;
    line-height: 32px;
    horiz-align: center;
  }
}
@media (max-width: 821px) {
  .preparing-slider .slider {
    top: unset;
  }
}
.preparing-slider .slick-list {
  width: 100%;
  overflow: hidden;
}
.preparing-slider .slick-track {
  display: flex;
  margin: 0;
}
@media (max-width: 1400px) {
  .preparing-slider .slick-track {
    gap: unset;
  }
}
.preparing-slider .slick-slide {
  height: auto;
  width: auto;
}
.preparing-slider .slick-arrow {
  width: 50px;
  height: 50px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../image/arrow-red-slider.svg") no-repeat center center;
}
@media (max-width: 576px) {
  .preparing-slider .slick-arrow {
    width: 40px;
    height: 40px;
  }
}
.preparing-slider .slick-arrow.slick-next {
  background: url("../image/arrow-left-slider.svg") no-repeat center center;
  right: -70px;
}
@media (max-width: 992px) {
  .preparing-slider .slick-arrow.slick-next {
    right: 0;
    background: url("../image/mob-arrow-right.svg") no-repeat center center;
    background-size: contain;
  }
  .preparing-slider .slick-arrow.slick-next::after {
    content: unset;
  }
}
@media (max-width: 576px) {
  .preparing-slider .slick-arrow.slick-next {
    right: 0;
  }
}
.preparing-slider .slick-arrow.slick-next::before {
  content: unset;
}
.preparing-slider .slick-arrow.slick-prev {
  left: -70px;
}
@media (max-width: 992px) {
  .preparing-slider .slick-arrow.slick-prev {
    left: 0;
    background: url("../image/mob-arrow-left.svg") no-repeat center center;
    background-size: contain;
  }
  .preparing-slider .slick-arrow.slick-prev::after {
    content: unset;
  }
}
@media (max-width: 576px) {
  .preparing-slider .slick-arrow.slick-prev {
    left: 0;
  }
}
.preparing-slider .slick-arrow.slick-prev::before {
  content: unset;
}
.preparing-slider .slick-arrow:after {
  content: "";
  background: url("../image/color-stroke.svg") no-repeat;
  background-size: cover;
  display: inline-block;
  position: absolute;
  width: 72px;
  height: 72px;
  transition: transform 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .preparing-slider .slick-arrow:after {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 576px) {
  .preparing-slider .slick-arrow:after {
    background: url("../image/mob-stroke-button.png") no-repeat;
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 1030px) {
  .preparing-slider .slick-arrow {
    top: -75px;
  }
}
@media (max-width: 576px) {
  .preparing-slider .slick-arrow {
    top: -55px;
  }
}
@media (max-width: 394px) {
  .preparing-slider .slick-arrow {
    top: -55px;
  }
}
@media (max-width: 992px) {
  .preparing-slider .slick-next,
  .preparing-slider .slick-prev {
    background-size: 19px 14px;
  }
}
.preparing-slider .slick-next:hover:after,
.preparing-slider .slick-prev:hover:after {
  transform: rotate(180deg);
  background-size: cover;
}
.preparing-slider .item {
  width: auto;
  position: relative;
  display: flex !important;
  align-items: start;
  justify-content: center;
  z-index: 5;
  margin-top: 23px;
}
.preparing-slider .item h3 {
  text-transform: unset;
}
@media (max-width: 576px) {
  .preparing-slider .item .product-card {
    width: 152px;
  }
  .preparing-slider .item .product-card .img {
    width: 100%;
    height: 100%;
  }
  .preparing-slider .item .product-card .sale_book {
    top: 23px;
    right: 16px;
    width: 38px;
    height: 34px;
  }
  .preparing-slider .item .product-card .percent {
    font-size: 22px;
  }
  .preparing-slider .item .product-card .new_book {
    width: 40px;
    height: 40px;
    right: 40px;
    top: 0;
    bottom: auto;
  }
  .preparing-slider .item .product-card .preorder-book {
    top: -25px;
    left: -5px;
    width: 80px;
    height: 80px;
  }
}
.preparing-slider .button-to-buy {
  width: 158px;
  height: 57px;
  background: url(../image/button-buy.svg) no-repeat;
  background-size: 100% 100%;
  transform: translate(0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.preparing-slider .button-to-buy:hover {
  background: url("../image/button-buy-red.svg") no-repeat;
}
.preparing-slider .button-to-buy:hover span {
  color: var(--color-white);
}
@media (max-width: 576px) {
  .preparing-slider .button-to-buy {
    width: 150px;
    height: 54px;
    background: url(../image/button-buy.svg) no-repeat;
    background-size: contain;
  }
  .preparing-slider .button-to-buy::before {
    content: unset;
  }
  .preparing-slider .button-to-buy .text-block {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.preparing-slider .arrow-preparing-up {
  display: none;
}

.preparing-container {
  position: relative;
  width: 100%;
  min-width: 0;
}
@media (max-width: 1030px) {
  .preparing-container {
    padding-bottom: 0;
    gap: 40px;
  }
}

.preparing {
  margin: 0 50px;
}
@media (max-width: 1030px) {
  .preparing {
    margin: 0 0;
  }
}

.product-card {
  position: relative;
  width: 266px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}
.product-card .so_product-link {
  padding: 8px;
}
.product-card .product-title-block {
  display: flex;
  padding: 0 8px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}
.product-card .img {
  width: 264px;
  height: 264px;
  position: relative;
}
.product-card .img img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}
.product-card .num {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.product-card .num del {
  font-family: var(--fm-base);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0;
  vertical-align: middle;
  color: var(--color-gray);
  text-decoration: line-through;
}
@media (max-width: 576px) {
  .product-card .num del {
    font-size: 14px;
  }
}
.product-card .num ins {
  font-family: var(--fm-heading);
  font-weight: 400;
  font-size: 44px;
  line-height: 110%;
  letter-spacing: 0;
  vertical-align: middle;
  color: var(--brand-orange);
}
@media (max-width: 576px) {
  .product-card .num ins {
    font-size: 40px;
    line-height: 90%;
  }
}
@media (max-width: 576px) {
  .product-card .num {
    flex-direction: column;
    gap: 4px;
  }
}
.product-card .info-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media (max-width: 576px) {
  .product-card .info-block {
    gap: 4px;
  }
}
.product-card .info-block p {
  color: var(--color-gray);
  text-align: center;
  font-family: var(--fm-base);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 21.6px */
  text-transform: none;
  min-height: 19.2px;
}
@media (max-width: 576px) {
  .product-card .info-block p {
    font-size: 14px;
    min-height: 16.8px;
  }
}
.product-card:hover img {
  transition: transform 0.3s ease;
  transform: scale(1.1);
}
.product-card:hover h3 {
  color: var(--brand-green-prymary);
}
@media (max-width: 576px) {
  .product-card {
    width: 152px;
    gap: 20px;
  }
  .product-card .img {
    width: 152px;
    height: 152px;
  }
}

@media (max-width: 576px) {
  .preorder .product-card .favorite-box {
    display: none;
  }
}

.single-preorder .product-card.preorder {
  width: 310px;
  gap: 28px;
}
@media (max-width: 576px) {
  .single-preorder .product-card.preorder {
    width: 266px;
    padding: 0;
    gap: 20px;
  }
  .single-preorder .product-card.preorder .sale_book {
    top: 23px;
    right: 16px;
    width: 55px;
    height: 48px;
    font-size: 30px;
  }
  .single-preorder .product-card.preorder .percent {
    font-size: 30px;
  }
  .single-preorder .product-card.preorder .new_book {
    width: 67px;
    height: 57px;
    right: 62px;
    bottom: 18px;
  }
  .single-preorder .product-card.preorder .preorder-book {
    top: -30px;
    left: -9px;
    width: 126px;
    height: 126px;
  }
  .single-preorder .product-card.preorder .favorite-box {
    display: block;
  }
}
.single-preorder .product-card.preorder .product-title-block {
  display: flex;
  padding: 0 8px;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  align-self: stretch;
}
@media (max-width: 576px) {
  .single-preorder .product-card.preorder .product-title-block {
    gap: 4px;
  }
}
.single-preorder .product-card.preorder .product-title {
  gap: 14px;
}
@media (max-width: 576px) {
  .single-preorder .product-card.preorder .product-title {
    gap: 8px;
  }
}
.single-preorder .product-card.preorder .product-title h3 {
  font-size: 22px;
  height: 52.8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-transform: unset;
}
@media (max-width: 576px) {
  .single-preorder .product-card.preorder .product-title h3 {
    font-size: 16px;
    height: 38.4px;
  }
}
.single-preorder .product-card.preorder .img {
  width: 100%;
  height: 100%;
}
.single-preorder .product-card.preorder .pr-info {
  right: 50px;
}
@media (max-width: 576px) {
  .single-preorder .product-card.preorder .pr-info {
    right: 20px;
  }
}
.single-preorder .product-card.preorder .info-block {
  gap: 5px;
}
@media (max-width: 576px) {
  .single-preorder .product-card.preorder .info-block {
    gap: 4px;
  }
}
.single-preorder .product-card.preorder .info-block p {
  font-size: 18px;
  min-height: 21.6px;
}
@media (max-width: 576px) {
  .single-preorder .product-card.preorder .info-block p {
    font-size: 14px;
    min-height: 16.8px;
  }
}
.single-preorder .product-card.preorder .num ins {
  font-size: 52px;
}
@media (max-width: 576px) {
  .single-preorder .product-card.preorder .num ins {
    font-size: 40px;
  }
}
.single-preorder .product-card.preorder .num del {
  font-size: 18px;
}
@media (max-width: 576px) {
  .single-preorder .product-card.preorder .num del {
    font-size: 14px;
  }
}
.single-preorder .product-card.preorder .button-to-buy {
  width: 184px;
  height: 65px;
  background: url(../image/button-buy.svg) no-repeat;
  background-size: 100% 100%;
  transform: translate(0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
}
.single-preorder .product-card.preorder .button-to-buy .text-block {
  font-size: inherit;
}
.single-preorder .product-card.preorder .button-to-buy:hover {
  background: url("../image/button-buy-red.svg") no-repeat;
  background-size: 100% 100%;
}
.single-preorder .product-card.preorder .button-to-buy:hover span {
  color: var(--color-white);
}
@media (max-width: 576px) {
  .single-preorder .product-card.preorder .button-to-buy {
    width: 150px;
    height: 54px;
    background: url(../image/button-buy.svg) no-repeat;
    background-size: contain;
    font-size: 16px;
  }
  .single-preorder .product-card.preorder .button-to-buy::before {
    content: unset;
  }
  .single-preorder .product-card.preorder .button-to-buy .text-block {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.single-preorder .product-card .so_product-link {
  padding: 10px;
}
.single-preorder .product-card .woosw-btn {
  width: 56px;
  height: 56px;
}
.single-preorder .product-card .favorites-link .woosw-icon-8,
.single-preorder .product-card .favorites-link .woosw-icon-5 {
  width: 27px;
  height: 27px;
  background-size: cover;
}

.product-title {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-title h3 {
  font-family: var(--fm-base);
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
  color: var(--color-base);
  margin-bottom: 0;
  height: 43.2px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 576px) {
  .product-title h3 {
    height: 38.4px;
    font-size: 16px;
  }
}
.product-title p {
  font-family: var(--fm-base);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
  margin-bottom: 0;
  color: var(--color-gray);
}
@media (max-width: 576px) {
  .product-title p {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .product-title {
    gap: 8px;
  }
}

.favorite-basket-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.woosw-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  cursor: pointer;
}
.woosw-btn::before {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: url("../image/wishlist-black.svg");
  background-size: cover;
  transform: translate(0, 0);
  font-size: 0;
}
.woosw-btn::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  background: url("../image/stroke.svg") no-repeat center;
  background-size: cover;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  transition: transform 0.5s;
  transform: rotate(90deg);
}
.woosw-btn:hover::after {
  transform: rotate(180deg);
}
.woosw-btn:hover .woosw-icon-5 {
  background: url("../image/green-heart.svg");
}

.favorites-link {
  position: relative;
  cursor: pointer;
}
.favorites-link.disabled span {
  border-bottom: none;
  color: var(----color-base);
  cursor: default;
}
.favorites-link.disabled .icon-favorite {
  cursor: default;
}
.favorites-link .woosw-icon-5 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: url("../image/wishlist-black.svg");
  background-size: cover;
  transform: translate(0, 0);
  font-size: 0;
  transition: all 0.3s;
  vertical-align: middle;
}
.favorites-link .woosw-icon-8 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: url("../image/wish-red.svg");
  background-size: cover;
  transform: translate(0, 0);
  font-size: 0;
  transition: all 0.3s;
  vertical-align: middle;
}

.button-to-buy {
  width: 158px;
  height: 57px;
  background: url("../image/button-buy.svg") no-repeat;
  background-size: 100% 100%;
  transform: translate(0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.button-to-buy .text-block {
  font-family: var(--fm-base);
  font-weight: 600;
  font-size: 16px;
  color: var(--brand-orange);
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
}
.button-to-buy .icon-block {
  width: 24px;
  height: 24px;
  background: url("../image/basket-black.svg");
  background-size: cover;
  transform: translate(0, 0);
  display: none;
}
.button-to-buy .icon-block.icon-red-backed {
  background: url("../image/basket-red.svg") !important;
}
.button-to-buy:hover {
  background: url("../image/button-buy-red.svg") no-repeat;
}
@media (max-width: 576px) {
  .button-to-buy:hover {
    background: unset;
  }
  .button-to-buy:hover::before {
    transform: rotate(180deg);
  }
  .button-to-buy:hover .icon-block {
    background: url("../image/basket-red.svg");
    transform: translate(0, 0);
  }
}
.button-to-buy:hover span {
  color: var(--color-white);
}
@media (max-width: 576px) {
  .button-to-buy {
    background: unset;
    width: 48px;
    height: 48px;
  }
  .button-to-buy::before {
    position: absolute;
    left: 0;
    top: 0;
    content: url("../image/stroke.svg");
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    transition: transform 0.5s;
    transform: rotate(90deg);
  }
  .button-to-buy .text-block {
    display: none;
  }
  .button-to-buy .icon-block {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.favorite_categories .flex-evenly-start-align {
  align-items: stretch;
}
.favorite_categories .product-card {
  width: 309px;
  justify-content: center;
  gap: 22px;
}
@media (max-width: 576px) {
  .favorite_categories .product-card {
    align-items: stretch;
    width: 152px;
    gap: 12px;
  }
}
@media (max-width: 576px) {
  .favorite_categories .product-card .product-title {
    flex-grow: 1;
    gap: 12px;
  }
  .favorite_categories .product-card .product-title p {
    margin-top: auto;
  }
}
.favorite_categories .product-card h3 {
  display: block;
  text-transform: uppercase;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  overflow: unset;
  height: auto;
}
@media (max-width: 576px) {
  .favorite_categories .product-card h3 {
    height: auto;
  }
}
.favorite_categories .product-card:hover h3 {
  color: var(--brand-orange);
}
.favorite_categories .product-card-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-grow: 1;
}
.favorite_categories .button-to-buy {
  align-self: center;
}
@media (max-width: 576px) {
  .favorite_categories .button-to-buy {
    width: 100%;
    height: 50px;
    background: url("../image/button-buy.svg") no-repeat;
    background-size: 100% 100%;
  }
  .favorite_categories .button-to-buy::before {
    content: unset;
  }
}
.favorite_categories .button-to-buy .text-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.favorite_categories .button-to-buy .arrow-button-to-buy {
  width: 8px;
  height: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../image/arrow-buy-button.svg") no-repeat center;
  background-size: contain;
}
.favorite_categories .button-to-buy:hover .text-block {
  color: var(--color-white);
}
.favorite_categories .button-to-buy:hover .arrow-button-to-buy {
  background: url("../image/arrow-buy-button-white.svg") no-repeat center;
  background-size: contain;
}

.tow-image {
  width: 309px;
  height: 309px;
  position: relative;
  padding: 10px;
}
@media (max-width: 576px) {
  .tow-image {
    width: 152px;
    height: 152px;
  }
}
.tow-image .first-image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: flex;
  align-items: start;
  justify-content: start;
  margin: 10px;
  width: 70%;
  height: 70%;
}
.tow-image .second-image {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: end;
  justify-content: end;
  margin: 10px;
  width: 65%;
  height: 65%;
}
.tow-image img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Або contain, залежно від завдання */
  object-position: center; /* Центрує картинку в блоці */
}

.footer {
  background: var(--brand-green-light);
  position: relative;
  min-height: 400px;
  height: auto;
  max-width: 100vw;
  width: 100%;
  padding: 23px 50px 20px;
  display: flex;
  justify-content: space-between;
  color: var(--color-white);
  margin-top: 170px;
}
@media (max-width: 992px) {
  .footer {
    padding: 40px 17px 20px;
  }
}
.footer .footer-before {
  content: "";
  background: url("../image/bg-footer-top.svg") repeat-x top center;
  background-size: contain;
  height: 32px;
  width: 100%;
  display: inline-block;
  position: absolute;
  top: -30px;
  left: 0;
  z-index: -1;
}
@media (max-width: 1281px) {
  .footer .footer-before {
    background-size: cover;
  }
}
.footer .container {
  position: relative;
}
.footer h3 {
  font-family: var(--fm-heading);
  font-weight: 400;
  font-size: 28px;
  line-height: 18px;
  letter-spacing: 4%;
  vertical-align: middle;
  text-transform: uppercase;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer p {
  font-size: 18px;
}
.footer .icon-fox {
  position: absolute;
  top: -190px;
  left: calc((100vw - 1440px) / 2 + 28px);
  background: url("../image/fox.svg") no-repeat;
  background-size: contain;
  width: 236px;
  height: 169px;
}
@media (max-width: 1281px) {
  .footer .icon-fox {
    left: calc((100vw - 1140px) / 2 + 28px);
  }
}
@media (max-width: 1030px) {
  .footer .icon-fox {
    top: -160px;
    left: 19px;
    width: 198px;
    height: 142px;
  }
}
.footer .icon-rabbit {
  position: absolute;
  top: -150px;
  right: calc((100vw - 1440px) / 2 + 137px);
  background: url("../image/dog.svg") no-repeat;
  width: 113px;
  height: 139px;
  animation: rabbit 2s linear forwards;
}
@media (max-width: 1281px) {
  .footer .icon-rabbit {
    right: calc((100vw - 1140px) / 2 + 137px);
  }
}
@media (max-width: 1030px) {
  .footer .icon-rabbit {
    display: none;
  }
}
.footer .footer-walk {
  position: absolute;
  left: 240px;
  top: -50px;
  pointer-events: none;
  width: 453px;
  height: 413px;
}
@media (max-width: 1400px) {
  .footer .footer-walk {
    display: none;
  }
}
.footer .paw {
  width: 100%;
  height: 100%;
  background-image: none;
  background-repeat: no-repeat;
  background-size: contain;
  animation: walking-frames 15s step-end infinite;
}

.footer-content-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
.footer-content-wrap.copyright {
  align-items: end;
}
@media (max-width: 769px) {
  .footer-content-wrap.copyright {
    justify-content: unset;
  }
}
.footer-content-wrap .col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-content-wrap .col a {
  font-family: var(--fm-base);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0;
  vertical-align: middle;
}
@media (max-width: 1400px) {
  .footer-content-wrap {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
}

.footer-logo-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 199px;
  height: auto;
}

.footer-logo {
  width: 100%;
  height: auto;
}

.footer-social-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-social-block .social_sidebar-icon {
  opacity: 80%;
  width: 50px;
  height: 50px;
}
.footer-social-block .social_sidebar-icon::before {
  content: url("../image/stroke-white.svg");
}
.footer-social-block .social_sidebar-icon:hover {
  opacity: 1;
}

.footer-menu-container {
  display: block;
}
@media (max-width: 1030px) {
  .footer-menu-container {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.footer-menu-block {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  z-index: 10;
}
@media (max-width: 1400px) {
  .footer-menu-block {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 769px) {
  .footer-menu-block {
    flex-wrap: wrap;
    justify-content: start;
  }
}
@media (max-width: 576px) {
  .footer-menu-block {
    gap: 40px;
  }
}
.footer-menu-block a:hover {
  text-decoration: underline;
}

.footer-column {
  display: flex;
  flex-direction: column;
  width: 309px;
  gap: 22px;
}
@media (max-width: 576px) {
  .footer-column {
    width: 100%;
  }
}
@media (max-width: 1030px) {
  .footer-column .footer-menu-container {
    display: none;
  }
}
.footer-column .sub-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 1030px) {
  .footer-column .sub-column {
    display: none;
  }
}
.footer-column span {
  display: none;
  align-items: center;
  justify-content: center;
  background: url("../image/arrow-white-menu.svg") no-repeat;
  background-size: cover;
  width: 20px;
  height: 17px;
  transition: transform 0.3s ease-in-out;
}
@media (max-width: 1030px) {
  .footer-column span {
    display: flex;
  }
}
.footer-column.opened .sub-column,
.footer-column.opened .footer-menu-container {
  display: block;
}
.footer-column.opened h3 span {
  transform: rotate(180deg);
  transition: transform 0.3s ease-in-out;
}

.footer-list-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-list-menu li {
  font-family: var(--fm-base);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0;
  vertical-align: middle;
}
.footer-list-menu .sub-menu {
  display: none;
}

.footer-info-block {
  display: flex;
  justify-content: flex-end;
  width: 309px;
}

.footer-column-wrap {
  display: flex;
  flex-direction: row;
  align-items: end;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .footer-column-wrap {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: flex-start;
    gap: 8px;
  }
}

.copyright {
  margin-top: 26px;
}
@media (max-width: 576px) {
  .copyright {
    gap: 8px;
  }
  .copyright .footer-column .footer-menu-container {
    display: flex !important;
    justify-content: start;
  }
}
.copyright .footer-list-menu {
  color: var(--color-white);
  font-family: var(--fm-base);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 128.571% */
}
.copyright .footer-list-menu a, .copyright .footer-list-menu li {
  font-size: inherit;
}
.copyright .footer-column {
  justify-content: end;
  opacity: 80%;
}
.copyright .footer-column:hover {
  opacity: 1;
}

.site-footer__copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.site-footer__copy span {
  display: block;
}

@keyframes rabbit {
  0% {
    top: 0;
  }
  50% {
    top: -350px;
  }
  100% {
    top: -150px;
  }
}
@keyframes walking-frames {
  0% {
    background: url("../image/walk/1.svg");
  }
  8% {
    background: url("../image/walk/2.svg");
  }
  17% {
    background: url("../image/walk/3.svg");
  }
  26% {
    background: url("../image/walk/4.svg");
  }
  35% {
    background: url("../image/walk/5.svg");
  }
  44% {
    background: url("../image/walk/6.svg");
  }
  53% {
    background: url("../image/walk/7.svg");
  }
  62% {
    background: url("../image/walk/8.svg");
  }
  71% {
    background: url("../image/walk/9.svg");
  }
  80% {
    background: url("../image/walk/10.svg");
  }
  87% {
    background: url("../image/walk/11.svg");
  }
  94% {
    background: url("../image/walk/12.svg");
  }
  100% {
    background: url("../image/walk/0.svg");
  }
}
@keyframes walking-opacity {
  0%, 3% {
    opacity: 0;
  }
  7% {
    opacity: 1;
  }
  86% {
    opacity: 1;
  }
  94% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
