@charset "UTF-8";

/* Addition folder */

.header {
  position: relative;
  padding: 23px 0 30px 0;
  /*--------------*/
}

.header__container {
  position: relative;
  max-width: 1300px;
  width: 100%;
  margin: 0;
}

.header .header-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__top {
  position: absolute;
  left: 0;
  width: 100%;
  gap: 15px;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  padding: 0 15px;
  background-color: white;
}

.header__top.slidedown {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999999;
  -webkit-animation: slidedown 0.7s forwards;
          animation: slidedown 0.7s forwards;
  -webkit-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
          box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 7px 15px;
}

.header__top.slidedown .header-container {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
}

@-webkit-keyframes slidedown {
  from {
    top: -250px;
  }

  to {
    top: 0;
  }
}

@keyframes slidedown {
  from {
    top: -250px;
  }

  to {
    top: 0;
  }
}

.header__logo {
  display: block;
  max-width: 225px;
  min-width: 150px;
  min-height: 50px;
  width: 100%;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.header__info-svg {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--general-orange-color);
  border-radius: 100%;
  -webkit-box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.07);
          box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.07);
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

.header__info-svg:hover {
  background-color: #f8e5c2;
}

.header__info .count {
  position: absolute;
  top: -5px;
  right: 0px;
  content: "";
  width: 22px;
  height: 22px;
  background-color: var(--green-color);
  color: var(--white-color);
  font-size: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100%;
}

.header__burger-menu {
  display: none;
}

.header__burger-txt {
  display: none;
  font-family: Nunito, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24.55px;
}

.header__burger-title {
  display: none;
}

/*------Menu------*/

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}

.menu__link {
  font-family: Nunito, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24.55px;
  color: var(--black-color);
}

.menu__link:hover {
  color: rgb(219, 181, 101);
}

#nav-icon3 {
  width: 30px;
  height: 25px;
  position: relative;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  z-index: 9999999999;
  cursor: pointer;
}

#nav-icon3 span {
  display: block;
  position: absolute;
  height: 3.75px;
  width: 100%;
  background: var(--black-color);
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  border-radius: 10px;
}

#nav-icon3 span:nth-child(1) {
  top: 0px;
}

#nav-icon3 span:nth-child(2),
#nav-icon3 span:nth-child(3) {
  top: 8px;
}

#nav-icon3 span:nth-child(4) {
  top: 16px;
}

#nav-icon3.open span:nth-child(1) {
  top: 0px;
  width: 0%;
  left: 50%;
}

#nav-icon3.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

#nav-icon3.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

#nav-icon3.open span:nth-child(4) {
  top: 10px;
  width: 0%;
  left: 50%;
}

/* Оверлей для затемнення */

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  /* Чорний фон з прозорістю */
  z-index: 999999;
  display: none;
}

.overlay.active {
  display: block;
}

/* Заборона прокрутки */

.no-scroll {
  overflow: hidden;
}

/*--------------*/

/*---Category----*/

.category__blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 34px;
  padding-top: 100px;
}

.category__blocks.active {
  max-width: 100%;
  width: 100%;
}

.no-webp .category__button{
  background-image: url("./../img/home/bg-header-details.png"); }

.category__button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0px 25px;
  background-color: var(--decoration-orange-color);
  color: var(--black-color);
  border-radius: 30px;
  max-width: 315px;
  width: 100%;
  height: 68px;
  font-family: Nunito, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24.55px;
  background-image: url("./../img/home/bg-header-details.webp");
  background-repeat: no-repeat;
  background-size: cover;
}

.category__button.close {
  display: none;
}

.no-webp .category__details{
  background-image: url("./../img/home/bg-header-details.png"); }

.category__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  background-color: var(--decoration-orange-color);
  background-image: url("./../img/home/bg-header-details.webp");
  background-repeat: no-repeat;
  background-size: cover;
  height: 68px;
  padding: 4px;
  border-radius: 100px;
  gap: 20px;
}

.category__search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  max-width: 640px;
  width: 100%;
  background-color: var(--white-color);
  height: 100%;
  border-radius: 100px;
  padding: 0 4px 0 25px;
}

.category__search.active {
  max-width: 100%;
  width: 100%;
  background-color: var(--general-orange-color);
  padding: 0 4px 0 5px;
}

.category__search input {
  width: 90%;
}

.category__search button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--decoration-orange-color);
  border-radius: 100px;
  min-width: 50px;
  height: 50px;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

.category__search button:hover {
  background-color: #f8e5c2;
}

.category__numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 300px;
  min-width: 300px;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  background-color: var(--white-color);
  z-index: 9999;
}

.category__numbers #line-call {
  width: 40px;
  height: 40px;
}

.category .category__numbers {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 300px;
  min-width: 300px;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  background-color: var(--white-color);
  cursor: pointer;
}

.category .category__numbers .category__numbers-move {
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.category .category__numbers:hover .category__numbers-move,
.category .category__numbers.active .category__numbers-move {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.category .category__numbers .category__number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 10px 0;
  cursor: pointer;
}

.category .category__numbers .category__number p {
  margin: 0;
}

.category .category__numbers .category__number span {
  font-size: 14px;
}

.category .category__numbers .category__number.active {
  color: #888;
}

.category .category__numbers .category__number-added {
  position: absolute;
  top: 100px;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: top 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
  transition: top 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
  background-color: var(--white-color);
  width: 300px;
  border-radius: 10px;
  -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
          box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 25px 10px;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  display: flex;
  gap: 5px;
}

.category .category__numbers .category__number-added .category__number {
  margin: 0;
}

.category .category__numbers:hover .category__number-added,
.category .category__numbers.active .category__number-added {
  top: 60px;
  opacity: 1;
  visibility: visible;
}

.category .category__numbers #line-call {
  width: 40px;
  height: 40px;
}

.category__number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 0 4px 0 25px;
}

.category__number div p {
  font-size: 14px;
  color: var(--general-grey-color);
  font-weight: 400;
}

.category__number div span {
  font-family: Nunito, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24.55px;
  color: var(--black-color);
  font-weight: 700;
}

.category__number #move {
  margin-left: 13px;
}

.category__numbers-secondary {
  position: relative;
  display: none;
  width: 100%;
  padding-top: 15px;
}

.category__numbers-secondary::before {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  content: "";
  border: 1px solid rgb(239, 234, 228);
  width: 90%;
  height: 2px;
}

.category__numbers-secondary #line-call {
  width: 35px;
  height: 35px;
}

.category__numbers-secondary .num-line {
  color: var(--black-color);
  font-family: Nunito, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24.55px;
  font-size: 16px;
  font-weight: 700;
  line-height: 21.82px;
}

.category__numbers-secondary p {
  font-size: 14px;
  color: var(--general-grey-color);
  font-weight: 400;
}

.footer {
  background-color: rgb(249, 246, 243);
  padding: 80px 0 0 0;
  /*----------*/
}

.footer__container {
  position: relative;
}

.footer__block {
  position: relative;
  width: 100%;
}

.no-webp .footer__subscrive{
  background-image: url("./../img/home/bg-header-details.png"); }

.footer__subscrive {
  position: absolute;
  top: -120px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: var(--decoration-orange-color);
  background-image: url("./../img/home/bg-header-details.webp");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 80px;
  padding: 0 0 0 25px;
  border-radius: 100px;
}

.footer__subscrive svg {
  width: 70px;
  height: 50px;
}

.footer__subscrive-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
  font-family: Nunito, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24.55px;
  font-size: 22px;
  font-weight: 600;
}

.footer__subscrive-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 9px;
  gap: 10px;
  max-width: 680px;
  width: 100%;
}

.footer__subscrive-form input {
  max-width: 475px;
  width: 100%;
  background-color: var(--white-color);
  height: 100%;
  border-radius: 30px;
  padding: 0 30px;
}

.footer__subscrive-form button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgb(219, 181, 101);
  max-width: 200px;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  color: var(--black-color);
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

.footer__subscrive-form button:hover {
  background-color: rgba(219, 182, 101, 0.729);
}

.footer__subscrive-form button {
  font-family: Nunito, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24.55px;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer__blocks {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 110px;
  padding-bottom: 30px;
}

.footer__logo {
  display: block;
  max-width: 250px;
  min-width: 180px;
  width: 100%;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 30px;
}

.footer h3 {
  margin-bottom: 20px;
  color: var(--black-color);
  font-family: Nunito, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24.55px;
  font-weight: 800;
}

.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}

.footer__list a {
  font-family: Nunito, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24.55px;
  color: var(--black-color);
}

.footer__list a:hover {
  color: rgb(219, 181, 101);
}

.footer__below {
  background-color: rgb(239, 234, 228);
  padding: 10px 0;
}

.footer__below p {
  font-family: Nunito, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24.55px;
  font-size: 16px;
}

.footer__below-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.breadcrumbs {
  padding-bottom: 40px;
}

.breadcrumbs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  margin: 0;
}

.breadcrumbs__list #home-icon {
  width: 22px;
  height: 24px;
}

.breadcrumbs__item {
  font-family: Nunito, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24.55px;
  font-size: 16px;
  padding: 0;
  margin: 0;
  line-height: 0;
}

.breadcrumbs a {
  color: var(--black-color);
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 340px;
  width: 100%;
  border-radius: 16px;
  margin: 0 auto;
  margin-bottom: 160px;
}

.pagination .arrow,
.pagination .page {
  border: none;
  color: #333;
  padding: 15px 25px;
  cursor: pointer;
  font-size: 16px;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}

.pagination .page {
  border-left: 1px solid rgb(244, 244, 244);
  border-right: 1px solid rgb(244, 244, 244);
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}

.pagination .arrow.left {
  border-radius: 16px 0 0 16px;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}

.pagination .arrow.right {
  border-radius: 0px 16px 16px 0;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}

.pagination .arrow:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.pagination .page.active {
  background-color: #f4d9a3;
  color: #000;
}

.pagination .arrow:hover:not(:disabled) {
  background-color: #eee;
}

/* Config folder */

/* Reset and base styles  */

* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

/* Links */

a,
a:link,
a:visited {
  text-decoration: none;
}

a,
a:hover {
  text-decoration: none;
}

/* Common */

aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

address {
  font-style: normal;
}

/* Form */

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type=submit] {
  display: inline-block;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

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

label {
  cursor: pointer;
}

legend {
  display: block;
}

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Nunito", serif;
  font-weight: 500;
  scroll-behavior: smooth;
}

[class*=__container] {
  max-width: 1315px;
  margin: 0 auto;
  padding: 0 15px;
}

html {
  height: 100%;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100vh;
}

.page {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.menu__link.active {
  color: var(--2, rgb(219, 181, 101));
}

.content-below--heart {
  color: black;
  stroke: rgb(219, 181, 101);
  fill: transparent;
}

.content-below--heart.active use {
  color: rgb(219, 181, 101);
  fill: rgb(219, 181, 101);
}

.content-below--heart.active svg {
  fill: rgb(219, 181, 101);
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--general-orange-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 999999;
  opacity: 1;
  -webkit-transition: opacity 0s;
  transition: opacity 0s;
  /* без плавності */
}

#preloader-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 1;
  -webkit-transition: opacity 0s;
  transition: opacity 0s;
}

#logoEmpty {
  position: relative;
  z-index: 10;
}

#logoEmpty img {
  max-width: 500px;
  width: 350px;
}

body.is-home #nav-icon3 {
  position: relative;
  z-index: 9;
}

:root {
  /* Colors & Background */
  --white-color: #fff;
  --black-color: #000;
  --general-orange-color: rgba(241, 219, 172, 1);
  --green-color: rgb(56, 136, 49);
  --decoration-orange-color: rgba(241, 219, 172, 1);
  --general-grey-color: rgb(111, 111, 111);
}

/* Components folder */

/* Config folder */

.main {
  margin-bottom: 30px;
}

.main__blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 34px;
}

.main .main__slider {
  position: relative;
}

.main__general {
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  padding: 95px 0 0px 50px;
}

.main__title {
  font-size: 62px;
  font-weight: 900;
  line-height: 84.57px;
  color: rgb(224, 192, 123);
}

.main__descript {
  max-width: 530px;
  width: 100%;
  font-family: Nunito, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24.55px;
  line-height: 30px;
  margin-bottom: 40px;
  margin-top: 20px;
}

.no-webp .main__btn{
  background-image: url("./../img/home/bg-header-button.png"); }

.main__btn {
  background-image: url("./../img/home/bg-header-button.webp");
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 220px;
  width: 100%;
  padding: 18px 0;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: Nunito, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24.55px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--black-color);
}

.main .main__slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-height: 520px;
  height: 520px;
}

.main .main__slider .main__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 1.5s ease;
  transition: opacity 1.5s ease;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.main .main__slider .main__slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 999;
}

.no-webp .main .main__slider .main__slide.active[data-index="0"]{
  background-image: url("/wp-content/uploads/2026/02/frame-12.jpg"); }

 .main .main__slider .main__slide.active[data-index="0"] {
  background-image: url("/wp-content/uploads/2026/02/frame-12.jpg");
}

/*.no-webp .main .main__slider .main__slide.active[data-index="1"]{
  background-image: url("./../img/home/bg-main.png"); }

.main .main__slider .main__slide.active[data-index="1"] {
  background-image: url("./../img/home/bg-main.webp");
}

.no-webp .main .main__slider .main__slide.active[data-index="2"]{
  background-image: url("./../img/home/bg-main.png"); }

.main .main__slider .main__slide.active[data-index="2"] {
  background-image: url("./../img/home/bg-main.webp");
} */

.main .main__slider .main__slide .main__btn {
  pointer-events: auto;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  z-index: 9999;
  border: 2px solid var(--general-orange-color);
}

.main .main__slider .main__slide .main__btn:hover {
  background-image: none;
  background-color: var(--white-color);
  color: var(--black-color);
  border: 2px solid var(--general-orange-color);
}

.main .main__slider .main__pagination {
  position: absolute;
  bottom: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  z-index: 999;
}

.main .main__slider .main__pagination .main__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: white;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
}

.main .main__slider .main__pagination .main__dot.active {
  background-color: var(--general-orange-color);
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
}

.all-categories {
  max-width: 315px;
  width: 100%;
  -webkit-box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.07);
  border-radius: 50px;
}

body.is-home .all-categories {
  display: none;
}

body.is-home .all-categories.active {
  display: block;
}

body.is-category-page .all-categories {
  position: absolute;
  z-index: 9999;
  background-color: white;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.1s ease;
  transition: opacity 0.1s ease;
  border-radius: 50px;
}

body.is-category-page .all-categories.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.all-categories__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0;
  margin: 0;
}

.all-categories__list li {
  padding: 0;
  margin: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.all-categories__list li:first-child {
  border-radius: 50px 50px 0 0;
}

.all-categories__list li:last-child {
  border-radius: 0 0 50px 50px;
}

.all-categories__list li:hover {
  background-color: rgba(250, 239, 219, 0.6901960784);
  color: white;
  -webkit-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}

.all-categories__list li:hover .name h3 {
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
  color: #bf8347;
}

.all-categories__list li:hover p {
  color: #5a4b3c;
}

.all-categories .line {
  border: 1px solid rgb(243, 243, 243);
  height: 1px;
  width: 100%;
}

.all-categories__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  padding: 20px 15px;
}

.all-categories__link img {
  max-width: 50px;
  width: 50px;
  height: 50px;
}

.all-categories .name {
  font-family: Nunito, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24.55px;
}

.all-categories .name h3 {
  font-size: 20px;
  color: var(--black-color);
  font-weight: 900;
}

.all-categories .name p {
  color: var(--general-grey-color);
  font-size: 12px;
  line-height: 16px;
}

.all-categories__item {
  border-bottom: 1px solid rgb(243, 243, 243);
  /* Лінія між елементами */
  padding-bottom: 15px;
}

.all-categories__item:last-child {
  border-bottom: none;
  /* Видаляємо лінію для останнього елемента */
}

/*-----------------------------------------------------*/

.advantages__blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}

.advantages__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  max-width: 415px;
  width: 100%;
  border: 1px solid rgb(243, 243, 243);
  padding: 30px 25px;
  border-radius: 30px;
  cursor: pointer;
}

.advantages__block img {
  max-width: 50px;
  min-width: 50px;
  height: 50px;
}

.advantages__block .name {
  font-family: Nunito, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24.55px;
}

.advantages__block .name h3 {
  font-size: 20px;
  color: var(--black-color);
  font-weight: 900;
}

.advantages__block .name p {
  color: var(--general-grey-color);
  font-size: 12px;
  line-height: 16px;
}

/*-----------------------------------------------------*/

.trending {
  margin-top: 120px;
}

.trending__title {
  font-family: Nunito, sans-serif;
  font-size: 30px;
  font-weight: 900;
  line-height: 40.92px;
  text-align: center;
  color: var(--black-color);
  margin-bottom: 20px;
}

.trending__descript {
  font-family: Nunito, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24.55px;
  text-align: center;
  color: var(--general-grey-color);
  margin-bottom: 60px;
}

.tabs__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  /* Приховуємо горизонтальний скролбар */
  /* Для мобільних пристроїв, де може бути видна смуга прокручування */
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.tabs__buttons ::-webkit-scrollbar {
  display: none;
}

.tabs__buttons ::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

.tabs__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  position: relative;
  fill: transparent;
  color: #000000;
  stroke: transparent;
}

.tabs__btn::before {
  position: absolute;
  height: 2px;
  width: 100%;
  left: 0;
  bottom: -30px;
  content: "";
  background-color: var(--general-orange-color);
  z-index: 99999;
  display: none;
}

.tabs__btn img {
  width: 50px;
  height: 50px;
}

.tabs__btn use {
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}

.tabs__btn p {
  font-family: Nunito, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24.55px;
  color: var(--black-color);
  font-size: 16px;
}

.tabs__btn.active svg {
  color: #dbb565;
  stroke: #dbb565;
  fill: #dbb565;
}

.tabs__btn.active path {
  color: #dbb565;
  stroke: #dbb565;
  fill: #dbb565;
}

.tabs__btn.active use {
  color: #dbb565;
  stroke: #dbb565;
  fill: #dbb565;
}

.tabs__btn.active p {
  color: #dbb565;
}

.tabs__btn.active::before {
  display: block;
}

.tabs .line {
  height: 1px;
  width: 100%;
  margin-bottom: 40px;
  border: 1px solid rgb(243, 243, 243);
}

.content__blocks {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  display: none;
}

.content__block {
  position: relative;
  padding: 20px 25px;
  -webkit-box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.07);
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.content__block img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 30px;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
  height: auto;
  max-width: 150px;
}

.content__block-details {
  position: absolute;
  top: 15px;
  left: 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  font-size: 14px;
  font-weight: 600;
}

.content__block-details div {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 5px 15px;
  -webkit-box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.07);
  border-radius: 30px;
  white-space: nowrap;
}

.content__block-details .hit {
  background-color: var(--green-color);
  width: 50px;
}

.content__block-details .promotion {
  background: rgb(255, 126, 79);
  width: 70px;
}

.content__block-details .new {
  background: rgb(241, 219, 172);
}

.content__block .content-below {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  gap: 5px;
}

.content__block .content-below svg {
  position: relative;
  min-width: 27px;
  width: 27px;
  height: 27px;
}

.content__block .content-below .content-below-heart {
  padding: 0;
  margin: 0;
  padding: 10px;
  border: 1px solid #f1dbac;
  border-radius: 30px;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

.content__block .content-below .content-below-heart:hover {
  background-color: #f8e5c2;
}

.content__block .content-below .content-below-heart img,
.content__block .content-below .content-below-heart i {
  display: block;
  z-index: 999;
  width: 27px;
  height: 27px;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 0;
  margin: 0;
  line-height: 0;
}

.content__block .content-below .button-basket {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--black-color);
  display: flex;
  gap: 10px;
  padding: 12px;
  font-family: Nunito, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24.55px;
  font-size: 16px;
  font-weight: 700;
  background-color: var(--general-orange-color);
  color: var(--black-color);
  border-radius: 16px;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

.content__block .content-below .button-basket:hover {
  background-color: #f8e5c2;
}

.content__block .content-below .button-basket img {
  padding: 0;
  margin: 0;
  min-width: 27px;
  width: 27px;
  height: 27px;
  -o-object-fit: contain;
     object-fit: contain;
}

.content__block-info {
  font-family: Nunito, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24.55px;
}

.content__block-info .name {
  color: var(--black-color);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.content__block-info .descript {
  color: var(--general-grey-color);
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 15px;
}

.content__block-info .price {
  font-weight: 800;
  font-size: 24px;
  margin-bottom: 25px;
  color: var(--black-color);
}

.content__block-info .button-basket svg {
  min-width: 27px;
  max-width: 27px;
  height: 27px;
}

.content__heart {
  width: 27px;
  height: 27px;
}

.content__blocks.active {
  display: -ms-grid;
  display: grid;
}

/*-----------------------------------------------------*/

.benefits {
  position: relative;
  padding-top: 120px;
  padding-bottom: 180px;
}

.benefits::after {
  content: "";
  position: absolute;
  right: 250px;
  bottom: 80px;
  width: 70px;
  height: 70px;
  background-image: url("./../img/home/benefits/decor-03.svg");
  background-size: cover;
  background-position: center;
}

.benefits__blocks {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
}

/* .benefits__blocks::before {
  content: "";
  position: absolute;
  left: 280px;
  top: 230px;
  width: 122px;
  height: 122px;
  background-image: url("./../img/home/benefits/decor-01.svg");
  background-size: cover;
  background-position: center;
} */

/* .benefits__blocks::after {
  content: "";
  position: absolute;
  right: 280px;
  top: 0;
  width: 70px;
  height: 70px;
  background-image: url("./../img/home/benefits/decor-02.svg");
  background-size: cover;
  background-position: center;
} */

.benefits__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  max-width: 360px;
  width: 100%;
  font-family: Nunito, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24.55px;
}

.benefits__item img {
  width: 60px;
  height: 60px;
}

.benefits__item h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--green-color);
}

.benefits__item p {
  font-size: 16px;
  color: var(--general-grey-color);
}

.benefits__image {
  position: relative;
  max-width: 100%;
}

/* .no-webp .benefits__image::before{
  background-image: url("./../img/home/bg-product-mark-02.png"); }

.benefits__image::before {
  position: absolute;
  bottom: -70px;
  left: 52%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 300px;
  width: 100%;
  height: 300px;
  content: "";
  background-image: url("./../img/home/bg-product-mark-02.webp");
  background-size: cover;
  background-repeat: no-repeat;
} */

.benefits__image img {
  -o-object-fit: contain;
     object-fit: contain;
}

.benefits__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 65px;
}

.benefits__list-second {
  text-align: right;
  max-width: 300px;
  width: 100%;
}

.benefits__list-second img {
  margin-left: auto;
}

/*-----------------------------------------------------*/

.no-webp .offers{
  background-image: url("./../img/home/bg-offers.png"); }

.offers {
  padding: 80px 0 100px 0;
  background-color: #f9f6f3;
  background-image: url("./../img/home/bg-offers.webp");
  background-repeat: no-repeat;
  background-size: cover;
}

.offers .swipe1 {
  width: 100%;
  height: 100%;
}

.offers .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.offers__wrapper {
  position: relative;
}

.offers__blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;
}

.offers__blocks::-webkit-scrollbar {
  display: none;
}

.offers .offers__block {
  position: relative;
  padding: 40px 60px;
  -webkit-box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.07);
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--white-color);
  color: var(--black-color);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 620px;
          flex: 0 0 620px;
  width: 100%;
}

.offers .offers__block svg {
  width: 25px;
  height: 25px;
}

.offers .offers__block .button-basket img {
  padding: 0;
  margin: 0;
  min-width: 27px;
  width: 27px;
  height: 27px;
  -o-object-fit: contain;
     object-fit: contain;
}

.offers .offers__block-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: Nunito, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24.55px;
}

.offers .offers__block-info h3,
.offers .offers__block-info p,
.offers .offers__block-info span {
  color: var(--black-color);
}

.offers .offers__block-info .descript {
  color: var(--general-grey-color);
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 15px;
}

.offers .offers__block .offers__name {
  color: var(--black-color);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.offers .offers__block .offers__text {
  color: var(--general-grey-color);
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 15px;
  max-width: 320px;
  width: 100%;
}

.offers .offers__block-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.offers .offers__block-price .new {
  font-size: 24px;
  font-weight: 800;
  line-height: 32.74px;
}

.offers .offers__block-price .old {
  text-decoration: line-through;
  color: var(--general-grey-color);
  font-size: 16px;
  font-weight: 800;
  line-height: 21.82px;
}

.offers .offers__block .offers__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  gap: 5px;
}

.offers .offers__block .offers__actions svg {
  position: relative;
  min-width: 27px;
  width: 27px;
  height: 27px;
}

.offers .offers__block .offers__actions .content-below-heart {
  padding: 0;
  margin: 0;
  padding: 10px;
  border: 1px solid #f1dbac;
  border-radius: 30px;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

.offers .offers__block .offers__actions .content-below-heart:hover {
  background-color: #f8e5c2;
}

.offers .offers__block .offers__actions .content-below-heart svg {
  display: block;
  width: 25px;
  height: 25px;
}

.offers .offers__block .offers__actions .button-basket {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--black-color);
  display: flex;
  gap: 10px;
  padding: 12px;
  font-family: Nunito, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24.55px;
  font-size: 16px;
  font-weight: 700;
  background-color: var(--general-orange-color);
  color: var(--black-color);
  border-radius: 16px;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

.offers .offers__block .offers__actions .button-basket:hover {
  background-color: #f8e5c2;
}

.offers .offers__block .offers__actions .button-basket svg {
  width: 25px;
  height: 25px;
}

.offers .offers__block .content__block-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

.offers .offers__block .content-below-heart {
  padding: 0;
  margin: 0;
  padding: 10px;
  border: 1px solid #f1dbac;
  border-radius: 30px;
}

.offers .offers__block .content-below-heart img {
  display: block;
  z-index: 999;
  width: 27px;
  height: 27px;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 0;
  margin: 0;
  line-height: 0;
}

.offers__image {
  min-width: 90px;
  min-height: 100px;
}

.offers .navigation-offers-1 {
  position: absolute;
  top: 65%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 99999;
}

.offers .navigation-offers-1 .next1,
.offers .navigation-offers-1 .prev1 {
  position: relative;
  width: 50px;
  height: 50px;
  -webkit-box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.07);
  border-radius: 30px;
  cursor: pointer;
  background-color: white;
  /* Додаємо фон для видимості */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* Визначаємо блок */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /* Центруємо іконку */
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

.offers .navigation-offers-1 .next1:hover,
.offers .navigation-offers-1 .prev1:hover {
  background-color: #f8e5c2;
}

.offers .navigation-offers-1 .next1::before,
.offers .navigation-offers-1 .prev1::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 15px;
  height: 15px;
  background-repeat: no-repeat;
  background-size: contain;
}

.offers .navigation-offers-1 .next1 {
  right: -100px;
  background-color: white;
  position: relative;
}

.offers .navigation-offers-1 .next1::before {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50% -50%);
      -ms-transform: translate(-50% -50%);
          transform: translate(-50% -50%);
  background-image: url("./../img/icon/next-icon2.svg");
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 10px;
  height: 15px;
}

.offers .navigation-offers-1 .prev1 {
  left: -100px;
  background-color: white;
}

.offers .navigation-offers-1 .prev1::before {
  background-image: url("./../img/icon/prev-icon.svg");
  width: 10px;
  height: 15px;
}

/*-----------------------------------------------------*/

.blog {
  padding: 80px 0 0 0;
}

.blog__blocks {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  border-bottom: 1px solid rgb(243, 243, 243);
  padding-bottom: 50px;
}

.blog__blocks::-webkit-scrollbar {
  display: none;
}

.blog__blocks .blog__block {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 413px;
          flex: 0 0 413px;
}

.blog__wrapper {
  position: relative;
}

.blog .navigation {
  position: absolute;
  top: 55%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 999;
}

.blog .navigation .next,
.blog .navigation .prev {
  position: relative;
  width: 50px;
  height: 50px;
  -webkit-box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.07);
  border-radius: 30px;
  cursor: pointer;
  z-index: 1000;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

.blog .navigation .next:hover,
.blog .navigation .prev:hover {
  background-color: #f8e5c2;
}

.blog .navigation .next::before,
.blog .navigation .prev::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 15px;
  height: 15px;
  background-repeat: no-repeat;
  background-size: contain;
}

.blog .navigation .next {
  right: -100px;
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.blog .navigation .next::before {
  background-image: url("./../img/icon/next-icon.svg");
  width: 10px;
  height: 15px;
}

.blog .navigation .prev {
  left: -100px;
  background-color: white;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.blog .navigation .prev::before {
  background-image: url("./../img/icon/prev-icon.svg");
  width: 10px;
  height: 15px;
}

.blog__info {
  padding: 30px 5px;
  text-align: center;
  font-weight: 600;
  color: var(--black-color);
  font-family: Nunito, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24.55px;
}

.blog__info h3 {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 22px;
}

.blog__info p {
  font-size: 16px;
}

.blog__info .calendar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--general-grey-color);
  margin-bottom: 15px;
}

/*-----------------------------------------------------*/

.company {
  padding: 50px 0 0 0;
  padding-bottom: 130px;
}

.company__blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
  padding: 0 50px;
}

.company__blocks img {
  width: 100px;
  min-width: 60px;
  min-height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -o-object-fit: contain;
     object-fit: contain;
}

/* Прибираємо стандартні стилі кнопок */

.swiper-container .swiper-button-prev,
.swiper-container .swiper-button-next {
  background: none !important;
  /* Прибираємо стандартний фон */
  border: none !important;
  /* Прибираємо рамки */
  outline: none !important;
  /* Прибираємо контур */
  width: 0 !important;
  /* Прибираємо ширину */
  height: 0 !important;
  /* Прибираємо висоту */
  padding: 0 !important;
  /* Прибираємо відступи */
  background-image: none !important;
  /* Прибираємо стандартні іконки */
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

/* Прибираємо псевдоелемент ::after для кнопок */

.swiper-container .swiper-button-prev::after,
.swiper-container .swiper-button-next::after {
  content: none !important;
  /* Видаляємо вміст псевдоелемента */
  background: none !important;
  /* Прибираємо фонове зображення */
  display: none !important;
  /* Прибираємо відображення */
  opacity: 0 !important;
  /* Прибираємо прозорість */
  visibility: hidden !important;
  /* Прибираємо видимість */
}

.shop__blocks {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 34px;
  margin-bottom: 60px;
}

.shop__search {
  max-width: 315px;
  width: 100%;
}

.shop__search-top {
  background: rgb(239, 234, 228);
  padding: 17px 22px;
  border-radius: 16px 16px 0px 0px;
  font-family: Nunito, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24.55px;
  font-weight: 700;
}

.shop__search-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1px;
  padding: 25px 25px 0 25px;
}

.shop__search-below {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin-bottom: 20px;
  height: 100%;
}

.shop__accordion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.shop__accordion button {
  font-family: Nunito, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24.55px;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: var(--black-color);
}

.shop__accordion.active button {
  font-weight: bold;
}

.shop__panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  gap: 15px;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.2s ease-out, opacity 0.2s ease-out, margin 0.2s ease-out;
  transition: max-height 0.2s ease-out, opacity 0.2s ease-out, margin 0.2s ease-out;
  opacity: 0;
  margin: 0;
}

.shop__panel.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-height: auto;
  opacity: 1;
  padding: 0;
  margin-top: 15px;
}

.shop__filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.shop__filter-label .shop__filter-checkbox {
  display: none;
}

.no-webp .shop__filter-label .shop__filter-checkbox:checked + .shop__filter-custom-checkbox{
  background-image: url("./../img/home/check-icon.png"); }

.shop__filter-label .shop__filter-checkbox:checked + .shop__filter-custom-checkbox {
  background-image: url("./../img/home/check-icon.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 16px;
  height: 16px;
  z-index: 99999;
  display: block;
}

.shop .move {
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.shop .shop__accordion.active .move {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.shop .content__blocks {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}

.shop .shop__filter-custom-checkbox {
  width: 16px;
  height: 16px;
  border: 2px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
}

.shop__filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  width: 100%;
}

.shop__filter-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.shop__filter-label .shop__filter-checkbox {
  display: none;
}

.shop__filter-label .shop__filter-custom-checkbox {
  width: 16px;
  height: 16px;
  border: 2px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.no-webp .shop__filter-label .shop__filter-checkbox:checked + .shop__filter-custom-checkbox{
  background-image: url("../img/home/check-icon.png"); }

.shop__filter-label .shop__filter-checkbox:checked + .shop__filter-custom-checkbox {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.filters {
  position: absolute;
  right: 0;
  top: 0;
  gap: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}

.filters__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.filters__label {
  color: var(--general-grey-color);
}

.filters__select-wrapper {
  position: relative;
  width: 200px;
}

.filters__select-wrapper-num {
  position: relative;
  width: 100px;
}

.filters__select {
  cursor: pointer;
  background: none;
  border: 1px solid rgb(239, 234, 228);
  border-radius: 16px;
  padding: 15px 50px 15px 25px;
  font-size: 16px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

.filters__select:hover {
  background-color: rgba(238, 238, 238, 0.2901960784);
}

.filters__options {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: white;
  border: 1px solid rgb(239, 234, 228);
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: none;
  /* Приховуємо за замовчуванням */
  z-index: 10;
}

.filters__option {
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
}

.filters__option:hover {
  background: var(--general-orange-color);
}

.filters__icon {
  position: absolute;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  pointer-events: none;
}

.filters__select.open + .filters__options {
  display: block;
}

.filters__select.open .filters__icon {
  -webkit-transform: translateY(-50%) rotate(180deg);
      -ms-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

/*-----------------------------------------------------*/

.products {
  margin-top: 90px;
}

.products .content__blocks {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog-page__blocks {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.blog-page__block {
  width: 100%;
  text-align: center;
  border-radius: 30px;
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
}

.blog-page__block:hover {
  -webkit-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
          box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.blog-page__info {
  font-family: Nunito, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24.55px;
  padding: 30px 5px;
  text-align: center;
  font-weight: 600;
  color: var(--black-color);
}

.blog-page__info h3 {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 22px;
}

.blog-page__info p {
  font-size: 16px;
}

.blog-page__info .calendar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--general-grey-color);
  margin-bottom: 15px;
}

.article {
  padding-bottom: 130px;
  /**/
}

.article__bg img {
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 100%;
}

.article__content-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.article__content-top h1 {
  font-family: Nunito, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24.55px;
  font-size: 28px;
  font-weight: 600;
  line-height: 38px;
}

.article-line {
  background: rgb(239, 234, 228);
  width: 100%;
  height: 1px;
  margin-top: 10px;
  margin-bottom: 40px;
}

.article .calendar {
  padding: 0;
  margin: 0;
}

.article-descript {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  font-family: Nunito, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24.55px;
  font-size: 16px;
}

.article p {
  text-align: justify;
}

.article-descript--secondary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 60px;
  font-family: Nunito, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24.55px;
  font-size: 16px;
}

.article-descript--secondary img {
  min-width: 300px;
  width: 300px;
  height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}

.article-descript--secondary div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.article__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
}

.article__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  padding: 12px;
  background-color: var(--decoration-orange-color);
  border-radius: 16px;
  color: var(--black-color);
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

.article__button:hover {
  background-color: #f8e5c2;
}

.reviews__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
}

.reviews__descript {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.reviews__descript h1 {
  font-size: 30px;
  font-weight: 900;
  line-height: 40.92px;
}

.reviews__descript p {
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  color: var(--general-grey-color);
}

.reviews__contents {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding: 60px 0;
}

.reviews__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
  max-height: 635px;
}

.favorites__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 60px 0 160px 0;
}

.card {
  /* */
}

.card__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}

.card .image-gallery {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin-bottom: 130px;
}

.card .image-gallery__main {
  border: 1px solid rgb(239, 234, 228);
  width: 450px;
  height: 450px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 30px;
}

.card .image-gallery__thumbnails {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.card .image-gallery__thumbnails .thumbnail {
  width: 105px;
  height: 105px;
  border: 1px solid rgb(239, 234, 228);
  border-radius: 16px;
  padding: 18px 25px;
  pointer-events: auto;
}

.card .image-gallery__thumbnails img {
  -o-object-fit: contain;
     object-fit: contain;
  cursor: pointer;
  border: 2px solid transparent;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}

.card__descript-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}

.card__descript-top h1 {
  font-size: 28px;
  font-weight: 600;
  line-height: 38.19px;
}

.card__descript-top .article {
  padding: 0;
  margin: 0;
  font-family: Nunito, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24.55px;
  font-size: 14px;
  background: rgb(248, 248, 248);
  padding: 5px 12px;
  border-radius: 16px;
  color: var(--general-grey-color);
}

.card__descript-text {
  font-family: Nunito, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24.55px;
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 30px;
}

.card__descript-line {
  height: 1px;
  width: 100%;
  background-color: rgb(239, 234, 228);
}

.card__descript-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  margin: 30px 0;
  font-family: Nunito, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24.55px;
}

.card__descript-price .new-price {
  font-size: 24px;
  font-weight: 800;
  line-height: 32.74px;
  padding: 0;
  margin: 0;
}

.card__descript-price .old-price {
  font-size: 16px;
  font-weight: 800;
  text-decoration: line-through;
  color: var(--general-grey-color);
}

.card .flavor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.card .flavor__title {
  font-family: Nunito, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24.55px;
  font-size: 18px;
  font-weight: 700;
}

.card .flavor__blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.card .flavor__block {
  padding: 10px 15px;
  border: 1px solid rgb(239, 234, 228);
  border-radius: 16px;
  cursor: pointer;
  font-family: Nunito, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24.55px;
  font-size: 16px;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

.card .flavor__block:hover {
  background-color: #f8e5c2;
}

.card .flavor__block.active {
  border: none;
  background-color: var(--general-orange-color);
}

.card .size {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin: 20px 0 30px 0;
}

.card .size__title {
  font-family: Nunito, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24.55px;
  font-size: 18px;
  font-weight: 700;
}

.card .size__blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.card .size__block {
  padding: 10px 15px;
  border: 1px solid rgb(239, 234, 228);
  border-radius: 16px;
  cursor: pointer;
  font-family: Nunito, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24.55px;
  font-size: 16px;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

.card .size__block:hover {
  background-color: #f8e5c2;
}

.card .size__block.active {
  border: none;
  background-color: var(--general-orange-color);
}

.card__descript-below {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  margin-top: 34px;
  font-size: 18px;
  font-weight: 700;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 10px;
}

.card__descript-below .button-basket {
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

.card__descript-below .button-basket:hover {
  background-color: #f8e5c2;
}

.card__descript-count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.card__descript-count .card__quantity-input {
  padding: 12px 15px;
  width: 70px;
  border: 1px solid rgb(239, 234, 228);
  border-radius: 16px;
  text-align: center;
  font-size: 18px;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.card__descript-count .card__quantity-input::-webkit-outer-spin-button,
.card__descript-count .card__quantity-input::-webkit-inner-spin-button {
  opacity: 1;
  visibility: visible;
}

.card__descript-count .card__quantity-input {
  padding-right: 10px;
}

.card__descript-basket .button-basket {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--black-color);
  display: flex;
  gap: 10px;
  padding: 12px;
  font-family: Nunito, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24.55px;
  font-size: 16px;
  font-weight: 700;
  background-color: var(--general-orange-color);
  color: var(--black-color);
  border-radius: 16px;
}

.card__descript-basket .button-basket svg {
  min-width: 27px;
  max-width: 27px;
  height: 27px;
}

.card__tabs {
  padding-bottom: 120px;
}

.card__tabs-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.card__tabs-btn {
  padding: 20px 40px;
  border-radius: 16px 16px 0 0;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

.card__tabs-btn:hover {
  background-color: #f8e5c2;
}

.card__tabs-btn.active {
  border: none;
  background-color: var(--general-orange-color);
  display: block;
}

.card__tabs-contents {
  border: 1px solid rgb(239, 234, 228);
  padding: 30px;
  border-radius: 0 16px 16px 0px;
}

.card__tabs-content__first {
  font-family: Nunito, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24.55px;
  font-size: 16px;
  line-height: 26px;
}

.card__tabs-content__first div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 30px;
}

.card__tabs-content {
  display: none;
}

.card__tabs-content.active {
  display: block;
}

.card__tabs .account {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.card__tabs .account__block {
  padding: 20px 30px;
  background-color: #fbfbfb;
  border-radius: 16px;
}

.card__tabs .account__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}

.card__tabs .account__top h3 {
  font-family: Nunito, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24.55px;
  font-size: 16px;
  font-weight: 700;
}

.card__tabs .account__top span {
  font-family: Nunito, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24.55px;
  font-size: 16px;
  color: var(--general-grey-color);
}

.card__tabs .account__message {
  margin-top: 30px;
}

.card__tabs .comment-top {
  margin-top: 60px;
  font-size: 22px;
  font-weight: 700;
  line-height: 30.01px;
  margin-bottom: 30px;
}

.card__tabs .comment__form-top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.card__tabs .comment__form-group {
  border: 1px solid rgb(239, 234, 228);
  padding: 20px 30px;
}

.card__tabs .comment__form-group input {
  width: 100%;
}

.card__tabs .comment__form-btn {
  background-color: var(--general-orange-color);
  font-size: 16px;
  font-weight: 700;
  margin-top: 20px;
  border-radius: 16px;
  float: right;
  height: 55px;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

.card__tabs .comment__form-btn:hover {
  background-color: #f8e5c2;
}

.card__tabs .comment__form-btn a {
  color: var(--black-color);
  padding: 15px 20px;
}

.card__tabs .full-width-textarea {
  width: 100%;
  /* Займає всю ширину контейнера */
  resize: none;
  /* Вимикає можливість зміни розміру */
  padding-bottom: 100px;
}

.card__tabs .full-width-textarea input:focus,
.card__tabs .full-width-textarea textarea:focus,
.card__tabs .full-width-textarea button:focus {
  outline: none;
}

.card__tabs textarea:focus {
  outline: none;
}

.card .recomendation {
  position: relative;
  padding-bottom: 160px;
}

.card .recomendation__title {
  font-family: Nunito, sans-serif;
  font-size: 30px;
  font-weight: 900;
  line-height: 40.92px;
  text-align: center;
  color: var(--black-color);
  margin-bottom: 20px;
  margin-bottom: 60px;
}

.card .recomendation__blocks {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  max-width: 100%;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 20px;
}

.card .recomendation__blocks::-webkit-scrollbar {
  display: none;
}

.card .recomendation .content__block {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 300px;
          flex: 0 0 300px;
}

.card .recomendation__navigation {
  position: absolute;
  /* Фіксувати на сторінці */
  top: 50%;
  left: 50%;
  /* Розміщуємо по центру */
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  /* Центруємо */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  z-index: 999;
}

.card .recomendation__navigation .next,
.card .recomendation__navigation .prev {
  position: relative;
  width: 50px;
  height: 50px;
  -webkit-box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.07);
  border-radius: 30px;
  cursor: pointer;
  z-index: 1000;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

.card .recomendation__navigation .next:hover,
.card .recomendation__navigation .prev:hover {
  background-color: #f8e5c2;
}

.card .recomendation__navigation .next::before,
.card .recomendation__navigation .prev::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 15px;
  height: 15px;
  background-repeat: no-repeat;
  background-size: contain;
}

.card .recomendation__navigation .next {
  right: -70px;
  background-color: white;
}

.card .recomendation__navigation .next::before {
  background-image: url("./../img/icon/next-icon2.svg");
  width: 10px;
  height: 15px;
}

.card .recomendation__navigation .prev {
  left: -55px;
  background-color: white;
}

.card .recomendation__navigation .prev::before {
  background-image: url("./../img/icon/prev-icon.svg");
  width: 10px;
  height: 15px;
}

.contacts {
  margin-bottom: 160px;
}

.contacts__top {
  font-size: 30px;
  font-weight: 900;
  line-height: 40.92px;
  margin-bottom: 60px;
}

.contacts__blocks {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.contacts__block-2 {
  padding-left: 30px;
}

.contacts__form-top {
  font-size: 20px;
  font-weight: 600;
  line-height: 27.28px;
  margin-bottom: 30px;
}

.contacts__form-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}

.contacts__form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 35px;
}

.contacts__form-group label {
  max-width: 200px;
  width: 100%;
  font-family: Nunito, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24.55px;
  font-size: 16px;
  line-height: 21.82px;
}

.contacts__form-group .star {
  color: rgb(255, 126, 79);
}

.contacts__form-group .optionally {
  color: var(--general-grey-color);
}

.contacts__form-input {
  width: 400px;
  border-radius: 100px;
  padding: 20px;
  border: 1px solid rgb(239, 234, 228);
}

.contacts__form-textarea {
  resize: none;
  height: 200px;
  width: 100%;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 30px;
  font-size: 16px;
  outline: none;
}

.contacts__form-button {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 700;
  padding: 15px 25px;
  max-width: 130px;
  width: 100%;
  background-color: var(--general-orange-color);
  border-radius: 16px;
  margin-left: auto;
  display: block;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

.contacts__form-button:hover {
  background-color: #f8e5c2;
}

.contacts .contacts__destination-logo img {
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 130px;
}

.contacts .contacts__destination-blocks {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 70px;
     -moz-column-gap: 70px;
          column-gap: 70px;
}

.contacts .contacts__destination-block h3 {
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 21.82px;
}

.contacts .contacts__destination-block a {
  color: var(--black-color);
}

.contacts .contacts__destination-details {
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 21.82px;
}

.contacts .contacts__destination-line {
  border: 1px solid rgb(239, 234, 228);
  margin: 30px 0;
}

.contacts .contacts__destination-addition {
  font-size: 16px;
  line-height: 24px;
  color: var(--general-grey-color);
}

.basket-page {
  padding-bottom: 160px;
}

.basket-page__blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}

.basket-page__title {
  font-size: 30px;
  font-weight: 900;
  line-height: 40.92px;
  margin-bottom: 60px;
}

.basket-page__title-count {
  color: var(--general-grey-color);
  font-weight: 500;
}

.basket-page__blocks-border {
  border: 1px solid rgb(239, 234, 228);
  border-radius: 16px 16px 0 0;
  padding-bottom: 30px;
}

.basket-page__table {
  max-width: 970px;
  width: 100%;
  border-spacing: 0;
  margin-bottom: 20px;
}

.basket-page__table-header {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.5fr 1fr 1fr 1fr 0.5fr;
  grid-template-columns: 1fr 1.5fr 1fr 1fr 1fr 0.5fr;
  background: rgb(239, 234, 228);
  border: 1px solid rgb(239, 234, 228);
  border-radius: 16px 16px 0 0;
  padding: 10px 0;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  padding-left: 25px;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  text-align: center;
}

.basket-page__table-header .basket-page__table-cell {
  padding: 10px;
}

.basket-page__table-row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2fr 1fr 1fr 1fr 0.5fr;
  grid-template-columns: 1fr 2fr 1fr 1fr 1fr 0.5fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  padding: 20px 30px;
}

.basket-page__table-row:last-child {
  border-bottom: none;
}

.basket-page__table-row .basket-page__table-cell {
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 25px;
}

.basket-page__table-row .basket-page__table-cell--photo {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid rgb(239, 234, 228);
  padding: 15px 10px;
  border-radius: 16px;
}

.basket-page__table-row .basket-page__table-cell--photo .basket-page__photo {
  width: 60px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}

.basket-page__table-row .basket-page__table-cell--name {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.basket-page__table-row .basket-page__table-cell--name .basket-page__product-name {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

.basket-page__table-row .basket-page__table-cell--name .basket-page__product-details {
  font-size: 12px;
}

.basket-page__table-row .basket-page__table-cell--name .basket-page__product-details-num {
  color: var(--general-grey-color);
}

.basket-page__table-row .basket-page__table-cell--quantity,
.basket-page__table-row .basket-page__table-cell--price,
.basket-page__table-row .basket-page__table-cell--total {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}

.basket-page__table-row .basket-page__table-cell--remove {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.basket-page__table-row .basket-page__table-cell--remove .basket-page__remove-btn {
  background: none;
  border: none;
  cursor: pointer;
}

.basket-page__table-row .basket-page__table-cell--remove .basket-page__remove-btn img {
  width: 30px;
  height: 30px;
}

.basket-page .basket-page__line {
  height: 1px;
  background-color: rgb(239, 234, 228);
  width: 100%;
}

.basket-page__promocode {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 40px;
  padding: 0px 30px 0 30px;
}

.basket-page__promocode-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}

.basket-page__promocode-wrapper input {
  border: 1px solid rgb(239, 234, 228);
  padding: 15px 20px;
  font-size: 16px;
  border-radius: 16px;
}

.basket-page__promocode-button {
  padding: 15px 30px;
  font-size: 16px;
  background-color: var(--black-color);
  color: var(--white-color);
  border-radius: 16px;
}

.basket-page__order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 0;
  text-align: center;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
  font-weight: 700;
  background-color: var(--general-orange-color);
  width: 220px;
  border-radius: 16px;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

.basket-page__order:hover {
  background-color: #f8e5c2;
}

.basket-page__order a {
  color: var(--black-color);
  padding: 0 10px;
}

.basket-page__blocks-sum {
  -webkit-box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.07);
  width: 320px;
  padding: 30px 25px 35px 25px;
}

.basket-page__blocks-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.basket-page__blocks-item p {
  font-size: 18px;
  font-weight: 500;
}

.basket-page__blocks-item span {
  font-size: 18px;
  font-weight: 700;
}

.basket-page__blocks-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.basket-page__blocks-result {
  margin-top: 250px;
}

.basket-page__blocks-result .basket-page__line {
  margin-bottom: 30px;
}

.basket-page__blocks-result .basket-page__blocks-item p {
  font-size: 22px;
}

.basket-page__blocks-result .basket-page__blocks-item span {
  font-weight: 700;
  color: var(--2, rgb(219, 181, 101));
  font-size: 22px;
}

.payment {
  /*-----------------------------------------------------*/
  /*-----------------------------------------------------*/
  /*-----------------------------------------------------*/
  /*-----------------------------------------------------*/
}

.payment__blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 160px;
  gap: 100px;
}

.payment__blocks h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 40px;
}

#shipping_method {
  margin-bottom: 40px;
}

.payment__blocks input {
  border: 1px solid rgb(239, 234, 228);
  border-radius: 100px;
  height: 64px;
}

.payment__block-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  max-width: 665px;
  width: 100%;
}

.payment__form {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.payment__input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.payment__input-group label {
  font-size: 16px;
  color: var(--general-grey-color);
}

.payment__input-group label .star {
  color: #ff7e4f;
}

.payment__input-group input {
  max-width: 320px;
  width: 100%;
  padding: 0 30px;
}

.payment__input-group-post {
  width: 100%;
  margin-bottom: 25px;
}

.payment__input-group-post select {
  border: 1px solid rgb(239, 234, 228);
  height: 60px;
  padding: 0 30px;
  border-radius: 100px;
}

.payment__input-group-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 25px;
}

.payment__input-group-grid select {
  border: 1px solid rgb(239, 234, 228);
  height: 60px;
  padding: 0 30px;
  border-radius: 100px;
}

.payment .payment__input-group {
  position: relative;
  margin-bottom: 20px;
}

.payment .custom-select {
  position: relative;
}

.payment .dropdown-selected {
  padding: 0 30px;
  height: 60px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid rgb(239, 234, 228);
  border-radius: 100px;
}

.payment .dropdown-list {
  display: none;
  position: absolute;
  z-index: 100;
  border: 1px solid #ccc;
  background: #fff;
  width: 100%;
}

.payment .dropdown-item {
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.payment .dropdown-item img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.payment .star {
  color: red;
}

.payment .dropdown-selected::after {
  content: url("./../img/move-orange.svg");
  position: absolute;
  top: 25%;
  right: 20px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}

.payment .open .dropdown-list {
  display: block;
}

.payment .open .dropdown-selected::after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  top: 25%;
}

.payment .custom-select .dropdown-selected img {
  margin-right: 10px;
  /* Відступ між картинкою та текстом */
}

.payment .order {
  max-width: 530px;
  width: 100%;
  -webkit-box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.07);
  padding: 40px 30px 30px 30px;
  border-radius: 16px;
}

.payment .order__header {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 1fr 1fr;
  grid-template-columns: 2fr 1fr 1fr;
  margin-bottom: 20px;
  padding: 10px 0;
  border-bottom: 1px solid rgb(239, 234, 228);
  font-size: 14px;
  font-weight: 700;
}

.payment .order__header-item {
  text-align: left;
}

.payment .order__header-item:nth-child(2),
.payment .order__header-item:nth-child(3) {
  text-align: center;
}

.payment .order__items {
  margin-top: 10px;
  margin-bottom: 20px;
}

.payment .order .order-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2.5fr 1fr 1fr auto;
  grid-template-columns: 2.5fr 1fr 1fr auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  font-weight: 600;
  line-height: 19.1px;
}

.payment .order .order-item__picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.payment .order .order-item__details {
  text-align: left;
}

.payment .order .order-item__quantity,
.payment .order .order-item__price {
  text-align: center;
}

.payment .order .order-item__remove {
  width: 20px;
  min-width: 20px;
  background: none;
  border: none;
  cursor: pointer;
}

.payment .order .order-item__image {
  width: 70px;
  min-width: 60px;
  min-height: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 5px;
  border: 1px solid rgb(239, 234, 228);
  border-radius: 16px;
}

.payment .order .order-item__info {
  font-size: 8px;
}

.payment .order .order-item__info div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  padding-bottom: -20px;
}

.payment .order .order-item__info .size {
  color: var(--general-grey-color);
  font-size: 8px;
}

.payment .order .order__summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.payment .order .order__summary .order-summary__item-first {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 18px;
  font-weight: 600;
}

.payment .order .order__summary .order-summary__item-secondary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 22px;
  font-weight: 700;
  padding-bottom: 20px;
  border-bottom: 1px solid rgb(239, 234, 228);
  margin-bottom: 20px;
}

.payment .order__note {
  font-size: 14px;
  font-weight: 500;
  color: var(--general-grey-color);
}

.payment .order__button {
  background-color: var(--general-orange-color);
  font-size: 16px;
  font-weight: 700;
  padding: 15px 20px;
  border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

.payment .order__button:hover {
  background-color: #f8e5c2;
}

.payment .order .order-item__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.payment .order .order-item__info div {
  margin-bottom: -5px;
}

.payment .order__agreement {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.payment .order__agreement .order__label {
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* Для вирівнювання елементів по горизонталі */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.payment .order__agreement .order__checkbox {
  display: none;
  /* Приховуємо стандартний чекбокс */
}

.payment .order__agreement .order__checkbox-custom-checkbox {
  min-width: 16px;
  width: 16px;
  height: 16px;
  border: 2px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  margin-right: 10px;
  /* Відстань між чекбоксом і текстом */
}

.no-webp .payment .order__agreement .order__checkbox:checked + .order__label .order__checkbox-custom-checkbox{
  background-image: url("./../img/home/check-icon.png"); }

.payment .order__agreement .order__checkbox:checked + .order__label .order__checkbox-custom-checkbox {
  background-image: url("./../img/home/check-icon.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.error {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 130px;
}

.error__blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.error h1 {
  font-size: 30px;
  font-weight: 900;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
}

.error_picture {
  width: 100vw;
  height: 100vh;
  max-width: 500px;
  max-height: 500px;
  -o-object-fit: contain;
     object-fit: contain;
}

.error__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  color: var(--black-color);
  padding: 15px 20px;
  background-color: var(--general-orange-color);
  margin-top: 30px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 16px;
  gap: 10px;
}

@media (max-width: 1500px) {
  .offers .navigation-offers-1 .next1 {
    right: 5px;
  }

  .offers .navigation-offers-1 .prev1 {
    left: -10px;
  }

  .blog .navigation .next {
    right: -15px;
  }

  .blog .navigation .prev {
    left: -15px;
  }

  .card .recomendation__navigation .next {
    right: 10px;
  }

  .card .recomendation__navigation .prev {
    left: 10px;
  }
}

@media (max-width: 1300px) {
  .content__block .content-below svg {
    min-width: 25px;
    width: 25px;
    height: 25px;
  }

  .content__block .content-below .content-below-heart img,
  .content__block .content-below .content-below-heart i {
    min-width: 25px;
    width: 25px;
    height: 25px;
  }

  .content__block .content-below .button-basket {
    font-size: 14px;
  }

  .offers .offers__block .offers__actions svg {
    min-width: 25px;
    width: 25px;
    height: 25px;
  }

  .offers .offers__block .offers__actions .content-below-heart svg {
    min-width: 25px;
    width: 25px;
    height: 25px;
  }

  .offers .offers__block .offers__actions .button-basket {
    font-size: 14px;
  }

  .offers .offers__block .content-below-heart img {
    min-width: 25px;
    width: 25px;
    height: 25px;
  }

  .card__descript-basket .button-basket {
    font-size: 14px;
  }

  .payment__blocks {
    gap: 50px;
  }
}

@media (max-width: 1250px) {
  .basket-page__blocks {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .basket-page__table {
    max-width: 100%;
  }

  .basket-page__blocks-sum {
    width: 100%;
  }

  .basket-page__blocks-result {
    margin-top: 100px;
  }
}

@media (max-width: 1200px) {
  .main__general {
    background-position: right;
  }

  .main__title {
    font-size: 45px;
    line-height: 50.57px;
  }

  .main__descript {
    font-size: 14px;
    max-width: 450px;
    line-height: 22px;
    margin-bottom: 30px;
  }

  .main__btn {
    max-width: 170px;
    font-size: 14px;
  }

  .advantages__blocks {
    gap: 20px;
  }

  .advantages__block {
    gap: 25px;
    padding: 20px 10px;
  }

  .advantages__block img {
    max-width: 45px;
    min-width: 45px;
    height: 45px;
  }

  .advantages__block .name h3 {
    font-size: 14px;
    line-height: 20px;
  }

  .advantages__block .name p {
    font-size: 10px;
    line-height: 13px;
  }

  .content__block img {
    margin-bottom: 10px;
  }

  .content__block .content-below svg {
    min-width: 19px;
    width: 19px;
    height: 19px;
  }

  .content__block .content-below .content-below-heart img,
  .content__block .content-below .content-below-heart i {
    min-width: 19px;
    width: 19px;
    height: 19px;
  }

  .content__block .content-below .button-basket .button-basket-delete {
    display: none;
  }

  .content__block .content-below .button-basket .button-basket-up {
    text-transform: uppercase;
  }

  .content__block-info .name {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .content__block-info .descript {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .content__block-info .price {
    font-size: 20px;
  }

  .benefits::after {
    width: 50px;
    height: 50px;
  }

/*   .benefits__blocks::before {
    width: 100px;
    height: 100px;
    left: 250px;
    top: 200px;
  } */

  .benefits__blocks::after {
    width: 50px;
    height: 50px;
  }

  .benefits__image::before {
    max-width: 200px;
    height: 200px;
    bottom: -50px;
    left: 52%;
  }

  .benefits__image {
    max-width: 380px;
  }

  .offers .offers__block {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 520px;
            flex: 0 0 520px;
    padding: 20px 20px;
  }

  .offers .offers__block-info .descript {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .offers .offers__block .offers__name {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .offers .offers__block .offers__text {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .offers .offers__block-price .new {
    font-size: 20px;
  }

  .offers .offers__block-price .old {
    font-size: 14px;
  }

  .offers .offers__block .offers__actions svg {
    min-width: 19px;
    width: 19px;
    height: 19px;
  }

  .offers .offers__block .offers__actions .content-below-heart svg {
    min-width: 19px;
    width: 19px;
    height: 19px;
  }

  .offers .offers__block .offers__actions .button-basket .button-basket-delete {
    display: none;
  }

  .offers .offers__block .offers__actions .button-basket .button-basket-up {
    text-transform: uppercase;
  }

  .offers .offers__block .content-below-heart img {
    min-width: 19px;
    width: 19px;
    height: 19px;
  }

  .blog__info {
    padding: 18px 10px;
  }

  .blog__info h3 {
    font-size: 18px;
  }

  .blog__info p {
    font-size: 14px;
    line-height: 24px;
  }

  .shop__blocks {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .shop__search {
    max-width: 100%;
  }

  .filters {
    position: relative;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }

  .products {
    margin-top: 0px;
  }

  .blog-page__info {
    padding: 18px 10px;
  }

  .blog-page__info h3 {
    font-size: 18px;
  }

  .blog-page__info p {
    font-size: 14px;
    line-height: 24px;
  }

  .favorites__wrapper {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 40px 0 160px 0;
  }

  .card .image-gallery__main {
    width: 350px;
    height: 350px;
  }

  .card .image-gallery__thumbnails .thumbnail {
    padding: 10px 15px;
    width: 80px;
    height: 80px;
  }

  .card__descript-basket .button-basket .button-basket-delete {
    display: none;
  }

  .card__descript-basket .button-basket .button-basket-up {
    text-transform: uppercase;
  }

  .payment__blocks {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .payment__blocks h2 {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .payment__block-left {
    max-width: 100%;
    gap: 20px;
  }

  .payment .order {
    max-width: 100%;
  }
}

@media (max-width: 1150px) {
  .shop .content__blocks {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .header {
    padding: 15px 0 30px 0;
  }

  .header__logo {
    max-width: 140px;
    min-width: 120px;
    min-height: 60px;
    height: 67px;
  }

  .header__info {
    gap: 10px;
  }

  .header__info-svg {
    width: 43px;
    height: 43px;
  }

  .header__info .count {
    width: 18px;
    height: 18px;
    top: -6px;
  }

  .menu__list {
    gap: 25px;
  }

  .menu__link {
    font-size: 16px;
  }

  .category__blocks {
    gap: 20px;
    padding-top: 80px;
  }

  .category__button {
    padding: 0px 15px;
    height: 55px;
    font-size: 16px;
    max-width: 250px;
    border-radius: 10px;
  }

  .category__details {
    gap: 10px;
    height: 55px;
  }

  .category__search button {
    min-width: 40px;
    height: 40px;
  }

  .category__search button svg {
    width: 19px;
    height: 19px;
  }

  .category__numbers {
    min-width: 250px;
    max-width: 250px;
  }

  .category__numbers #line-call {
    width: 30px;
    height: 30px;
  }

  .category .category__numbers {
    min-width: 250px;
    max-width: 250px;
  }

  .category .category__numbers {
    min-width: 250px;
    max-width: 250px;
  }

  .category .category__numbers #line-call {
    width: 30px;
    height: 30px;
  }

  .category__number div p {
    font-size: 12px;
  }

  .category__number div span {
    font-size: 14px;
  }

  .footer__block:not(:first-child)::before {
    position: absolute;
    content: "";
    left: 0;
    top: -25px;
    border-top: 1px solid rgb(233, 228, 224);
    width: 100%;
  }

  .footer__subscrive {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px;
    height: 220px;
    top: -250px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 95%;
    margin: 0 auto;
    border-radius: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .footer__subscrive svg {
    width: 50px;
    height: 40px;
  }

  .footer__subscrive-text {
    font-size: 14px;
    line-height: 21px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
  }

  .footer__subscrive-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .footer__subscrive-form input {
    padding: 15px 30px;
    font-size: 12px;
  }

  .footer__subscrive-form button {
    max-width: 155px;
    width: 100%;
    font-size: 12px;
  }

  .footer__subscrive-form button {
    padding: 16px 0;
    font-size: 12px;
  }

  .footer__blocks {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    -ms-flex-line-pack: center;
        align-content: center;
    justify-items: center;
    text-align: center;
    gap: 50px;
  }

  .footer__logo {
    margin: 0 auto;
    margin-bottom: 30px;
    max-width: 170px;
    min-width: 170px;
    height: auto;
  }

  .pagination {
    margin-bottom: 240px;
  }

  body.is-home .all-categories {
    display: block;
    border-radius: 10px;
    position: absolute;
    z-index: 9999;
    background-color: white;
    width: 80%;
  }

  body.is-home .all-categories.active {
    display: none;
  }

  .all-categories__list li:first-child {
    border-radius: 10px 10px 0 0;
  }

  .all-categories__list li:last-child {
    border-radius: 0 0 10px 10px;
  }

  .all-categories__link img {
    max-width: 40px;
    width: 40px;
    height: 40px;
  }

  .all-categories .name h3 {
    font-size: 16px;
  }

  .all-categories .name p {
    font-size: 10px;
    line-height: 13px;
  }

  .advantages__block {
    display: block;
  }

  .trending {
    margin-top: 60px;
  }

  .trending__title {
    font-size: 22px;
    line-height: 30.92px;
  }

  .trending__descript {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 40px;
  }

  .tabs__btn {
    gap: 10px;
  }

  .tabs__btn img {
    width: 40px;
    height: 40px;
  }

  .content__blocks {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .content__block img {
    max-width: 120px;
  }

  .benefits::after {
    display: none;
  }

  .benefits {
    padding-top: 60px;
    padding-bottom: 40px;
  }

  .benefits__blocks::before {
    display: none;
  }

  .benefits__blocks::after {
    display: none;
  }

  .benefits__blocks {
    gap: 30px;
    text-align: center;
  }

  .benefits__item img {
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto;
  }

  .benefits__item h3 {
    font-size: 20px;
    line-height: 27px;
  }

  .benefits__item p {
    font-size: 14px;
    line-height: 19px;
  }

  .benefits__image {
    max-width: 300px;
    display: none;
  }

  .benefits__list {
    gap: 30px;
  }

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

  .offers {
    padding: 40px 0 60px 0;
  }

  .blog {
    padding: 40px 0;
  }

  .company {
    padding: 20px 0 0 0;
    padding-bottom: 240px;
  }

  .company__blocks {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
    padding: 0px;
    margin: 0 auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .filters__select {
    font-size: 14px;
  }

  .products .content__blocks {
    gap: 10px;
  }

  .blog-page__blocks {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }

  .blog-page__block {
    padding: 0 5px;
  }

  .article {
    padding-bottom: 220px;
  }

  .article__content-top h1 {
    font-size: 22px;
  }

  .article-descript {
    font-size: 14px;
    gap: 20px;
  }

  .article-descript h1 {
    font-size: 16px;
    font-weight: 600;
  }

  .article-descript--secondary {
    font-size: 14px;
  }

  .article-descript--secondary {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .article-descript--secondary img {
    min-width: 300px;
    width: 300px;
    height: 400px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto;
  }

  .article-descript--secondary div {
    gap: 20px;
  }

  .reviews__contents {
    gap: 15px;
  }

  .favorites {
    padding-bottom: 80px;
  }

  .card {
    padding-bottom: 80px;
  }

  .card .image-gallery__main {
    width: 280px;
    height: 280px;
    padding: 50px;
  }

  .card .image-gallery__thumbnails .thumbnail {
    padding: 10px 10px;
    width: 70px;
    height: 70px;
  }

  .card__descript-top h1 {
    font-size: 20px;
    line-height: 20px;
  }

  .card__descript-top .article {
    font-size: 12px;
  }

  .card__descript-text {
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 20px;
  }

  .card__descript-price {
    margin: 20px 0;
  }

  .card__descript-price .new-price {
    font-size: 20px;
    line-height: 20.74px;
  }

  .card__descript-price .old-price {
    font-size: 14px;
  }

  .card .flavor__title {
    font-size: 16px;
  }

  .card .flavor__block {
    font-size: 14px;
    padding: 8px 15px;
  }

  .card .size__title {
    font-size: 14px;
  }

  .card .size__block {
    font-size: 14px;
    padding: 8px 15px;
  }

  .card__descript-below {
    font-size: 16px;
    margin-top: 20px;
  }

  .card__descript-count .card__quantity-input {
    padding: 8px 15px;
  }

  .card__descript-basket .button-basket {
    padding: 8px 15px;
  }

  .card__tabs {
    padding-bottom: 60px;
  }

  .card__tabs-btn {
    padding: 15px 20px;
    font-size: 16px;
  }

  .card__tabs-contents {
    padding: 20px;
    font-size: 14px;
  }

  .card__tabs-content__first {
    font-size: 14px;
    line-height: 20px;
  }

  .card__tabs .account__block {
    padding: 15px 20px;
  }

  .card__tabs .account__top h3 {
    font-size: 14px;
  }

  .card__tabs .account__top span {
    font-size: 14px;
  }

  .card__tabs .account__message {
    margin-top: 20px;
  }

  .card__tabs .comment-top {
    margin-top: 30px;
    font-size: 18px;
    margin-bottom: 20px;
  }

  .card__tabs .comment__form-top {
    gap: 15px;
    margin-bottom: 20px;
  }

  .card__tabs .comment__form-top {
    font-size: 14px;
  }

  .card__tabs .comment__form-group {
    font-size: 14px;
  }

  .card__tabs .comment__form-btn {
    font-size: 14px;
    height: 45px;
  }

  .card__tabs .comment__form-btn a {
    padding: 10px 20px;
  }

  .card .recomendation__title {
    font-size: 22px;
    line-height: 30.92px;
  }

  .card .recomendation__title {
    margin-bottom: 30px;
  }

  .card .recomendation__navigation .next {
    right: 20px;
  }

  .card .recomendation__navigation .prev {
    left: 20px;
  }

  .contacts {
    margin-bottom: 220px;
  }

  .contacts__top {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .contacts__blocks {
    gap: 20px;
  }

  .contacts__form-top {
    font-size: 18px;
  }

  .contacts__form-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }

  .contacts__form-input {
    width: 100%;
    padding: 15px;
    font-size: 14px;
  }

  .contacts__form-textarea {
    padding: 15px;
    font-size: 14px;
  }

  .contacts .contacts__destination-logo img {
    height: 50px;
  }

  .contacts .contacts__destination-blocks {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    -webkit-column-gap: 0px;
       -moz-column-gap: 0px;
            column-gap: 0px;
  }

  .contacts .contacts__destination-block h3 {
    margin-top: 20px;
    margin-bottom: 15px;
  }

  .contacts .contacts__destination-block p {
    font-size: 14px;
  }

  .contacts .contacts__destination-details {
    font-size: 14px;
  }

  .contacts .contacts__destination-line {
    margin: 20px 0;
  }

  .contacts .contacts__destination-addition {
    font-size: 14px;
    line-height: 20px;
  }

  .basket-page {
    padding-bottom: 220px;
  }

  .basket-page__title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .payment__blocks {
    margin-bottom: 220px;
  }

  .error {
    margin-bottom: 220px;
  }

  .error h1 {
    font-size: 24px;
  }

  .error__button {
    font-size: 14px;
    margin-top: 20px;
  }
}

@media (max-width: 992px) and (max-width: 576px) {
  .article-descript h1 {
    font-size: 14px;
  }
}

@media (max-width: 992px) and (max-width: 480px) {
  .contacts .contacts__destination-block p {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .header__burger-menu {
    position: relative;
    display: block;
    z-index: 9999999;
    padding: 0;
    margin: 0;
  }

  .header__burger-txt.active {
    position: absolute;
    left: 80px;
    display: block;
    z-index: 99999;
  }

  .menu {
    position: fixed;
    top: 12px;
    left: -100%;
    width: 50%;
    height: auto;
    background-color: var(--white-color);
    z-index: 999999999;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition: left 0.5s ease;
    transition: left 0.5s ease;
    border-radius: 0px 16px 16px 0px;
    padding-bottom: 30px;
  }

  .menu .category__numbers-secondary {
    display: block;
  }

  .menu .header__burger-title {
    position: absolute;
    top: 20px;
    left: 60px;
    z-index: 99999999;
    display: block;
  }

  .menu.active {
    left: 0;
    border-radius: 0px 16px 16px 0;
  }

  .menu::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    background: rgb(239, 234, 228);
    width: 100%;
    height: 65px;
    border-radius: 0 16px 0 0;
  }

  .no-webp .menu::before{
    background-image: url("/wp-content/uploads/2026/02/image-10.png"); }

  .menu::before {
    position: absolute;
    right: 0;
    top: 0;
    background-image: url("/wp-content/uploads/2026/02/image-10.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 37px;
    height: 65px;
    display: block;
    content: "";
    z-index: 999999;
    border-radius: 0 16px;
  }

  .menu__list {
    display: block;
    padding-top: 100px;
    padding-left: 20px;
  }

  .menu__item {
    padding-bottom: 20px;
  }

  .category__numbers {
    display: none;
  }

  .category__numbers #line-call {
    width: 35px;
    height: 35px;
  }

  .category .category__numbers {
    display: none;
  }

  .category .category__numbers {
    min-width: 220px;
    max-width: 220px;
  }

  .category .category__numbers #line-call {
    width: 35px;
    height: 35px;
  }

  .menu__list {
    position: relative;
  }

  .main__general {
    padding: 95px 0 110px 10px;
  }

  .main__title {
    font-size: 35px;
    line-height: 45px;
  }

  .main__descript {
    max-width: 350px;
    font-size: 12px;
    line-height: 18px;
    max-width: 280px;
    margin-bottom: 20px;
  }

  .main__btn {
    padding: 15px 0;
  }

  .blog-page__blocks {
    gap: 10px;
  }

  .article__button {
    font-size: 14px;
    padding: 8px 10px;
  }
}

@media (max-width: 768px) and (max-width: 576px) {
  .menu {
    width: 100%;
  }
}

@media (max-width: 756px) {
  .header__top.slidedown {
    padding: 10px 15px;
  }

  .footer__below-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 14px;
  }

  .footer__below-block img {
    width: 100px;
  }

  .breadcrumbs__item {
    font-size: 14px;
  }

  .breadcrumbs a {
    font-size: 14px;
  }

  .pagination .arrow,
  .pagination .page {
    font-size: 14px;
    padding: 10px 15px;
  }

  .main .main__slider {
    max-height: 400px;
    height: 400px;
  }

  .advantages__blocks {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .advantages__blocks {
    gap: 10px;
  }

  .advantages__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 100%;
    padding: 25px 20px;
  }

  .content__blocks {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits__blocks {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .blog__blocks .blog__block {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 320px;
            flex: 0 0 320px;
  }

  .company__blocks {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    row-gap: 30px;
  }

  .company__blocks img {
    width: 80px;
    min-height: 80px;
  }

  .shop__search-top {
    font-size: 16px;
    padding: 12px 22px;
  }

  .shop__accordion button {
    font-size: 14px;
  }

  .shop__panel {
    font-size: 14px;
  }

  .filters {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }

  .filters__label {
    font-size: 14px;
  }

  .filters__select {
    padding: 12px 30px 12px 20px;
    font-size: 12px;
  }

  .products .content__blocks {
    gap: 15px;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews__descript {
    gap: 10px;
  }

  .reviews__descript h1 {
    font-size: 22px;
  }

  .reviews__descript p {
    font-size: 14px;
  }

  .reviews__contents {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews__content {
    max-height: 500px;
  }

  .favorites__wrapper {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .card__top {
    gap: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 50px;
  }

  .card .image-gallery {
    gap: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 40px;
  }

  .basket-page__table-header {
    font-size: 14px;
    -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 0.5fr;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 0.5fr;
  }

  .basket-page__table-row .basket-page__table-cell--photo .basket-page__photo {
    width: 50px;
  }

  .basket-page__table-row .basket-page__table-cell--name .basket-page__product-name {
    font-size: 16px;
  }

  .basket-page__table-row .basket-page__table-cell--name .basket-page__product-details {
    font-size: 10px;
  }

  .basket-page__table-row .basket-page__table-cell--quantity,
  .basket-page__table-row .basket-page__table-cell--price,
  .basket-page__table-row .basket-page__table-cell--total {
    font-size: 14px;
  }

  .basket-page__table-row .basket-page__table-cell--remove .basket-page__remove-btn img {
    min-width: 20px;
    width: 20px;
    height: 20px;
  }

  .basket-page__promocode {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .basket-page__promocode-wrapper {
    gap: 10px;
  }

  .basket-page__promocode-wrapper input {
    font-size: 14px;
    padding: 10px 20px;
  }

  .basket-page__promocode-button {
    font-size: 14px;
    padding: 10px 30px;
  }

  .basket-page__order {
    font-size: 14px;
    padding: 12px 0;
  }

  .basket-page__blocks-item p {
    font-size: 14px;
  }

  .basket-page__blocks-item span {
    font-size: 14px;
  }

  .basket-page__blocks-result .basket-page__blocks-item p {
    font-size: 18px;
  }

  .basket-page__blocks-result .basket-page__blocks-item span {
    font-size: 18px;
  }

  .payment__blocks input {
    height: 50px;
  }

  .payment__form {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    gap: 5px;
  }

  .payment__input-group {
    gap: 15px;
  }

  .payment__input-group label {
    font-size: 12px;
  }

  .payment__input-group-post select {
    height: 50px;
  }

  .payment__input-group-grid {
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
    row-gap: 20px;
  }

  .payment__input-group-grid select {
    height: 50px;
  }

  .payment .dropdown-selected {
    height: 50px;
    font-size: 14px;
  }

  .payment .dropdown-selected::after {
    top: 30%;
  }

  .payment .order .order-item {
    font-size: 12px;
  }

  .payment .order .order-item__remove {
    width: 15px;
    min-width: 15px;
  }

  .payment .order .order__summary .order-summary__item-first {
    font-size: 14px;
  }

  .payment .order .order__summary .order-summary__item-secondary {
    font-size: 16px;
  }

  .payment .order__note {
    font-size: 12px;
  }

  .payment .order__button {
    font-size: 14px;
    padding: 15px;
  }

  .payment .order__agreement {
    gap: 10px;
  }

  .error__button {
    font-size: 12px;
  }

  .error__button img {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 756px) and (max-width: 390px) {
  .basket-page__promocode {
    gap: 10px;
  }
}

@media (max-width: 705px) {
  .tabs__buttons {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    text-align: center;
    text-wrap: nowrap;
  }
}

@media (max-width: 700px) {
  .contacts__blocks {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }

  .contacts__block-2 {
    padding-left: 0px;
  }
}

@media (max-width: 576px) {
  .category__blocks {
    gap: 0px;
  }

  .category__button {
    max-width: 100%;
    height: 44px;
  }

  .category__details {
    background-image: none;
    width: auto;
    gap: 0;
    padding: 0;
    margin: 0;
  }

  .category__search input {
    display: none;
    border-radius: 20px;
    background: transparent;
    max-width: 60px;
    min-width: 60px;
    height: 44px;
  }

  .category__search input.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 100%;
    width: 100%;
    background-color: white;
    padding: 0 5px 0 10px;
  }

  .category__search button {
    border-radius: 10px;
    min-width: 60px;
  }

  .footer h3 {
    font-size: 16px;
    line-height: 24px;
  }

  .footer__list a {
    font-size: 14px;
    line-height: 24px;
  }

  #logoEmpty img {
    width: 100px;
  }

  .main__general {
    background-position: bottom;
    padding: 60px 0 110px 10px;
  }

  .main__title {
    font-size: 25px;
    line-height: 15px;
  }

  .main__btn {
    padding: 6px 0;
    max-width: 120px;
    width: 100%;
    font-size: 10px;
  }

  .no-webp .main .main__slider .main__slide.active[data-index="0"]{
    background-image: url("/wp-content/uploads/2026/02/bg-2.png"); }

  .main .main__slider .main__slide.active[data-index="0"] {
    background-image: url("/wp-content/uploads/2026/02/bg-2.png");
    background-position: bottom;
  }

  .no-webp .main .main__slider .main__slide.active[data-index="1"]{
    background-image: url("/wp-content/uploads/2026/02/bg-2.png"); }

  .main .main__slider .main__slide.active[data-index="1"] {
    background-image: url("/wp-content/uploads/2026/02/bg-2.png");
    background-position: bottom;
  }

/*   .no-webp .main .main__slider .main__slide.active[data-index="2"]{
    background-image: url("./../img/home/bg-main-small.png"); }

  .main .main__slider .main__slide.active[data-index="2"] {
    background-image: url("./../img/home/bg-main-small.webp");
    background-position: bottom;
  } */

  .main .main__slider .main__pagination .main__dot {
    width: 8px;
    height: 8px;
  }

  body.is-home .all-categories {
    max-width: 100%;
    border-radius: 10px;
  }

  body.is-category-page .all-categories {
    max-width: 80%;
    border-radius: 10px;
  }

  .all-categories__link {
    padding: 10px 10px;
  }

  .all-categories__link img {
    max-width: 35px;
    height: 35px;
    width: 35px;
    min-width: 35px;
  }

  .all-categories .name h3 {
    font-size: 12px;
  }

  .all-categories__item {
    padding-bottom: 10px;
  }

  .advantages__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 100%;
    padding: 15px 20px;
  }

  .content__block {
    padding: 15px 10px;
  }

  .content__block img {
    min-width: 78px;
    width: 78px;
  }

  .content__block-details {
    font-size: 10px;
    gap: 2px;
  }

  .content__block-details .hit {
    width: 40px;
  }

  .content__block-details .promotion {
    width: 55px;
  }

  .content__block .content-below .button-basket {
    padding: 5px 10px;
  }

  .content__block-info .name {
    font-size: 12px;
    line-height: 16px;
  }

  .content__block-info .descript {
    font-size: 10px;
    line-height: 13px;
  }

  .content__block-info .price {
    font-size: 16px;
    line-height: 21px;
    margin-bottom: 10px;
  }

  .content__block-info .button-basket svg {
    min-width: 20px;
    max-width: 20px;
    height: 20px;
  }

  .content__heart {
    min-width: 20px;
    max-width: 20px;
    height: 20px;
  }

  .offers .offers__block {
    gap: 22px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 320px;
            flex: 0 0 320px;
  }

  .offers .offers__block .content-below {
    margin-top: -10px;
  }

  .offers .offers__block-info .descript {
    font-size: 10px;
    line-height: 13px;
  }

  .offers .offers__block .offers__name {
    font-size: 12px;
  }

  .offers .offers__block .offers__text {
    font-size: 10px;
    line-height: 13px;
  }

  .offers .offers__block-price .new {
    font-size: 16px;
    line-height: 21px;
    margin-bottom: 10px;
  }

  .offers .offers__block-price .old {
    font-size: 12px;
  }

  .offers .offers__block .offers__actions .button-basket {
    padding: 5px 10px;
  }

  .offers__image {
    max-width: 90px;
    width: 90px;
    min-height: 110px;
    height: 110px;
    -o-object-fit: contain;
       object-fit: contain;
  }

  .offers .navigation-offers-1 .next1,
  .offers .navigation-offers-1 .prev1 {
    width: 30px;
    height: 30px;
  }

  .offers .navigation-offers-1 .next1::before,
  .offers .navigation-offers-1 .prev1::before {
    width: 9px;
    height: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .offers .navigation-offers-1 .next1::before {
    width: 6px;
    height: 10px;
  }

  .offers .navigation-offers-1 .next1 {
    right: 10px;
    bottom: 0;
  }

  .offers .navigation-offers-1 .prev1::before {
    width: 6px;
    height: 10px;
  }

  .offers .navigation-offers-1 .prev1 {
    left: 10px;
  }

  .blog .navigation {
    top: 41%;
  }

  .blog .navigation .next,
  .blog .navigation .prev {
    width: 30px;
    height: 30px;
  }

  .blog .navigation .next::before,
  .blog .navigation .prev::before {
    width: 10px;
    height: 10px;
  }

  .blog .navigation .next::before {
    width: 6px;
    height: 10px;
  }

  .blog .navigation .next {
    right: 10px;
  }

  .blog .navigation .prev::before {
    width: 6px;
    height: 10px;
  }

  .blog .navigation .prev {
    left: 10px;
  }

  .blog__info h3 {
    font-size: 16px;
    line-height: 20px;
  }

  .blog__info p {
    line-height: 20px;
  }

  .blog__info .calendar {
    font-size: 10px;
  }

  .company__blocks {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    row-gap: 25px;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .company__blocks img {
    width: 50px;
    min-height: 50px;
  }

  .blog-page__blocks {
    gap: 10px;
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }

  .blog-page__info h3 {
    font-size: 16px;
    line-height: 20px;
  }

  .blog-page__info p {
    line-height: 20px;
  }

  .blog-page__info .calendar {
    font-size: 10px;
  }

  .article-descript--secondary img {
    min-width: 200px;
    width: 200px;
    height: 300px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto;
    margin-bottom: -15px;
  }

  .article__button span {
    display: none;
  }

  .article__button p {
    font-size: 12px;
  }

  .card__descript-basket .button-basket svg {
    min-width: 20px;
    max-width: 20px;
    height: 20px;
  }

  .card .recomendation .content__block {
    position: relative;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 250px;
            flex: 0 0 250px;
  }

  .card .recomendation__navigation {
    top: 40%;
    width: 70%;
  }

  .card .recomendation__navigation .next,
  .card .recomendation__navigation .prev {
    width: 30px;
    height: 30px;
  }

  .card .recomendation__navigation .next::before,
  .card .recomendation__navigation .prev::before {
    width: 10px;
    height: 10px;
  }

  .card .recomendation__navigation .next::before {
    width: 6px;
    height: 10px;
  }

  .card .recomendation__navigation .prev::before {
    width: 6px;
    height: 10px;
  }

  .basket-page__table-header {
    font-size: 12px;
    text-align: left;
    -ms-grid-columns: 1fr 1.4fr 1fr 1fr 1fr 0.5fr;
    grid-template-columns: 1fr 1.4fr 1fr 1fr 1fr 0.5fr;
    padding-left: 5px;
    padding: 0;
  }

  .basket-page__table-row {
    padding: 5px 10px;
    -ms-grid-columns: 1fr 1.5fr 1fr 1fr 1fr 0.3fr;
    grid-template-columns: 1fr 1.5fr 1fr 1fr 1fr 0.3fr;
  }

  .basket-page__table-row .basket-page__table-cell {
    padding-left: 5px;
  }

  .basket-page__table-row .basket-page__table-cell--photo {
    padding: 15px 0px;
  }

  .basket-page__table-row .basket-page__table-cell--photo .basket-page__photo {
    width: 30px;
  }

  .basket-page__table-row .basket-page__table-cell--name .basket-page__product-name {
    font-size: 12px;
  }

  .basket-page__table-row .basket-page__table-cell--name .basket-page__product-name {
    text-wrap: wrap;
  }

  .basket-page__table-row .basket-page__table-cell--quantity,
  .basket-page__table-row .basket-page__table-cell--price,
  .basket-page__table-row .basket-page__table-cell--total {
    font-size: 12px;
    text-align: left;
  }

  .basket-page__table-row .basket-page__table-cell--remove .basket-page__remove-btn img {
    min-width: 15px;
    width: 15px;
    height: 15px;
  }

  .basket-page__promocode-wrapper input {
    font-size: 12px;
  }

  .basket-page__promocode-button {
    font-size: 12px;
  }

  .basket-page__order {
    padding: 10px 5px;
    width: 180px;
  }

  .basket-page__order a {
    font-size: 12px;
  }

  .payment__blocks h2 {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 20px;
  }

  .payment__blocks input {
    height: 45px;
    font-size: 14px;
  }

  .payment__input-group {
    gap: 10px;
  }

  .payment__input-group input {
    max-width: 100%;
  }

  .payment__input-group-post {
    margin-bottom: 15px;
  }

  .payment__input-group-post select {
    height: 45px;
    font-size: 14px;
  }

  .payment .dropdown-selected {
    font-size: 12px;
  }

  .payment .order {
    padding: 30px 20px;
  }

  .payment .order__header {
    margin-bottom: 10px;
  }

  .payment .order .order-item {
    font-size: 12px;
    line-height: 15px;
  }

  .payment .order .order__summary {
    gap: 10px;
  }

  .payment .order .order__summary .order-summary__item-first {
    font-size: 12px;
  }

  .payment .order .order__summary .order-summary__item-secondary {
    font-size: 14px;
  }

  .payment .order__note {
    font-size: 10px;
  }

  .payment .order__button {
    font-size: 12px;
  }

  .payment .order__agreement {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .payment .order__agreement .order__label {
    font-size: 14px;
  }
}

@media (max-width: 500px) {
  .reviews__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .breadcrumbs__list {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .breadcrumbs__list #home-icon {
    width: 18px;
    height: 20px;
  }

  .breadcrumbs__item {
    font-size: 12px;
  }

  .breadcrumbs a {
    font-size: 12px;
  }

  .article__content-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0px;
    margin-top: 10px;
  }

  .card .image-gallery {
    gap: 5px;
    margin: 0 auto;
  }

  .card .image-gallery__main {
    width: 100%;
    height: 220px;
    padding: 40px;
  }

  .card .image-gallery__thumbnails {
    gap: 5px;
  }

  .card .image-gallery__thumbnails .thumbnail {
    padding: 8px;
    width: 50px;
    height: 50px;
  }

  .card__descript-top h1 {
    font-size: 16px;
  }

  .card__descript-top .article {
    font-size: 10px;
  }

  .card__descript-text {
    font-size: 10px;
    line-height: 18px;
    margin-top: -10px;
  }

  .card__descript-price {
    gap: 10px;
  }

  .card__descript-price .new-price {
    font-size: 16px;
  }

  .card__descript-price .old-price {
    font-size: 12px;
  }

  .card .flavor {
    gap: 5px;
  }

  .card .flavor__title {
    font-size: 14px;
  }

  .card .flavor__blocks {
    gap: 8px;
  }

  .card .flavor__block {
    border-radius: 10px;
    font-size: 12px;
  }

  .card .size__title {
    font-size: 12px;
  }

  .card .size__block {
    font-size: 12px;
    border-radius: 10px;
  }

  .card__descript-below {
    font-size: 14px;
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
  }

  .card__descript-count .card__quantity-input {
    font-size: 14px;
  }

  .card__tabs-btn {
    font-size: 14px;
  }

  .card__tabs-contents {
    font-size: 12px;
    padding: 10px;
  }

  .card__tabs-content__first {
    font-size: 12px;
  }

  .card__tabs-content__first div {
    font-size: 12px;
    padding-bottom: 15px;
  }

  .card__tabs .account__top h3 {
    font-size: 12px;
  }

  .card__tabs .account__top span {
    font-size: 12px;
  }

  .card__tabs .comment-top {
    font-size: 14px;
  }

  .card__tabs .comment__form-top {
    font-size: 12px;
  }

  .card__tabs .comment__form-group {
    font-size: 12px;
    padding: 15px 20px;
  }

  .card__tabs .comment__form-btn {
    font-size: 12px;
  }

  .card__tabs .comment__form-btn a {
    font-size: 5px 15px;
  }

  .card .recomendation__navigation {
    top: 40%;
    width: 100%;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }

  .card .recomendation__navigation .next {
    right: -45px;
  }

  .card .recomendation__navigation .prev {
    left: -50px;
  }

  .contacts__top {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .contacts__form-top {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .contacts__form-group {
    gap: 10px;
  }

  .contacts__form-group label {
    font-size: 14px;
  }

  .contacts__form-input {
    font-size: 12px;
  }

  .contacts__form-textarea {
    font-size: 12px;
  }

  .contacts__form-button {
    font-size: 12px;
    max-width: 100px;
    padding: 15px 0;
    margin-top: 0px;
  }

  .contacts .contacts__destination-block h3 {
    font-size: 14px;
  }

  .contacts .contacts__destination-details {
    font-size: 12px;
  }

  .contacts .contacts__destination-line {
    margin: 15px 0;
  }

  .contacts .contacts__destination-addition {
    font-size: 12px;
  }

  .basket-page__title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .basket-page__table-header {
    font-size: 10px;
    text-align: center;
    -ms-grid-columns: 1fr 1fr 0.5fr 1fr 1fr 0.5fr;
    grid-template-columns: 1fr 1fr 0.5fr 1fr 1fr 0.5fr;
  }

  .basket-page__table-row {
    -webkit-column-gap: 5px;
       -moz-column-gap: 5px;
            column-gap: 5px;
    padding: 0;
  }

  .basket-page__table-row .basket-page__table-cell--photo {
    padding: 10px 0px;
  }

  .basket-page__table-row .basket-page__table-cell--photo .basket-page__photo {
    width: 25px;
  }

  .basket-page__table-row .basket-page__table-cell--name .basket-page__product-name {
    font-size: 10px;
    margin-bottom: 5px;
  }

  .basket-page__table-row .basket-page__table-cell--name .basket-page__product-details {
    font-size: 8px;
  }

  .basket-page__table-row .basket-page__table-cell--quantity,
  .basket-page__table-row .basket-page__table-cell--price,
  .basket-page__table-row .basket-page__table-cell--total {
    font-size: 10px;
  }

  .error h1 {
    font-size: 20px;
  }
}

@media (max-width: 425px) {
  .header__logo {
    max-width: 120px;
    min-width: 120px;
    width: 120px;
    min-height: 65px;
    width: 100%;
    height: 40px;
  }

  .header__logo img {
    width: 110px;
    height: 60px;
  }

  #nav-icon3 {
    width: 28px;
  }

  #nav-icon3 span {
    height: 3px;
  }

  .category__numbers-secondary .num-line {
    font-size: 12px;
    line-height: 18px;
  }

  .main__descript {
    max-width: 300px;
    font-size: 10px;
    line-height: 15px;
    max-width: 280px;
    margin-bottom: 20px;
  }

  .main .main__slider {
    max-height: 350px;
    height: 350px;
  }
}

@media (max-width: 420px) {
  .content__block .content-below .button-basket img {
    min-width: 18px;
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 415px) {
  .reviews__contents {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .reviews__content {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 auto;
    max-height: 450px;
    width: 300px;
  }
}

@media (max-width: 410px) {
  .basket-page__table-header {
    font-size: 8px;
    -ms-grid-columns: 1fr 1fr 0.5fr 1fr 1fr 0.3fr;
    grid-template-columns: 1fr 1fr 0.5fr 1fr 1fr 0.3fr;
  }

  .basket-page__table-row .basket-page__table-cell--photo {
    padding: 5px 0;
  }

  .basket-page__table-row .basket-page__table-cell--photo .basket-page__photo {
    -o-object-fit: contain;
       object-fit: contain;
    width: 25px;
    height: 40px;
  }
}

@media (max-width: 400px) {
  .tabs__buttons {
    gap: 30px;
  }

  .content__block-details div {
    padding: 5px 6px;
  }

  .content__block-details .hit {
    width: 25px;
  }

  .content__block-details .promotion {
    width: 40px;
  }

  .content__block .content-below .content-below-heart {
    border: none;
    margin: 0 10px 0 0;
    padding: 0;
  }

  .content__block .content-below .content-below-heart:hover {
    background-color: transparent;
  }

  .content__block .content-below .button-basket {
    gap: 5px;
    font-size: 12px;
  }

  .shop__search-top {
    font-size: 10px;
  }

  .shop .content__blocks {
    width: 100%;
    gap: 10px;
  }

  .products .content__blocks {
    gap: 10px;
  }

  .favorites__wrapper {
    gap: 10px;
  }

  .payment__input-group-grid {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    row-gap: 5px;
  }

  .payment .order {
    padding: 20px 10px;
  }

  .payment .order__header {
    font-size: 10px;
  }

  .payment .order .order-item {
    font-size: 10px;
    line-height: 15px;
    gap: 5px;
  }

  .payment .order .order-item__remove {
    width: 12px;
    min-width: 12px;
  }

  .payment .order .order-item__image {
    width: 50px;
    min-width: 50px;
    min-height: 40px;
    height: 45px;
    border-radius: 10px;
  }

  .payment .order__agreement {
    font-size: 12px;
  }

  .payment .order__agreement .order__label {
    font-size: 12px;
  }
}

@media (max-width: 390px) {
  .shop .content__block {
    width: 100%;
  }

  .basket-page__promocode-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 375px) {
  .offers .navigation-offers-1 .next1 {
    right: -10px;
  }

  .offers .navigation-offers-1 .prev1 {
    left: -10px;
  }

  .blog .navigation .next {
    right: -10px;
  }

  .blog .navigation .prev {
    left: -10px;
  }

  .card .recomendation__navigation {
    top: 35%;
  }
}

@media (max-width: 340px) {
  .content__block .content-below .content-below-heart {
    margin: 0 3px 0 0;
    padding: 0;
  }

  .payment .order .order-item__info {
    font-size: 7px;
  }

  .payment .order .order-item__info .size {
    font-size: 7px;
  }
}

.webp .category__button{ background-image: url(./../img/home/bg-header-details.webp); }

.webp .category__details{ background-image: url(./../img/home/bg-header-details.webp); }

.webp .footer__subscrive{ background-image: url(./../img/home/bg-header-details.webp); }

.webp .main__btn{ background-image: url(./../img/home/bg-header-button.webp); }

.webp .main .main__slider .main__slide.active[data-index="0"]{ background-image: url(./../img/home/bg-main.webp); }

.webp .main .main__slider .main__slide.active[data-index="1"]{ background-image: url(./../img/home/bg-main.webp); }

.webp .main .main__slider .main__slide.active[data-index="2"]{ background-image: url(./../img/home/bg-main.webp); }

.webp .benefits__image::before{ background-image: url(./../img/home/bg-product-mark-02.webp); }

.webp .offers{ background-image: url(./../img/home/bg-offers.webp); }

.webp .shop__filter-label .shop__filter-checkbox:checked + .shop__filter-custom-checkbox{ background-image: url(./../img/home/check-icon.webp); }

.webp .shop__filter-label .shop__filter-checkbox:checked + .shop__filter-custom-checkbox{ background-image: url(../img/home/check-icon.webp); }

.webp .payment .order__agreement .order__checkbox:checked + .order__label .order__checkbox-custom-checkbox{ background-image: url(./../img/home/check-icon.webp); }

@media (max-width: 768px){

  .webp .menu::before{ background-image: url(/wp-content/uploads/2026/02/image-10.png); }
}

@media (max-width: 576px){

  .webp .main .main__slider .main__slide.active[data-index="0"]{ background-image: url(/wp-content/uploads/2026/02/bg-2.png); }
}

@media (max-width: 576px){

  .webp .main .main__slider .main__slide.active[data-index="1"]{ background-image: url(/wp-content/uploads/2026/02/bg-2.png)); }
}

/* @media (max-width: 576px){

  .webp .main .main__slider .main__slide.active[data-index="2"]{ background-image: url(./../img/home/bg-main-small.webp); }
} */