/* ============= ALIGNES =============== */

::selection {
  background-color: var(--primary);
  color: var(--head-secondary);
}

::-webkit-scrollbar {
  width: 6px;
  /* ширина scrollbar */
}

::-webkit-scrollbar-track {
  background: var(--stroke);
  /* цвет дорожки */
}

::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  /* цвет плашки */
  border-radius: 10px;
  /* закругления плашки */
  /* padding вокруг плашки */
}

.alignwide {
  width: 100%;
}

.alignfull {
  margin-left: calc(-100vw / 2 + 100% / 2);
  margin-right: calc(-100vw / 2 + 100% / 2);
  max-width: 1920px;
}

@media only screen and (min-width: 1920px) {
  .alignfull {
    width: 100vw !important;
    max-width: unset;
    /* margin-left: calc(-1 * (1920px - 1170px) / 2) !important;
    margin-right: calc(-1 * (1920px - 1170px) / 2) !important; */
  }
}
/* =========== BASE CONFIG =========== */
html {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  color: var(--main-text-primary);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  box-sizing: inherit;
}

body {
  /*max-width: 1920px;*/
  overflow-x: hidden;
  margin: 0 auto;
  width: auto;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  cursor: default;
  background-color: var(--background);
}

body.no-scroll {
  overflow: hidden;
}

main {
  flex: 1 1 auto;
}

.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  z-index: 110;
  pointer-events: none;
  transition: 0.3s ease-in;
}

.backdrop.active {
  opacity: 1;
}

ul li,
ol li {
  position: relative;
  list-style: none;
}

button {
  outline: none;
  border: none;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  color: var(--head-primary);
  line-height: 1;
  font-weight: 400;
}
h1,
.h1 {
  font-size: clamp(1.625rem, 1.4rem + 1.13vw, 2.75rem);
  font-weight: 400;
}
h2,
.h2 {
  font-size: clamp(1.5rem, 1.225rem + 1.38vw, 2.875rem);
  line-height: 1.15;
}
h3,
.h3 {
  font-size: clamp(1.5rem, 1.375rem + 0.63vw, 2.125rem);
}
h4,
.h4 {
  font-size: clamp(1.25rem, 1.175rem + 0.38vw, 1.625rem);
}
h5,
.h5 {
  font-size: clamp(1.125rem, 1.075rem + 0.25vw, 1.375rem);
}
h6,
.h6 {
  font-size: 18px;
  line-height: 1.4;
}
p {
  font-size: 22px;
  line-height: 1.3;
}
.p1 {
  font-size: clamp(1rem, 0.925rem + 0.38vw, 1.375rem);
}
.p2 {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
}
.p3 {
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
}
.p3.upper {
  text-transform: uppercase;
}

a {
  font-family: var(--font-family);
  color: var(--main-text-primary);
  text-decoration: none;
  transition: all 0.3s ease-in;
  cursor: pointer;
}

a:hover {
  color: var(--primary);
}

.title {
  text-align: left;
}

.title,
h1.page__title,
h1.page-title {
  margin-bottom: clamp(1.25rem, 1rem + 1.25vw, 2.5rem);
}

path,
circle {
  transition: 0.3s ease-in;
}

.more-item.hidden {
  display: none;
}

.readmore__btn {
  width: fit-content;
  margin-top: 10px;
  color: var(--primary);
  transition: 0.3s ease-in;
  cursor: pointer;
}

.readmore__btn:hover {
  color: var(--primary-hover);
}

iframe {
  border: none;
  outline: none;
}

.block-90 {
  margin-bottom: clamp(2.5rem, 1.875rem + 3.13vw, 5.625rem);
}

@media (max-width: 768px) {
  .readmore__btn {
    margin-top: 10px;
  }
}

body.privacy-policy .page__title {
  margin-bottom: 20px;
  font-size: clamp(1.375rem, 1rem + 1.88vw, 3.25rem);
}

body.privacy-policy h2.wp-block-heading {
  font-size: clamp(1.5rem, 1.425rem + 0.38vw, 1.875rem);
  margin-bottom: 20px;
}

body.privacy-policy .content {
  margin-bottom: 40px;
}

body.privacy-policy .content *:not(:last-child) {
  margin-bottom: 15px;
}

.breadcrumbs {
  padding: 20px 0 10px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: var(--main-text-primary);
}

.breadcrumbs span {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  transition: 0.3s ease-in;
}

.breadcrumbs span:hover {
  color: var(--primary);
}

.breadcrumbs span .current-item,
.breadcrumbs span .current-item span {
  color: var(--primary);
}

.container {
  max-width: 1560px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.socials__items {
  display: flex;
  gap: 5px;
}

.socials__item,
#header.front-page.painted .socials__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 2px;
  width: 50px;
  height: 50px;
  border: 1px solid var(--background-secondary);
  background: var(--background);
}

#header.front-page .socials__item {
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.socials__item:hover,
#header.front-page .socials__item:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
}

.socials__item svg,
.socials__item img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

.socials__item:hover svg path {
  fill: var(--primary);
}

.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  outline: none;
  border: none;
  padding: 13.5px 25px;
  border-radius: 5px;
  border-radius: 2px;
  white-space: nowrap;
  border: 1px solid var(--primary);
  color: var(--head-secondary);
  background-color: var(--primary);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease-in;
}

.btn.transparent {
  border: 1px solid var(--primary);
  color: var(--primary);
  background-color: transparent;
}

.btn.black {
  border: 1px solid var(--head-primary);
  background-color: var(--head-primary);
}

.btn.arrow {
  position: relative;
  padding-right: 23px;
  width: fit-content;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  color: var(--primary);
  cursor: pointer;
  transition: 0.3s ease-in;
}

.btn:hover {
  border-color: var(--primary-hover);
  color: var(--primary);
  background: var(--primary-hover);
}

.btn.fill:hover {
  border: 1px solid var(--primary);
  color: var(--primary);
  background-color: transparent;
}

.btn-arrow:hover {
  color: var(--primary);
}

.btn-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url(../images/btn-arr.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.3s ease-in;
}

.btn-arrow:hover::before {
  background-image: url(../images/btn-arr-hov.svg);
  transform: translateY(-50%) rotate(45deg);
}

.swiper {
  width: 100% !important;
  overflow: hidden !important;
}

.swiper-slide {
  box-sizing: border-box !important;
}

.swiper-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 10px 20px;
  margin-top: 40px;
}

.swiper-nav .swiper-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.swiper-nav .swiper-button-prev::after,
.swiper-nav .swiper-button-next::after {
  display: none;
}

.swiper-nav .swiper-button-prev,
.swiper-nav .swiper-button-next {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-top: 0;
  border-radius: 2px;
  background: transparent;
  border: 1px solid var(--primary);
  transition: 0.3s ease-in;
}

.swiper-nav .swiper-button-prev:hover,
.swiper-nav .swiper-button-next:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
}
.swiper-nav .swiper-button-prev.swiper-button-disabled,
.swiper-nav .swiper-button-next.swiper-button-disabled {
  background: var(--background-secondary);
  border-color: var(--background-secondary);
  opacity: 1;
  pointer-events: none;
}

.swiper-nav .swiper-button-prev svg,
.swiper-nav .swiper-button-next svg {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}

.swiper-nav .swiper-button-prev path,
.swiper-nav .swiper-button-next path {
  fill: var(--primary);
}

.swiper-nav .swiper-button-prev.swiper-button-disabled path,
.swiper-nav .swiper-button-next.swiper-button-disabled path {
  fill: var(--main-text-primary);
}

.swiper-nav .swiper-pagination {
  position: static;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  width: fit-content !important;
}

.swiper-nav .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  border-radius: 1px;
  width: 6px;
  height: 6px;
  margin: 0 !important;
  background: var(--stroke);
  transition: 0.3s ease-in;
  opacity: 1 !important;
}

.swiper-nav .swiper-pagination .swiper-pagination-bullet-active {
  width: 30px;
  background: var(--primary);
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  width: fit-content;
  margin: 40px auto 0;
}

.pagination span.page-numbers.prev,
.pagination span.page-numbers.next {
  background: var(--background-secondary);
  border-color: var(--background-secondary);
  opacity: 1;
  pointer-events: none;
}

.pagination .page-numbers.prev,
.pagination .page-numbers.next {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  width: 50px;
  height: 50px;
  background: transparent;
  border: 1px solid var(--primary);
  transition: 0.3s ease-in;
}

.pagination .page-numbers.prev {
  margin-right: 120px;
}
.pagination .page-numbers.next {
  margin-left: 120px;
}

.pagination .page-numbers.prev:hover,
.pagination .page-numbers.next:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
}

.pagination span.page-numbers.prev svg,
.pagination span.page-numbers.next svg {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}

.pagination span.page-numbers.prev svg path,
.pagination span.page-numbers.next svg path {
  fill: var(--main-text-primary);
}

.pagination .page-numbers.prev svg path,
.pagination .page-numbers.next svg path {
  fill: var(--primary);
}

.pagination .page-numbers {
  text-align: center;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  color: var(--main-text-primary);
}
.pagination .page-numbers.current {
  color: var(--primary);
}

@media (max-width: 768px) {
  .pagination {
    margin-top: 20px;
  }
}

/* ============ MENU STYLES ================= */

.main-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.main-menu .nav-menu-element a {
  font-weight: 500;
  font-size: clamp(1.125rem, 0.917rem + 0.28vw, 1.25rem);
  color: var(--head-secondary);
  line-height: 130%;
  white-space: nowrap;
  transition: 0.3s ease-in;
}

#header.painted .main-menu .nav-menu-element a {
  color: var(--head-primary);
}

#header ul:not(.sub-menu) li.active > a,
#header ul:not(.sub-menu) li:hover > a {
  color: var(--primary) !important;
}

#header .sub-menu li.active > a {
  color: var(--primary) !important;
}

.header__desc .main-menu .nav-menu-element:is(.has-childs) > a {
  position: relative;
  padding-right: 22px;
}

.header__desc .main-menu .nav-menu-element:is(.has-childs) > a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  background-image: url("../images/sub-arr-front.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.3s ease-in;
}

#header.painted
  .header__desc
  .main-menu
  .nav-menu-element:is(.has-childs)
  > a::before {
  background-image: url("../images/sub-arr.svg");
}

.header__desc .main-menu .nav-menu-element:is(.has-childs):hover > a::before,
.header__desc .main-menu .nav-menu-element.active:is(.has-childs) > a::before,
#header.painted
  .header__desc
  .main-menu
  .nav-menu-element:is(.has-childs):hover
  > a::before,
#header.painted
  .header__desc
  .main-menu
  .nav-menu-element.active:is(.has-childs)
  > a::before {
  background-image: url("../images/sub-arr-hov.svg");
}

.header__desc .main-menu .nav-menu-element:is(.has-childs):hover > a::before {
  transform: translateY(-50%) rotate(180deg);
}

.main-menu > .nav-menu-element.has-childs .sub-menu {
  position: absolute;
  top: 53px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 0 0 2px 2px;
  padding: 25px;
  width: fit-content;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  z-index: 2;
  transition: all 0.3s ease-in;
}

/* .main-menu > .nav-menu-element.has-childs .sub-menu .nav-menu-element.has-childs > .sub-menu {
	top: 0;
	left: calc(100% + 25px);
	opacity: 0;
	visibility: hidden;
} */

#header.painted .main-menu .sub-menu {
  background: var(--background);
}

.main-menu .sub-menu::before {
  content: "";
  position: absolute;
  top: -30px;
  left: -10px;
  width: 100%;
  height: 70%;
}

.main-menu > .nav-menu-element.has-childs:hover > .sub-menu,
.main-menu
  > .nav-menu-element.has-childs
  .sub-menu
  .nav-menu-element.has-childs:hover
  > .sub-menu {
  opacity: 1;
  visibility: visible;
}

#header #mobile-mnu .sub-menu,
#footer .sub-menu {
  display: none;
}

#header #mobile-mnu .menuTop {
  display: flex;
  flex-direction: column;
  gap: 15px;
  list-style-type: none;
}

#header #mobile-mnu .menuTop li {
  width: fit-content;
}
#header #mobile-mnu .menuTop li a {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.25;
  color: var(--head-primary);
}
#header #mobile-mnu .menuTop li:hover a,
#header #mobile-mnu .menuTop li.active a {
  color: var(--primary);
}

/* ============ HEADER ================= */

#header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 15px 0;
  background: rgba(255, 255, 255, 0.2);
  transition: 0.3s ease-in;
}

#header.painted {
  background-color: var(--background);
  box-shadow: 0 5px 35px 0 rgba(0, 0, 0, 0.1);
}

#header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

#header .header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1170px;
  width: 100%;
}

#header .header__menu {
  display: flex;
  gap: 30px;
}

#header .header__catalog {
  list-style: none;
}

#header.front-page .header__catalog-link {
  color: var(--head-secondary);
}

#header .header__catalog-link,
#header.painted .header__catalog-link {
  position: relative;
  padding-right: 22px;
  font-weight: 500;
  font-size: clamp(1.125rem, 0.917rem + 0.28vw, 1.25rem);
  color: var(--head-primary);
  line-height: 130%;
  white-space: nowrap;
  transition: 0.3s ease-in;
}

#header .header__catalog-link:hover {
  color: var(--primary);
}

#header .header__catalog-link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  background-image: url(../images/sub-arr-front.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.3s ease-in;
}

#header.painted .header__catalog-link::before {
  background-image: url(../images/sub-arr.svg);
}

#header .header__catalog-link:hover::before {
  background-image: url(../images/sub-arr-hov.svg);
  transform: translateY(-50%) rotate(180deg);
}

.menu-categories {
  position: absolute;
  top: 80px;
  left: 0;
  display: flex;
  width: 100%;
  max-height: 700px;
  opacity: 0;
  overflow-y: auto;
  padding-top: 30px;
  margin-top: -30px;
  visibility: hidden;
  z-index: 2;
  transition: 0.3s ease-in;
}

.header__catalog:hover > .menu-categories {
  opacity: 1;
  visibility: visible;
}

/* .menu-categories.visible {
	opacity: 1;
	visibility: visible;
} */

.menu-categories__holder {
  width: 100%;
  height: 100%;
  background: var(--background);
}

.menu-categories__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 30px;
  max-width: 900px;
  padding-top: 30px;
  width: 100%;
  background: var(--background);
  margin: 0 auto;
}

.item-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
  padding-bottom: 30px;
}

.item-menu__top {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--head-primary);
}

.item-menu__img {
  /* max-width: 150px; */
  width: 100%;
  max-height: 250px;
  height: 80vw;
  overflow: hidden;
}

.item-menu__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.3s ease-in;
}

.item-menu__top:hover .item-menu__img img {
  transform: scale(1.1);
}

.item-menu__name {
  font-weight: 400;
  /* font-size: clamp(1.125rem, 1.1rem + 0.13vw, 1.25rem); */
  line-height: 100%;
  color: var(--head-primary);
  transition: 0.3s ease-in;
}

.item-menu__top:hover .item-menu__name {
  color: var(--primary);
}

.childs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.childs__item {
  color: var(--head-primary);
}

.childs__item:hover {
  color: var(--primary);
}

.childs__item.hidden {
  display: none;
}

.childs__more {
  display: flex;
  gap: 5px;
  cursor: pointer;
}

.childs__more * {
  color: var(--primary);
}

.logo {
  max-width: 240px;
  width: 100%;
  max-height: 50px;
  height: auto;
  /* flex-shrink: 0; */
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.header__info {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header__info .header__shop {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header__info .header__shop .header__fibosearch {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  object-fit: contain;
}

.header__info .header__shop .header__fibosearch .dgwt-wcas-search-wrapp {
  max-width: unset !important;
  height: 100%;
}

.header__info .header__shop .header__fibosearch .dgwt-wcas-loader-circular {
  display: none;
}

.header__info .header__shop .header__fibosearch .dgwt-wcas-search-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.header__info .header__shop .header__fibosearch .dgwt-wcas-search-icon svg {
  max-width: unset !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#header.painted
  .header__info
  .header__shop
  .header__fibosearch
  .dgwt-wcas-search-icon
  svg
  path {
  fill: var(--head-primary);
}
.header__info
  .header__shop
  .header__fibosearch
  .dgwt-wcas-search-icon
  svg
  path {
  fill: var(--background);
}
.header__info
  .header__shop
  .header__fibosearch:hover
  .dgwt-wcas-search-icon
  svg
  path,
#header.painted
  .header__info
  .header__shop
  .header__fibosearch:hover
  .dgwt-wcas-search-icon
  svg
  path {
  fill: var(--primary);
}

.dgwt-wcas-om-bar button.dgwt-wcas-om-return,
.dgwt-wcas-om-bar button.dgwt-wcas-om-return:active {
  background: var(--head-primary) !important;
  transition: 0.3s ease-in;
}

.dgwt-wcas-om-bar button.dgwt-wcas-om-return:focus,
.dgwt-wcas-om-bar button.dgwt-wcas-om-return:hover {
  background: var(--primary) !important;
}

/* .header__info .header__shop svg path {
	fill: var(--background);
}

#header.painted .header__info .header__shop svg path {
	fill: var(--head-primary);
} */

.phones,
.phones__items,
.addresses,
.addresses__items,
.timetables,
.timetable,
.socials {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.phones .phones__value {
  white-space: nowrap;
}

.addresses .addresses__item {
  display: flex;
  gap: 10px;
}

.addresses .addresses__items .addresses__value *,
.timetables .timetable * {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  color: #1f1f1f;
}

/* ================ MOBILE MNU ============= */

#header .burger.open_menu {
  display: none;
  flex-direction: column;
  background-color: transparent;
  height: 40px;
  width: 40px;
  justify-content: space-evenly;
  align-items: center;
  border-radius: 2px;
  flex-shrink: 0;
  transition: 0.3s ease-in;
}
#header .burger.open_menu span {
  background-color: var(--background);
  width: 30px;
  height: 4px;
  transition: all 0.3s ease-in;
}
#header.painted .burger.open_menu span {
  background-color: var(--head-primary);
}
#header .burger.open_menu.clicked,
#header.painted .burger.open_menu.clicked {
  background-color: var(--primary);
}
#header .burger.open_menu.clicked span {
  background-color: var(--background);
}
#header #mobile-mnu {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 320px;
  background-color: var(--background);
  padding: 30px;
  transition: all 0.3s ease-in;
  transform: translateX(-350px);
  overflow-y: auto;
  z-index: 9999;
}
#header #mobile-mnu #close-mnu {
  font-size: 30px;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  display: block;
}
#header #mobile-mnu #close-mnu path {
  fill: var(--primary);
}

#header #mobile-mnu .header__logo {
  max-width: 170px;
}

#header #mobile-mnu .menu-mobile {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#header #mobile-mnu .menu-mobile a {
  display: flex;
  width: 100%;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
  color: var(--head-primary);
}

#header #mobile-mnu .menu-mobile .nav-menu-element:hover a,
#header #mobile-mnu .menu-mobile .nav-menu-element.active a {
  color: var(--primary);
}

#header #mobile-mnu.opened {
  transform: translateX(0);
}

#header #mobile-mnu .header__btn {
  width: 100%;
}

@media (max-width: 1450px) {
  #header .header__content {
    max-width: unset;
    width: unset;
  }
  .main-menu,
  #header .header__menu {
    gap: 15px;
  }
  .header__info .header__shop svg {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 1192px) {
  #header .burger.open_menu {
    display: flex;
    justify-self: flex-end;
  }
  #header .header__menu {
    display: none;
  }
}

@media (max-width: 768px) {
  .header__logo {
    max-width: 170px;
  }
  #header .header__desc .socials__items {
    display: none;
  }
  .header__info {
    gap: 15px;
  }
}

@media (max-width: 435px) {
  #header {
    padding: 10px 0;
  }
  #header .container {
    gap: 10px;
    padding: 0 10px;
  }
  #header .burger.open_menu {
    width: 34px;
    height: 34px;
  }
  #header .burger.open_menu span {
    width: 24px;
  }
  .header__info .header__shop,
  .header__info {
    gap: 10px;
  }
  .header__info .header__shop svg {
    width: 25px;
    height: 25px;
  }
}

/* ============ MAINBANNER STYLES =============== */

.mainbanner-block {
  position: relative;
  display: flex;
  margin-top: -80px;
  width: 100%;
  /* min-height: 940px; */
  height: 100%;
}

.mainbanner-block::before,
.mainbanner-block::after {
  content: "";
  position: absolute;
  width: 312px;
  height: 133px;
  top: -30px;
  background: var(--background);
  filter: blur(100px);
  -webkit-filter: blur(100px);
  z-index: 3;
}
.mainbanner-block::before {
  left: 164px;
  opacity: 0.7;
}

.mainbanner-block::after {
  right: 70px;
  opacity: 0.4;
}

.mainbanner-block .mainbanner-block__body {
  position: relative;
  width: 100%;
  height: auto;
}

.mainbanner-block .mainbanner-block__slider {
  height: 100%;
}

.mainbanner-block .slide-mainbanner {
  position: relative;
  width: 100%;
  height: 100%;
}

.mainbanner-block .slide-mainbanner__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.mainbanner-block .slide-mainbanner__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 316px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5) 50.19%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 2;
}

.mainbanner-block .slide-mainbanner__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 10% 50%;
  display: block;
}

.mainbanner-block .slide-mainbanner__container {
  width: 100%;
  height: 100%;
}

.mainbanner-block .slide-mainbanner__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
  max-width: 1010px;
  width: 100%;
  height: 100%;
  padding: 290px 0 276px;
  margin: 0 auto;
}

.mainbanner-block .slide-mainbanner__content::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 485px;
  filter: blur(274px);
  -webkit-filter: blur(274px);
  background: rgba(0, 0, 0, 0.35);
  z-index: -1;
}

.mainbanner-block .slide-mainbanner__top {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  max-width: 950px;
  width: 100%;
}

.mainbanner-block .slide-mainbanner__title {
  text-transform: uppercase;
  font-size: clamp(1.375rem, 0.813rem + 2.81vw, 4.188rem);
}

.mainbanner-block .slide-mainbanner__title,
.mainbanner-block .slide-mainbanner__desc {
  text-align: center;
  color: var(--head-secondary);
}

.mainbanner-block .slide-mainbanner__desc {
  max-width: 507px;
  width: 100%;
}

.mainbanner-block .slide-mainbanner__btn {
  margin: 0 auto;
}

.mainbanner-block .swiper-pagination {
  position: absolute;
  bottom: 40px !important;
  left: 50% !important;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: fit-content;
  gap: 15px;
  margin: 0 auto;
  z-index: 2;
}

.mainbanner-block .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  border-radius: 1px;
  width: 75px;
  height: 6px;
  background: rgba(255, 255, 255, 0.35);
  opacity: 1 !important;
  margin: 0 !important;
}

.mainbanner-block .swiper-pagination .swiper-pagination-bullet-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--background);
  animation: swipeSlide 6.2s linear infinite;
}

@keyframes swipeSlide {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@media (max-width: 1450px) {
  .mainbanner-block .slide-mainbanner__content {
    padding: 200px 0 150px;
  }
}
@media (max-width: 1192px) {
  .mainbanner-block::before,
  .mainbanner-block::after,
  .mainbanner-block .slide-mainbanner__content::before {
    display: none;
  }
  .mainbanner-block .slide-mainbanner__img::before {
    width: 100%;
    height: 100%;
    background-color: var(--head-primary);
    opacity: 0.5;
  }
}
@media (max-width: 768px) {
  .mainbanner-block .slide-mainbanner__content {
    gap: 20px;
    padding: 150px 0 110px;
  }
  .mainbanner-block .swiper-pagination {
    bottom: 20px;
    gap: 5px;
  }
  .mainbanner-block .swiper-pagination .swiper-pagination-bullet {
    width: 25px;
    height: 4px;
  }
}

/* ============ FILTER STYLES =============== */

.shop-holder #open-filter {
  bottom: 43%;
  left: 0px;
  width: fit-content;
  height: 27px;
  padding: 5px 10px;
  transform: rotate(90deg) translateY(57px);
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 10px 10px 0px 0px;
  color: var(--head-secondary);
  font-size: 16px;
  z-index: 50;
  position: fixed;
  display: none;
}

.shop-holder .filters-wrapper {
  flex: 1 0 24%;
  max-width: 300px;
  height: 100%;
  transition: 0.3s ease-in;
}

.shop-holder .filters-wrapper:not(:has(.filters-widget)) {
  display: none;
}

.shop-holder .filters-widget {
  width: 100%;
  height: 100%;
}

.filters-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: var(--background);
  z-index: 200;
  transition: 0.3s ease-in;
}

.filters-form .filter-top {
  display: none;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
}

.filters-form .filter-top .close-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.filters-form .filter-top .close-filter svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.filters-form .filter-top .close-filter:hover path {
  fill: var(--primary);
}

.filters-form .filter-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  overflow-y: auto;
}

.filters-form .filter-block {
  display: flex;
  flex-direction: column;
  border-radius: 2px;
  background: var(--background-thirdly);
}

.filters-form .filter-block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  gap: 15px;
  cursor: pointer;
  transition: 0.3s ease-in;
}

.filters-form .filter-block-title {
  transition: 0.3s ease-in;
}

.filters-form .filter-block-header:hover .filter-block-title,
.filters-form .filter-block.opened .filter-block-title {
  color: var(--primary);
}

.filters-form .filter-block-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  transition: 0.3s ease-in;
}

.filters-form .filter-block-toggler svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.filters-form .filter-block.opened .filter-block-toggler {
  transform: rotate(-180deg);
}

.filters-form .filter-block-header:hover .filter-block-toggler path,
.filters-form .filter-block.opened .filter-block-toggler path {
  fill: var(--primary);
}

.filters-form .filter-block-content {
  padding: 0 25px 30px;
}

.filters-form .filter-block-content .inputs.checkboxes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 230px;
  overflow: auto;
}

.filters-form .filter-body::-webkit-scrollbar {
  width: 3px;
}

.filters-form .filter-block-content .inputs.checkboxes::-webkit-scrollbar {
  width: 2px;
  /* ширина scrollbar */
}

.filters-form .filter-block-content .group {
  display: flex;
  gap: 10px;
}

form.filters-form .filter-block .filter-block-content .checkboxes input {
  display: none;
}

.filters-form .filter-block-content .checkboxes label {
  position: relative;
  padding-left: 24px;
  color: var(--main-text-primary);
  cursor: pointer;
  transition: 0.3s ease-in;
}

form.filters-form .filter-block-content .checkboxes label:hover {
  color: var(--primary);
}

form.filters-form
  .filter-block
  .filter-block-content
  .checkboxes
  label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid var(--main-text-primary);
  box-sizing: border-box;
  transition: 0.3s ease-in;
}

form.filters-form
  .filter-block
  .filter-block-content
  .checkboxes
  input:checked
  + label::before {
  border-color: var(--primary);
  border-width: 5px;
}

form.filters-form input[type="number"]::-webkit-inner-spin-button,
form.filters-form input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

form.filters-form .filter-block.filter-block-price .range-slider {
  margin-top: 26px;
}

form.filters-form .filter-block.filter-block-price .inputs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

form.filters-form .filter-block.filter-block-price .inputs input {
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
  color: var(--head-primary);
  border: 1px solid var(--stroke);
  border-radius: 5px;
  outline: none;
  width: 100%;
  padding: 7px 20px;
  transition: all 0.6s;
}

form.filters-form .filter-block.filter-block-price .inputs input::placeholder {
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
  color: inherit;
  transition: inherit;
}

form.filters-form .filter-block.filter-block-price .noUi-target {
  background: var(--stroke);
  height: 2px;
  border: 1px solid var(--stroke);
}

form.filters-form .filter-block.filter-block-price .noUi-horizontal {
  height: 1px;
}

form.filters-form .filter-block.filter-block-price .noUi-target {
  position: relative;
  direction: ltr;
}

form.filters-form .filter-block.filter-block-price .noUi-target,
form.filters-form .filter-block.filter-block-price .noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}

form.filters-form .filter-block.filter-block-price .noUi-base,
form.filters-form .filter-block.filter-block-price .noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

form.filters-form .filter-block.filter-block-price .noUi-connects {
  border-radius: 3px;
  height: 4px;
  top: -1px;
}

form.filters-form .filter-block.filter-block-price .noUi-connects {
  overflow: hidden;
  z-index: 0;
}

form.filters-form .filter-block.filter-block-price .noUi-connect {
  background: var(--head-primary);
  height: 100%;
}

form.filters-form .filter-block.filter-block-price .noUi-connect,
form.filters-form .filter-block.filter-block-price .noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 3px;
  height: 100%;
  width: calc(100% - 10px);
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}

form.filters-form
  .filter-block.filter-block-price
  html:not([dir="rtl"])
  .noUi-horizontal
  .noUi-origin {
  left: auto;
  right: 0;
}

form.filters-form .filter-block.filter-block-price .noUi-handle {
  position: absolute;
}

form.filters-form
  .filter-block.filter-block-price
  .noUi-horizontal
  .noUi-handle {
  cursor: pointer;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid var(--head-primary);
  right: -10px;
  top: -50%;
  transform: translateY(-50%);
  background: var(--background);
  box-shadow: unset;
}

form.filters-form
  .filter-block.filter-block-price
  .noUi-horizontal
  .noUi-handle::before {
  content: "";
  background: var(--card);
  opacity: 0;
  width: 21px;
  height: 21px;
  display: block;
  border-radius: 50%;
  border: 1px solid var(--primary);
  left: -7px;
  top: -7px;
  position: absolute;
  transition: opacity 0.3s ease;
}

.filters-form .buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.filters-form .buttons .btn {
  border-radius: 30px;
}

.filters-form .buttons .reset {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--main-text-primary);
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
  transition: 0.3s ease-in;
}

.filters-form .buttons .reset:hover {
  color: var(--primary);
}

.filters-form .buttons .reset svg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  stroke-width: 1.5px;
  object-fit: contain;
  flex-shrink: 0;
}

.filters-form .buttons .reset:hover path {
  stroke: var(--primary);
}

@media (max-width: 1192px) {
  .shop-holder #open-filter {
    display: flex;
  }
  .shop-holder .filters-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    height: 100vh;
    padding: 30px 20px;
    background: var(--background);
    z-index: 120;
  }
  .shop-holder .filters-wrapper.active {
    transform: translateX(0);
  }
  .shop-holder .filters-wrapper .filter-top {
    display: flex;
  }
  .filters-form .filter-body {
    padding-right: 5px;
  }
  .filters-form .filter-block-header {
    padding: 20px 15px;
  }
  .filters-form .filter-block-content {
    padding: 0 15px 20px;
  }
}

@media (max-width: 768px) {
  form.filters-form .filter-block.filter-block-price .inputs {
    display: flex;
    flex-direction: column;
  }
}

/* ============ BLOCK TOGGLE STYLES =============== */

.toggle-block__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.toggle-block__left {
  flex: 1 1 74.5%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}

.toggle-block__items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.item-toggle {
  display: flex;
  flex-direction: column;
  background: var(--background-thirdly);
}

.item-toggle__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 30px;
  cursor: pointer;
}

.item-toggle__top .item-toggle__title {
  transition: 0.3s ease-in;
}

.item-toggle__top:hover .item-toggle__title,
.item-toggle.is-opened .item-toggle__title {
  color: var(--primary);
}

.item-toggle__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.item-toggle__icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: 0.3s ease-in;
}

.item-toggle.is-opened .item-toggle__icon svg {
  transform: rotate(-180deg);
}

.item-toggle__top:hover .item-toggle__icon path,
.item-toggle.is-opened .item-toggle__icon path {
  fill: var(--primary);
}

.item-toggle__content {
  margin: 0 30px;
  padding: 20px 0 30px;
  border-top: 1px solid var(--primary);
}

.item-toggle__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.item-toggle__text p {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
  color: var(--main-text-primary);
}

.item-toggle__text strong {
  color: var(--head-primary);
}

.toggle-block__btn {
  margin: 0 auto;
}

.modal-toggle {
  position: sticky;
  top: 100px;
  border-radius: 2px;
  padding: 30px;
  max-width: 360px;
  width: 100%;
  height: 100%;
  background: var(--primary);
}

.modal-toggle__title,
.modal-toggle__desc {
  color: var(--head-secondary);
}

.modal-toggle__desc {
  margin-top: 15px;
}

.modal-toggle__btn {
  width: 100%;
  margin-top: 40px;
}

@media (max-width: 992px) {
  .toggle-block__wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .item-toggle__top {
    padding: 20px;
  }
  .item-toggle__content {
    margin: 0 20px;
    padding-bottom: 20px;
  }
  .modal-toggle {
    position: static;
    max-width: unset;
  }
  .modal-toggle__btn {
    margin-top: 20px;
  }
}
@media (max-width: 650px) {
  .modal-toggle {
    padding: 20px;
  }
}

/* ============ REVIEW STYLES =============== */

.reviews-holder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1190px;
  margin: 0 auto;
}

.item-review {
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-radius: 2px;
  padding: 25px;
  width: 100%;
  background: var(--background-thirdly);
}

.item-review__top {
  width: 100%;
  max-height: 400px;
  height: 30vw;
  border-radius: 2px;
  flex-shrink: 0;
  overflow: hidden;
  cursor: pointer;
}

.item-review__video {
  position: relative;
  width: 100%;
  height: 100%;
}

.item-review__preview {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.item-review__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.item-review__video-content {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.item-review__video-content.active {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.item-review__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.item-review__fullscreen {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--background);
  flex-shrink: 0;
  opacity: 0;
  pointer-events: 0;
  z-index: 2;
}

.item-review__fullscreen.active {
  opacity: 1;
  pointer-events: all;
}

.item-review__fullscreen svg {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}

.item-review__icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.item-review__top:hover .item-review__icon svg path {
  fill: var(--background);
}

.item-review__top:hover .item-review__icon svg circle {
  fill: var(--primary);
}

.item-review__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

@media (max-width: 1450px) {
  .reviews-holder {
    gap: 20px;
  }
}

@media (max-width: 1192px) {
  .reviews-holder {
    grid-template-columns: repeat(3, 1fr);
  }
  .item-review {
    padding: 15px;
  }
  .item-review__top {
    height: 40vw;
  }
  .item-review__icon {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 768px) {
  .reviews-holder {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .item-review {
    width: calc((100% - 10px) / 2);
  }
  .item-review__top {
    height: 60vw;
  }
}
@media (max-width: 435px) {
  .reviews-holder {
    flex-direction: column;
  }
  .item-review {
    width: 100%;
  }
  .item-review__top {
    height: 100vw;
  }
}

/* ============ WOOCOMMERCE START =============== */

.woocommerce-no-products-found {
  margin-bottom: 40px;
}

.woocommerce-no-products-found .woocommerce-info {
  font-weight: 600;
  font-size: clamp(1.125rem, 1.075rem + 0.25vw, 1.375rem);
  line-height: 115%;
  text-transform: uppercase;
  color: var(--head-primary);
}

.products-back__btn {
  margin-bottom: clamp(2.5rem, 1.875rem + 3.13vw, 5.625rem);
}

.header .shop-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  object-fit: contain;
}

.header .shop-btn .shop-btn__icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

.header .shop-btn .shop-btn__icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.header.painted .shop-btn .shop-btn__icon svg path {
  fill: var(--head-primary);
}
.header .shop-btn:hover .shop-btn__icon svg path,
.header.painted .shop-btn:hover .shop-btn__icon svg path {
  fill: var(--primary);
}

.header .shop-btn .shop-btn__counter {
  position: absolute;
  bottom: -5px;
  right: -5px;
  display: flex;
  justify-content: center;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  text-align: center;
  color: var(--head-secondary);
  background: var(--primary);
  z-index: 2;
  transition: 0.3s ease-in;
}

/* ============ CATEGORY PRODUCTS =============== */

.category-products-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
}

.product-category {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-category > a {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  /* height: 100%; */
}

.product-category a .product-category__img {
  width: 100%;
  max-height: 440px;
  height: 30vw;
  overflow: hidden;
}

.product-category a .product-category__img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 36 / 44;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: 0.3s ease-in;
}

.product-category a:hover .product-category__img img {
  transform: scale(1.1);
}

.product-category > a h2.woocommerce-loop-category__title {
  font-weight: 400;
  font-size: clamp(1.125rem, 1.1rem + 0.13vw, 1.25rem);
  line-height: 100%;
  color: var(--head-primary);
}

/* .product-category .childs__holder {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.product-category .childs__item {
	color: var(--head-primary);
}

.product-category .childs__item:hover {
	color: var(--primary);
}

.product-category .childs__item.hidden {
	display: none;
}

.product-category .childs__more {
	display: flex;
	gap: 5px;
	cursor: pointer;
}

.product-category .childs__more * {
	color: var(--primary);
} */

.woocommerce-loop-category__title mark {
  display: none;
}

.subcats-holder {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}

.subcats-holder .item-subcats {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.subcats-holder .item-subcats__img {
  width: 100%;
  max-height: 230px;
  height: 15vw;
  border-radius: 2px;
  overflow: hidden;
}

.subcats-holder .item-subcats__img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: 0.3s ease-in;
}

.subcats-holder .item-subcats:hover .item-subcats__img img {
  transform: scale(1.1);
}

.subcats-holder .item-subcats__title {
  text-align: center;
  transition: 0.3s ease-in;
}

.subcats-holder .item-subcats:hover .item-subcats__title {
  color: var(--primary);
}

@media (max-width: 1450px) {
  .subcats-holder {
    gap: 20px;
  }
}
@media (max-width: 1192px) {
  .category-products-wrapper {
    gap: 20px;
  }
  .subcats-holder {
    grid-template-columns: repeat(4, 1fr);
  }
  .subcats-holder .item-subcats__img {
    width: 100%;
    max-height: 250px;
    height: 25vw;
  }
}
@media (max-width: 992px) {
  .subcats-holder {
    gap: 20px;
  }
  .subcats-holder .item-subcats {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .subcats-holder {
    grid-template-columns: repeat(3, 1fr);
  }
  .category-products-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-category a .product-category__img {
    height: 40vw;
  }
}
@media (max-width: 650px) {
  .subcats-holder {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .subcats-holder .item-subcats {
    width: calc((100% - 10px) / 2);
  }
  .subcats-holder .item-subcats__img {
    height: 45vw;
  }
}
@media (max-width: 435px) {
  .category-products-wrapper {
    display: flex;
    flex-direction: column;
  }
  .product-category > a {
    gap: 10px;
  }
  .product-category a .product-category__img {
    height: 90vw;
  }
}

/* ============ SHOP STYLES =============== */

.shop-holder {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

/* ============ PRODUCTS CARD STYLES =============== */

.products-holder {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.products-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
}

li.product.type-product {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

a.woocommerce-loop-product__link {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  height: auto;
}

.product-card__top {
  display: flex;
  width: 100%;
  max-height: 410px;
  height: 25vw;
  border-radius: 2px;
  flex-shrink: 0;
  overflow: hidden;
}

.product-card__img {
  width: 100%;
  height: 100%;
}

.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: 0.3s ease-in;
}

.favorite-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--background);
  background: var(--background);
  flex-shrink: 0;
  cursor: pointer;
  transition: 0.3s ease-in;
  z-index: 2;
}

.product .favorite-btn {
  border: 0;
  background: none;
}

.favorite-btn svg {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.favorite-btn path {
  fill: transparent;
}

.product .favorite-btn path {
  fill: #fff8;
}

.favorite-btn:hover {
  border-color: var(--primary);
  background: transparent;
}

.favorite-btn:hover path,
.favorite-btn.favorite-remove path {
  fill: var(--primary);
  stroke: var(--primary);
}

a.woocommerce-loop-product__link:hover .product-card__img img {
  transform: scale(1.1);
}

.info-product {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

.info-product__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.info-product__colors {
  display: flex;
  flex-wrap: wrap;
}

.info-product__color {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 1px solid var(--background);
}

.info-product__color:not(:last-child) {
  margin-right: -7px;
}

.product-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
}

li.product.type-product .woocommerce-Price-amount bdi,
li.product.type-product .woocommerce-Price-amount bdi span {
  font-weight: 600;
  font-size: clamp(1.25rem, 1.175rem + 0.38vw, 1.625rem);
  text-transform: uppercase;
  color: var(--head-primary);
}

li.product.type-product a.add_to_cart_button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  background: var(--primary);
  flex-shrink: 0;
  transition: 0.3s ease-in;
}

li.product.type-product a.add_to_cart_button:hover {
  background: var(--primary-hover);
}

li.product.type-product a.add_to_cart_button svg {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

li.product.type-product a.add_to_cart_button:hover svg path {
  stroke: var(--primary);
}

@media (max-width: 1192px) {
  .products-wrapper,
  .shop-holder {
    gap: 20px;
  }
}

@media (max-width: 1192px) {
  .product-card__top {
    height: 35vw;
  }
}

@media (max-width: 768px) {
  .products-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-card__top {
    height: 50vw;
  }
}
@media (max-width: 435px) {
  .products-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .product-card__top {
    height: 90vw;
  }
  li.product.type-product {
    gap: 10px;
  }
  .info-product {
    gap: 5px;
  }
  li.product.type-product a.add_to_cart_button,
  li.product.type-product .favorite-btn {
    width: 36px;
    height: 36px;
  }
}

/* ============ SINGLE PRODUCT STYLES =============== */

.single-product__maingallery
  .maingallery-product__thumbs
  .swiper-slide
  .thumbs-gallery__img {
  border: 2px solid transparent;
  transition: border 0.3s ease-in-out;
}

.single-product__maingallery
  .maingallery-product__thumbs
  .swiper-slide.swiper-slide-thumb-active
  .thumbs-gallery__img,
.single-product__maingallery
  .maingallery-product__thumbs
  .swiper-slide
  .thumbs-gallery__img:hover {
  border: 2px solid var(--primary);
}

.maingallery-product__swiper-arrows {
  position: absolute;
  top: calc(50% - 24px);
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.maingallery-product__swiper-arrow {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--background);
  z-index: 1;
  cursor: pointer;
}

.maingallery-product__swiper-prev {
  transform: rotate(-90deg);
}

.maingallery-product__swiper-next {
  transform: rotate(90deg);
}

.maingallery-product__swiper-prev svg,
.maingallery-product__swiper-next svg {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.maingallery-product__swiper-prev svg path,
.maingallery-product__swiper-next svg path {
  fill: var(--primary);
}

@media (max-width: 768px) {
  .maingallery-product__swiper-arrows {
    top: calc(50% - 16px);
  }

  .maingallery-product__swiper-arrow {
    width: 32px;
    height: 32px;
  }

  .maingallery-product__swiper-prev svg,
  .maingallery-product__swiper-next svg {
    width: 24px;
    height: 24px;
  }
}

.single-product__header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: clamp(1.25rem, 1rem + 1.25vw, 2.5rem);
}

.single-product__header-breadcrumbs {
  padding: 0;
}

.single-product__header-favorite {
  position: relative;
  top: 0;
  right: 0;
}

h1.single-product__header-title {
  margin-bottom: 20px;
  font-size: 26px;
}

@media (max-width: 992px) {
  h1.single-product__header-title {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  h1.single-product__header-title {
    font-size: 18px;
  }
}

.single-product__wrapper {
  display: flex;
  width: 100%;
  margin-bottom: clamp(1.25rem, 0.375rem + 4.38vw, 5.625rem);
}

.maingallery-product {
  position: sticky;
  top: 100px;
  display: flex;
  gap: 10px;
  max-width: 40%;
  width: 100%;
  max-height: 480px;
  height: 60vw;
}

.maingallery-product .swiper {
  height: 100%;
}

.maingallery-product__thumbs {
  position: relative;
  display: flex;
  flex-direction: column;
}

.maingallery-product__thumbs .gallery__nav {
  z-index: 1;
}

.thumbs-gallery__img {
  width: 75px;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.thumbs-gallery__img img,
.maingallery-product__img img {
  width: 100%;
  height: 100%;
  object-position: center;
  display: block;
}

.thumbs-gallery__img img {
  object-fit: cover;
}

.maingallery-product__img img {
  object-fit: contain;
}

.gallery-button-next::after,
.gallery-button-prev::after {
  display: none;
}

.gallery-button-next,
.gallery-button-prev {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-top: 0;
  cursor: pointer;
  background-color: #fff;
}

.gallery-button-prev.swiper-button-disabled,
.gallery-button-next.swiper-button-disabled {
  display: none;
}

.gallery-button-prev {
  top: 0;
}

.gallery-button-next {
  bottom: 0;
  /* transform: translateX(-50%); */
}

.gallery-button-prev svg,
.gallery-button-next svg {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}

.gallery-button-prev svg path,
.gallery-button-next svg path {
  fill: var(--primary);
}

.swiper-button-disabled svg path,
.swiper-button-disabled svg path {
  fill: var(--main-text-primary);
}

.maingallery-product .maingallery-product__img {
  border-radius: 2px;
  user-select: none;
  overflow: hidden;
  /* max-width: 505px; */
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.maingallery-product__swiper .swiper-slide {
  height: auto;
}

.maingallery-product .favorite-btn {
  position: absolute;
  top: 10px;
  right: 10px;
}

.maininfo-product {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 60%;
  width: 100%;
}

.maininfo-product__top form.variations_form.cart {
  flex-wrap: nowrap;
}

@media (min-width: 767.98px) {
  .single-product__header {
    align-items: center;
  }
}

@media (min-width: 992.98px) {
  .two-column {
    max-width: 250px;
    width: 55%;
  }

  .maininfo-product__top form.variations_form.cart {
    justify-content: space-between;
  }
}

@media (min-width: 1192.98px) {
  .two-column {
    padding-left: 30px;
    max-width: unset;
  }
}

@media (max-width: 992px) {
  .maininfo-product__top .three-column {
    margin-top: 20px;
  }

  .maininfo-product__top
    .three-column
    .single_variation_wrap
    .woocommerce-variation {
    align-items: flex-start;
  }

  .maininfo-product__top .three-column .single-add-to-card-buttin-holder {
    justify-content: flex-start;
    padding: 10px 0 0;
  }
}

.maininfo-product__top .three-column .qty-section {
  background-color: transparent;
}

.maininfo-product__top
  .three-column
  .single_variation_wrap
  .woocommerce-variation-price {
  background-color: transparent;
}

.maininfo-product__top .three-column .single-add-to-card-buttin-holder {
  background-color: transparent;
}

.maininfo-product__top .three-column .variation-text,
.maininfo-product__top .three-column .woocommerce-variation-description {
  text-align: left;
}

@media (min-width: 992.98px) {
  .maininfo-product__top .three-column {
    width: 45%;
    position: sticky;
    top: 100px;
    height: 60vw;
    max-height: 250px;
  }

  .maininfo-product__top .three-column .single_variation_wrap {
    background-color: #fff;
    border-radius: 16px;
    padding: 24px 20px 20px;
    position: relative;
    box-shadow: 0 2px 16px #00000014;
    gap: 10px;
  }

  .maininfo-product__top .three-column .qty-section {
    padding: 0;
  }

  .maininfo-product__top .three-column .variation-text,
  .maininfo-product__top .three-column .woocommerce-variation-description {
    margin-right: 10px;
  }

  .maininfo-product__top
    .three-column
    .single_variation_wrap
    .woocommerce-variation {
    flex-direction: row;
    align-items: center;
  }

  .maininfo-product__top .three-column .woocommerce-variation-price .price {
    padding: 0;
    width: auto;
  }

  .maininfo-product__top .three-column .single-add-to-card-buttin-holder {
    height: auto;
    margin-top: 15px;
    padding: 0;
  }

  .maininfo-product__top .three-column button.single_add_to_cart_button {
    width: 100%;
  }
}

@media (min-width: 1192.98px) {
  .maininfo-product__top
    .three-column
    .woocommerce-variation-add-to-cart-holder {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
}

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

.maininfo-product__desc h2 {
  margin-bottom: 20px;
  font-weight: 600;
  font-size: clamp(1.25rem, 1.175rem + 0.38vw, 1.625rem);
  line-height: 100%;
}

.maininfo-product__desc p,
.maininfo-product__desc li {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
  color: var(--main-text-primary);
}

.maininfo-product__desc li {
  padding-left: 20px;
}

.maininfo-product__desc li * {
  white-space: wrap;
}

.maininfo-product__desc ol li {
  list-style-type: decimal;
  list-style-position: inside;
}

.maininfo-product__desc ul li::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: var(--secondary);
  border-radius: 50%;
}

.maininfo-product__desc p:not(:last-child),
.maininfo-product__desc li:not(:last-child),
.maininfo-product__desc ul:not(:last-child),
.maininfo-product__desc ol:not(:last-child) {
  margin-bottom: 10px;
}

.maininfo-product__top .variations_form {
  display: flex;
  gap: 20px;
  width: 100%;
}

.maininfo-product__top tbody {
  display: flex;
}

.maininfo-product__top a.reset_variations,
.maininfo-product__top .iconic-was-attr-label-sep,
.maininfo-product__top .iconic-was-chosen-attribute {
  display: none !important;
}

.single_variation_wrap {
  gap: 20px;
  flex-wrap: wrap;
}

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

.maininfo-product__top .single_variation_wrap,
.maininfo-product__top form.cart,
.maininfo-product__top .single-product-simple-content {
  display: flex;
  width: 100%;
}
.maininfo-product__top tr {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0;
}

.maininfo-product__top th.label {
  display: block;
  width: 100%;
  text-align: center;
}

.maininfo-product__top th.label label {
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  text-align: center;
  color: var(--head-primary);
  margin-bottom: 0;
}

.maininfo-product__top tr td.value {
  position: relative;
  display: flex;
  padding: 10px 5px;
  background: var(--background-thirdly);
}

.maininfo-product__top tr td.value.pa_czvet,
.maininfo-product__top tr td.value.pa_razmer {
  background: transparent;
  margin-bottom: 20px;
}

.maininfo-product__top tr td.value.pa_razmer select {
  border: 1px solid #892f31;
  cursor: pointer;
}

.maininfo-product__top tr:first-child td.value {
  padding-left: 10px;
}

/*.maininfo-product__top tr td.value::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 16px;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	background-image: url(../images/caret-down-fill.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	z-index: 2;
	pointer-events: none;
}*/

.maininfo-product__top th.label .iconic-was-attr-label-text,
.maininfo-product__top .woocommerce-variation-description {
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  text-align: center;
  color: var(--head-primary);
}

.maininfo-product__top select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 180px;
  height: 50px;
  text-indent: 0px;
  padding: 15px 32px 15px 16px;
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  color: var(--head-primary);
}
.maininfo-product__top .single_variation_wrap .woocommerce-variation {
  /*opacity: 0;*/
  transition: all 0.3s ease-in !important;
}
.maininfo-product__top
  .single_variation_wrap:has(.woocommerce-variation-add-to-cart-enabled)
  .woocommerce-variation {
  opacity: 1;
}
.maininfo-product__top .single_variation_wrap .woocommerce-variation,
.maininfo-product__top .single-product-simple-price {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100% !important;
  gap: 5px;
}
.maininfo-product__top
  .single_variation_wrap
  .woocommerce-variation
  .woocommerce-variation-availability {
  display: none;
}

.cart-wrapper .shop_table .cart_item .info-holder .product-price {
  display: flex;
  flex-direction: column;
  min-width: 140px;
  /* width: 100%; */
}

.maininfo-product__top .single_variation_wrap .woocommerce-variation-price bdi,
.maininfo-product__top
  .single_variation_wrap
  .woocommerce-variation-price
  bdi
  span,
.maininfo-product__top .single-product-simple-price bdi,
.maininfo-product__top .single-product-simple-price bdi span,
.cart-wrapper .shop_table .cart_item .info-holder .product-price bdi,
.cart-wrapper .shop_table .cart_item .info-holder .product-price bdi span {
  font-weight: 600;
  font-size: 26px;
  line-height: 100%;
  white-space: nowrap;
  text-transform: uppercase;
  text-align: center;
  text-decoration: unset;
  color: var(--head-primary);
}

.maininfo-product__top .single_variation_wrap .woocommerce-variation-price,
.maininfo-product__top .single-product-simple-price-value {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 70px;
  height: 100%;
  background: var(--background-thirdly);
}

/* .maininfo-product__top .single-product-simple-price-value {
	padding-left: 20px;
} */

.maininfo-product__top .single_variation_wrap span.price,
.maininfo-product__top .single-product-simple-price-value span.price {
  display: flex;
  align-items: center;
  flex-direction: column-reverse;
  width: 125px;
  gap: 5px;
  padding: 10px 0 10px 5px;
}

.maininfo-product__top .single_variation_wrap span.price ins,
.maininfo-product__top .single-product-simple-price-value span.price ins,
.cart-wrapper .shop_table .cart_item .info-holder .product-price ins {
  text-decoration: unset;
}
.maininfo-product__top .single_variation_wrap span.price del,
.maininfo-product__top .single-product-simple-price-value span.price del,
.cart-wrapper .shop_table .cart_item .info-holder .product-price del {
  text-decoration: line-through;
}

.maininfo-product__top .single_variation_wrap span.price del bdi,
.maininfo-product__top .single_variation_wrap span.price del bdi span,
.maininfo-product__top .single-product-simple-price-value span.price del bdi,
.maininfo-product__top
  .single-product-simple-price-value
  span.price
  del
  bdi
  span,
.cart-wrapper .shop_table .cart_item .info-holder .product-price del bdi,
.cart-wrapper .shop_table .cart_item .info-holder .product-price del bdi span {
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: var(--main-text-primary);
}

.woocommerce-variation-add-to-cart-holder {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 5px;
}

.maininfo-product__top .variation-text {
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  text-align: center;
  color: var(--head-primary);
}

.maininfo-product__top .qty-section,
.cart-wrapper .shop_table .cart_item .qty-section {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 70px;
  padding: 10px 10px;
  background: var(--background-thirdly);
}

.cart-wrapper .shop_table .cart_item .qty-section {
  height: 100%;
  padding: 0;
  background: none;
}

.maininfo-product__top .qty-wrapper,
.cart-wrapper .shop_table .cart_item .qty-wrapper {
  display: flex;
  width: 100%;
  height: 48px;
  border: 1px solid var(--stroke);
  box-sizing: content-box;
}

.maininfo-product__top .qty-wrapper .qty-button,
.cart-wrapper .shop_table .cart_item .qty-wrapper .qty-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 48px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  flex-shrink: 0;
  color: var(--head-primary);
  background: var(--background);
  cursor: pointer;
}

.maininfo-product__top .qty-wrapper .qty-button:disabled,
.cart-wrapper .shop_table .cart_item .qty-wrapper .qty-button:disabled {
  color: var(--main-text-primary);
  pointer-events: none;
}

.maininfo-product__top .qty-wrapper .quantity,
.cart-wrapper .shop_table .cart_item .qty-wrapper .quantity {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 30px;
  height: 48px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  color: var(--head-primary);
  background-color: var(--background);
}

.maininfo-product__top .qty-wrapper .quantity input,
.cart-wrapper .shop_table .cart_item .qty-wrapper .quantity input {
  text-align: center;
  width: 100%;
  flex-grow: 1;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  color: var(--head-primary);
}

.maininfo-product__top button.single_add_to_cart_button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  width: fit-content;
  outline: none;
  border: none;
  max-height: 50px;
  height: 100%;
  padding: 15px 25px;
  border-radius: 30px;
  white-space: nowrap;
  border: 1px solid var(--primary);
  color: var(--head-secondary);
  background-color: var(--primary);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease-in;
}

.maininfo-product__top .single-add-to-card-buttin-holder {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  /* width: 100%; */
  height: 70px;
  padding: 11px 10px 11px 0;
  background-color: var(--background-thirdly);
}

/* .maininfo-product__top .single-add-to-card-buttin-holder button {
	width: 100%;
} */

.maininfo-product__top button.single_add_to_cart_button:hover {
  border: 1px solid var(--primary);
  color: var(--primary);
  background-color: transparent;
}

.two-column .sizetable-maininfo {
  margin-bottom: 15px;
}

.sizetable-maininfo {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 3px;
  cursor: pointer;
  transition: 0.3s ease-in;
}

.sizetable-maininfo:hover {
  gap: 10px;
}

.sizetable-maininfo .sizetable-maininfo__text {
  color: var(--primary);
  transition: 0.3s ease-in;
}

.sizetable-maininfo:hover .sizetable-maininfo__text {
  color: var(--secondary);
}

.sizetable-maininfo .sizetable-maininfo__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.sizetable-maininfo .sizetable-maininfo__icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.sizetable-maininfo:hover path {
  fill: var(--secondary);
}

#modal-sizetable.theme-modal {
  max-width: 880px;
}

#modal-sizetable .modal__title {
  margin-bottom: 30px;
}

#modal-sizetable .sizetable {
  display: flex;
  flex-direction: column;
}

#modal-sizetable .sizetable__row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 15px 20px;
}

#modal-sizetable .sizetable__row:nth-child(odd) {
  background: var(--background-thirdly);
}

#modal-sizetable .sizetable__row:first-child {
  margin-bottom: 20px;
}

#modal-sizetable .sizetable__row:first-child .sizetable__item {
  font-weight: 700;
  font-size: clamp(0.75rem, 0.482rem + 1.34vw, 1.125rem);
  line-height: 100%;
  text-align: center;
  color: var(--head-primary);
}

#modal-sizetable .sizetable__row .sizetable__item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 290px;
  width: 100%;
}

#modal-sizetable .sizetable__row .sizetable__item.sizetable__item-growth {
  max-width: 110px;
}

.bottom-product {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 0.375rem + 4.38vw, 5.625rem);
  width: 100%;
}

.attributes-product {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.attributes-product__items {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 30px;
  width: 100%;
}

.attr {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  width: calc((100% - 30px) / 2);
  border-radius: 2px;
  padding: 15px 30px;
  background: var(--background-thirdly);
}

.attr__value {
  text-align: right;
  color: var(--head-primary);
}

.bottom-product__info {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 100%;
}

.bottom-product__text h1,
.bottom-product__text h2,
.bottom-product__text h3,
.bottom-product__text h4,
.bottom-product__text h5,
.bottom-product__text h6 {
  margin-bottom: clamp(0.625rem, 0.375rem + 1.25vw, 1.875rem);
}

.bottom-product__text p,
.bottom-product__text li {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
  color: var(--main-text-primary);
}

.products-block__swiper .swiper-slide {
  height: auto;
}

@media (max-width: 1650px) {
  .maininfo-product__top select {
    width: 165px;
  }
  .maininfo-product__top tr:first-child td.value {
    padding-left: 10px;
  }
  .maininfo-product__top .single-add-to-card-buttin-holder {
    padding-right: 20px;
  }
  .maininfo-product__top .qty-wrapper .qty-button,
  .cart-wrapper .shop_table .cart_item .qty-wrapper .qty-button {
    width: 35px;
  }
}
@media (max-width: 1450px) {
  .maininfo-product__top .variations_form {
    flex-wrap: wrap;
  }
  .maininfo-product__top .qty-wrapper .qty-button,
  .cart-wrapper .shop_table .cart_item .qty-wrapper .qty-button {
    width: 50px;
  }
  .maininfo-product__top .variations_form table,
  .maininfo-product__top .variations_form tbody,
  .maininfo-product__top tr,
  .maininfo-product__top select {
    width: 100%;
  }
  .maininfo-product__top .single_variation_wrap span.price {
    padding-left: 20px;
  }
  .maininfo-product__top tr td.value,
  .maininfo-product__top tr:first-child td.value,
  .maininfo-product__top .single_variation_wrap span.price,
  .maininfo-product__top .single-add-to-card-buttin-holder,
  .maininfo-product__top .single-product-simple-price-value span.price {
    padding: 10px;
  }
  .maininfo-product__top tr td.value::before {
    right: 30px;
  }
  .maininfo-product__top .qty-wrapper .quantity,
  .maininfo-product__top .qty-wrapper .qty-button,
  .cart-wrapper .shop_table .cart_item .qty-wrapper .qty-button {
    height: 100%;
  }
  .maininfo-product__top button.single_add_to_cart_button {
    align-self: center;
  }
}
@media (max-width: 1192px) {
  .single-product__wrapper {
    gap: 20px;
  }
  .maingallery-product {
    max-width: 480px;
    max-height: 430px;
  }
  .thumbs-gallery__img {
    width: 70px;
  }
}
@media (max-width: 992px) {
  .maingallery-product {
    max-width: unset;
    width: 50%;
    height: 45vw;
  }
  .maininfo-product {
    width: calc(50% - 20px);
  }
  .thumbs-gallery__img {
    width: 80px;
  }
  .maininfo-product__top .variations_form,
  .maininfo-product__top .single_variation_wrap .woocommerce-variation,
  .woocommerce-variation-add-to-cart-holderб .maininfo-product__top tr {
    gap: 10px;
  }
  .maininfo-product__top .single_variation_wrap {
    gap: 10px;
    justify-content: flex-start;
  }
  .maininfo-product__top .qty-section {
    width: 150px;
    padding: 0;
    height: auto;
  }
  .maininfo-product__top tbody,
  .maininfo-product__top form.cart {
    flex-direction: column;
    gap: 10px;
  }
  .maininfo-product__top .single_variation_wrap span.price,
  .maininfo-product__top .single-product-simple-price-value span.price {
    width: 100%;
  }
  .maininfo-product__top .single-add-to-card-buttin-holder {
    height: 70px;
  }
}
@media (max-width: 768px) {
  .single-product__wrapper {
    flex-direction: column;
  }
  .maingallery-product {
    position: relative;
    top: 0;
    width: 100%;
    height: 80vw;
  }
  .thumbs-gallery__img {
    width: 130px;
  }
  .maingallery-product {
    max-height: 500px;
  }
  .maingallery-product .maingallery-product__img {
    max-width: unset;
  }
  .maininfo-product {
    gap: 20px;
    width: 100%;
    max-width: unset;
  }
  .maininfo-product__desc h2 {
    margin-bottom: 10px;
  }
  .maininfo-product__top tbody {
    flex-direction: row;
    gap: 0;
  }
  .attributes-product {
    gap: 20px;
  }
  .attributes-product__items {
    gap: 10px;
  }
  .attr {
    width: calc((100% - 10px) / 2);
    padding: 15px 20px;
  }
  #modal-sizetable .modal__title {
    margin-bottom: 20px;
  }
  #modal-sizetable .sizetable__row {
    padding: 10px;
  }
  #modal-sizetable .sizetable__row:first-child {
    margin-bottom: 0;
  }
}
@media (max-width: 650px) {
  .thumbs-gallery__img {
    width: 100px;
  }
  .attr {
    width: 100%;
  }
  /* #modal-sizetable.theme-modal {
		padding: 10px;
	} */
  #modal-sizetable .modal__title {
    padding-right: 30px;
    margin-bottom: 10px;
  }
}
@media (max-width: 435px) {
  .maingallery-product {
    flex-direction: column-reverse;
  }
  .maingallery-product {
    max-height: unset;
    height: 120vw;
  }
  .maingallery-product__thumbs {
    padding: 0 35px;
  }
  .thumbs-gallery__img {
    width: auto;
    max-height: 100px;
  }
  .gallery-button-prev,
  .gallery-button-next {
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
  }
  .gallery-button-prev {
    left: 0;
  }
  .gallery-button-next {
    left: unset;
    right: 0;
  }
  .maininfo-product__top tbody {
    flex-direction: column;
    gap: 10px;
  }
  .maininfo-product__top .woocommerce-variation-add-to-cart,
  .maininfo-product__top .single-product-simple-content {
    flex-direction: column;
  }
}

/* ============ FAVORITES PAGE =============== */

.page-favorites .info-holder {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 5px 15px;
  margin-bottom: 40px;
}

.page-favorites .info-holder .order-count {
  display: flex;
  align-items: center;
  gap: 20px;
}

.page-favorites .info-holder .order-count .name {
  color: var(--head-primary);
}

.page-favorites .clear-favorites {
  display: flex;
  align-items: center;
  gap: 5px;
  background: transparent;
  cursor: pointer;
  transition: 0.3s ease-in;
}

.page-favorites .clear-favorites svg {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.page-favorites .clear-favorites:hover {
  color: var(--primary);
}

.page-favorites .clear-favorites:hover path {
  stroke: var(--primary);
}

.page-favorites .products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  width: 100%;
}

@media (max-width: 1192px) {
  .products-wrapper,
  .page-favorites .products {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .products-wrapper,
  .page-favorites .products {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-favorites .info-holder {
    margin-bottom: 20px;
  }
}
@media (max-width: 435px) {
  .products-wrapper,
  .page-favorites .products {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

/* ============ CART STYLES =============== */

body .content > .woocommerce {
  margin-bottom: clamp(2.5rem, 1.875rem + 3.13vw, 5.625rem);
}

body .content > .woocommerce .woocommerce-notices-wrapper {
  display: none;
}

.cart-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.cart-wrapper .shop_table {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-wrapper .shop_table .cart_item {
  position: relative;
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  gap: 40px;
  border: 1px solid var(--stroke);
  border-radius: 2px;
  padding: 20px 70px 20px 20px;
  width: 100%;
}

.cart-wrapper .shop_table .cart_item .product-thumbnail {
  max-width: 120px;
  height: auto;
  border-radius: 2px;
  overflow: hidden;
}

.cart-wrapper .shop_table .cart_item .product-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 1 / 1;
  display: block;
}

.cart-wrapper .shop_table .cart_item .info-holder {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.cart-wrapper .shop_table .cart_item .info-holder .cart-item-center {
  max-width: 515px;
  width: 100%;
}

.cart-wrapper
  .shop_table
  .cart_item
  .info-holder
  .cart-item-center
  .product-name
  a {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(1.125rem, 1.075rem + 0.25vw, 1.375rem);
  line-height: 100%;
  color: var(--head-primary);
}

.cart-wrapper .shop_table .cart_item .info-holder .cart-item-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.cart-wrapper
  .shop_table
  .cart_item
  .info-holder
  .cart-item-right
  .product-quantity {
  width: 100%;
}

.cart-wrapper .shop_table .cart_item .info-holder .product-remove {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  z-index: 2;
}

.cart-wrapper .shop_table .cart_item .info-holder .product-remove svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.cart-wrapper .shop_table .cart_item .info-holder .product-remove:hover path {
  stroke: var(--primary);
}

.cart-wrapper .shop_table > div.actions {
  display: none;
}

.cart-wrapper .woocommerce-cart-form,
form.woocommerce-checkout .checkout-fields-wrapper {
  max-width: 1140px;
  width: 74.5%;
}

.cart-wrapper .cart-collaterals,
form.woocommerce-checkout .checkout-fields-card-total {
  max-width: 360px;
  width: 23.5%;
}

.cart-wrapper .cart_totals,
form.woocommerce-checkout .checkout-fields-card-total {
  display: flex;
  flex-direction: column;
  border-radius: 2px;
  padding: 40px;
  width: 100%;
  height: auto;
  background: var(--background-thirdly);
}

form.woocommerce-checkout .checkout-fields-card-total {
  height: 100%;
}

.cart-wrapper .cart_totals__top {
  display: flex;
  flex-direction: column;
}

.cart-wrapper .order-total {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 20px;
}

.cart-wrapper .product-count-total,
form.woocommerce-checkout .product-count-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--stroke);
  margin-bottom: 20px;
  color: var(--head-primary);
}

form.woocommerce-checkout .woocommerce-checkout-review-order {
  margin-bottom: 30px;
}

form.woocommerce-checkout .woocommerce-checkout-review-order table {
  width: 100%;
}

.cart-wrapper .last-price,
form.woocommerce-checkout .woocommerce-checkout-review-order .order-total {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
}

.cart-wrapper .last-value bdi,
.cart-wrapper .last-value bdi span,
form.woocommerce-checkout .order-total bdi,
form.woocommerce-checkout .order-total bdi span,
form.woocommerce-checkout .order-total th {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
  color: var(--head-primary);
  line-height: 1;
  font-weight: 600;
}

.cart-wrapper .wc-proceed-to-checkout {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.cart-wrapper .clear-button {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--main-text-primary);
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  font-size: 20px;
  background: transparent;
  cursor: pointer;
  transition: 0.3s ease-in;
}

.cart-wrapper .clear-button svg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10px;
  height: 10px;
  stroke-width: 1.5px;
  object-fit: contain;
  flex-shrink: 0;
}

.cart-wrapper .clear-button svg path {
  stroke: var(--main-text-primary);
}

.cart-wrapper .clear-button:hover {
  color: var(--primary);
}

.cart-wrapper .clear-button:hover svg path {
  stroke: var(--primary);
}

.cart-wrapper a.checkout-button,
form.woocommerce-checkout .checkout-fields-card-total input.button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  outline: none;
  border: none;
  padding: 13.5px 25px;
  border-radius: 5px;
  border-radius: 2px;
  white-space: nowrap;
  border: 1px solid var(--primary);
  color: var(--head-secondary);
  background-color: var(--primary);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease-in;
}

.cart-wrapper a.checkout-button:hover,
form.woocommerce-checkout .checkout-fields-card-total input.button:hover {
  border-color: var(--primary-hover);
  color: var(--primary);
  background: var(--primary-hover);
}

.woocommerce .wc-empty-cart-message .cart-empty {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: clamp(1.5rem, 1.225rem + 1.38vw, 2.875rem);
  line-height: 115%;
  text-transform: uppercase;
  color: var(--head-primary);
  margin-bottom: 20px;
}

@media (max-width: 1450px) {
  .cart-wrapper .shop_table .cart_item {
    gap: 20px;
    padding-right: 50px;
  }
  .cart-wrapper .shop_table .cart_item .info-holder .cart-item-right {
    gap: 40px;
  }
  .cart-wrapper .cart_totals {
    padding: 20px;
  }
  .cart-wrapper .wc-proceed-to-checkout {
    gap: 20px;
  }
}
@media (max-width: 1192px) {
  .cart-wrapper {
    flex-direction: column-reverse;
    gap: 20px;
  }
  .cart-wrapper .woocommerce-cart-form,
  .cart-wrapper .cart-collaterals {
    max-width: unset;
    width: 100%;
  }
}
@media (max-width: 992px) {
  .cart-wrapper .shop_table .cart_item .info-holder {
    flex-direction: column;
    align-items: unset;
  }
  .cart-wrapper .shop_table .cart_item .info-holder .cart-item-right {
    gap: 20px;
  }
}
@media (max-width: 650px) {
  .cart-wrapper .shop_table .cart_item {
    flex-direction: column;
    padding: 20px;
  }
  .cart-wrapper .shop_table .cart_item .product-thumbnail {
    max-width: 200px;
  }
  .cart-wrapper .shop_table .cart_item .info-holder {
    gap: 10px;
  }
  .cart-wrapper .shop_table .cart_item .info-holder .product-price {
    align-items: flex-end;
  }
  .cart-wrapper .shop_table .cart_item .info-holder .product-remove {
    top: 10px;
    right: 10px;
  }
}
@media (max-width: 435px) {
  .cart-wrapper .shop_table .cart_item .info-holder .cart-item-right {
    flex-direction: column;
    align-items: flex-start;
  }
  .cart-wrapper .shop_table .cart_item .info-holder .product-price {
    flex-direction: row-reverse;
    align-items: center;
    gap: 10px;
    min-width: unset;
  }
  .cart-wrapper .shop_table .cart_item .qty-section {
    width: 100%;
  }
}

/* ============ CHECKOUT STYLES =============== */

.woocommerce .woocommerce-form-coupon-toggle {
  display: none;
}

form.woocommerce-checkout {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
}

form.woocommerce-checkout .checkout-fields-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

form.woocommerce-checkout .form-row label {
  display: none;
}

form.woocommerce-checkout .shipping_address,
form.woocommerce-checkout .shipping_address p,
form.woocommerce-checkout .woocommerce-billing-fields__field-wrapper p {
  position: relative;
  display: flex !important;
}

form.woocommerce-checkout .shipping_address span,
form.woocommerce-checkout .woocommerce-billing-fields__field-wrapper span {
  width: 100%;
}

form.woocommerce-checkout
  .woocommerce-shipping-fields
  #ship-to-different-address {
  display: none;
}

form.woocommerce-checkout .woocommerce-billing-fields h5,
form.woocommerce-checkout .woocommerce-shipping-fields h5 {
  margin-bottom: 30px;
}

form.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
form.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
}
.woocommerce-terms-and-conditions-wrapper {
  display: none;
}

form.woocommerce-checkout .checkout-fields-wrapper .delivery-holder,
form.woocommerce-checkout .checkout-fields-wrapper .payments-holder {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

form.woocommerce-checkout
  .checkout-fields-wrapper
  .woocommerce-shipping-methods,
form.woocommerce-checkout
  .checkout-fields-wrapper
  .woocommerce-checkout-payment
  ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
}

form.woocommerce-checkout
  .checkout-fields-wrapper
  .woocommerce-shipping-methods
  input.shipping_method,
form.woocommerce-checkout
  .checkout-fields-wrapper
  .woocommerce-checkout-payment
  ul
  input.input-radio {
  display: contents;
}

form.woocommerce-checkout
  .checkout-fields-wrapper
  .woocommerce-shipping-methods
  label,
form.woocommerce-checkout
  .checkout-fields-wrapper
  .woocommerce-checkout-payment
  ul
  label {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
  height: 100%;
  padding: 20px 20px 20px 55px;
  border: 1px solid var(--stroke);
  border-radius: 2px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 22px;
  line-height: 100%;
  color: var(--main-text-primary);
  cursor: pointer;
  transition: 0.3s ease-in;
}

form.woocommerce-checkout
  .checkout-fields-wrapper
  .woocommerce-shipping-methods
  label {
  min-height: 90px;
}

form.woocommerce-checkout
  .checkout-fields-wrapper
  .woocommerce-shipping-methods
  label::before,
form.woocommerce-checkout
  .checkout-fields-wrapper
  .woocommerce-checkout-payment
  ul
  label::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  border: 1px solid var(--stroke);
  border-radius: 2px;
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  transition: 0.3s ease-in;
}
form.woocommerce-checkout
  .checkout-fields-wrapper
  .woocommerce-shipping-methods
  label
  bdi {
  position: relative;
  padding-left: 15px;
}
form.woocommerce-checkout
  .checkout-fields-wrapper
  .woocommerce-shipping-methods
  label
  bdi::before {
  content: "(+";
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: var(--main-text-primary);
}
form.woocommerce-checkout
  .checkout-fields-wrapper
  .woocommerce-shipping-methods
  label
  bdi::after {
  content: "руб.)";
  position: absolute;
  top: 0;
  right: -35px;
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: var(--main-text-primary);
}
form.woocommerce-checkout
  .checkout-fields-wrapper
  .woocommerce-shipping-methods
  label
  bdi
  span {
  display: none;
}
form.woocommerce-checkout
  .checkout-fields-wrapper
  .woocommerce-shipping-methods
  label[for="shipping_method_0_local_pickup1"]::after {
  content: "(Бесплатно)";
  position: absolute;
  bottom: 20px;
  left: 55px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: var(--main-text-primary);
}

form.woocommerce-checkout
  .checkout-fields-wrapper
  .woocommerce-shipping-methods
  input:checked
  + label,
form.woocommerce-checkout
  .checkout-fields-wrapper
  .woocommerce-checkout-payment
  ul
  input:checked
  + label,
form.woocommerce-checkout
  .checkout-fields-wrapper
  .woocommerce-shipping-methods
  label:hover,
form.woocommerce-checkout
  .checkout-fields-wrapper
  .woocommerce-checkout-payment
  ul
  label:hover {
  border-color: var(--primary);
  color: var(--primary);
}

form.woocommerce-checkout
  .checkout-fields-wrapper
  .woocommerce-shipping-methods
  input:checked
  + label::before,
form.woocommerce-checkout
  .checkout-fields-wrapper
  .woocommerce-checkout-payment
  ul
  input:checked
  + label::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  border: 3px solid var(--background);
  outline: 1px solid var(--primary);
  border-radius: 2px;
  width: 20px;
  height: 20px;
  background: var(--primary);
}

form.woocommerce-checkout
  .checkout-fields-wrapper
  .woocommerce-shipping-methods
  label:hover::before,
form.woocommerce-checkout
  .checkout-fields-wrapper
  .woocommerce-checkout-payment
  ul
  label:hover::before {
  border-color: var(--primary);
}

form.woocommerce-checkout
  .woocommerce-billing-fields__field-wrapper
  .woocommerce-invalid
  .woocommerce-input-wrapper
  input,
form.woocommerce-checkout
  .woocommerce-shipping-fields__field-wrapper
  .woocommerce-invalid
  .woocommerce-input-wrapper
  input {
  border-color: red;
  color: red;
}
form.woocommerce-checkout
  .woocommerce-billing-fields__field-wrapper
  p.woocommerce-invalid
  .woocommerce-input-wrapper
  input,
form.woocommerce-checkout
  .woocommerce-shipping-fields__field-wrapper
  p.woocommerce-invalid
  .woocommerce-input-wrapper
  input,
form.woocommerce-checkout
  .woocommerce-billing-fields__field-wrapper
  p.woocommerce-invalid
  .woocommerce-input-wrapper
  input::placeholder,
form.woocommerce-checkout
  .woocommerce-shipping-fields__field-wrapper
  p.woocommerce-invalid
  .woocommerce-input-wrapper
  input::placeholder {
  border-color: red;
  color: red;
}

form.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper p::before,
form.woocommerce-checkout .woocommerce-billing-fields__field-wrapper p::before {
  content: "*Некорректный ввод";
  position: absolute;
  bottom: -22px;
  left: 0;
  font-size: 16px;
  color: red;
  opacity: 0;
  transition: 0.3s ease-in;
}
form.woocommerce-checkout
  .woocommerce-billing-fields__field-wrapper
  p.woocommerce-invalid::before,
form.woocommerce-checkout
  .woocommerce-shipping-fields__field-wrapper
  p.woocommerce-invalid::before {
  opacity: 1;
}

.woocommerce-NoticeGroup-checkout {
  display: none;
}

/* ============ CHECKOUT THANK YOU =============== */

.woocommerce-order,
.woocommerce-order-details,
.woocommerce-order .woocommerce-table--order-details.shop_table,
.woocommerce-customer-details .order-info,
.woocommerce-customer-details .order-info .order-info-item,
.woocommerce-order .woocommerce-order-details,
.woocommerce-order .order-notes-holder {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.woocommerce-order .woocommerce-thankyou-order-received,
.woocommerce-order-details .woocommerce-order-details__title {
  font-size: clamp(1.25rem, 1.175rem + 0.38vw, 1.625rem);
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--head-primary);
  line-height: 1;
  font-weight: 600;
}

.woocommerce-order .woocommerce-thankyou-order-details,
.woocommerce-order-received .table-items,
.woocommerce-order .order-totals-holder .order-totals-table {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.woocommerce-order .woocommerce-thankyou-order-details li,
.woocommerce-order-received .table-items .order-details-item,
.woocommerce-order .order-totals-holder .totals-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 10px 15px;
  background-color: var(--background-thirdly);
  border-radius: 2px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: var(--head-primary);
}

.woocommerce-order .woocommerce-thankyou-order-details li strong,
.woocommerce-order .woocommerce-Price-amount bdi,
.woocommerce-order .woocommerce-Price-amount,
.woocommerce-order .totals-item-price,
.woocommerce-order .totals-item-price small.shipped_via,
.woocommerce-order .woocommerce-Price-amount span {
  color: var(--primary);
  font-weight: 700;
  text-align: right;
}

.woocommerce-order-details .woocommerce-table__line-item {
  display: flex;
  gap: 15px;
}

.woocommerce-order-received .table-items .order-details-item .order-item-top a,
.woocommerce-order-received
  .table-items
  .order-details-item
  .order-item-top
  strong,
.woocommerce-order .order-totals-holder .totals-item div:nth-child(1),
.woocommerce-customer-details .order-info .order-info-item .order-info-value,
.woocommerce-order .order-notes-holder .notes-text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: var(--head-primary);
}

.woocommerce-order .order-totals-holder .woocommerce-order-details__title {
  margin-bottom: 20px;
}
@media (max-width: 1450px) {
  form.woocommerce-checkout .checkout-fields-card-total {
    padding: 20px;
  }
}
@media (max-width: 1192px) {
  form.woocommerce-checkout .checkout-fields-wrapper {
    gap: 30px;
  }
  form.woocommerce-checkout .woocommerce-billing-fields h5,
  form.woocommerce-checkout .woocommerce-shipping-fields h5 {
    margin-bottom: 20px;
  }
  form.woocommerce-checkout .checkout-fields-wrapper .delivery-holder,
  form.woocommerce-checkout .checkout-fields-wrapper .payments-holder {
    gap: 20px;
  }
  form.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
  form.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper,
  form.woocommerce-checkout
    .checkout-fields-wrapper
    .woocommerce-shipping-methods,
  form.woocommerce-checkout
    .checkout-fields-wrapper
    .woocommerce-checkout-payment
    ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  form.woocommerce-checkout
    .woocommerce-shipping-fields__field-wrapper
    p::before,
  form.woocommerce-checkout
    .woocommerce-billing-fields__field-wrapper
    p::before {
    bottom: -18px;
    font-size: 14px;
  }
}
@media (max-width: 992px) {
  form.woocommerce-checkout {
    flex-direction: column-reverse;
    gap: 20px;
  }
  form.woocommerce-checkout .checkout-fields-card-total,
  form.woocommerce-checkout .checkout-fields-wrapper {
    max-width: unset;
    width: 100%;
  }
}
@media (max-width: 650px) {
  form.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
  form.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper,
  form.woocommerce-checkout
    .checkout-fields-wrapper
    .woocommerce-shipping-methods,
  form.woocommerce-checkout
    .checkout-fields-wrapper
    .woocommerce-checkout-payment
    ul {
    display: flex;
    flex-direction: column;
  }
  .woocommerce-order .woocommerce-thankyou-order-details li,
  .woocommerce-order-received .table-items .order-details-item,
  .woocommerce-order .order-totals-holder .totals-item {
    flex-direction: column;
  }
  .woocommerce-order .woocommerce-thankyou-order-details li,
  .woocommerce-order-received .table-items .order-details-item,
  .woocommerce-order .order-totals-holder .totals-item,
  .woocommerce-order .woocommerce-thankyou-order-details li strong,
  .woocommerce-order .woocommerce-Price-amount bdi,
  .woocommerce-order .woocommerce-Price-amount,
  .woocommerce-order .totals-item-price,
  .woocommerce-order .totals-item-price small.shipped_via,
  .woocommerce-order .woocommerce-Price-amount span {
    text-align: center;
  }
}

/* ============ FOOTER =============== */

#footer {
  border-radius: 10px 10px 0 0;
  background: var(--background-thirdly);
  margin-top: auto;
}

#footer .container {
  display: flex;
  flex-direction: column;
}

#footer .footer__top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 60px 0 30px;
}

#footer .footer__left {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 240px;
  width: 100%;
}

#footer .footer__req {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#footer .footer__req * {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
}

#footer .footer__menu {
  max-width: 835px;
  width: 100%;
}
#footer .footer__menu .footer-menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px 25px;
}

#footer .footer__menu .footer-menu .nav-menu-element {
  /* max-width: 220px; */
  width: 100%;
}

#footer .footer__menu .footer-menu .nav-menu-element a {
  font-weight: 700;
  font-size: 22px;
  line-height: 100%;
  color: var(--head-primary);
}

#footer .footer__menu .footer-menu .nav-menu-element a:hover {
  color: var(--primary);
}

#footer .contacts-footer {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

#footer .contacts-footer__content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

#footer .footer__phones {
  gap: 15px;
}

#footer .footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 30px 0;
  border-top: 1px solid var(--stroke);
}

#footer .dev {
  display: flex;
  /* align-items: flex-end; */
  gap: 5px;
  line-height: 1;
}

.glogo {
  width: 111px;
  height: 17px;
  mask-image: url("../images/gmask.png");
  mask-origin: border-box;
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: var(--main-text-primary);
  position: relative;
  cursor: pointer;
  display: inline-flex;
  vertical-align: sub;
  overflow: hidden;
}

.glogo:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: red;
  transform: translateX(100%);
  transition: transform 0.7s ease-in;
  background: linear-gradient(
      90deg,
      #fe6604 10%,
      #ee0a76 30%,
      #ee0a76 60%,
      #fe6604 101%
    )
    repeat-x 0 0;
  background-size: 100px;
  animation-duration: 5s;
  animation-name: slideUp;
  animation-iteration-count: infinite;
  animation-delay: 3s;
}

@keyframes slideUp {
  0% {
    transform: translateX(-100%);
  }

  50% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(100%);
  }
}

#footer .privacy-holder {
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: var(--main-text-primary);
}

#footer .privacy-holder:hover {
  color: var(--primary);
}

#footer .footer__rights {
  text-transform: uppercase;
}

@media (max-width: 1192px) {
  #footer .footer__top {
    flex-wrap: wrap;
  }
  #footer .footer__menu {
    max-width: unset;
    order: 3;
  }
  #footer .footer__menu .footer-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 25px;
  }
  #footer .footer__menu .footer-menu .nav-menu-element {
    width: fit-content;
    max-width: unset;
  }
}
@media (max-width: 992px) {
  #footer .footer__top {
    padding-top: 30px;
  }
  #footer .footer__bottom {
    flex-wrap: wrap;
  }
  #footer .dev {
    width: 100%;
    order: 3;
    justify-content: center;
  }
}
@media (max-width: 650px) {
  #footer .footer__left {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: unset;
    gap: 20px;
  }
  #footer .footer__menu {
    order: unset;
  }
  #footer .contacts-footer {
    width: 100%;
  }
  #footer .contacts-footer__content {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
  }
  #footer .footer__bottom {
    padding: 20px 0;
    flex-direction: column;
  }
  #footer .privacy-holder {
    order: 2;
  }
}

/* ============== NOTICES ============= */

#noticer {
  position: fixed;
  top: 100px;
  max-width: 250px;
  width: fit-content;
  border-radius: 5px 0px 0px 5px;
  transition: 0.7s;
  border: 1px solid var(--primary);
  background: var(--background);
  color: var(--primary);
  border-right: unset;
  right: 0;
  z-index: 123;
  font-size: 14px;
  padding: 10px;
  transform: translateX(100%);
}

#noticer.active {
  transform: translateX(0);
}

/* ============== MODAL ============= */

.fancybox__content .fancybox__html5video {
  outline: 0;
}
.theme-modal {
  display: none;
}

.theme-modal.fancybox__content {
  max-width: 575px;
  width: 100%;
  padding: 40px;
  border-radius: 2px;
  background: var(--background);
  overflow-y: auto;
  z-index: 9999;
  transition: 0.3s ease-in;
}

.theme-modal.fancybox__content .modal__title {
  width: 100%;
  margin-bottom: 15px;
}

.theme-modal.fancybox__content .modal__subtitle {
  margin-bottom: 25px;
}

.theme-modal.fancybox__content .close__modal {
  width: 100%;
}

.fancybox__toolbar__column.is-right .f-button svg path,
.fancybox__toolbar__column.is-right .f-button svg circle {
  stroke: var(--background);
}

.fancybox__content > .f-button.is-close-btn {
  --f-button-width: 15px !important;
  --f-button-height: 15px !important;
  --f-button-svg-width: 100% !important;
  --f-button-svg-height: 100% !important;
  --f-button-bg: transparent !important;
  --f-button-active-bg: transparent !important;
  --f-button-hover-bg: transparent !important;
  top: 20px !important;
  right: 20px !important;
  opacity: 1 !important;
}

.fancybox__content .f-button.is-close-btn svg path {
  fill: var(--stroke);
  stroke: transparent !important;
  transition: 0.3s ease-in;
}
.fancybox__content .f-button.is-close-btn:hover svg path {
  fill: var(--primary);
}
.fancybox__backdrop {
  /* background: rgba(0, 0, 0, 0.25) !important; */
  background: rgba(32, 26, 14, 0.8) !important;
}
@media (max-width: 768px) {
  .theme-modal.fancybox__content {
    padding: 20px;
  }
  .fancybox__content > .f-button.is-close-btn {
    top: 10px !important;
    right: 10px !important;
  }
  .theme-modal.fancybox__content .modal__subtitle {
    margin-bottom: 15px;
  }
}

/* ============== FORMS ============= */

.form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.form__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.form__inputs {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

input,
textarea,
select {
  outline: none;
  border: none;
  margin: 0;
  padding: 0;
}

textarea {
  resize: none;
  min-height: 110px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form__inputs {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form__inputs input,
.woocommerce-input-wrapper input {
  width: 100%;
  border-radius: 2px;
  padding: 16px 20px;
  background: var(--background);
  border: 1px solid var(--stroke);
  font-family: var(--font-family);
  outline: none;
  transition: 0.3s ease-in;
}

.form__inputs textarea,
.woocommerce-input-wrapper textarea {
  width: 100%;
  border-radius: 2px;
  padding: 16px 20px;
  background: var(--background);
  border: 1px solid var(--stroke);
  font-family: var(--font-family);
  outline: none;
  transition: 0.3s ease-in;
}

.form__inputs input:hover,
.woocommerce-input-wrapper input:hover,
.form__inputs input:focus,
.woocommerce-input-wrapper input:focus,
.form__inputs textarea:hover,
.woocommerce-input-wrapper textarea:hover,
.form__inputs textarea:focus,
.woocommerce-input-wrapper textarea:focus {
  border-color: var(--primary);
  color: var(--primary);
}

.form__inputs input.error,
.woocommerce-input-wrapper input.error,
.form__inputs textarea.error,
.woocommerce-input-wrapper textarea.error {
  border-color: red;
  color: red;
}

.form__inputs input.error::placeholder,
.woocommerce-input-wrapper input.error::placeholder,
.form__inputs textarea.error::placeholder,
.woocommerce-input-wrapper textarea.error::placeholder {
  color: red;
}

.form__inputs input::placeholder,
.woocommerce-input-wrapper input::placeholder,
.form__inputs textarea::placeholder,
.woocommerce-input-wrapper textarea::placeholder {
  transition: 0.3s ease-in;
}

.form__inputs input:hover::placeholder,
.woocommerce-input-wrapper input:hover::placeholder,
.form__inputs input:focus::placeholder,
.woocommerce-input-wrapper input:focus::placeholder,
.form__inputs textarea:hover::placeholder,
.woocommerce-input-wrapper textarea:hover::placeholder,
.form__inputs textarea:focus::placeholder,
.woocommerce-input-wrapper textarea:focus::placeholder {
  color: var(--primary);
}

.form .file__title {
  color: var(--primary);
  cursor: pointer;
  transition: 0.3s ease-in;
}
.form .file__title:hover {
  color: var(--head-primary);
}
.form .file__upload-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.form .file__item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.form .file__item p {
  font-size: 14px;
  color: var(--primary);
}
.form .file__item-delete {
  cursor: pointer;
}
.form .file__item-delete svg {
  width: 12px;
  height: 12px;
}

.form .file__item-delete svg path {
  fill: var(--primary);
}

.form input.hidden {
  display: none;
}

.form__buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form__buttons .btn {
  width: 100%;
}

.form__buttons .privacy-policy {
  width: 100%;
}

.form .privacy-policy a {
  font-size: clamp(0.75rem, 0.725rem + 0.13vw, 0.875rem);
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.form .privacy-policy a:hover {
  color: var(--primary);
}

@media (max-width: 768px) {
  .form {
    gap: 15px;
  }
}

/* ============= 404 ERROR PAGE =========== */

.error__holder {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1170px;
  width: 100%;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
}

.error__decor {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: clamp(9.375rem, 5.017rem + 21.79vw, 21.25rem);
  line-height: 100%;
  text-transform: uppercase;
  color: var(--primary);
}

.error__decor span {
  color: var(--secondary);
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
}

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

.error__title {
  margin-bottom: 15px;
}

.error__text {
  margin-bottom: 30px;
}

@media (max-width: 1192px) {
  .error__holder {
    flex-direction: column;
    gap: 20px;
  }
  .error__title,
  .error__text {
    text-align: center;
  }
  .error__btn {
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .error__holder {
    margin-top: 40px;
  }
  .error__text {
    margin-bottom: 15px;
  }
}

/* tabs */
.bottom-product__tabs {
  display: flex;
  column-gap: 25px;
  width: 100%;
  border-bottom: 1px solid #eee;
}

.bottom-product__tab {
  position: relative;
  padding: 18px 0;
  font-size: 16px;
  line-height: 100%;
  font-weight: 400;
  color: var(--main-text-primary);
  transition: color 0.3s ease-in-out;
}

.bottom-product__tab:hover {
  cursor: pointer;
  color: var(--head-primary);
}

.bottom-product__tab--active::before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 2px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  background-color: var(--secondary);
}

.bottom-product__content {
  display: none;
  flex-direction: column;
}

.bottom-product__content:not(.bottom-product__documents):not(.bottom-product__reviews) * {
  color: var(--main-text-primary);
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 110%;
}

.bottom-product__content ul {
  padding-left: 15px;
}

.bottom-product__content ol {
  padding-left: 20px;
}

.bottom-product__content ul > li {
  list-style-type: disc;
}

.bottom-product__content ol > li {
  list-style-type: decimal;
}

.bottom-product__content h1,
.bottom-product__content h2,
.bottom-product__content h3,
.bottom-product__content h4,
.bottom-product__content h5,
.bottom-product__content h6 {
  font-weight: 700;
  color: var(--head-primary);
  font-size: 18px;
}

.bottom-product__content *:last-child {
  margin-bottom: 0px;
}

.bottom-product__content--active {
  display: flex;
}

.bottom-product__documents {
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  column-gap: 50px;
}

.bottom-product__documents.bottom-product__content--active {
  display: grid;
}

.bottom-product__document {
  padding: 20px;
  display: flex;
  column-gap: 20px;
  border: 1px solid #e5e5e5;
  border-bottom-width: 0px;
}

.bottom-product__document:hover {
  box-shadow: 0 5px 30px #22222219;
  z-index: 1;
  border-color: white;
  background-color: white;
}

.bottom-product__document:nth-child(-n + 2) {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.bottom-product__document:nth-last-child(-n + 2) {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-width: 1px;
}

.bottom-product__document-svg {
  position: relative;
  width: 40px;
  height: 40px;
  font-style: 0;
}

.bottom-product__document-content {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  width: 100%;
}

.bottom-product__document-extension {
  position: absolute;
  left: 0;
  top: 57%;
  transform: translateY(-50%);
  display: flex;
  width: 33px;
  height: 16px;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  line-height: 100%;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.bottom-product__document-extension--blue {
  background-color: #2659be;
}

.bottom-product__document-extension--green {
  background-color: #4ba433;
}

.bottom-product__document-extension--red {
  background-color: #e01300;
}

.bottom-product__document-extension--azure {
  background-color: #3387de;
}

.bottom-product__document-extension--default {
  background-color: #785cb5;
}

.bottom-product__document-title {
  color: var(--head-primary);
}

.bottom-product__document-size {
  color: var(--main-text-primary);
}

.reviews .woocommerce-Reviews {
  display: flex;
  column-gap: 50px;
}

.reviews #comments {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

.reviews #comments .avatar {
  margin-bottom: 5px;
}

.woocommerce-Reviews-content {
  display: flex;
  column-gap: 50px;
  width: 100%;
}

.woocommerce-Reviews-left {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  width: 100%;
}

.reviews #review_form_wrapper {
  display: none;
  width: 100%;
}

.review_form_wrapper--active {
  display: block !important;
}

.woocommerce-Reviews-right {
  display: flex;
  flex-direction: column;
  row-gap: 25px;
  width: 25%;
  height: fit-content;
  flex-shrink: 0;
  box-shadow: 0 3px 20px rgba(34,34,34,.1);
  padding: 25px;
  border-radius: 12px;
}

.woocommerce-Reviews-right__average-score {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.woocommerce-Reviews-right__average-score svg {
  width: 28px;
  height: 28px;
}

.woocommerce-Reviews-right__average-score__value {
  font-size: 28px;
  line-height: 100%;
}

.woocommerce-Reviews-right__button {
  position: relative;
  width: fit-content;
  outline: none;
  border: none;
  height: 100%;
  width: 100%;
  padding: 12px 25px;
  border-radius: 30px;
  white-space: nowrap;
  border: 1px solid var(--primary);
  color: var(--head-secondary);
  background-color: var(--primary);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease-in;
}

.woocommerce-Reviews-right__button:hover {
  border: 1px solid var(--primary);
  color: var(--primary);
  background-color: transparent;
}

.reviews .comment-reply-title {
  display: block;
  margin-bottom: 10px;
}

.reviews .comment-notes {
  margin-bottom: 15px;
}

.reviews .comment-form {
  padding: 25px 30px;
  border: 1px solid #ededed;
  border-radius: 12px;
  max-width: 1000px;
}

.reviews .comment-form-comment {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.reviews .comment-form-comment textarea {
  resize: none;
  border: 1px solid #ededed;
  border-radius: 8px;
  padding: 10px 14px;
}

.reviews .comment-form-author,
.reviews .comment-form-email {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  margin-bottom: 15px;
}

.reviews .comment-form-author input,
.reviews .comment-form-email input {
  border: 1px solid #ededed;
  border-radius: 8px;
  padding: 6px 14px;
  height: 47px;
  font-size: 16px;
}

.reviews .comment-form-rating {
  margin-bottom: 15px;
}

.reviews .comment-form-rating .stars span {
  display: flex;
}

.reviews .comment-form-rating .stars span a {
  display: block;
  width: 20px;
  height: 20px;
}

.reviews .comment-form-rating .stars span a svg {
  width: 100%;
  height: 100%;
}

.reviews .comment-form-cookies-consent {
  position: relative;
  margin-bottom: 15px;
}

.reviews .comment-form-cookies-consent input {
  position: absolute;
  left: 0;
  top: 0;
  visibility: hidden;
  pointer-events: none;
}

.reviews .comment-form-cookies-consent label {
  display: flex;
  column-gap: 5px;
  line-height: 150%;
}

.reviews .comment-form-cookies-consent label:hover {
  cursor: pointer;
}

.reviews .comment-form-cookies-consent label:before {
  content: '';
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid #ededed;
  border-radius: 4px;
  flex-shrink: 0;
}

.reviews .comment-form-cookies-consent input:checked + label:before {
  content: url("/wp-content/themes/theme/assets/images/checked-input.svg");
}

.reviews .comment-form-cookies-consent label:hover:before {
  border-color: #E55;
}

.reviews .comment-form-attachment {
  position: relative;
  margin-bottom: 15px;
}

.reviews .comment-form-attachment > span {
  font-size: 14px;
}

.reviews span.required {
  color: #E55;
}

.reviews .form-submit .submit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  width: fit-content;
  outline: none;
  border: none;
  max-height: 50px;
  height: 100%;
  padding: 15px 25px;
  border-radius: 30px;
  white-space: nowrap;
  border: 1px solid var(--primary);
  color: var(--head-secondary);
  background-color: var(--primary);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease-in;
}

.reviews .form-submit .submit:hover {
  border: 1px solid var(--primary);
  color: var(--primary);
  background-color: transparent;
}

.reviews .commentlist {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.reviews .commentlist > li {
  list-style-type: none;
  padding: 24px;
  border: 1px solid #ededed;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}

.reviews .commentlist {
  padding-left: 0px;
}

.reviews .comment-form-attachment__input {
  position: absolute;
  left: 100%;
  top: 100%;
  visibility: hidden;
}

.reviews .comment-form-attachment__label {
  display: flex;
}

.reviews .comment-form-attachment__left {
  display: flex;
  align-items: center;
  border: 1px solid #ededed;
  border-radius: 12px;
  width: 100%;
  padding: 12px;
  transition: all 0.3s ease-in;
  background: transparent;
}

.reviews .comment-form-attachment__left:hover {
  cursor: pointer;
  background-color: var(--primary);
  border-color: var(--primary);
}

.reviews .comment-form-attachment__left span {
  transition: color 0.3s ease-in-out;
}

.reviews .comment-form-attachment__left:hover span {
  color: var(--head-secondary);
}

.reviews .comment-form-attachment__left svg path{
  transition: stroke 0.3s ease-in-out;
}

.reviews .comment-form-attachment__left:hover svg path{
  stroke: #ffffff;
}

.reviews .comment-form-attachment__delete {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  flex-shrink: 0;
  border: 1px solid #ededed;
  border-left: none;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  background: transparent;
  transition: all 0.3s ease-in;
}

.reviews .comment-form-attachment__delete svg path {
  transition: stroke 0.3s ease-in-out;
}

.reviews .comment-form-attachment__delete:hover {
  cursor: pointer;
  background-color: var(--primary);
  border-color: var(--primary);
}

.reviews .comment-form-attachment__delete:hover svg path {
  stroke: #ffffff;
}

.comment-form-attachment__label--has-file .comment-form-attachment__delete {
  display: flex;
}

.comment-form-attachment__label--has-file .comment-form-attachment__left {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}

.star-active svg {
  fill: #FFAA00;
}

.star-rating {
  display: flex;
}

.star-rating a {
  display: block;
  width: 20px;
  height: 20px;
}

.star-rating a svg {
  width: 100%;
  height: 100%;
}
.star-rating a:hover{
  cursor: default;
}

.comment-text .description {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}

.dco-image-attachment img {
  max-width: 300px;
  max-height: 300px;
  aspect-ratio: auto;
}

@media (max-width: 1200px) {
  .woocommerce-Reviews-content {
    flex-direction: column-reverse;
    row-gap: 50px;
    flex-shrink: 0;
  }

  .woocommerce-Reviews-right {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    box-shadow: none;
    padding: 0px;
  }

  .woocommerce-Reviews-right__button {
    width: fit-content;
    padding: 10px 20px;
    font-size: 15px;
  }

  .reviews .comment-form-rating .stars span a {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 768px) {
  .bottom-product__documents {
    column-gap: 24px;
  }

	.bottom-product__tabs {
		overflow-x: scroll;
		margin: 0 -15px;
		width: calc(100% + 30px);
		padding: 0 15px;
    scrollbar-width: none;
	}

	.bottom-product__tab {
		flex-shrink: 0;
	}

  .reviews .comment-form {
    padding: 15px;
  }

  .reviews .comment-form-cookies-consent label {
    font-size: 12px;
    line-height: 100%;
  }

  .reviews .comment-notes * {
    font-size: 12px;
    line-height: 100%;
  }

  .dco-image-attachment img {
    width: 100% !important;
  }
}

@media (max-width: 480px) {
  .bottom-product__documents {
    grid-template-columns: repeat(1, 1fr);
  }

  .bottom-product__document:nth-child(-n + 2) {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
  }

  .bottom-product__document:nth-last-child(-n + 2) {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
		border-bottom-width: 0px;
  }

  .bottom-product__document:first-child {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
  }

  .bottom-product__document:last-child {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    border-bottom-width: 1px;
  }
}
/* end tabs */
/*# sourceMappingURL=main.css.map */

