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

.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;
  }
}
/* =========== BASE CONFIG =========== */
html {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  font-weight: 400;
  box-sizing: inherit;
  color: var(--head-primary);
}
body {
  background-color: var(--second);
  overflow-x: hidden;
  margin: 0 auto;
  width: auto;
}
.seo-text::-webkit-scrollbar,
.products-wrapper .sidebar::-webkit-scrollbar,
.woocommerce .seo-block .seo-right-side .add-wrapper::-webkit-scrollbar {
  width: 3px;
	background: var(--background-secondary);
}
.seo-text::-webkit-scrollbar-thumb,
.products-wrapper .sidebar::-webkit-scrollbar-thumb,
.woocommerce .seo-block .seo-right-side .add-wrapper::-webkit-scrollbar-thumb {
  background-color: var(--primary);
	border-radius: 5px;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
a {
  text-decoration: none;
  color: var(--head-primary);
  transition: all 0.3s ease-in;
}
a:hover {
  color: var(--primary);
}
ul li {
  list-style-position: inside;
  font-size: 18px;
  line-height: 130%;
  list-style-type: none;
}
ol li {
  list-style-position: inside;
  font-size: 18px;
  line-height: 130%;
}
p {
  font-size: 18px;
  line-height: 130%;
}
h1.page-title {
  font-weight: 600;
  font-size: 48px;
  line-height: 100%;
  margin-bottom: 35px;
}
main.foned {
  position: relative;
  overflow: hidden;
  z-index: 999;
}
main.foned:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}
.breadcrumbs {
  padding: 20px 0px 15px 0px;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: var(--main-text-primary);
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.single-product .breadcrumbs {
  padding-bottom: 10px;
}
.breadcrumbs span {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: var(--main-text-primary);
  transition: 0.3s;
  position: relative;
}
.breadcrumbs span:hover {
  color: var(--primary);
}
.breadcrumbs .current-item,
.breadcrumbs span .current-item span {
  pointer-events: none;
  color: var(--primary);
}
.breadcrumbs span a:has(span):before {
  content: "";
  width: 15px;
  height: 9px;
  position: absolute;
  top: 3px;
  right: -11px;
  background-image: url(../images/bread.png);
  background-position: center;
  background-repeat: no-repeat;
}
.breadcrumbs span .current-item:before {
  display: none;
}
main, #primary {
  min-height: 70vh;
}
.container {
  max-width: 1560px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  white-space: nowrap;
  height: fit-content;
  background-color: var(--primary);
  border-radius: 5px;
  outline: none;
  padding: 20px 40px;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  color: var(--second);
  cursor: pointer;
  transition: all 0.3s ease-in;
  border: 1px solid transparent;
}
.btn.second {
  border: 1px solid var(--fourth);
  background: var(--fourth);
  color: var(--second);
}
.btn.third {
  background: transparent;
  border-color: var(--primary);
  color: var(--head-primary);
}
.btn.second:hover {
  background: var(--primary);
  color: var(--second);
  border-color: var(--primary);
}
.btn:hover {
  background-color: var(--primary-hover);
  color: var(--background);
}
.btn.third:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  color: var(--second);
}
#more-btn {
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}
.main-title {
  font-weight: 600;
  font-size: 40px;
  line-height: 100%;
  margin-bottom: 40px;
}
.text-holder {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-holder p,
.text-holder li {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--main-text-primary);
}
.text-holder ol,
.text-holder ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: -5px;
}
.text-holder ol {
  counter-reset: list;
}
.text-holder ol li {
  list-style-type: none;
  padding-left: 20px;
  position: relative;
  counter-increment: list;
}
.text-holder ol li:before {
  content: counter(list)".";
  width: 10px;
  height: 10px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 6px;
  left: 5px;
  position: absolute;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--main-text-primary);
}
.text-holder ul li {
  padding-left: 15px;
  position: relative;
}
.text-holder ul li:before {
  content: "";
  width: 5px;
  height: 5px;
  top: 9px;
  left: 0;
  position: absolute;
  border-radius: 100%;
  background: var(--primary);
}
.text-holder h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
}
.text-holder h4 {
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  margin-top: 25px;
}
.text-holder h4:nth-child(1) {
  margin-top: unset;
}
.text-holder a {
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: var(--primary);
}
.nav {
  position: relative;
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav .btns {
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav .swiper-button-prev,
.nav .swiper-button-next {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  position: static;
  justify-content: center;
  border-radius: 100%;
  background: var(--background-secondary);
  transition: 0.5s;
  cursor: pointer;
  margin-top: unset;
  z-index: 2;
}
.nav .swiper-button-prev:hover,
.nav .swiper-button-next:hover {
  background: var(--third);
}
.nav .swiper-button-prev svg,
.nav .swiper-button-next svg {
  width: 18px;
  height: 14px;
}
.nav .swiper-button-prev:after,
.nav .swiper-button-next:after {
  display: none;
}
.nav .swiper-button-prev path,
.nav .swiper-button-next path {
  transition: 0.5s;
}
.nav .swiper-button-prev:hover path,
.nav .swiper-button-next:hover path {
  stroke: var(--second);
}
.nav .swiper-button-disabled {
  opacity: 1 !important;
  pointer-events: none;
}
.nav .swiper-pagination {
  margin-left: auto;
  display: flex;
  align-items: center;
  width: fit-content !important;
  bottom: unset !important;
  position: static;
  gap: 10px;
  top: unset !important;
  flex-wrap: wrap;
  justify-content: center;
}
.nav .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: var(--stroke);
  transition: 0.3s;
  cursor: pointer;
  opacity: 1;
  margin: unset !important;
}
.nav .swiper-pagination-bullet:hover {
  background: var(--primary);
}
.nav .swiper-pagination-bullet-active {
  background: var(--primary);
}
.swiper-slide {
  box-sizing: border-box !important;
}
.text-all,
.text-all-works {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  margin-top: -10px;
  cursor: pointer;
  width: fit-content;
  transition: 0.3s;
  position: relative;
}
.text-all-works {
  margin-top: 10px;
}
.text-all:before {
  content: "";
  width: 14px;
  height: 12px;
  top: 5px;
  right: -20px;
  position: absolute;
  background-position: center;
  background-image: url(../images/moreArrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  transition: 0.5s;
}
.text-all:hover,
.text-all-works:hover {
  color: var(--primary);
}
.text-all:hover:before {
  transform: translateX(10px);
  background-image: url(../images/moreArrowHover.png);
}
.pagination {
  width: 100%;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  display: flex;
  gap: 30px;
  align-items: center;
}
.prev.page-numbers {
  margin-right: auto;
}
.next.page-numbers {
  margin-left: auto;
}
.page-numbers {
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  color: var(--main-text-primary);
  transition: 0.5s;
}
.page-numbers:hover {
  color: var(--primary);
}
.page-numbers.current {
  color: var(--primary);
}
.prev.page-numbers,
.next.page-numbers {
  width: 56px;
  height: 56px;
  border-radius: 100%;
  background: var(--background-secondary);
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prev.page-numbers path,
.next.page-numbers path {
  transition: 0.5s;
}
.prev.page-numbers:hover,
.next.page-numbers:hover {
  background: var(--primary);
}
.prev.page-numbers:hover path,
.next.page-numbers:hover path {
  fill: var(--background);
}
span.prev.page-numbers,
span.next.page-numbers {
  pointer-events: none;
}
.privacy-policy .content {
  padding-bottom: 40px;
}
.privacy-policy .content p {
  font-size: 14px;
}
.privacy-policy .content h2 {
  font-size: 18px;
  margin: 15px 0px 5px 0px;
  font-weight: 600;
}
.privacy-policy .content h2:nth-child(1) {
  margin-top: unset;
}
.seo-holder {
  padding: 40px 0px;
  display: flex;
  gap: 140px;
}
.seo-holder .seo-img {
  width: 33%;
  border-radius: 10px;
  overflow: hidden;
  height: 550px;
  display: flex;
}
.seo-holder .seo-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.seo-holder .seo-left-side {
  display: flex;
  flex-direction: column;
  width: 58%;
}
.seo-holder .seo-text {
  height: 467px;
  overflow: auto;
  padding-right: 60px;
}




/*============ HEADER =================*/
#header {
  top: 0;
  position: sticky;
  width: 100%;
  z-index: 98;
  box-shadow: 0 4px 20px 0 rgba(47, 47, 47, 0.05);
  background: var(--second);
  padding: 0px 15px;
}
#header .header-wrapper {
  display: flex;
  gap: 30px;
  padding: 20px 0px;
  max-width: 1530px;
  margin-left: auto;
  margin-right: auto;
}
#header .logo-holder {
  border: 1px solid var(--stroke-secondary);
  border-radius: 5px;
  padding: 30px;
  height: auto;
  max-width: 230px;
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#header .logo-holder img {
  width: 50px;
  height: 50px;
  display: flex;
  min-width: 50px;
}
#header .site-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  color: var(--second);
}
#header .img-logo {
	padding: unset;
	border: unset;
	overflow: hidden;
}
#header .img-logo img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
}
#header .header-center {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 30px;
}
#header .header-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}
#header .nav-menu-element a {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: var(--main-text-primary);
}
#header .nav-menu-element a:hover {
  color: var(--primary);
}
#header .header-top {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}
.socs {
  display: flex;
  gap: 15px;
}
.soc {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--stroke-secondary);
  border-radius: 5px;
  transition: 0.5s;
  background: var(--second);
}
.soc:hover {
  background: var(--head-primary);
}
.soc img,
.soc svg {
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  max-width: 60%;
  max-height: 60%;
  transition: 0.5s;
}
.soc path {
  transition: 0.5s;
}
.soc:hover img,
.soc:hover svg {
  filter: brightness(0) invert(1);
}
#header .socs {
  gap: 20px;
}
#header .soc {
  width: 20px;
  height: 20px;
  background: unset;
  border: unset;
}
#header .soc img,
#header .soc svg {
  max-width: unset;
  max-height: unset;
  width: 100%;
  height: 100%;
}
#header .soc:hover path {
  stroke: var(--primary);
}
#header .soc:hover img,
#header .soc:hover svg {
  filter: unset;
}
#header .phone-item {
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
}
#header .phone-item:hover {
  color: var(--third);
}
#header .header-bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
#header .header-cat {
  position: relative;
  z-index: 51;
}
#header .time-holder {
  display: flex;
  gap: 10px;
}
#header .time-icon {
  width: 24px;
  height: 24px;
  display: flex;
}
#header .time-icon img,
#header .time-icon svg {
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}
#header .time {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--main-text-primary);
}
#header .mobile-wrapper {
  display: none;
}
#header .header-cat .nav-menu-element.has-childs:has(a),
#header .header-top .nav-menu-element.has-childs:has(a) {
  position: relative;
}
#header .header-top .nav-menu-element.has-childs>a {
  padding-right: 20px;
}
#header .header-top .nav-menu-element.has-childs>a:before {
  position: absolute;
  content: "";
  width: 12px;
  height: 10px;
  top: 7px;
  right: 0px;
  transition: 0.5s;
  background-image: url(../images/mainChildClosed.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
#header .header-cat>.nav-menu-element.has-childs>a {
  width: fit-content;
  height: 100%;
  border-radius: 5px;
  position: relative;
  display: block;
  background: var(--fourth);
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  color: var(--second);
  padding: 20px 40px 20px 74px;
}
#header .header-cat>.nav-menu-element.has-childs>a:before {
  content: "";
  width: 20px;
  height: 20px;
  left: 43px;
  top: 17px;
  position: absolute;
  background-image: url(../images/menu.png);
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.5s;
}
#header .header-cat>.nav-menu-element.has-childs:hover>a {
  background: var(--third);
}
#header .header-cat>.nav-menu-element.has-childs:hover>a:before {
  background-image: url(../images/menuOpened.png);
}
#header .header-cat>.nav-menu-element.has-childs a+.sub-menu {
  position: absolute;
  bottom: -10px;
  min-width: 240px;
  left: 0;
  box-shadow: 0 4px 20px 0 rgba(47, 47, 47, 0.05);
  background: var(--second);
  padding: 30px 30px 0px 30px;
  border-radius: 10px;
  overflow: hidden;
  width: max-content;
  max-width: 630px;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 0px 30px;
  transition: all 0.2s ease;
  transition-delay: 0.15s;
  opacity: 0;
  transform: translateX(0%) translateY(100%);
  visibility: hidden;
  z-index: 50;
}
#header .header-cat>.nav-menu-element.has-childs a+.sub-menu:before {
  content: "";
  width: 100%;
  height: 10px;
  bottom: 0;
  left: 0;
  position: absolute;
  background: var(--second);
  pointer-events: none;
}
#header .header-top .nav-menu-element.has-childs a+.sub-menu {
  position: absolute;
  bottom: -5px;
  width: max-content;
  max-width: 350px;
  left: 0;
  position: absolute;
  border-radius: 10px;
  box-shadow: 0 4px 20px 0 rgba(47, 47, 47, 0.05);
  background: var(--second);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateX(0%) translateY(100%);
  z-index: 50;
  opacity: 0;
  transition: 0.5s;
  visibility: hidden;
}
#header .header-top .nav-menu-element.has-childs:hover>.sub-menu {
  opacity: 1;
  visibility: visible;
  z-index: 52;
}
#header .sub-menu .nav-menu-element a {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: var(--main-text-primary);
}
#header .sub-menu .nav-menu-element a:hover {
  color: var(--third);
}
#header .header-cat>.nav-menu-element.has-childs a+.sub-menu .nav-menu-element a {
  padding-bottom: 20px;
  padding-top: 20px;
  border-bottom: 1px solid var(--stroke-secondary);
  display: block;
}
#header .header-cat>.nav-menu-element.has-childs a+.sub-menu .nav-menu-element a:hover {
  color: var(--primary);
}
#header .header-cat>.nav-menu-element.has-childs:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  left: 0%;
}
#header .header-cat>.nav-menu-element.has-childs .sub-menu .nav-menu-element.has-childs a {
  padding-right: 20px;
}
#header .header-cat>.nav-menu-element.has-childs .sub-menu .nav-menu-element.has-childs a:before {
  position: absolute;
  content: "";
  width: 12px;
  height: 10px;
  top: 22px;
  right: 0px;
  transition: 0.5s;
  background-image: url(../images/mainChildClosed.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
#header .header-cat>.nav-menu-element.has-childs .sub-menu .nav-menu-element.has-childs:hover>a {
  color: var(--third);
}
#header .header-cat>.nav-menu-element.has-childs .sub-menu .nav-menu-element.has-childs:hover>a:before {
  background-image: url(../images/mainChildOpened.png);
}
#header .header-cat>.nav-menu-element.has-childs:hover .sub-menu .nav-menu-element.has-childs .sub-menu {
  opacity: 0;
  visibility: hidden;
}
#header .header-cat>.nav-menu-element.has-childs>a+.sub-menu .nav-menu-element.has-childs {
  height: 40px;
  transition: 0.5s;
}
#header .header-cat>.nav-menu-element.has-childs>a+.sub-menu .nav-menu-element.has-childs a+.sub-menu {
  position: static;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: unset;
  margin-top: unset;
  transform: unset;
  background: transparent;
  box-shadow: unset;
  border-bottom: 1px solid var(--stroke-secondary);
  border-radius: unset;
  padding-top: unset;
  padding-bottom: 20px;
  height: fit-content;
  transition: 0.5s;
  transform: translateY(-30px);
}
#header .header-cat>.nav-menu-element.has-childs .sub-menu .nav-menu-element.has-childs a+.sub-menu:before {
  display: none;
}
#header .header-cat>.nav-menu-element.has-childs .sub-menu .nav-menu-element.has-childs a+.sub-menu a {
  padding-bottom: unset;
  padding-right: unset;
  border-bottom: unset;
  padding-top: unset;
}
#header .header-cat>.nav-menu-element.has-childs .sub-menu .nav-menu-element.has-childs a+.sub-menu a:before {
  display: none;
}
#header .header-cat>.nav-menu-element.has-childs>a+.sub-menu .nav-menu-element.has-childs:hover {
  height: fit-content;
}
#header .header-cat>.nav-menu-element.has-childs>a+.sub-menu .nav-menu-element.has-childs:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: unset;
}
#header .header-cat>.nav-menu-element.has-childs>a+.sub-menu .nav-menu-element.has-childs:hover>a {
  border-bottom: transparent;
}
#header .dgwt-wcas-search-wrapp {
  max-width: 858px;
  position: relative;
  padding: unset;
  background: unset;
  font-size: unset;
  margin: unset;
  max-height: 56px;
  height: 56px;
  cursor: pointer;
  transition: 0.3s;
  border: unset;
  border-radius: 10px;
  background: var(--background-secondary);
  cursor: pointer;
}
#header .dgwt-wcas-search-form {
  height: 100%;
}
#header .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp {
  border-radius: 10px;
  background: transparent;
  border: 1px solid transparent;
  padding: unset;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.5s;
}
#header .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp:hover {
  border-color: var(--stroke-secondary);
}
#header .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
  background: unset;
  border-radius: unset;
  padding: 20px 25px 20px 0px;
  height: 100%;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: var(--main-text-secondary);
  cursor: pointer;
  outline: none;
}
#header .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input::placeholder {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: var(--main-text-secondary);
  transition: 0.5s;
}
#header .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit {
  position: static;
  height: 100%;
  cursor: pointer;
  min-height: unset;
  width: fit-content;
  transition: 0.5s;
  margin-right: 5px;
  margin-left: 15px;
  width: 24px;
}
.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit:hover {
  background: transparent !important;
  box-shadow: unset !important;
}
#header .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit path {
  transition: 0.5s;
  fill: var(--primary) !important;
}
#header .dgwt-wcas-search-wrapp:hover .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit path {
  fill: var(--primary) !important;
}
#header .search {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 560px;
  background: var(--background-light);
  border-radius: 10px;
}
#header .dgwt-wcas-close:hover {
  opacity: unset;
}
#header .dgwt-wcas-search-focused input {
  border: unset !important;
  outline: none;
}
#header .dgwt-wcas-style-pirx .dgwt-wcas-preloader {
  margin-right: unset;
  right: 5px !important;
}
.dgwt-wcas-open-pirx .dgwt-wcas-suggestions-wrapp {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  margin-top: 2px;
  border-radius: 10px;
}
#header .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit svg {
  width: 22px;
  height: 22px;
}
#header .woo-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}
#header .shop-btn {
  width: fit-content;
  height: fit-content;
  display: flex;
  gap: 7px;
  align-items: center;
  flex-direction: column;
  position: relative;
}
#header .shop-btn-top {
  display: flex;
  gap: 5px;
  align-items: center;
}
#header .shop-btn-name {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  text-align: center;
  color: var(--main-text-secondary);
}
#header .shop-btn:hover {
  background: var(--background-thirdly);
}
#header .shop-btn path {
  transition: 0.5s;
}
#header .shop-btn:hover path {
  fill: var(--primary);
}
#header .shop-btn__counter {
  border-radius: 5px;
  padding: 5px;
  width: fit-content;
  min-width: 30px;
  height: 22px;
  background: var(--background-secondary);
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  text-align: center;
  color: var(--third);
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
}






/*================ MOBILE MNU Start =============*/
#header .burger.open_menu {
  display: none;
  flex-direction: column;
  background-color: transparent;
  height: 30px;
  width: 30px;
  justify-content: space-evenly;
  align-items: center;
  border-radius: 2px;
  flex-shrink: 0;
}
#header .burger.open_menu span {
  background-color: var(--primary);
  width: 24px;
  height: 2px;
  transition: all 0.3s ease-in;
}
#header .burger.open_menu.clicked {
  background-color: var(--primary-hover);
}
#header .burger.open_menu.clicked span {
  background-color: var(--background);
}
#header #mobile-mnu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 320px;
  background: var(--background-secondary);
  padding: 30px 15px;
  transition: all 0.3s ease-in;
  transform: translateX(-350px);
  z-index: 9999;
  overflow: auto;
}
#header #mobile-mnu #close-mnu {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  display: block;
  width: 30px;
  height: 30px;
}
#header #mobile-mnu #close-mnu svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
#header #mobile-mnu #close-mnu path {
  fill: var(--head-primary);
}
#header #mobile-mnu a {
  font-size: 16px;
  line-height: 130%;
  font-weight: 450;
}
#header #mobile-mnu a:hover {
  color: var(--head-primary);
}
#header #mobile-mnu .logo__holder {
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
#header #mobile-mnu .logo__holder img {
  max-height: 60px;
}
#header #mobile-mnu .menuTop {
  list-style-type: none;
}
#header #mobile-mnu .menuTop li {
  margin-bottom: 5px;
}
#header #mobile-mnu .menuTop li a {
  font-size: 14px;
  line-height: 130%;
  font-weight: 600;
  color: var(--head-primary);
  position: relative;
}
#header #mobile-mnu .menuTop li a:hover {
  color: var(--primary);
}
#header #mobile-mnu .menuTop li.active a {
  color: var(--primary);
}
#header #mobile-mnu .menuTop .nav-menu-element.has-childs>a {
  position: relative;
}
#header #mobile-mnu .menuTop .nav-menu-element.has-childs>a:before {
  content: "";
  width: 10px;
  height: 6px;
  top: 7px;
  right: -18px;
  position: absolute;
  background-image: url(../images/menuArrow.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
#header #mobile-mnu .adresses__holder {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  width: 100%;
}
#header #mobile-mnu .adresses__holder:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  background-image: url("../images/map.svg");
  background-position: center center;
  background-repeat: no-repeat;
}
#header #mobile-mnu .adresses__holder p {
  font-size: 16px;
  line-height: 130%;
  font-weight: 450;
}
#header #mobile-mnu .email__holder {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
}
#header #mobile-mnu .email__holder .email__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  line-height: 130%;
  font-weight: 400;
}
#header #mobile-mnu .email__holder .email__item:hover {
  color: var(--head-primary);
}
#header #mobile-mnu .email__holder .email__item svg {
  margin-right: 10px;
}
#header #mobile-mnu .phones__holder {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
}
#header #mobile-mnu .phones__holder .phone__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  line-height: 130%;
  font-weight: 450;
}
#header #mobile-mnu .phones__holder .phone__item:hover {
  color: var(--head-primary);
}
#header #mobile-mnu .phones__holder .phone__item svg {
  margin-right: 10px;
}
#header #mobile-mnu.opened {
  transform: translateX(0);
}
#header #mobile-mnu .logo-holder {
  margin-bottom: 20px;
  margin-top: unset;
  width: 250px;
  align-items: flex-start;
  justify-content: flex-start;
  padding-right: 20px;
  max-width: unset;
}
#header #mobile-mnu .site-name-holder {
  order: unset;
  width: max-content;
  max-width: unset;
}
#header #mobile-mnu .site-name,
#header #mobile-mnu a,
#header #mobile-mnu .site-subtitle {
  color: var(--head-primary);
}
#header #mobile-mnu .soc-holder {
  margin-top: 10px;
  margin-left: unset;
  display: flex;
  gap: 10px;
  align-items: center;
}
#header #mobile-mnu .soc {
  width: 35px;
  height: 35px;
  display: flex;
  border-radius: 5px;
  background: var(--background);
  align-items: center;
  justify-content: center;
}
#header #mobile-mnu .soc img,
#header #mobile-mnu .soc svg {
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  max-width: 80%;
  max-height: 80%;
}
#header #mobile-mnu .sub-menu {
  display: none;
}
#header #mobile-mnu .sub-menu .nav-menu-element a {
  padding-left: 10px;
  position: relative;
  font-weight: 400;
  font-size: 13px;
}
#header #mobile-mnu .sub-menu .nav-menu-element a:before {
  content: "";
  width: 5px;
  height: 1px;
  top: 9px;
  left: 0;
  position: absolute;
  background: var(--head-primary);
}
#header #mobile-mnu .phones-holder {
  margin: 5px 0px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#header #mobile-mnu .sub-menu li {
  margin-bottom: 5px;
}
#header #mobile-mnu .nav-menu-element.has-childs>a::before {
  right: -14px;
}
#header #mobile-mnu .nav-menu-element.has-childs>a::after {
  right: -18px;
}
#header #mobile-mnu .phones-holder a,
#header #mobile-mnu .emails-holder a  {
  font-size: 14px;
  color: var(--primary);
  font-weight: 600;
}
/*================ MOBILE MNU End =============*/


/*============ FOOTER Start ===============*/
#footer {
  background: var(--background-secondary);
}
#footer .footer-wrapper {
  display: flex;
  gap: 30px;
  max-width: 1530px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 0px 30px 0px;
}
#footer .footer-left-wrapper {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
#footer .footer-top {
  display: flex;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--background-thirdly);
}
#footer .logo-holder  {
  padding: 30px;
  display: flex;
  gap: 10px;
  border-radius: 5px;
  background: var(--second);
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  align-items: center;
  max-width: 230px;
  margin-bottom: 40px;
  border: 1px solid var(--stroke-secondary);
}
#footer .socs {
  margin-bottom: 40px;
}
#footer .footer-info {
  display: flex;
  flex-direction: column;
  width: 360px;
  min-width: 360px;
}
#footer .info-holder {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
#footer .info-item {
  display: flex;
  flex-direction: column;
}
#footer .info-title {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: var(--main-text-secondary);
  margin-bottom: 10px;
}
#footer .values {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
#footer .value,
#footer .value p {
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  width: fit-content;
}
#footer a.value:hover {
  color: var(--primary);
}
#footer .footer-form-holder {
  display: flex;
  flex-direction: column;
  background: var(--third);
  border-radius: 10px;
  padding: 30px;
  min-width: 330px;
  width: 330px;
  align-items: center;
  height: fit-content;
}
#footer .form-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  text-align: center;
  color: var(--second);
  margin-bottom: 20px;
}
#footer .menu-holder {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  flex-grow: 1;
  max-width: 1140px;
  margin-left: auto;
}
#footer .reqs-holder {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}
#footer .reqs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#footer .reqs p {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--main-text-primary);
  pointer-events: none;
}
#footer .main-item {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  max-width: 350px;
}
#footer .menu-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  margin-bottom: 13px;
}
#footer .foot-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
#footer .nav-menu-element a {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: var(--main-text-primary);
}
#footer .nav-menu-element a:hover {
  color: var(--primary);
}
#footer .footer-default {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 30px 0px 40px 0px;
  border-top: 1px solid var(--stroke-secondary);
}
#footer .privacy-holder {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: var(--main-text-primary);
}
#footer .privacy-holder:hover {
  color: var(--primary);
}
.example-holder a {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  color: var(--main-text-primary);
}
.example-holder a:hover {
  color: var(--primary);
}
.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(--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 .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: 1s;
}
.glogo:hover:before {
	animation-name: unset;
	transform: translateX(0);
}

@keyframes slideUp {
	0% {
		transform: translateX(-100%);		
	}
	50% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(100%);		
	}
}
#footer .rights {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  color: var(--main-text-primary);
}
/*============ FOOTER End ===============*/






/* ============== MODAL Start ============= */
.theme-modal {
	display: none;
  position: relative;
}
.theme-modal .title {
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  text-align: center;
  margin-bottom: 15px;
}
.theme-modal .subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  color: var(--main-text-primary);
  margin-bottom: 25px;
}
#modal-success.theme-modal {
  align-items: center;
}
#modal-success.theme-modal .title {
  position: relative;
  padding-left: 30px;
}
#modal-success.theme-modal .title:before {
  content: "";
  width: 20px;
  height: 20px;
  top: 2px;
  left: 0px;
  position: absolute;
  background-image: url(../images/modalComplete.png);
  background-position: center;
  background-repeat: no-repeat;
}
#modal-success.theme-modal .subtitle {
  margin-bottom: unset;
  max-width: 300px;
}
.fancybox__content>.f-button.is-close-btn {
  top: 12px !important;
  right: 12px !important;
  --f-button-width: 14px !important;
  --f-button-height: 14px !important;
  --f-button-border-radius: unset !important;
  --f-button-color:unset !important;
  --f-button-hover-color: unset !important;
  --f-button-bg: transparent !important;
  --f-button-hover-bg: transparent !important;
  --f-button-active-bg: transparent !important;
  --f-button-svg-width: 100% !important;
  --f-button-svg-height: 100% !important;
}
.theme-modal .f-button svg {
  stroke: transparent !important;
  fill: var(--head-primary) !important;
}
.theme-modal .fancybox__content>.f-button.is-close-btn path {
  fill: var(--head-primary) !important;
  transition: 0.3s !important;
}
.theme-modal .fancybox__content>.f-button.is-close-btn:hover path {
  fill: var(--primary) !important;
}
.theme-modal.fancybox__content {
  width: 490px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: var(--second);
  border-radius: 10px;
  overflow: auto;
  border: 1px solid var(--stroke-secondary);
}
.theme-modal.fancybox__content .f-button.is-close-btn svg path {
  transition: stroke .3s ease-in;
}
.theme-modal.fancybox__content .f-button.is-close-btn:hover svg path {
  fill: var(--primary);
}
.form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-top {
  display: flex;
  gap: 10px;
}
button {
  border: unset;
}
button, input {
  outline: none;
}
.form input {
  border: unset;
  border-radius: 5px;
  padding: 15px 20px;
  transition: 0.3s;
  outline: none;
  cursor: pointer;
  width: 100%;
  height: fit-content;
  border: 1px solid var(--background-secondary);
}
.form textarea {
  height: 100px;
  width: 100%;
  border: unset;
  outline: none;
  border-radius: 5px;
  padding: 15px 20px;
  cursor: pointer;
  transition: 0.3s;
  resize: none;
  border: 1px solid var(--background-secondary);
}
.form input:hover,
.form textarea:hover {
  border-color: var(--stroke-secondary);
}
.form input,
.form textarea {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: var(--main-text-secondary);
  cursor: pointer;
  background: var(--background-secondary);
}
.form input.error,
.form textarea.error {
  border-color: red !important;
}
.form input::placeholder,
.form textarea::placeholder {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: var(--main-text-secondary);
  transition: 0.3s;
}
.theme-modal .btn {
  width: 100%;
}
.form .form-bot {
  margin-top: 10px;
}
.form .privacy-policy {
  margin-top: 15px;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  text-align: center;
  color: var(--main-text-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.form .privacy-policy a {
  width: fit-content;
  text-decoration: underline;
  text-decoration-skip-ink: none;
}
.form .privacy-policy a:hover {
  color: var(--primary);
}
.form-input.file input {
  display: contents;
}
.form-input.file span  {
  font-weight: 600;
  font-size: 15px;
  line-height: 120%;
  color: var(--primary);
  transition: 0.5s;
  cursor: pointer;
}
.form-input.file:hover span {
  color: var(--primary-hover);
}
body .fancybox__container {
  --fancybox-bg: rgba(0, 0, 0, 0.2) !important;
  backdrop-filter: blur(15px);
}
.input-desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--main-text-primary);
}
.form_input.file {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.theme-modal #file {
  display: none;
}
.theme-modal .file span {
  cursor: pointer;
  transition: 0.3s;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: var(--head-primary);
}
.theme-modal .file {
  padding: 15px 20px;
  background: var(--background-secondary);
  border-radius: 5px;
  transition: 0.5s;
  cursor: pointer;
  border: 1px solid var(--background-secondary);
  position: relative;
}
.theme-modal .file:before {
  content: "";
  width: 20px;
  height: 20px;
  top: 15px;
  right: 20px;
  position: absolute;
  background-image: url(../images/fileBtn.png);
  background-position: center;
  background-repeat: no-repeat;
}
.theme-modal .file:hover {
  border-color: var(--stroke-secondary);
}
/* ============== MODAL End ============= */






/* ============== Pages Start ============= */
.error-wrapper {
  display: flex;
  padding: 50px 0px 50px 50px;
  border: 1px solid var(--stroke-secondary);
  border-radius: 10px;
  position: relative;
  margin-top: 20px;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 400px;
}
.error-wrapper .btn {
  margin-right: auto;
}
.error-title {
  font-weight: 600;
  font-size: 48px;
  line-height: 100%;
  margin-bottom: 30px;
}
.error404 #main {
  min-height: 84vh;
}
.error-subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--main-text-primary);
  margin-bottom: 30px;
  max-width: 450px;
  text-align: left;
}
.error-info {
  display: flex;
  flex-direction: column;
  max-width: 550px;
}
.error-img {
  width: 45%;
  display: flex;
  height: auto;
  max-height: 300px;
  top: 50px;
  right: 0px;
}
.error-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: bottom right;
}
.page-id-92 h1.page-title {
  display: none;
}
.block-container {
  padding: 60px 0px;
}
.page-id-180 h1.page-title {
  display: none;
}
/* ============== Pages End ============= */













/* ============== Archive-reviews Start ============= */
#archive-reviews {
  padding-bottom: 120px;
}
#archive-reviews .reviews-page-wrapper {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
#archive-reviews .form-holder {
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 170px;
  height: fit-content;
  padding: 30px;
  border: 1px solid var(--stroke-secondary);
  border-radius: 10px;
  width: 24%;
}
#archive-reviews .form-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  margin-bottom: 10px;
}
#archive-reviews .form-desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--main-text-primary);
  margin-bottom: 25px;
}
#archive-reviews .reviews-holder {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 76%;
}
#archive-reviews .reviews {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}
#archive-reviews .review-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
#archive-reviews .review-link-item {
  display: flex;
  align-items: center;
  background: var(--background-secondary);
  border-radius: 5px;
  padding: 13px;
  gap: 10px;
}
#archive-reviews .review-link-icon {
  width: 30px;
  height: 30px;
  display: flex;
  border-radius: 5px;
  overflow: hidden;
}
#archive-reviews .review-link-icon img {
  width: auto;
  height: auto;
  display: block;
  object-fit: cover;
  max-width: 100%;
  max-height: 100%;
}
#archive-reviews .review-link-rate {
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  padding-left: 20px;
  position: relative;
}
#archive-reviews .review-link-rate:before {
  content: "";
  width: 15px;
  height: 15px;
  top: 2px;
  left: 0;
  position: absolute;
  background-image: url(../images/rate.png);
  background-position: center;
  background-repeat: no-repeat;
}
.review-item-template {
  border: 1px solid var(--stroke-secondary);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  height: fit-content;
  padding: 30px;
}
.review-item-template .review-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin-bottom: 25px;
}
.review-item-template .review-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  overflow: hidden;
  background: var(--background-secondary);
}
.review-item-template .review-photo img {
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}
.review-item-template .top-right-side {
  display: flex;
  flex-direction: column;
  height: auto;
  justify-content: space-between;
}
.review-item-template .review-name {
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  text-align: right;
  margin-bottom: 5px;
}
.review-item-template .review-date {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  text-align: right;
  color: var(--main-text-secondary);
}
.review-item-template .review-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}
.review-item-template .gallery-img {
  width: calc((100% - 30px) / 3);
  height: 90px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.review-item-template .gallery-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.review-item-template .gallery-img:before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.4);
  background-image: url(../images/plus.png);
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.5s;
  opacity: 0;
}
.review-item-template .gallery-img:hover:before {
  opacity: 1;
}
/* ============== Archive-reviews End ============= */













/* ============== Archive-works Start ============= */
#archive-works {
  padding-bottom: 120px;
}
#archive-works .works {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}
.works-item-template {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--stroke-secondary);
}
.works-item-template .works-gallery-holder {
  height: 300px;
  display: flex;
  position: relative;
}
.works-item-template .works-gallery-holder .works-gallery {
  height: 100%;
  width: 100%;
}
.works-item-template .works-gallery-holder .swiper-slide .gallery-img {
  width: 100%;
  height: 100%;
  display: flex;
  cursor: pointer;
}
.works-item-template .works-gallery-holder .swiper-slide .gallery-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.works-item-template .works-img {
  height: auto;
  max-height: 300px;
  display: flex;
  width: 100%;
  cursor: pointer;
}
.works-item-template .works-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 1/1;
}
.works-item-template .nav {
  position: absolute;
  top: 45%;
  width: calc(100% - 20px);
  left: 10px;
  align-items: flex-start;
  z-index: 1;
  margin-top: unset;
  height: 50%;
  transition: 0.5s;
  opacity: 0;
}
.works-item-template:hover .nav {
  opacity: 1;
}
.works-item-template .nav .swiper-pagination-bullet {
  background: var(--stroke-secondary);
  width: 10px;
  height: 10px;
  border-radius: 100%;
}
.works-item-template .nav .swiper-pagination-bullet-active {
  width: 25px;
  border-radius: 100px;
  background: var(--primary);
}
.works-item-template .nav .swiper-pagination {
  margin-right: auto;
  margin-top: auto;
}
.works-item-template .works-info {
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.works-item-template .works-name {
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  margin-bottom: 10px;
}
.works-item-template .works-desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--main-text-primary);
  margin-bottom: 15px;
}
.works-item-template .works-bot {
  display: flex;
  gap: 15px;
  margin-top: auto;
}
.works-item-template .works-duration {
  padding: 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  background: var(--background-secondary);
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.works-item-template .works-duration span {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--primary);
}
.works-item-template .works-bot .btn {
  flex-grow: 1;
  height: auto;
}
/* ============== Archive-works End ============= */














/* ============== Archive-services Start ============= */
#archive-services {
  padding-bottom: 120px;
}
#archive-services .services {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px 40px;
}
#archive-services .archive-banner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  min-height: 440px;
  border-radius: 10px;
  background: var(--background-secondary);
  margin-bottom: 120px;
  position: relative;
}
#archive-services .archive-banner:before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-image: url(../images/before.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right top;
}
#archive-services .banner-left-side {
  display: flex;
  flex-direction: column;
  max-width: 720px;
  padding: 40px 0px 40px 40px;
  flex-grow: 1;
  position: relative;
}
#archive-services .services-banner-title {
  font-weight: 600;
  font-size: 48px;
  line-height: 100%;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}
#archive-services .services-banner-title span {
  font-weight: 600;
  font-size: 48px;
  line-height: 100%;
  color: var(--primary);
}
#archive-services .services-banner-desc {
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  color: var(--main-text-primary);
  margin-bottom: 10px;
  max-width: 400px;
}
#archive-services .archive-banner .btn {
  margin-top: auto;
}
#archive-services .banner-img {
  width: 40%;
  display: flex;
  height: auto;
  max-height: 500px;
  margin-top: -55px;
  position: relative;
}
#archive-services .banner-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: bottom center;
}
.services-item-template .services-img {
  display: flex;
  width: 100%;
  height: auto;
  max-height: 250px;
  overflow: hidden;
}
.services-item-template .services-img img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 1/1;
  transition: 0.5s;
}
.services-item-template:hover .services-img img {
  transform: scale(1.2);
}
.services-item-template {
  overflow: hidden;
  border-radius: 10px;
  background: var(--background-secondary);
  display: flex;
  flex-direction: column;
}
.services-item-template.hidden {
  display: none;
}
.services-item-template .services-info {
  display: flex;
  flex-direction: column;
  padding: 30px;
  flex-grow: 1;
}
.services-item-template .services-name {
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  margin-bottom: 10px;
}
.services-item-template .services-card-desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--main-text-primary);
  margin-bottom: 20px;
}
.services-item-template .services-bot {
  display: flex;
  align-items: center;
  margin-top: auto;
  gap: 5px;
}
.services-item-template .services-price {
  font-weight: 600;
  min-width: fit-content;
  font-size: 16px;
  line-height: 120%;
}
.services-item-template .services-bot .btn {
  margin-left: auto;
}
.services-item-template:hover .btn {
  background: var(--primary-hover);
}
.single-page.services .banner-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  min-height: 445px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background: var(--background-secondary);
  margin-bottom: 60px;
}
.single-page.services .banner-left-side {
  display: flex;
  flex-direction: column;
  padding: 40px 0px 40px 40px;
  flex-grow: 1;
  max-width: 720px;
}
.single-page.services .page-title {
  font-weight: 600;
  font-size: 48px;
  line-height: 100%;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}
.single-page.services .page-title span {
  font-weight: 600;
  font-size: 48px;
  line-height: 100%;
  color: var(--primary);
}
.single-page.services .banner-desc {
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  color: var(--main-text-primary);
  max-width: 400px;
  margin-bottom: 20px;
}
.single-page.services .banner-wrapper .btn {
  margin-top: auto;
}
.single-page.services .banner-img {
  width: 50%;
  height: auto;
  display: flex;
  position: relative;
  max-height: 450px;
}
.single-page.services .banner-img:before {
  content: "";
  width: 70%;
  height: 100%;
  top: 0;
  position: absolute;
  background: linear-gradient(90deg, #f2f3f7 0%, rgba(242, 243, 247, 0) 100%);
}
.single-page.services .banner-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: right center;
}
/* ============== Archive-services End ============= */













/* ============== Woocommerce Start ============= */
.product-category.product {
  list-style-type: none;
}
.product-category.product a {
  background: var(--background-secondary);
  border-radius: 10px;
  overflow: hidden;
  padding: 30px;
  min-height: 230px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-category.product a:hover {
  background: transparent;
}
.product-category.product a:before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: var(--primary);
  background-image: url(../images/catBefore.png);
  background-position: top right;
  background-size: cover;
  transition: 0.5s;
  z-index: -1;
}
.product-category.product h2 {
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  transition: 0.5s;
}
.product-category.product a:hover h2 {
  color: var(--second);
}
.product-category.product h2 mark {
  display: none;
}
.product-category.product img {
  width: 65%;
  height: 65%;
  position: absolute;
  bottom: 00px;
  right: 0px;
  display: block;
  object-fit: contain;
  transition: 0.5s;
}
.product-category.product a:hover img {
  transform: scale(1.2) translateX(-13px) translateY(-13px);
}
.product-cats.main-cats {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
  margin-bottom: 40px;
}
.products-wrapper {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  padding-bottom: 120px;
}
.products-wrapper .sidebar {
  display: flex;
  flex-direction: column;
  width: 360px;
  min-width: 360px;
  position: sticky;
  top: 170px;
  max-height: 75vh;
  overflow: auto;
}
#open-filter {
  display: none;
}
.products-wrapper .product-holder {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: auto;
  flex-grow: 1;
}
.products-wrapper .product-holder ul {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}
.woocommerce .filters-form,
.woocommerce .filters-form .add-wrapper {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
}
.woocommerce .filters-form .add-wrapper {
  border: 1px solid var(--stroke-secondary);
}
.woocommerce .filters-form .filter-block {
  display: flex;
  flex-direction: column;
  padding: 15px 20px;
  border-bottom: 1px solid var(--stroke-secondary);
}

.woocommerce .filters-form .filter-block-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  transition: 0.5s;
}
.woocommerce .filters-form .filter-block-tag {
  order: -1;
}
.woocommerce .filters-form .filter-block-price {
  order: -2;
}
.woocommerce .filters-form .filter-block.price__block {
  padding: 20px;
}
.woocommerce .filters-form .buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  margin-top: 30px;
}
.woocommerce .filters-form .buttons .btn {
  width: 100%;
}
.woocommerce .filters-form .clear-filters {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: var(--main-text-primary);
  cursor: pointer;
  background: unset;
  border: unset;
  outline: none;
  width: fit-content;
  transition: 0.5s;
  box-shadow: unset;
}
.woocommerce .filters-form .clear-filters:hover {
  color: var(--primary);
}
.woocommerce .filters-form .filter-block-header {
  display: flex;
  justify-content: space-between;
  gap: 5px;
  align-items: center;
  cursor: pointer;
}
.woocommerce .filters-form .filter-block-header:hover .filter-block-title {
  color: var(--primary);
}
.woocommerce .filters-form .filter-block-toggler {
  transition: 0.5s;
}
.woocommerce .filters-form .filter-block-toggler path {
  transition: 0.5s;
}
.woocommerce .filters-form .filter-block.opened path{
  stroke: var(--primary);
}
.woocommerce .filters-form .filter-block.opened .filter-block-toggler {
  transform: rotate(45deg);
}
.woocommerce .filters-form .inputs {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.woocommerce .filters-form .group-label,
.woocommerce .filters-form .group-label__name {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  transition: 0.5s;
  width: fit-content;
  cursor: pointer;
  padding-left: 30px;
  color: var(--main-text-primary);
}
.woocommerce .filters-form .group-label__name {
  padding-left: unset;
}
.woocommerce .filters-form .group-label:hover,
.woocommerce .filters-form .group-label__name:hover {
  color: var(--primary);
}
.woocommerce .shop-content .group input {
  display: contents;
}
.woocommerce .shop-content .inputs.price .group input {
  display: block;
}
.woocommerce .filters-form .inputs.price  {
  flex-direction: row;
  gap: 20px;
  margin-bottom: 20px;
}
.woocommerce .filters-form .inputs.price input {
  padding: 20px 20px 20px 38px;
  background: var(--background-secondary);
  border: 1px solid var(--background-secondary);
  border-radius: 10px;
  outline: none;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: var(--main-text-secondary);
  cursor: pointer;
  width: 100%;
  position: relative;
  transition: 0.5s;
}
.woocommerce .filters-form .inputs.price input:hover {
  border-color: var(--primary);
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.woocommerce .shop-content .group {
  position: relative;
  cursor: pointer;
  flex-grow: 1;
}
.woocommerce .filters-form .group:before {
  content: "";
  width: 18px;
  height: 18px;
  border: 1px solid var(--stroke-secondary);
  border-radius: 2px;
  position: absolute;
  left: 0;
  top: 1px;
  transition: 0.5s;
  pointer-events: none;
}
.woocommerce .shop-content .group:after {
  content: "";
  width: 18px;
  height: 18px;
  left: 1px;
  top: 2px;
  position: absolute;
  background-color: var(--primary);
  transition: 0.5s;
  background-image: url(../images/filter.png);
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  pointer-events: none;
  border-radius: 2px;
}
.woocommerce .filters-form .inputs.price .group:after {
  display: none;
}
.woocommerce .filters-form .inputs.price .group:nth-child(1):before {
  content: "от";
  width: 20px;
  height: 10px;
  position: absolute;
  top: 21px;
  left: 20px;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: var(--main-text-secondary);
  z-index: 1;
  border: unset;
  background: unset;
}
.woocommerce .filters-form .inputs.price .group:nth-child(2):before {
  content: "до";
  width: 20px;
  height: 10px;
  position: absolute;
  top: 21px;
  left: 20px;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: var(--main-text-secondary);
  z-index: 1;
  border: unset;
  background: unset;
}
.woocommerce .shop-content .group:has(input:checked):after {
  opacity: 1;
}
.woocommerce .shop-content .accordeon-block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  cursor: pointer;
}
.woocommerce .shop-content .accordeon-block-header .filter-block-title {
  transition: 0.5s;
}
.woocommerce .shop-content .accordeon-block-header:hover .filter-block-title {
  color: var(--primary);
}
.woocommerce .shop-content .noUi-handle {
  width: 7px;
  height: 7px;
  background: var(--primary);
  border-radius: 100%;
  border: unset;
  box-shadow: unset;
  top: -2px;
  cursor: pointer;
}
.woocommerce .shop-content .noUi-handle:after,
.woocommerce .shop-content .noUi-handle:before {
  display: none;
}
.woocommerce .shop-content .noUi-connects {
  background: var(--background-secondary);
  height: 3px;
}
.woocommerce .shop-content .noUi-target {
  background: var(--background-thirdly);
  border: unset;
  height: 5px;
}
.woocommerce .shop-content .noUi-handle-upper {
  right: 0;
}
.woocommerce .shop-content .noUi-handle-lower {
  right: -7px;
}
.woocommerce .shop-content .noUi-connect {
  background: var(--primary);
}
.woocommerce .shop-content .lmp_load_more_button {
  margin-top: 40px;
}
.woocommerce .shop-content .lmp_load_more_button .lmp_button {
  border: 1px solid var(--primary);
  color: var(--head-primary) !important;
  border-radius: 100px !important;
  background: var(--background) !important;
}
.woocommerce .shop-content .lmp_load_more_button .lmp_button:hover {
  color: var(--background) !important;
  background: var(--primary) !important;
  border-color: var(--primary) !important;
}
.woocommerce-page #open-filter {
  display: none;
  position: fixed;
  bottom: 43%;
  left: 0px;
  width: fit-content;
  height: 25px;
  padding: 3px 5px;
  transform: rotate(90deg) translateY(39px);
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 10px 10px 0px 0px;
  color: var(--background);
  font-size: 12px;
  z-index: 50;
}
#sidebar-close {
  display: none;
}
.woocommerce .product.type-product:has(.product-item-template) {
  height: auto;
}
.product-item-template {
  border: 1px solid var(--stroke-secondary);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
}
.product-item-template .woocommerce-LoopProduct-link {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding-bottom: 50px;
}
.product-item-template .woocommerce-LoopProduct-link:has(.price) {
  padding-bottom: 10px;
}
.product-item-template .tag-list {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  z-index: 1;
  pointer-events: none;
}
.product-item-template .tag-name {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: var(--second);
  padding: 5px 10px;
  border-radius: 5px;
  height: fit-content;
  width: fit-content;
  background: #684aff;
}
.product-item-template .akcziya {
  background: #ff6b4a;
}
.product-item-template .populyarnyj {
  background: #ffa84a;
}
.product-item-template .item-img-holder {
  display: flex;
  height: auto;
  max-height: 320px;
  border-bottom: 1px solid var(--stroke-secondary);
  overflow: hidden;
  background: rgb(228 228 228 / 31%);
}
.product-item-template .item-img-holder img {
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  margin: auto;
  transition: 0.5s;
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: 1/1.07;
}
.product-item-template:hover .item-img-holder img {
  transform: scale(1.1);
}
.product-item-template .product-info-wrapper {
  display: flex;
  flex-direction: column;
  padding: 20px;
  flex-grow: 1;
  min-height: 180px;
}
.product-item-template h2 {
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  margin-bottom: 20px;
  transition: 0.5s;
}
.product-item-template:hover h2 {
  color: var(--primary);
}
.product-item-template .info-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  margin-bottom: 15px;
}
.product-item-template .product-sku {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: var(--main-text-secondary);
}
.product-item-template .product-status {
  padding: 5px 10px;
  border-radius: 5px;
  background: var(--background-secondary);
  width: fit-content;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: var(--primary);
  min-width: fit-content;
}
.product-item-template .product-status.status-false {
  color: var(--main-text-primary);
}
.product-item-template .price {
  display: flex;
  flex-direction: column-reverse;
  gap: 5px;
  margin-top: auto;
  padding-right: 120px;
}
.product-item-template bdi,
.product-item-template bdi span {
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
}
.product-item-template ins,
.product-item-template del {
  text-decoration: unset;
}
.product-item-template ins bdi,
.product-item-template ins bdi span {
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
}
.product-item-template del bdi,
.product-item-template del bdi span {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  text-decoration: line-through;
  color: var(--main-text-secondary);
}
.product-item-template .card-buttons {
  position: absolute;
  display: flex;
  gap: 15px;
  bottom: 20px;
  right: 20px;
}
.product-item-template .favorite-btn {
  background: var(--background-secondary);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  cursor: pointer;
  border: unset;
  border-radius: 5px;
}
.product-item-template .favorite-btn:hover {
  background: var(--primary-hover);
}
.product-item-template .favorite-btn path {
  transition: 0.5s;
}
.product-item-template .favorite-btn:hover path {
  fill: var(--second);
}
.product-item-template .product_type_simple {
  background: var(--primary);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  cursor: pointer;
  border: unset;
  border-radius: 5px;
  z-index: 2;
}
.product-item-template .product_type_simple:hover {
  background: var(--primary-hover);
}
.product-item-template .favorite-remove path {
  fill: var(--primary);
}
.woocommerce .subcats {
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
}
.woocommerce .category-item:hover,
.woocommerce .category-item.active {
  color: var(--second);
  background: var(--third);
  border-color: var(--third);
}
#noticer {
  position: fixed;
  top: 250px;
  width: fit-content;
  border-radius: 10px 0px 0px 10px;
  border: 1px solid var(--primary);
  border-right: unset;
  background: var(--second);
  z-index: 99;
  transition: 0.5s;
  transform: translateX(100%);
  padding: 5px;
  font-size: 12px;
  right: 0;
}
#noticer.active {
  transform: unset;
}
.page-favorites ul.products {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
  padding-bottom: 120px;
}
.page-favorites .info-holder {
  margin-bottom: 35px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.page-favorites .order-count {
  display: flex;
  align-items: center;
  gap: 3px;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--main-text-primary);
}
.page-favorites .order-count .value {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--primary);
}
.page-favorites .clear-favorites {
  display: flex;
  gap: 10px;
  align-items: center;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: var(--main-text-primary);
  background: transparent;
  border: unset;
  cursor: pointer;
  width: fit-content;
  transition: 0.5s;
}
.page-favorites .clear-favorites:hover {
  color: var(--primary);
}
.woocommerce-cart .cart-wrapper {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  padding-bottom: 130px;
}
.woocommerce-cart .woocommerce form {
  width: 67%;
  flex-grow: 1;
}
.woocommerce-cart .woocommerce .cart-collaterals {
  width: 360px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 170px;
  border: 1px solid var(--stroke-secondary);
  border-radius: 10px;
  padding: 30px;
  height: fit-content;
}
.woocommerce-cart .woocommerce .cart-collaterals .cart_totals {
  height: 100%;
}
.woocommerce-cart .woocommerce .shop_table {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.woocommerce-cart .woocommerce .cart-collaterals table {
  display: none;
}
.woocommerce-cart .woocommerce .shop_table .actions {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
}
.woocommerce-notices-wrapper {
  margin-bottom: 20px;
}
.woocommerce-cart .woocommerce .cart_item {
  display: flex;
  align-items: center;
  background: var(--second);
  border: 1px solid var(--stroke-secondary);
  border-radius: 10px;
  padding: 20px;
  padding-right: 90px;
  gap: 30px;
  position: relative;
}
.woocommerce-cart .woocommerce .product-thumbnail {
  border-radius: 10px;
  overflow: hidden;
  width: 120px;
  height: 120px;
  background: white;
}
.woocommerce-cart .woocommerce .product-thumbnail a {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.woocommerce-cart .woocommerce .product-thumbnail a img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  margin: auto;
}
.woocommerce-cart .woocommerce .info-holder {
  display: flex;
  gap: 30px;
  flex-grow: 1;
  align-items: center;
}
.woocommerce-cart .woocommerce .product-name {
  max-width: 450px;
  min-width: 450px;
}
.woocommerce-cart .woocommerce .product-name a {
  font-weight: 600;
  font-size: 20px;
  line-height: 110%;
}
.woocommerce-cart .woocommerce .product-name a:hover {
  color: var(--primary);
}
.woocommerce-cart .woocommerce .cart-item-center-bottom {
  display: flex;
  gap: 30px;
  align-items: center;
}
.woocommerce-cart .product-quantity {
  display: flex;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.woocommerce-cart .woocommerce .product-remove {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 500;
  font-size: 16px;
  line-height: 125%;
  transition: 0.3s;
  position: absolute;
  top: 23px;
  right: 34px;
}
.woocommerce-cart .woocommerce .product-remove .remove svg {
  width: 16px;
  height: 20px;
  margin-bottom: 2px;
}
.woocommerce-cart .woocommerce .product-remove:hover .remove {
  color: var(--primary);
}
.woocommerce-cart .woocommerce .product-remove .remove path {
  transition: 0.3s;
}
.woocommerce-cart .woocommerce .product-remove:hover .remove path {
  fill: var(--primary);
}
.woocommerce-cart .woocommerce .product-price {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  justify-content: flex-end;
}
.woocommerce-cart .woocommerce .cart-item .price {
  min-width: fit-content;
}
.woocommerce-cart .woocommerce del,
.woocommerce-cart .woocommerce ins {
  text-decoration: unset;
}
.woocommerce-cart .woocommerce bdi,
.woocommerce-cart .woocommerce bdi span {
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  white-space: nowrap;
}
.woocommerce-cart .woocommerce del bdi,
.woocommerce-cart .woocommerce del bdi span {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  text-decoration: line-through;
  color: var(--main-text-secondary);
  white-space: nowrap;
}
.woocommerce-cart .woocommerce ins bdi,
.woocommerce-cart .woocommerce ins bdi span {
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  text-align: right;
  white-space: nowrap;
}
.woocommerce-cart .woocommerce .qty-wrapper {
  display: flex;
  align-items: center;
  height: fit-content;
  border-radius: 100px;
  border: 1px solid var(--background-secondary);
  max-width: 168px;
}
.woocommerce-cart .woocommerce .qty-wrapper .quantity {
  flex-grow: 1;
  min-width: 56px;
  display: flex;
  width: 100%;
  height: 100%;
}
.woocommerce-cart .woocommerce .qty-button {
  width: 56px;
  min-width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  cursor: pointer;
  border-radius: 10px;
  background: var(--background-secondary);
}
.woocommerce-cart .woocommerce .qty-button:nth-child(1) {
  border-radius: 100px 0px 0px 100px;
}
.woocommerce-cart .woocommerce .qty-button[qty-increase] {
  border-radius: 0px 100px 100px 0px;
}
.woocommerce-cart .woocommerce .qty-button:hover {
  background: var(--primary-hover);
  color: var(--background);
}
.woocommerce-cart .woocommerce .qty-button path {
  transition: 0.5s;
}
.woocommerce-cart .woocommerce .qty-button:hover path {
  fill: var(--second);
}
.woocommerce-cart .woocommerce .qty-wrapper input {
  border: unset;
  outline: none;
  width: 100%;
  min-width: 56px;
  height: 100%;
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  text-align: center;
  border-radius: 10px;
  margin: auto;
}
.woocommerce-cart .woocommerce .order-total {
  display: flex;
  flex-direction: column;
}
.woocommerce-cart .woocommerce .product-count-total {
  display: flex;
  justify-content: space-between;
  gap: 5px;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--main-text-primary);
  padding-bottom: 25px;
  border-bottom: 1px solid var(--stroke-secondary);
}
.woocommerce-cart .woocommerce .product-count-total p {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--primary);
}
.woocommerce-cart .woocommerce .last-price {
  display: flex;
  justify-content: space-between;
  gap: 5px;
  align-items: center;
  margin-bottom: 25px;
  margin-top: 25px;
}
.woocommerce-cart .woocommerce .last-price bdi,
.woocommerce-cart .woocommerce .last-price bdi span {
  font-weight: 600;
  font-size: 32px;
  line-height: 100%;
}
.woocommerce-cart .woocommerce .last-title {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--main-text-primary);
}
.woocommerce-cart .woocommerce .wc-proceed-to-checkout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.woocommerce-cart .woocommerce .wc-proceed-to-checkout .btn {
  width: 100%;
}
.woocommerce-cart .woocommerce .clear-button {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: var(--main-text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.5s;
  cursor: pointer;
}
.woocommerce-cart .woocommerce .clear-button:hover {
  color: var(--primary);
}.woocommerce-checkout .content>.woocommerce {
  flex-wrap: wrap;
  gap: 30px;
}
.woocommerce-checkout .content>.woocommerce .woocommerce-notices-wrapper {
  width: 100%;
}
.woocommerce-checkout form {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 30px;
  padding-bottom: 130px;
  align-items: flex-start;
}
.woocommerce-checkout form .form-left-side {
  width: calc(76% - 30px);
  display: flex;
  flex-direction: column;
}
.form-checkout-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  margin-bottom: 25px;
}
.woocommerce-billing-fields__field-wrapper,
.woocommerce-shipping-fields__field-wrapper {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}
.woocommerce-billing-fields__field-wrapper p,
.woocommerce-shipping-fields__field-wrapper p {
  width: 100%;
}
.woocommerce-billing-fields__field-wrapper input ,
.woocommerce-shipping-fields__field-wrapper input {
  background: var(--background-secondary);
  padding: 15px 20px;
  border-radius: 10px;
  width: 100%;
  border: 1px solid var(--background-secondary);
  outline: none;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: var(--main-text-secondary);
  transition: 0.5s;
  cursor: pointer;
} 
.woocommerce-billing-fields__field-wrapper .woocommerce-validated input ,
.woocommerce-shipping-fields__field-wrapper .woocommerce-validated input {
  color: var(--head-primary);
}
.woocommerce-billing-fields__field-wrapper input:hover,
.woocommerce-shipping-fields__field-wrapper input:hover {
  border-color: var(--primary);
}
.woocommerce-checkout input::placeholder {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: var(--main-text-secondary);
}
.woocommerce-checkout .form-row.place-order {
  display: none;
}
#ship-to-different-address {
  display: none;
}
.form-checkout-left-side {
  width: calc(100% - 390px);
}
.col2-set,
.form-checkout-left-side {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.col-2 {
  order: -2;
}
#shipping_method,
form.woocommerce-checkout .wc_payment_methods {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
form.woocommerce-checkout #shipping_method li,
.woocommerce-checkout li.wc_payment_method {
  width: calc((100% - 60px) / 3);
}
form.woocommerce-checkout #shipping_method li:has(input.free) {
  position: relative;
}
form.woocommerce-checkout #shipping_method li:has(input.free):before {
  content: "(Бесплатно)";
  top: 60px;
  left: 75px;
  position: absolute;
  width: 100px;
  height: 11px;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--main-text-primary);
  z-index: 1;
  pointer-events: none;
  transition: 0.5s;
}
form.woocommerce-checkout #shipping_method li:has(input.free:checked):before {
  color: var(--second);
}
form.woocommerce-checkout #shipping_method li input,
form.woocommerce-checkout .wc_payment_method input {
  display: contents;
}
form.woocommerce-checkout #shipping_method li label,
form.woocommerce-checkout .wc_payment_method label {
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
  padding: 30px 20px 30px 70px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--background-secondary);
  min-height: 85px;
  border: 1px solid var(--background-secondary);
  transition: 0.5s;
  cursor: pointer;
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  height: 100%;
}
form.woocommerce-checkout .wc_payment_method label span,
form.woocommerce-checkout #shipping_method label span,
form.woocommerce-checkout #shipping_method label span bdi {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--main-text-primary);
  transition: 0.5s;
}
form.woocommerce-checkout #shipping_method li label:hover,
form.woocommerce-checkout .wc_payment_method label:hover {
  border-color: var(--primary);
}
form.woocommerce-checkout #shipping_method li label:before,
form.woocommerce-checkout .wc_payment_method label:before {
  content: "";
  width: 24px;
  height: 24px;
  top: 28px;
  left: 30px;
  position: absolute;
  border-radius: 100%;
  background: transparent;
  border: 2px solid var(--primary);
  transition: 0.3s;
}
form.woocommerce-checkout #shipping_method li label:after,
form.woocommerce-checkout .wc_payment_method label:after {
  content: "";
  width: 16px;
  height: 16px;
  top: 34px;
  left: 36px;
  position: absolute;
  border-radius: 100%;
  background: transparent;
  transition: 0.3s;
}
form.woocommerce-checkout #shipping_method li input:checked+label,
form.woocommerce-checkout .wc_payment_method input:checked+label {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--head-secondary);
}
form.woocommerce-checkout #shipping_method li input:checked+label bdi,
form.woocommerce-checkout #shipping_method li input:checked+label bdi span {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--second);
}
form.woocommerce-checkout #shipping_method li input:checked+label:before,
form.woocommerce-checkout .wc_payment_method input:checked+label:before {
  border-color: var(--second);
  background: var(--primary);
}
form.woocommerce-checkout #shipping_method li input:checked+label:after,
form.woocommerce-checkout .wc_payment_method input:checked+label:after {
  background: var(--second);
}
.commect-block label {
  display: none;
}
.commect-block p {
  width: 100%;
  display: flex;
}
.commect-block span:has(#order_comments) {
  width: 100%;
  display: flex;
}
.woocommerce-checkout #order_comments {
  background: var(--background-secondary);
  border-radius: 5px;
  height: 130px;
  resize: none;
  outline: none;
  width: 100%;
  padding: 20px;
  border-color: var(--background-secondary);
  transition: 0.5s;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: var(--main-text-secondary);
}
.woocommerce-checkout #order_comments:hover {
  border-color: var(--primary);
}
.woocommerce-checkout .form-checkout-right-side {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 360px;
  min-width: 360px;
  border: 1px solid var(--stroke-secondary);
  border-radius: 10px;
  padding: 30px;
  height: fit-content;
  position: sticky;
  top: 170px;
}
.woocommerce-checkout .form-checkout-right-side .btn {
  width: 100%;
}
.woocommerce-checkout .total-price {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 30px 0px;
}
.woocommerce-checkout .totals-title {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--main-text-primary);
}
.woocommerce-checkout .total-price bdi,
.woocommerce-checkout .total-price bdi span {
  font-weight: 600;
  font-size: 32px;
  line-height: 100%;
}
.woocommerce-checkout .total-count {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--main-text-primary);
  display: flex;
  gap: 5px;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--stroke-secondary);
}
.woocommerce-checkout .counter {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--primary);
}
.woocommerce-NoticeGroup {
  width: 100%;
}
.woocommerce-error {
  display: flex;
  flex-direction: column;
}
.woocommerce-error li a {
  font-size: 12px;
}
.woocommerce-error li a strong {
  font-size: 12px;
  color: red;
}
.woocommerce-order-received .woocommerce-order {
  padding-bottom: 40px;
}
.woocommerce-order-received .woocommerce-order tr th {
  text-align: left;
  font-size: 14px;
}
.woocommerce-order-received .woocommerce-order tr {
  border-bottom: 1px solid var(--stroke);
  padding-bottom: 3px;
  display: block;
}
.woocommerce-order-received .woocommerce-order .woocommerce-table--order-details tr:has(.order-actions--heading) {
  display: none;
}
.woocommerce-order-received .woocommerce-order-overview {
  display: flex;
  flex-direction: column;
  padding: 10px;
  border-radius: 10px;
  background: var(--background-secondary);
  gap: 10px;
  margin-bottom: 40px;
}
.woocommerce-order-received .woocommerce-notice.woocommerce-notice--success {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
}
.woocommerce-order-received .woocommerce-order-overview li {
  padding-bottom: 5px;
  padding-top: 5px;
  border-bottom: 1px solid var(--white);
  font-size: 14px;
}
.woocommerce-order-received .woocommerce-order-overview li strong,
.woocommerce-order-received .woocommerce-order-overview li bdi,
.woocommerce-order-received .woocommerce-order-overview li bdi span,
.woocommerce-order-received .order-details-item bdi span,
.woocommerce-order-received .order-details-item bdi {
  color: var(--primary);
  font-weight: 600;
}
.woocommerce-order-received .woocommerce-order-overview li:nth-child(1) {
  padding-top: unset;
}
.woocommerce-order-received .woocommerce-order-overview li:last-child {
  border-bottom: unset;
  padding-bottom: unset;
}
.woocommerce-order-received .woocommerce-order-details h2 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
}
.woocommerce-order-received .order-details-item {
  display: flex;
  gap: 5px;
  border-bottom: 1px solid var(--white);
  font-size: 14px;
  padding: 5px 0px;
}
.woocommerce-order-received .order-details-item:first-child {
  padding-top: unset;
}
.woocommerce-order-received .order-details-item:last-child {
  padding-bottom: unset;
  border-bottom: unset;
}
.woocommerce-order-received .order-details-item span {
  white-space: nowrap;
}
.woocommerce-order-received .table-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
  padding: 10px;
  border-radius: 10px;
  background: var(--background-light);
  gap: 10px;
}
.woocommerce-order-received .order-totals-holder {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.woocommerce-order-received .totals-item {
  display: flex;
  gap: 5px;
}
.woocommerce-order-received .totals-item .totals-item-price,
.woocommerce-order-received .totals-item .totals-item-price bdi,
.woocommerce-order-received .totals-item .totals-item-price bdi span,
.woocommerce-order-received .totals-item .totals-item-price span,
.woocommerce-order-received .totals-item .totals-item-price small {
  color: var(--primary);
  font-weight: 600;
  font-size: 16px;
}
.woocommerce-order-received .order-notes-holder {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}
.woocommerce-order-received .notes-title {
  margin-bottom: 0px;
  font-size: 20px;
}
.woocommerce-order-received .notes-text {
  border-radius: 10px;
  padding: 10px;
  background: var(--background-light);
  min-height: 100px;
  width: 100%;
}
.woocommerce-order-received .col2-set {
  gap: 20px;
}
.woocommerce-order-received .woocommerce-column__title {
  font-size: 18px;
  margin-bottom: 10px;
}
.woocommerce-order-received .col2-set address,
.woocommerce-order-received .col2-set p  {
  font-size: 14px;
  font-style: normal;
}
.woocommerce-order-received .order-info-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.woocommerce-order-received .order-item-name {
  font-size: 18px;
  font-weight: 700;
}
.woocommerce-order-received .order-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.summary-wrapper {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  padding-bottom: 60px;
}
.summary-wrapper .summary-left-side {
  display: flex;
  flex-direction: column;
  width: 32%;
  position: relative;
  position: sticky;
  height: fit-content;
  top: 170px;
}
.summary-wrapper .summary-center {
  display: flex;
  flex-direction: column;
  width: 40.5%;
  gap: 35px;
}
.summary-wrapper .summary-right-side {
  display: flex;
  flex-direction: column;
  width: 23.5%;
  position: sticky;
  height: fit-content;
  top: 170px;
}
.summary-wrapper .product-gallery {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.summary-wrapper .product-gallery .btns {
  position: absolute;
  bottom: 135px;
  left: 10px;
  width: 142px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 3;
}
.summary-wrapper .product-gallery .swiper-button-single-prev,
.summary-wrapper .product-gallery .swiper-button-single-next {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background: var(--background-secondary);
  transition: 0.5s;
  cursor: pointer;
}
.summary-wrapper .product-gallery .swiper-button-single-prev:hover,
.summary-wrapper .product-gallery .swiper-button-single-next:hover {
  background: var(--primary);
}
.summary-wrapper .product-gallery .swiper-button-single-prev path,
.summary-wrapper .product-gallery .swiper-button-single-next path {
  transition: 0.5s;
}
.summary-wrapper .product-gallery .swiper-button-single-prev:hover path,
.summary-wrapper .product-gallery .swiper-button-single-next:hover path {
  fill: var(--second);
}
.summary-wrapper .swiper-button-disabled {
  pointer-events: none;
}
.summary-wrapper .gallery-main-wrapper {
  width: 100%;
  border: 1px solid var(--stroke-secondary);
  border-radius: 10px;
  overflow: hidden;
}
.summary-wrapper .gallery-main-wrapper .swiper-slide {
  height: 490px;
  background: white;
  cursor: zoom-in;
}
.summary-wrapper .gallery-main-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  margin: auto;
}
.summary-wrapper .gallery-holder .swiper-slide {
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
  background: white;
  position: relative;
  border: 1px solid var(--stroke-secondary);
  cursor: pointer;
}
.summary-wrapper .gallery-holder:before {
  content: "";
  width: 60%;
  height: 100%;
  top: 0;
  right: 0;
  position: absolute;
  background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 3;
  pointer-events: none;
}
.summary-wrapper .gallery-holder {
  height: 100px;
  position: relative;
}
.summary-wrapper .gallery-holder .swiper-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  margin: auto;
}
.summary-wrapper .tag-list {
  position: absolute;
  top: 10px;
  left: 10px;
  gap: 10px;
  z-index: 1;
  display: flex;
}
.summary-wrapper .tag-name {
  background: #684aff;
  border-radius: 10px;
  padding: 5px 10px;
  font-weight: 300;
  font-size: 14px;
  line-height: 150%;
  color: var(--second);
}
.summary-wrapper .tag-name.populyarnyj {
  background: #ffa84a;
}
.summary-wrapper .tag-name.akcziya {
  background: #ff6b4a;
}
.summary-wrapper .single-hook {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  color: var(--primary);
  margin-top: 5px;
  width: fit-content;
  cursor: pointer;
  transition: 0.5s;
}
.summary-wrapper .single-hook:hover {
  opacity: 0.7;
}
.summary-wrapper .product-sku {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: var(--main-text-secondary);
}
.summary-wrapper .short-desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--main-text-primary);
}
.summary-wrapper .short-desc-holder {
  display: flex;
  flex-direction: column;
  margin-top: -10px;
}
.summary-wrapper .single-cert {
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  transition: 0.5s;
  cursor: pointer;
  position: relative;
  padding-left: 35px;
}
.summary-wrapper .single-cert:before {
  content: "";
  width: 16px;
  height: 16px;
  top: 0;
  left: 4px;
  position: absolute;
  background-image: url(../images/download.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.summary-wrapper .single-cert:hover {
  color: var(--primary);
}
.summary-wrapper .attrs-holder {
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-radius: 10px;
  background: var(--background-secondary);
}
.summary-wrapper .attrs {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.summary-wrapper .attr-item {
  display: flex;
  justify-content: space-between;
  gap: 5px;
  position: relative;
}
.summary-wrapper .attr-item:before {
  content: "";
  width: 100%;
  height: 1px;
  bottom: 8px;
  left: 0;
  position: absolute;
  border-bottom: 1px dashed var(--stroke-secondary);
  pointer-events: none;
}
.summary-wrapper .attr-name {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--main-text-secondary);
  position: relative;
  padding-right: 15px;
  padding-bottom: 2px;
  background: var(--background-secondary);
}
.summary-wrapper .attr-value {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--main-text-primary);
  position: relative;
  padding-left: 15px;
  padding-bottom: 2px;
  background: var(--background-secondary);
}
.summary-wrapper .stock-status {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: var(--primary);
  padding: 6px 10px;
  position: relative;
  border-radius: 5px;
  background: var(--background-secondary);
  width: fit-content;
  margin-bottom: 20px;
}
.summary-wrapper .stock-status.unstock {
  color: var(--main-text-primary);
}
.summary-wrapper .stock.out-of-stock {
  display: none;
}
.summary-wrapper .info-blocks {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.summary-wrapper .info-block-item {
  display: flex;
  border-radius: 10px;
  padding: 30px;
  gap: 15px;
  border: 1px solid var(--stroke-secondary);
}
.summary-wrapper .info-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--background-secondary);
}
.summary-wrapper .info-icon img,
.summary-wrapper .info-icon svg {
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  max-width: 70%;
  max-height: 70%;
}
.summary-wrapper .info-right-side {
  display: flex;
  flex-direction: column;
}
.summary-wrapper .info-name {
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  margin-bottom: 10px;
}
.summary-wrapper .info-desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--main-text-primary);
}
.summary-wrapper .info-desc a {
  color: var(--primary);
}
.summary-wrapper .info-block-item .block-link {
  display: none;
}
.summary-wrapper .info-block-item:last-child .block-link {
  display: flex;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  color: var(--primary);
  margin-top: 10px;
  width: fit-content;
  cursor: pointer;
  transition: 0.5s;
}
.summary-wrapper .info-gallery {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 15px;
}
.summary-wrapper .info-gallery-img {
  width: calc((100% - 100px) / 5);
  display: flex;
  border-radius: 5px;
  overflow: hidden;
  height: 50px;
}
.summary-wrapper .info-gallery-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.summary-wrapper .control-wrapper {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--stroke-secondary);
  border-radius: 10px;
  padding: 20px;
}
.summary-wrapper .control-wrapper .btn.open-modal {
  margin-top: 35px;
  width: 100%;
}
.summary-wrapper .controls {
  display: flex;
  flex-direction: column;
}
.summary-wrapper .price-holder {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 15px;
}
.summary-wrapper .price-holder-left-side {
  display: flex;
  flex-direction: column;
}
.summary-wrapper .price bdi,
.summary-wrapper .price bdi span,
.summary-wrapper .price ins bdi span,
.summary-wrapper .price ins bdi {
  font-weight: 600;
  font-size: 32px;
  line-height: 100%;
  color: var(--primary);
}
.summary-wrapper .price ins {
  text-decoration: unset;
}
.summary-wrapper .price del {
  display: none;
}
.summary-wrapper .qty-wrapper {
  display: flex;
  width: 100%;
  margin-bottom: 40px;
  border: 1px solid var(--background-secondary);
  border-radius: 100px;
  overflow: hidden;
}
.summary-wrapper .qty-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: var(--background-secondary);
  border: unset;
  cursor: pointer;
  transition: 0.5s;
}
.summary-wrapper .qty-wrapper .quantity {
  flex-grow: 1;
}
.summary-wrapper .qty-wrapper .quantity input {
  width: 100%;
  text-align: center;
}
.summary-wrapper .qty-button:hover {
  background: var(--primary);
}
.summary-wrapper .qty-button path {
  transition: 0.5s;
}
.summary-wrapper .qty-button:hover path {
  fill: var(--second);
}
.summary-wrapper .quantity input {
  width: 50px;
  height: 100%;
  min-width: 50px;
  border-radius: 10px;
  background: var(--background-thirdly);
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  border: unset;
  text-align: center;
}
.summary-wrapper .single_add_to_cart_button {
  width: 100%;
  gap: 10px;
  padding: 14px 20px;
}
.summary-wrapper .favorite-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary);
  gap: 10px;
  width: 100%;
  background: transparent;
  outline: none;
  transition: 0.5s;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  color: var(--head-primary);
  padding: 16px;
  margin-top: 15px;
  border-radius: 5px;
}
.summary-wrapper .favorite-btn path {
  transition: 0.5s;
}
.summary-wrapper .favorite-btn.favorite-remove {
  background: var(--background-thirdly);
  border-color: var(--background-thirdly);
  color: var(--primary);
}
.summary-wrapper .favorite-btn:hover {
  background: var(--third);
  border-color: var(--third);
  color: var(--second);
}
.summary-wrapper .favorite-btn:hover path {
  fill: var(--head-secondary);
}
.summary-wrapper .delivery-holder {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}
.summary-wrapper .del-item {
  display: flex;
  gap: 15px;
}
.summary-wrapper .del-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: var(--background-secondary);
}
.summary-wrapper .del-icon img,
.summary-wrapper .del-icon svg {
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  max-width: 70%;
  max-height: 70%; 
}
.summary-wrapper .del-right-side {
  display: flex;
  flex-direction: column;
}
.summary-wrapper .del-name {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--main-text-primary);
  margin-bottom: 7px;
}
.summary-wrapper .del-desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--primary);
}
.product-main-info {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
.product-main-info .main-info-left-side {
  display: flex;
  flex-direction: column;
  padding: 40px;
  border-radius: 10px;
  background: var(--background-secondary);
  flex-grow: 1;
  gap: 50px;
}
.product-main-info .main-form-holder {
  display: flex;
  flex-direction: column;
  width: 490px;
  min-width: 490px;
  padding: 40px;
  border-radius: 10px;
  border: 1px solid var(--stroke-secondary);
  position: sticky;
  top: 170px;
  height: fit-content;
}
.single-product .related-swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
}
.single-product .related-swiper-slide li.product {
  height: 100% !important;
}
.product-main-info .main-form-holder .btn {
  width: 100%;
  margin-top: 20px;
}
.product-main-info .main-form-holder .form .privacy-policy {
  margin-top: unset;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  text-align: center;
  color: var(--main-text-primary);
}
.product-main-info .main-form-top {
  display: flex;
  gap: 30px;
  margin-bottom: 25px;
}
.product-main-info .main-form-photo {
  width: 80px;
  height: 80px;
  min-width: 80px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  display: flex;
}
.product-main-info .main-form-photo:before {
  content: "";
  width: 15px;
  height: 15px;
  bottom: -3px;
  right: -3px;
  position: absolute;
  background: #22e540;
  border-radius: 100px;
  border: 4px solid var(--second);
}
.product-main-info .main-form-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.product-main-info .main-form-title {
  font-weight: 600;
  font-size: 32px;
  line-height: 100%;
  margin-bottom: 10px;
}
.product-main-info .main-form-desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--main-text-primary);
}
.product-main-info .main-product-title {
  font-weight: 600;
  font-size: 32px;
  line-height: 100%;
  margin-bottom: 20px;
}
.product-main-info .main-desc p,
.product-main-info .main-desc .full-text,
.product-main-info .main-desc .short-text {
  font-family: var(--third-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--main-text-primary);
}
.product-main-info .product-all,
.product-main-info .use-all,
.product-main-info .char-all {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  color: var(--primary);
  width: fit-content;
  cursor: pointer;
  transition: 0.5s;
  margin-top: 10px;
}
.product-main-info .product-all:hover,
.product-main-info .use-all:hover,
.product-main-info .char-all:hover {
  color: var(--primary-hover);
}
.product-main-info .attrs {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.product-main-info .main-attr-item {
  display: flex;
  justify-content: space-between;
  gap: 5px;
  position: relative;
}
.product-main-info .main-attr-item.hidden {
  display: none;
}
.product-main-info .main-attr-item:before {
  content: "";
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed var(--stroke-secondary);
  bottom: 8px;
  left: 0px;
  position: absolute;
}
.product-main-info .main-attr-name {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--main-text-secondary);
  padding-right: 15px;
  padding-bottom: 3px;
  position: relative;
  background: var(--background-secondary);
}
.product-main-info .main-attr-value {
  padding-left: 15px;
  padding-bottom: 3px;
  position: relative;
  background: var(--background-secondary);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--main-text-primary);
}
.product-main-info .use p {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--main-text-primary);
}
.woocommerce .seo-block {
  padding-bottom: 120px;
}
.woocommerce .seo-block .seo-wrapper {
  display: flex;
  gap: 30px;
}
.woocommerce .seo-block .seo-img {
  height: 385px;
  border-radius: 10px;
  overflow: hidden;
  width: 50%;
  display: flex;
}
.woocommerce .seo-block .seo-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.woocommerce .seo-block .seo-right-side {
  display: flex;
  flex-direction: column;
  height: 385px;
  border-radius: 10px;
  border: 1px solid var(--stroke-secondary);
  width: 50%;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.woocommerce .seo-block .seo-right-side .add-wrapper {
  height: 305px;
  overflow: auto;
  padding-right: 30px;
}
.woocommerce .seo-block .seo-right-side:before {
  content: "";
  width: 100%;
  height: 40%;
  bottom: 0;
  left: 0;
  position: absolute;
  background: linear-gradient(360deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}
.woocommerce .seo-block .seo-title {
  font-weight: 600;
  font-size: 32px;
  line-height: 100%;
  margin-bottom: 10px;
}
.woocommerce .seo-block .text-holder ol,
.woocommerce .seo-block .text-holder ul {
  margin-top: -15px;
}
.search-no-results .product-cats.main-cats {
  display: none;
}
.search-no-results .sidebar {
  display: none;
}
.search-no-results .products-wrapper .product-holder {
  width: 100%;
  align-items: flex-start;
}
/* ============== Woocommerce End ============= */
.woocommerce .select2-container--default .select2-selection--single {
  background: white;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--elements-3);
  width: 100% !important;
  height: 58px;
  background: var(--elements-3);
  position: relative;
  padding-left: 10px;
  transition: 0.3s;
}
.woocommerce .select2-container--default .select2-selection--single:hover {
  border-color: var(--primary);
}
.woocommerce .select2-container--default .select2-selection--single:before {
  content: "";
  width: 20px;
  height: 16px;
  background-image: url(../images/sort.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  top: 20px;
  left: 20px;
  position: absolute;
}
.woocommerce .select2-container--default .select2-selection--single .select2-selection__rendered {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: var(--main-text);
}
.woocommerce .select2-container--default .select2-selection--single .select2-selection__arrow {
  display: none;
}
.woocommerce .select2-dropdown {
  background: transparent;
  border: unset;
}
.woocommerce .select2-results__option {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  cursor: pointer;
  transition: 0.3s;
}
.woocommerce .select2-results__option:hover {
  color: var(--primary);
}
.woocommerce .select2-search__field {
  display: none;
}
.woocommerce .select2-results {
  margin-top: 30px;
}
.woocommerce .select2-results__options {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-height: unset;
  background: white;
  border-radius: 20px;
  width: 100%;
}
.woocommerce .woocommerce-ordering {
  width: 100%;
}
.woocommerce .select2-container--default {
  margin-bottom: 20px;
  border-radius: 5px;
  border: 1px solid var(--primary);
  background: white;
  margin-right: auto;
  width: 300px !important;
  padding: 10px;
  outline: none;
  display: block;
  cursor: pointer;
}
.woocommerce .selection {
  text-align: left !important;
}
.woocommerce .select2-hidden-accessible {
  display: none;
}
.woocommerce .select2-container--default .select2-results__option--selected {
  background-color: unset;
}

.woocommerce .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: transparent;
  color: var(--primary);
}













@media (max-width: 1600px) {
  #header .logo-holder {
    padding: 15px;
    max-width: 180px;
    font-size: 14px;
  }
  .services-item-template .services-info {
    padding: 15px;
  }
}


@media (max-width: 1400px) {
  #footer .footer-info {
    width: 270px;
    min-width: 270px;
  }
  #header .header-center {
    gap: 10px;
  }
  #header .header-wrapper {
    gap: 10px;
    padding: 10px 0px;
  }
  #header .woo-menu {
    gap: 10px;
  }
  #header .dgwt-wcas-search-wrapp {
    max-width: 500px;
  }
  #header .header-menu {
    gap: 10px;
  }
  .error-wrapper {
    padding: 15px 0px 15px 15px;
    min-height: 300px;
  }
  .error404 #main {
    min-height: 64vh;
  }
  h1.page-title {
    font-size: 42px;
  }
  #archive-reviews .form-holder {
    top: 120px;
    padding: 10px;
  }
  #archive-reviews .reviews {
    gap: 10px;
  }
  .review-item-template {
    padding: 10px;
  }
  .works-item-template .works-info {
    padding: 10px;
  }
  #archive-services .services {
    gap: 10px;
    grid-template-columns: repeat(3,1fr);
  }
  .products-wrapper .product-holder ul {
    gap: 10px;
  }
  .product-item-template .favorite-btn,
  .product-item-template .product_type_simple {
    width: 44px;
    height: 44px;
  }
  .product-item-template .price {
    gap: unset;
  }
  .product-item-template .product-info-wrapper {
    padding: 10px;
  }
  .product-item-template .card-buttons {
    right: 10px;
    bottom: 10px;
  }
  .woocommerce-cart .woocommerce .cart_item {
    padding: 10px 30px 10px 10px;
  }
  .woocommerce-cart .woocommerce .product-remove {
    top: 10px;
    right: 10px;
  }
  .woocommerce-cart .woocommerce .info-holder {
    gap: 10px;
  }
  .woocommerce-cart .cart-wrapper {
    gap: 10px;
  }
  .woocommerce-cart .woocommerce .cart-collaterals {
    width: 300px;
    min-width: 300px;
    padding: 10px;
    top: 120px;
  }
  .woocommerce-checkout form {
    gap: 10px;
  }
  .woocommerce-checkout .form-checkout-right-side {
    width: 300px;
    min-width: 300px;
    padding: 10px;
    top: 120px;
    max-width: 300px;
  }
  .form-checkout-left-side {
    width: calc(100% - 310px);
  }
  .form-checkout-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  #shipping_method, form.woocommerce-checkout .wc_payment_methods,
  .woocommerce-billing-fields__field-wrapper, .woocommerce-shipping-fields__field-wrapper {
    gap: 10px;
  }
  form.woocommerce-checkout #shipping_method li, .woocommerce-checkout li.wc_payment_method {
    width: calc((100% - 20px) / 3);
  }
  form.woocommerce-checkout #shipping_method li label, form.woocommerce-checkout .wc_payment_method label {
    padding: 10px 10px 10px 35px;
    min-height: unset;
    font-size: 16px;
    gap: unset;
  }
  form.woocommerce-checkout #shipping_method li label:before, form.woocommerce-checkout .wc_payment_method label:before {
    top: 10px;
    left: 10px;
    width: 16px;
    height: 16px;
  }
  form.woocommerce-checkout #shipping_method li label:after, form.woocommerce-checkout .wc_payment_method label:after {
    top: 14px;
    left: 14px;
    width: 12px;
    height: 12px;
  }
  form.woocommerce-checkout #shipping_method li:has(input.free):before {
    font-size: 12px;
    top: 30px;
    left: 37px;
  }
  form.woocommerce-checkout .wc_payment_method label span, form.woocommerce-checkout #shipping_method label span, form.woocommerce-checkout #shipping_method label span bdi {
    font-size: 12px;
  }
  .product-main-info .main-form-holder {
    width: 400px;
    min-width: 400px;
    padding: 10px;
    top: 120px;
  }
  .product-main-info .main-form-holder .btn {
    margin-top: unset;
  }
  .product-main-info .main-form-top {
    gap: 10px;
    margin-bottom: 10px;
  }
  .product-main-info .main-info-left-side {
    padding: 10px;
  }
  .summary-wrapper .summary-left-side,
  .summary-wrapper .summary-right-side {
    top: 120px;
  }
  .summary-wrapper .gallery-main-wrapper .swiper-slide {
    height: 400px;
  }
  .summary-wrapper .summary-center {
    gap: 20px;
  }
  .summary-wrapper .attrs-holder,
  .summary-wrapper .info-block-item {
    padding: 10px;
  }
  .summary-wrapper .info-blocks {
    gap: 20px;
  }
  .summary-wrapper .control-wrapper {
    padding: 10px;
  }
  .woocommerce .seo-block .seo-right-side {
    padding: 10px;
  }
  .woocommerce .seo-block .seo-title {
    font-size: 24px;
    margin-bottom: 5px;
  }
  .woocommerce .seo-block .seo-right-side .add-wrapper {
    height: 380px;
  }
}

@media (max-width: 1200px) {
  #footer .info-holder {
    gap: 10px;
  }
  #footer .info-title {
    margin-bottom: 5px;
  }
  .socs {
    gap: 5px;
  }
  #footer .socs {
    margin-bottom: 10px;
  }
  #footer .logo-holder {
    padding: 15px;
    margin-bottom: 10px;
    max-width: 190px;
  }
  #footer .footer-default {
    padding: 10px 0px;
  }
  #header .socs {
    display: none;
  }
  #header .header-top .nav-menu-element.has-childs>a {
    padding-right: 15px;
  }
  #header .nav-menu-element a {
    font-size: 14px;
  }
  #header .shop-btn {
    gap: 0px;
  }
  #header .shop-btn-name {
    font-size: 12px;
  }
  #header .dgwt-wcas-search-wrapp {
    height: 40px;
  }
  #header .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp {
    height: 38px;
  }
  #header .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit {
    margin-left: 5px;
    width: 20px;
  }
  #header .header-cat>.nav-menu-element.has-childs>a {
    padding: 12px 15px 12px 30px;
  }
  #header .header-cat>.nav-menu-element.has-childs>a:before {
    top: 11px;
    width: 16px;
    height: 16px;
    left: 9px;
  }
  #header .header-cat>.nav-menu-element.has-childs a+.sub-menu {
    padding: 10px 10px 0px 10px;
    display: flex;
    flex-direction: column;
  }
  #header .header-cat>.nav-menu-element.has-childs a+.sub-menu .nav-menu-element a {
    padding: 10px 0px;
  }
  #header .header-cat>.nav-menu-element.has-childs .sub-menu .nav-menu-element.has-childs a:before {
    top: 13px;
  }
  #header .sub-menu .nav-menu-element a {
    font-size: 14px;
  }
  #header .header-top .nav-menu-element.has-childs a+.sub-menu {
    padding: 10px;
  }
  #header .header-cat>.nav-menu-element.has-childs>a+.sub-menu .nav-menu-element.has-childs a+.sub-menu {
    padding-bottom: 10px;
  }
  #header .header-cat>.nav-menu-element.has-childs>a {
    font-size: 14px;
  }
  #header .header-bot {
    gap: 10px;
  }
  .btn {
    padding: 15px 20px;
  }
  .soc {
    width: 40px;
    height: 40px;
  }
  .error-title {
    font-size: 38px;
    margin-bottom: 20px;
  }
  .error-subtitle {
    margin-bottom: 10px;
  }
  #archive-services .services-banner-title,
  #archive-services .services-banner-title span,
  .single-page.services .page-title span,
  .single-page.services .page-title {
    font-size: 36px;
  }
  h1.page-title {
    font-size: 38px;
    margin-bottom: 25px;
  }
  .review-item-template .review-top {
    margin-bottom: 10px;
  }
  .review-item-template .review-photo {
    width: 40px;
    height: 40px;
  }
  .review-item-template .review-gallery {
    gap: 5px;
    margin-top: 10px;
  }
  .review-item-template .gallery-img {
    width: calc((100% - 10px) / 3);
    height: 70px;
  }
  #archive-reviews .form-desc {
    margin-bottom: 10px;
  }
  #archive-reviews .review-links {
    gap: 10px;
    margin-bottom: 10px;
  }
  #archive-reviews .review-link-item {
    padding: 5px;
  }
  #archive-reviews .reviews-page-wrapper {
    gap: 10px;
  }
  #archive-reviews,
  #archive-works,
  #archive-services,
  .products-wrapper,
  .woocommerce-cart .cart-wrapper,
  .woocommerce-checkout form,
  .woocommerce .seo-block {
    padding-bottom: 80px;
  }
  #archive-services .archive-banner {
    margin-bottom: 80px;
  }
  .pagination {
    margin-top: 20px;
    gap: 10px;
  }
  .prev.page-numbers, .next.page-numbers {
    width: 50px;
    height: 50px;
  }
  .block-container {
    padding: 40px 0px;
  }
  .main-title {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .nav {
    margin-top: 20px;
  }
  .nav .swiper-button-prev, .nav .swiper-button-next {
    width: 40px;
    height: 40px;
  }
  #archive-works .works {
    gap: 10px;
    grid-template-columns: repeat(2,1fr);
  }
  #more-btn {
    margin-top: 20px;
  }
  #archive-services .banner-left-side,
  .single-page.services .banner-left-side {
    padding: 15px 0px 15px 15px;
  }
  #archive-services .archive-banner,
  .single-page.services .banner-wrapper {
    min-height: 400px;
  }
  .single-page.services .banner-wrapper {
    margin-bottom: 40px;
  }
  .product-category.product a {
    padding: 15px;
    min-height: 200px;
  }
  .product-cats.main-cats {
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
  }
  .products-wrapper .product-holder ul {
    grid-template-columns: repeat(2,1fr);
  }
  .woocommerce .subcats {
    gap: 10px;
    margin-bottom: 20px;
  }
  .page-favorites ul.products {
    gap: 10px;
    padding-bottom: 80px;
  }
  .woocommerce-cart .woocommerce .qty-button {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
  .woocommerce-cart .woocommerce .qty-wrapper {
    max-width: 120px;
  }
  .woocommerce-cart .woocommerce .qty-wrapper .quantity {
    min-width: 40px;
  }
  .woocommerce-cart .woocommerce .qty-wrapper input {
    min-width: 40px;
  }
  .woocommerce-cart .woocommerce .cart_item {
    gap: 10px;
  }
  .woocommerce-cart .woocommerce .product-name {
    max-width: 350px;
    min-width: 300px;
  }
  .woocommerce-cart .woocommerce .product-name a {
    font-size: 16px;
  }
  .woocommerce-cart .woocommerce .product-price {
    min-width: fit-content;
  }
  .summary-wrapper {
    padding-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
  }
  .summary-wrapper .summary-left-side,
  .summary-wrapper .summary-right-side{
    width: calc((100% - 20px) / 2);
    position: relative;
    top: unset;
  }
  .summary-wrapper .summary-right-side {
    order: 2;
  }
  .summary-wrapper .summary-center {
    width: 100%;
    order: 3;
  }
  .summary-wrapper .qty-wrapper {
    margin-bottom: 20px;
  }
  .summary-wrapper .stock-status {
    margin-bottom: 5px;
  }
  .summary-wrapper .delivery-holder {
    gap: 10px;
  }
  .product-main-info .main-product-title {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .product-main-info .main-info-left-side {
    gap: 20px;
  }
}

@media (max-width: 996px) {
  #footer .foot-menu-nav {
    gap: 5px;
  }
  #header .header-menu {
    display: none;
  }
  #header .burger.open_menu {
    display: flex;
  }
  #header .phone-item {
    font-size: 14px;
  }
  #footer .footer-info {
    width: 210px;
    min-width: 210px;
  }
  #footer .footer-wrapper {
    padding: 10px 0px;
  }
  #footer .privacy-holder,
  #footer .rights,
  #footer .dev {
    font-size: 14px;
  }
  .error-title {
    font-size: 32px;
    margin-bottom: 10px;
  }
  .btn {
    padding: 10px 15px;
    font-size: 14px;
  }
  .breadcrumbs {
    padding: 10px 0px 5px 0px;
    font-size: 14px;
  }
  .breadcrumbs span {
    font-size: 14px;
  }
  h1.page-title {
    font-size: 32px;
    margin-bottom: 15px;
  }
  #archive-reviews .reviews {
    grid-template-columns: repeat(2,1fr);
  }
  #archive-reviews,
  #archive-works,
  #archive-services,
  .products-wrapper,
  .woocommerce-cart .cart-wrapper,
  .woocommerce-checkout form,
  .woocommerce .seo-block {
    padding-bottom: 60px;
  }
  #archive-services .archive-banner {
    margin-bottom: 60px;
  }
  .prev.page-numbers, .next.page-numbers {
    width: 40px;
    height: 40px;
  }
  .text-holder {
    gap: 10px;
    line-height: 125%;
  }
  .text-all {
    margin-top: -5px;
  }
  .text-holder p, .text-holder li {
    font-size: 14px;
    line-height: 125%;
  }
  #archive-reviews .reviews-holder {
    width: 65%;
  }
  #archive-reviews .form-holder {
    width: 35%;
  }
  .text-holder h4 {
    margin-top: unset;
  }
  .block-container {
    padding: 30px 0px;
  }
  .main-title {
    font-size: 28px;
  }
  .nav .btns {
    gap: 10px;
  }
  .works-item-template .works-name {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .works-item-template .works-duration {
    padding: 5px 10px;
    gap: 5px;
  }
  #archive-services .services {
    grid-template-columns: repeat(2,1fr);
  }
  #archive-services .archive-banner,
  .single-page.services .banner-wrapper {
    min-height: 300px;
  }
  #archive-services .services-banner-title, #archive-services .services-banner-title span,
  .single-page.services .page-title span,.single-page.services .page-title {
    font-size: 32px;
  }
  .single-page.services .banner-wrapper {
    margin-bottom: 30px;
  }
  .product-category.product h2 {
    font-size: 16px;
  }
  .woocommerce-page #open-filter {
    display: block;
  }
  .products-wrapper .sidebar {
    position: fixed;
    height: 100%;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    transition: 0.5s;
    background: var(--second);
    z-index: 99;
    max-height: unset;
  }
  .products-wrapper .sidebar.open {
    transform: unset;
  }
  .woocommerce .filters-form .filter-block {
    padding: 10px;
  }
  #sidebar-close {
    display: block;
    margin: 10px 10px 10px auto;
  }
  .woocommerce .filters-form .add-wrapper {
    border: unset;
  }
  .woocommerce .filters-form {
    padding: 0px 10px;
  }
  .woocommerce .filters-form .inputs.price {
    padding-top: 10px;
    margin-bottom: 10px;
  }
  .woocommerce .filters-form .inputs.price input {
    padding: 10px 10px 10px 25px;
    font-size: 12px;
  }
  .woocommerce .filters-form .filter-block-title {
    font-size: 14px;
  }
  .woocommerce .filters-form .inputs {
    padding-top: 10px;
  }
  .woocommerce .filters-form .group-label {
    padding-left: 20px;
  }
  .woocommerce .filters-form .group-label, .woocommerce .filters-form .group-label__name {
    font-size: 14px;
  }
  .woocommerce .filters-form .inputs {
    gap: 5px;
  }
  .woocommerce .filters-form .buttons {
    margin-top: 10px;
    gap: 5px;
  }
  .woocommerce .filters-form .clear-filters {
    font-size: 14px;
    gap: 5px;
  }
  .woocommerce .filters-form .inputs.price .group:nth-child(2):before,
  .woocommerce .filters-form .inputs.price .group:nth-child(1):before {
    top: 11px;
    left: 8px;
    font-size: 12px;
  }
  .woocommerce .filters-form .group:before {
    width: 14px;
    height: 14px;
    top: 3px;
  }
  .woocommerce .shop-content .group:after {
    width: 16px;
    height: 16px;
    left: 0px;
    top: 4px;
  }
  .products-wrapper .product-holder ul {
    grid-template-columns: repeat(3,1fr);
  }
  .product-item-template .card-buttons {
    gap: 10px;
  }
  .product-item-template .favorite-btn, .product-item-template .product_type_simple {
    width: 38px;
    height: 38px;
  }
  .product-item-template .favorite-btn svg,
  .product-item-template .product_type_simple svg {
    max-width: 50%;
    max-height: 50%;
  }
  .product-item-template del bdi, .product-item-template del bdi span {
    font-size: 12px;
  }
  .product-item-template bdi, .product-item-template bdi span,
  .product-item-template ins bdi, .product-item-template ins bdi span {
    font-size: 16px;
  }
  .product-item-template .tag-list {
    top: 5px;
    left: 5px;
    gap: 5px;
  }
  .product-item-template .tag-name {
    font-size: 12px;
    padding: 3px 5px;
  }
  .product-item-template .info-top {
    margin-bottom: 5px;
  }
  .product-item-template .product-status {
    font-size: 12px;
    padding: 3px 5px;
  }
  .product-item-template .product-sku {
    font-size: 12px;
  }
  .product-item-template .price {
    padding-right: 85px;
  }
  .page-favorites ul.products {
    grid-template-columns: repeat(3,1fr);
    padding-bottom: 60px;
  }
  .woocommerce-cart .cart-wrapper {
    flex-direction: column;
  }
  .woocommerce-cart .woocommerce form {
    width: 100%;
  }
  .woocommerce-cart .woocommerce .cart-collaterals {
    width: 100%;
    min-width: unset;
    max-width: unset;
    position: static;
  }
  .woocommerce-cart .woocommerce .clear-button {
    font-size: 14px;
    gap: 5px;
  }
  .woocommerce-checkout form {
    flex-direction: column;
  }
  .form-checkout-left-side {
    width: 100%;
  }
  .woocommerce-checkout .form-checkout-right-side {
    width: 100%;
    min-width: unset;
    max-width: unset;
    position: static;
  }
  .summary-wrapper {
    padding-bottom: 30px;
  }
  .summary-wrapper .tag-list {
    gap: 5px;
  }
  .summary-wrapper .stock-status {
    border-radius: 3px;
    padding: 3px 7px;
    font-size: 12px;
  }
  .summary-wrapper .price bdi, .summary-wrapper .price bdi span, .summary-wrapper .price ins bdi span, .summary-wrapper .price ins bdi {
    font-size: 24px;
  }
  .summary-wrapper .qty-button {
    height: 40px;
    width: 40px;
    min-width: 40px;
  }
  .summary-wrapper .gallery-holder .swiper-slide {
    height: 80px;
  }
  .summary-wrapper .product-gallery {
    gap: 5px;
  }
  .summary-wrapper .tag-name {
    padding: 3px 5px;
    font-size: 12px;
    border-radius: 3px;
  }
  .summary-wrapper .product-gallery .btns {
    bottom: 110px;
    width: fit-content;
    gap: 10px;
  }
  .summary-wrapper .gallery-main-wrapper .swiper-slide {
    height: 350px;
  }
  .summary-wrapper .product-gallery .swiper-button-single-prev, .summary-wrapper .product-gallery .swiper-button-single-next {
    width: 40px;
    height: 40px;
  }
  .summary-wrapper .del-name {
    font-size: 14px;
    margin-bottom: unset;
  }
  .summary-wrapper .del-desc {
    font-size: 14px;
  }
  .summary-wrapper .del-item {
    gap: 10px;
  }
  .summary-wrapper .del-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
  .summary-wrapper .single_add_to_cart_button,
  .summary-wrapper .favorite-btn {
    padding: 10px;
  }
  .summary-wrapper .short-desc,
  .product-main-info .main-desc p, .product-main-info .main-desc .full-text, .product-main-info .main-desc .short-text,
  .product-main-info .use p {
    font-size: 14px;
  }
  .product-main-info {
    flex-direction: column;
    gap: 20px;
  }
  .product-main-info .main-info-left-side {
    width: 100%;
  }
  .product-main-info .main-form-holder {
    width: 100%;
    min-width: unset;
    max-width: unset;
    position: static;
  }
  .product-main-info .main-form-photo {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }
  .product-main-info .main-form-title {
    font-size: 24px;
  }
  .woocommerce .seo-block .seo-wrapper {
    gap: 20px;
  }
  .woocommerce .seo-block .text-holder ol, .woocommerce .seo-block .text-holder ul {
    margin-top: 0px;
  }
  .text-holder ol li:before {
    font-size: 14px;
    top: 3px;
  }
  .summary-wrapper .control-wrapper .btn.open-modal {
    margin-top: 10px;
  }
  .product-item-template .product-info-wrapper {
    min-height: 120px;
  }
  #footer .reqs {
    gap: 5px;
  }
  #footer .reqs p {
    font-size: 14px;
  }
  #footer .reqs-holder {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  #footer .menu-holder {
    flex-wrap: wrap;
    gap: 20px;
  }
  #footer .menu-title {
    font-size: 14px;
    margin-bottom: 5px;
  }
  #footer .nav-menu-element a {
    font-size: 14px;
  }
  #footer .footer-default {
    padding-bottom: 50px;
  }
  #header .mobile-wrapper {
    display: flex;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    background: var(--second);
    border-top: 1px solid var(--stroke);
    padding: 5px;
    gap: 10px;
    justify-content: space-between;
  }
  .woo-icons {
    display: flex;
    gap: 10px;
    align-items: center;
  }
  #header .shop-btn__counter {
    height: 18px;
    font-size: 12px;
    min-width: 25px;
  }
  .woo-icons .shop-btn__icon {
    width: 18px;
    height: 18px;
    margin-bottom: 3px;
  }
  .woo-icons .shop-btn__icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  #header .header-bot {
    display: none;
  }
  #header .logo-holder {
    font-size: 14px;
    padding: unset;
    border: unset;
	  align-items: unset;
	  justify-content: unset;
	  max-height: 80px;
  }
	#header .logo-holder img {
		height: auto;
		object-position: left;
	}
  #header .header-top {
    justify-content: flex-end;
  }
  #header .phone-item {
    min-width: fit-content;
  }
  #footer .footer-default {
    flex-direction: column;
    align-items: center;
  }
  .error-wrapper {
    min-height: 200px;
    margin-top: 10px;
  }
  .error-title {
    font-size: 28px;
  }
  h1.page-title {
    font-size: 28px;
  }
  #archive-reviews .form-title {
    font-size: 20px;
  }
  #archive-reviews .reviews-page-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  #archive-reviews .form-holder {
    width: 100%;
    position: static;
    order: 2;
  }
  #archive-reviews .reviews-holder {
    order: 1;
    width: 100%;
  }
  .main-title {
    font-size: 24px;
  }
  .works-item-template .works-duration span,
  .works-item-template .works-duration {
    font-size: 14px;
  }
  .works-item-template .works-img {
    max-height: 250px;
  }
  .services-item-template .services-img {
    max-height: 200px;
  }
  .services-item-template .services-card-desc {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .services-item-template .services-name {
    font-size: 16px;
  }
  #archive-services .services-banner-title,
  .single-page.services .page-title {
    margin-bottom: 5px;
  }
  #archive-services .services-banner-desc,
  .single-page.services .banner-desc {
    margin-bottom: 5px;
    font-size: 14px;
    max-width: unset;
  }
  #archive-services .banner-left-side,
  .single-page.services .banner-left-side {
    padding: 15px;
    max-width: unset;
    width: 100%;
  }
  #archive-services .archive-banner,
  .single-page.services .banner-wrapper {
    min-height: unset;
  }
  #archive-services .archive-banner .btn {
    margin-top: 20px;
  }
  #archive-services .banner-img,
  .single-page.services .banner-img {
    display: none;
  }
  #archive-services .services-banner-title, #archive-services .services-banner-title span,
  .single-page.services .page-title span,.single-page.services .page-title {
    font-size: 28px;
  } 
  .product-cats.main-cats {
    grid-template-columns: repeat(2,1fr);
  }
  .products-wrapper .product-holder ul {
    grid-template-columns: repeat(2,1fr);
  }
  .page-favorites ul.products {
    grid-template-columns: repeat(2,1fr);
  }
  .page-favorites .info-holder {
    margin-bottom: 10px;
  }
  .woocommerce-billing-fields__field-wrapper input, .woocommerce-shipping-fields__field-wrapper input {
    padding: 10px;
    font-size: 12px;
  }
  .woocommerce-billing-fields__field-wrapper input::placeholder, .woocommerce-shipping-fields__field-wrapper input::placeholder {
    font-size: 12px;
  }
  .woocommerce-checkout #order_comments {
    padding: 10px;
    height: 80px;
  }
  .woocommerce-checkout .total-count {
    font-size: 14px;
    padding-bottom: 10px;
  }
  .woocommerce-checkout .total-price {
    margin: 10px 0px;
  }
  .woocommerce-checkout .total-price bdi, .woocommerce-checkout .total-price bdi span {
    font-size: 24px;
  }
  .woocommerce .seo-block .seo-wrapper {
    flex-direction: column;
  }
  .woocommerce .seo-block .seo-img {
    width: 100%;
    height: 300px;
    order: 2;
  }
  .woocommerce .seo-block .seo-right-side {
    width: 100%;
    height: 300px;
    order: 1;
  }
  .woocommerce .seo-block .seo-right-side .add-wrapper {
    height: 270px;
  }
  .works-item-template .works-gallery-holder {
    height: 250px;
  }
  .woocommerce-cart .woocommerce .product-name {
    min-width: unset;
  }
}

@media (max-width: 600px) {
  .error-title {
    font-size: 24px;
  }
  .error-wrapper {
    flex-direction: column;
    padding: 15px;
    align-items: flex-start;
    margin-bottom: 20px;
  }
  .error-img {
    width: 100%;
  }
  .error-info {
    max-width: unset;
  }
  h1.page-title {
    font-size: 24px;
  }
  #archive-works .works {
    display: flex;
    flex-direction: column;
  }
  .services-item-template .services-bot {
    flex-direction: column;
    align-items: flex-start;
  }
  .services-item-template .services-bot .btn {
    margin-left: unset;
    width: 100%;
  }
  #archive-services .services-banner-title, #archive-services .services-banner-title span,
  .single-page.services .page-title span,.single-page.services .page-title {
    font-size: 24px;
  }
  .woocommerce-cart .woocommerce .cart_item {
    flex-direction: column;
    padding-right: 10px;
  }
  .woocommerce-cart .woocommerce .product-price {
    align-items: flex-start;
  }
  .woocommerce-cart .woocommerce .info-holder {
    width: 100%;
    flex-wrap: wrap;
  }
  .woocommerce-cart .woocommerce .product-name {
    max-width: unset;
    width: 100%;
  }
  .woocommerce-cart .product-quantity {
    margin-left: unset;
  }
  .woocommerce-cart .woocommerce .product-thumbnail {
    width: 180px;
    height: 180px;
  }
  #shipping_method, form.woocommerce-checkout .wc_payment_methods, .woocommerce-billing-fields__field-wrapper, .woocommerce-shipping-fields__field-wrapper {
    grid-template-columns: repeat(2,1fr);
  }
  form.woocommerce-checkout #shipping_method li, .woocommerce-checkout li.wc_payment_method {
    width: calc((100% - 10px) / 2);
  }
  .summary-wrapper {
    flex-direction: column;
  }
  .summary-wrapper .summary-left-side, .summary-wrapper .summary-right-side {
    width: 100%;
  }
  .product-main-info .main-product-title {
    font-size: 20px;
    margin-bottom: 5px;
  }
  .product-main-info .main-attr-name,
  .product-main-info .main-attr-value,
  .summary-wrapper .attr-name,
  .summary-wrapper .attr-value {
    font-size: 14px;
  }
  .product-main-info .main-attr-name,
  .summary-wrapper .attr-name {
    padding-right: 5px;
  }
  .product-main-info .main-attr-value,
  .summary-wrapper .attr-value {
    padding-left: 5px;
  }
  .summary-wrapper .info-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
  .summary-wrapper .info-block-item {
    gap: 10px;
  }
  .summary-wrapper .info-name {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .summary-wrapper .info-desc {
    font-size: 14px;
  }
  .summary-wrapper .info-gallery {
    gap: 5px;
    margin-top: 5px;
  }
  .summary-wrapper .info-block-item:last-child .block-link {
    font-size: 14px;
    margin-top: 5px;
  }
  .summary-wrapper .single_add_to_cart_button, .summary-wrapper .favorite-btn {
    font-size: 14px;
  }
  .product-main-info .product-all, .product-main-info .use-all, .product-main-info .char-all {
    margin-top: 5px;
    font-size: 14px;
  }
  .product-main-info .main-form-title {
    font-size: 20px;
    margin-bottom: unset;
  }
  .product-main-info .main-form-desc {
    font-size: 14px;
  }
  .summary-wrapper .single-cert {
    padding-left: 25px;
    font-size: 14px;
  }
}

@media (max-width: 498px) {
  #footer .footer-wrapper {
    flex-direction: column;
  }
  #footer .footer-info {
    width: 100%;
    max-width: unset;
    min-width: unset;
  }
  .theme-modal.fancybox__content {
    padding: 30px 15px 15px 15px;
  }
  .theme-modal .title {
    font-size: 20px;
    margin-bottom: 5px;
  }
  .theme-modal .subtitle {
    margin-bottom: 10px;
  }
  .form .privacy-policy {
    margin-top: 5px;
    line-height: 130%;
  }
  #archive-reviews .reviews {
    display: flex;
    flex-direction: column;
  }
  .review-item-template .gallery-img {
    height: 90px;
  }
  .services-item-template .services-info {
    padding: 10px;
  }
  .product-category.product a {
    min-height: 170px;
  }
  .product-category.product img {
    width: 100%;
    height: 60%;
  }
  .product-category.product a:hover img {
    transform: scale(1.05) translateX(-4px) translateY(-2px);
  }
  .product-item-template .tag-name {
    font-size: 9px;
  }
  .product-item-template h2 {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .product-item-template bdi, .product-item-template bdi span, .product-item-template ins bdi, .product-item-template ins bdi span {
    font-size: 14px;
  }
  .product-item-template del bdi, .product-item-template del bdi span {
    font-size: 10px;
  }
  .product-item-template .card-buttons {
    gap: 5px;
  }
  .product-item-template .info-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  .woocommerce .category-item {
    padding: 5px;
  }
  .page-favorites .info-holder {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  .woocommerce-cart .woocommerce .last-price {
    margin: 10px 0px;
  }
  .woocommerce-cart .woocommerce .last-price bdi, .woocommerce-cart .woocommerce .last-price bdi span {
    font-size: 24px;
  }
  .summary-wrapper .info-gallery-img {
    width: calc((100% - 15px) / 4);
  }
  .product-item-template .product-info-wrapper {
    min-height: 150px;
  }
}

@media (max-width: 400px) {
  #archive-reviews .form-holder .btn {
    width: 100%;
  }
  #archive-services .services {
    display: flex;
    flex-direction: column;
  }
  .product-item-template .product-info-wrapper {
    padding: 5px;
    padding-bottom: 40px;
  }
  .product-item-template h2 {
    margin-bottom: 5px;
  }
  .product-item-template .price {
    flex-direction: row-reverse;
    padding-right: unset;
    gap: 3px;
    justify-content: flex-end;
  }
  .product-item-template .favorite-btn, .product-item-template .product_type_simple {
    width: calc((100% - 5px) / 2);
    height: 30px;
  }
  .product-item-template .card-buttons {
    width: calc(100% - 10px);
    left: 5px;
    bottom: 5px;
  }
}

@media (max-width: 370px) {
  #header .phone-item {
    font-size: 12px;
  }
  #header {
    padding: 0px 10px;
  }
  .review-item-template .gallery-img {
    height: 70px;
  }
  .product-category.product a {
    padding: 10px;
  }
  .product-category.product h2 {
    font-size: 14px;
  }
  .product-item-template .product-sku {
    font-size: 10px;
  }
  .product-item-template h2 {
    font-size: 12px;
  }
  .product-item-template bdi, .product-item-template bdi span, .product-item-template ins bdi, .product-item-template ins bdi span {
    font-size: 12px;
  }
  .product-item-template del bdi, .product-item-template del bdi span {
    font-size: 9px;
  }
  #shipping_method, form.woocommerce-checkout .wc_payment_methods, .woocommerce-billing-fields__field-wrapper, .woocommerce-shipping-fields__field-wrapper {
    grid-template-columns: 1fr;
  }
  form.woocommerce-checkout #shipping_method li, .woocommerce-checkout li.wc_payment_method {
    width: 100%;
    min-height: 50px;
  }
  .summary-wrapper .gallery-main-wrapper .swiper-slide {
    height: 300px;
  }
  .summary-wrapper .info-gallery-img {
    width: calc((100% - 10px) / 3);
  }
  .product-main-info .main-attr-name,
  .product-main-info .main-attr-value,
  .summary-wrapper .attr-name,
  .summary-wrapper .attr-value {
    font-size: 12px;
  }
}