/*============= 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(--second);
}
body {
  background-color: var(--third);
  overflow-x: hidden;
  margin: 0 auto;
  width: auto;
}
.seo-text::-webkit-scrollbar,
.text-block .text::-webkit-scrollbar,
.seo-block .add-wrapper::-webkit-scrollbar {
  width: 4px;
	background: var(--background-thirdly);
}
.seo-text::-webkit-scrollbar-thumb,
.text-block .text::-webkit-scrollbar-thumb,
.seo-block .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: 500;
  font-size: 56px;
  line-height: 100%;
  margin-bottom: 40px;
}
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;
}
.breadcrumbs span {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: var(--main-text-primary);
  transition: 0.3s;
  position: relative;
  margin-right: 22px;
}
.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: 10px;
  outline: none;
  padding: 17px 30px;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  cursor: pointer;
  transition: all 0.3s ease-in;
  color: var(--background);
}
.btn.second {
  border: 1px solid var(--primary);
  background: var(--third);
  color: var(--second);
}
.btn.second:hover {
  background: var(--primary);
  color: var(--second);
}
.btn:hover {
  background-color: var(--primary-hover);
  color: var(--background);
}
.main-title {
  font-weight: 500;
  font-size: 48px;
  line-height: 100%;
  margin-bottom: 40px;
}
.main-title span {
  font-weight: 500;
  font-size: 48px;
  line-height: 100%;
  color: var(--primary);
}
.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%;
}
.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: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  position: static;
  justify-content: center;
  border-radius: 10px;
  background: var(--primary);
  transition: 0.5s;
  cursor: pointer;
  margin-top: unset;
  z-index: 2;
}
.nav .swiper-button-prev:hover,
.nav .swiper-button-next:hover {
  background: var(--second);
}
.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-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 {
  font-weight: 500;
  font-size: 16px;
  line-height: 125%;
  margin-top: -10px;
  cursor: pointer;
  width: fit-content;
  transition: 0.3s;
  position: relative;
}
.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 {
  color: var(--primary);
}
.text-all:hover:before {
  transform: translateX(10px);
  background-image: url(../images/moreArrowHover.png);
}
.pagination {
  width: 100%;
  max-width: 880px;
  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: 500;
  font-size: 20px;
  line-height: 120%;
  color: var(--secondary-text);
  transition: 0.5s;
}
.page-numbers:hover {
  color: var(--primary);
}
.page-numbers.current {
  color: var(--primary);
}
.prev.page-numbers,
.next.page-numbers {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: var(--primary);
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prev.page-numbers:hover,
.next.page-numbers:hover {
  background: var(--second);
}
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 {
  background: var(--background);
  top: 0;
  position: sticky;
  width: 100%;
  margin: 0 auto;
  z-index: 100;
  max-width: 1530px;
}
#header .header-wrapper {
  display: flex;
  gap: 30px;
  padding: 20px 0px;
}
#header .logo-holder {
  background: var(--background-thirdly);
  border-radius: 15px;
  padding: 25px;
  display: flex;
  gap: 15px;
  height: fit-content;
  max-width: 230px;
}
#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 .header-center {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
#header .header-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}
#header .nav-menu-element a {
  font-weight: 400;
  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;
  margin-bottom: 20px;
}
.socs {
  display: flex;
  gap: 10px;
}
.soc {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--background-thirdly);
  border-radius: 10px;
  transition: 0.5s;
}
.soc:hover {
  background: var(--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: 30px;
}
#header .soc {
  width: 20px;
  height: 20px;
  background: 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 .info-wrapper {
  display: flex;
  gap: 30px;
  align-items: center;
}
#header .info-item {
  display: flex;
  gap: 10px;
  align-items: center;
}
#header .info-icon {
  width: 24px;
  height: 24px;
  display: flex;
}
#header .info-icon img,
#header .info-icon svg {
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  max-height: 100%;
  max-width: 100%;
}
#header .phone-item {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  color: var(--second);
}
#header .phone-item:hover {
  color: var(--primary);
}
#header .header-bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
#header .header-cat {
  max-width: 137px;
}
#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 {
  
}
#header {
  
}
#header {
  
}
#header {
  
}
#header {
  
}
#header .mobile-wrapper {
  display: none;
}
#header .header-cat .nav-menu-element.has-childs:has(a) {
  position: relative;
}
#header .header-cat>.nav-menu-element.has-childs>a {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  position: relative;
  display: block;
  background: var(--primary);
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: var(--head-secondary);
  padding: 17px 20px 17px 55px;
}
#header .header-cat>.nav-menu-element.has-childs>a:before {
  content: "";
  width: 25px;
  height: 25px;
  left: 20px;
  top: 12px;
  position: absolute;
  background-image: url(../images/menuClosed.png);
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.5s;
}
#header .header-cat>.nav-menu-element.has-childs:hover>a {
  background: var(--second);
  border-radius: 10px 10px 0px 0px;
}
#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: 1px;
  min-width: 240px;
  left: 0;
  background: var(--second);
  padding: 30px;
  border-radius: 0px 10px 10px 10px;
  width: max-content;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  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 .nav-menu-element a {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: var(--main-text-secondary);
}
#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 .dgwt-wcas-search-wrapp {
  max-width: 635px;
  position: relative;
  padding: unset;
  background: unset;
  font-size: unset;
  margin: unset;
  max-height: 50px;
  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: 48px;
  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(--primary);
}
#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: 140%;
  color: var(--head-primary);
  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: 130%;
  color: var(--main-text-primary);
  transition: 0.5s;
}
#header .dgwt-wcas-search-wrapp:hover input[type=search].dgwt-wcas-search-input::placeholder {
  color: var(--primary);
}
#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: 10px;
  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: 20px;
  margin-right: 45px;
}
#header .shop-btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--background-secondary);
  position: relative;
}
#header .shop-btn:hover {
  background: var(--background-thirdly);
}
#header .shop-btn__icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: 0.5s;
}
#header .shop-btn__counter {
  position: absolute;
  border-radius: 5px;
  width: 38px;
  height: 30px;
  top: 0px;
  right: -43px;
  background: var(--primary);
  font-weight: 300;
  font-size: 14px;
  line-height: 150%;
  color: var(--head-secondary);
  text-align: center;
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
}
#header  .dgwt-wcas-open-pirx .dgwt-wcas-suggestion-nores {
  color: var(--head-primary) !important;
}
#header .dgwt-wcas-st-title,
#header .dgwt-wcas-st>span,
#header .dgwt-wcas-content-wrapp,
#header .dgwt-wcas-st,.dgwt-wcas-suggestions-wrapp * {
  color: var(--third) !important;
}





/*================ 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;
}
#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);
  margin-bottom: 30px;
  max-width: 1530px;
  padding: 30px 15px 0px 15px;
  border-radius: 10px 10px 0 0;
  margin-left: auto;
  margin-right: auto;
}
#footer .footer-wrapper {
  display: flex;
  gap: 30px;
}
#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: 25px;
  display: flex;
  gap: 10px;
  border-radius: 15px;
  background: var(--background-thirdly);
  align-items: center;
  margin-right: 55px;
  max-width: 230px;
}
#footer .logo-holder img {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: flex;
  object-fit: contain;
}
#footer .site-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  color: var(--second);
}
#footer .info-holder {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-grow: 1;
}
#footer .info-item {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  max-width: 250px;
}
#footer .info-title {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--main-text-primary);
  margin-bottom: 10px;
}
#footer .values {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
#footer .value {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  color: var(--second);
  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: 20px;
  justify-content: space-between;
  padding: 30px 0px;
}
#footer .main-item {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  max-width: 350px;
}
#footer .menu-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  color: var(--second);
  margin-bottom: 10px;
}
#footer .foot-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#footer .nav-menu-element a {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: var(--main-text-primary);
}
#footer .nav-menu-element a:hover {
  color: var(--primary);
}
#footer .form .privacy-policy {
  margin-top: -5px;
  text-align: center;
  font-weight: 300;
  font-size: 14px;
  line-height: 150%;
  text-align: center;
  color: var(--main-text-primary);
  display: flex;
  flex-direction: column;
}
#footer .form .btn {
  width: 100%;
}
#footer .form {
  gap: 20px;
  width: 100%;
}
#footer .footer-default {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 30px 0px;
  border-top: 1px solid var(--background-thirdly);
}
#footer .privacy-holder {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-align: center;
  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: 500;
  font-size: 32px;
  line-height: 100%;
  text-align: center;
  color: var(--primary);
  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: 37px;
}
#modal-success.theme-modal .title:before {
  content: "";
  width: 24px;
  height: 24px;
  top: 3px;
  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: 337px;
}
.fancybox__content>.f-button.is-close-btn {
  top: 10px !important;
  right: 10px !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;
}
.f-button svg {
  stroke: white !important;
}
.fancybox__content>.f-button.is-close-btn:hover path {
  fill: var(--primary) !important;
  transition: 0.3s !important;
}
.fancybox__content>.f-button.is-close-btn:hover path {
  stroke: transparent !important;
}
.theme-modal.fancybox__content {
  width: 490px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: var(--third);
  border-radius: 10px;
  overflow: auto;
}
.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: 10px;
  padding: 15px 20px;
  transition: 0.3s;
  outline: none;
  cursor: pointer;
  width: 100%;
  height: 100%;
  border: 1px solid var(--background-secondary);
}
.input-wrapper .label {
  position: absolute;
  top: 16px;
  left: 25px;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: var(--main-text-primary);
  transition: 0.5s;
  pointer-events: none;
}
.form textarea {
  height: 100%;
  width: 100%;
  border: unset;
  outline: none;
  border-radius: 10px;
  padding: 15px 20px;
  cursor: pointer;
  transition: 0.3s;
  resize: none;
  border: 1px solid var(--background-secondary);
}
.form input:hover,
.form textarea:hover {
  background: var(--background-thirdly);
}
.form input,
.form textarea {
  font-weight: 300;
  font-size: 14px;
  line-height: 150%;
  color: var(--main-text-primary);
  cursor: pointer;
  background: var(--background-secondary);
}
.form input.error,
.form textarea.error {
  border-color: red !important;
}
.form input::placeholder,
.form textarea::placeholder {
  font-weight: 300;
  font-size: 14px;
  line-height: 150%;
  color: var(--main-text-primary);
  transition: 0.3s;
}
.theme-modal .btn {
  width: 100%;
}
.form .form-bot {
  margin-top: 10px;
}
.form .privacy-policy {
  margin-top: 15px;
  font-weight: 300;
  font-size: 14px;
  line-height: 150%;
  text-align: center;
  color: var(--main-text-primary);
  display: flex;
  flex-direction: column;
}
.form .privacy-policy a {
  text-decoration: underline;
  color: var(--main-text-primary);
}
.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(218, 165, 50, 0.1) !important;
  backdrop-filter: blur(12px);
}
.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;
  margin: 20px 0px;
}
/* ============== MODAL End ============= */






/* ============== Pages Start ============= */
.error-wrapper {
  display: flex;
  padding: 40px;
  background: var(--background-secondary);
  border-radius: 10px;
  position: relative;
  margin-top: 30px;
}
.error-wrapper .btn {
  margin-right: auto;
}
.error-title {
  font-weight: 500;
  font-size: 56px;
  line-height: 100%;
  color: var(--second);
  margin-bottom: 25px;
}
.error404 #main {
  min-height: 80vh;
}
.error-subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--main-text-primary);
  margin-bottom: 25px;
  max-width: 300px;
  text-align: left;
}
.error-info {
  display: flex;
  flex-direction: column;
  max-width: 610px;
}
.error-img {
  width: 45%;
  display: flex;
  height: auto;
  max-height: 250px;
  position: absolute;
  bottom: 0;
  right: 40px;
}
.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: 65px 0px;
}
.page-id-180 h1.page-title {
  display: none;
}
/* ============== Pages End ============= */














/* ============== Woocommerce Start ============= */
ul.products.columns-3 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}
.product-category {
  height: auto;
  list-style-type: none;
}
.product-category a {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: 30px;
  background: var(--background-secondary);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  min-height: 300px;
}
.product-category a:hover {
  background: var(--primary);
}
.product-category a .woocommerce-loop-category__title {
  font-weight: 500;
  font-size: 32px;
  line-height: 100%;
  margin-bottom: 10px;
  transition: 0.5s;
}
.product-category a:hover .woocommerce-loop-category__title {
  color: var(--head-secondary);
}
.product-category a .woocommerce-loop-category__title mark {
  display: none;
}
.product-category a img {
  position: absolute;
  bottom: 0;
  right: 20px;
  width: auto;
  max-width: 185px;
  height: auto;
  max-height: 175px;
  transition: 0.3s;
  display: block;
  object-fit: contain;
  object-position: bottom center;
}
.product-category a:hover img {
  transform: translateY(20px);
}
.product-category a .icon {
  margin-top: auto;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--primary);
  transition: 0.5s;
}
.product-category a:hover .icon {
  background: var(--second);
}
.product-category a .oil-types {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  max-width: 250px;
}
.product-category a .oil-item {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--main-text-primary);
  transition: 0.5s;
}
.product-category a:hover .oil-item {
  color: var(--head-secondary);
}
.product-category a .oil-item span {
  transition: 0.5s;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--main-text-primary);
}
.product-category a:hover .oil-item span {
  color: var(--head-secondary);
}
.product-category a .oil-item:last-child span {
  display: none;
}
li.product.type-product {
  list-style-type: none;
}
li.product.type-product .item-img-holder {
  background: white;
}
li.product.type-product img {
  width: 100%;
  height: auto;
  display: flex;
  max-height: 280px;
  aspect-ratio: 1/1;
  object-fit: contain;
}
li.product.type-product .product-item-template {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  background: var(--background-secondary);
  height: 100%;
}
li.product.type-product .tag-list {
  position: absolute;
  top: 10px;
  left: 10px;
  gap: 5px;
  display: flex;
  flex-wrap: wrap;
}
li.product.type-product .tag-name {
  background: #da8332;
  font-weight: 300;
  font-size: 14px;
  line-height: 150%;
  padding: 5px 10px;
  border-radius: 10px;
  width: fit-content;
}
li.product.type-product .akcziya {
  background: #da3232;
}
li.product.type-product .novinka {
  background: #3259da;
}
li.product.type-product .woocommerce-loop-product__title {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  padding: 20px 20px 15px 20px;
}
li.product.type-product .attrs {
  display: flex;
  flex-direction: column;
  padding: 0px 20px 15px 20px;
  gap: 7px;
}
li.product.type-product .attr-item {
  display: flex;
  justify-content: space-between;
  gap: 5px;
  border-bottom: 1px dashed rgba(203, 203, 203, 0.554);
  padding-bottom: 2px;
}
li.product.type-product .attr-value,
li.product.type-product .attr-name {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--main-text-primary);
}
li.product.type-product .price {
  padding: 0px 20px 85px 20px;
  display: flex;
  gap: 5px;
  align-items: flex-end;
  margin-top: auto;
}
li.product.type-product .woocommerce-loop-product__link {
  display: flex;
  flex-direction: column;
  height: 100%;
}
li.product.type-product .price bdi,
li.product.type-product .price bdi span  {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
}
li.product.type-product .price ins,
li.product.type-product .price del {
  text-decoration: unset;
}
li.product.type-product .price ins bdi,
li.product.type-product .price ins bdi span {
  font-weight: 500;
  font-size: 14px;
  line-height: 120%;
  text-decoration: line-through;
  color: var(--main-text-primary);
}
li.product.type-product .price del bdi,
li.product.type-product .price del bdi span {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
}
li.product.type-product .card-buttons {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: calc(100% - 40px);
  display: flex;
  gap: 15px;
}
li.product.type-product .add_to_cart_button {
  display: flex;
  gap: 10px;
  align-items: center;
  background: var(--primary);
  flex-grow: 1;
  padding: 13px 25px;
  border-radius: 10px;
  transition: 0.5s;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  justify-content: center;
  color: var(--head-secondary);
}
li.product.type-product .add_to_cart_button:hover {
  background: var(--second);
}
li.product.type-product .add_to_cart_button path {
  transition: 0.5s;
}
li.product.type-product .favorite-btn {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.5s;
  background: var(--background-thirdly);
}
li.product.type-product .favorite-btn path {
  transition: 0.5s;
}
li.product.type-product .favorite-btn:hover {
  background: var(--second);
}
li.product.type-product .favorite-btn:hover path {
  fill: var(--head-secondary);
}
li.product.type-product .favorite-btn.favorite-remove path {
  fill: var(--primary);
}
#noticer {
  position: fixed;
  top: 180px;
  transform: translateX(100%);
  width: 200px;
  border-radius: 10px 0px 0px 10px;
  background: var(--primary);
  color: var(--head-secondary);
  transition: 0.5s;
  font-size: 12px;
  padding: 10px;
  right: 0;
  z-index: 100;
}
#noticer.active {
  transform: unset;
}
.shop-content {
  padding-bottom: 130px;
}
.tax-container .shop-content {
  padding-bottom: 65px;
}
.tax-container .products-wrapper {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
.woocommerce .sidebar {
  width: 360px;
  min-width: 360px;
  position: sticky;
  top: 150px;
  height: fit-content;
}
.woocommerce .side-wrapper {
  width: 100%;
}
.woocommerce .filters-form {
  display: flex;
  flex-direction: column;
}
.woocommerce .filters-form .form-wrapper {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--background-forthly);
  border-radius: 20px;
  gap: 10px;
}
.woocommerce .filters-form .filter-block {
  display: flex;
  flex-direction: column;
  padding: 15px 20px;
  border: 1px solid var(--background-thirdly);
  border-radius: 10px;
}
.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: 140%;
  color: var(--main-text-primary);
  cursor: pointer;
  background: unset;
  border: unset;
  outline: none;
  width: fit-content;
  transition: 0.5s;
}
.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.opend .filter-block-toggler {
  transform: rotate(45deg);
}
.woocommerce .filters-form .filter-block-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  transition: 0.5s;
}
.woocommerce .filters-form .padding-box .inputs {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.woocommerce .filters-form .group-label {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  transition: 0.5s;
  width: fit-content;
  cursor: pointer;
  padding-left: 30px;
}
.woocommerce .filters-form .group-label:hover {
  color: var(--primary);
}
.woocommerce .shop-content .group input {
  display: contents;
}
.woocommerce .shop-content .inputs.price .group input {
  display: block;
}
.woocommerce .filters-form .padding-box .inputs.price  {
  flex-direction: row;
  gap: 20px;
  margin-bottom: 20px;
}
.woocommerce .filters-form .padding-box .inputs.price input {
  padding: 20px 20px 20px 40px;
  background: var(--background-thirdly);
  border: 1px solid transparent;
  border-radius: 10px;
  outline: none;
  font-weight: 300;
  font-size: 14px;
  line-height: 150%;
  color: var(--main-text-primary);
  cursor: pointer;
  width: 100%;
  position: relative;
  transition: 0.5s;
}
.woocommerce .filters-form .padding-box .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(--primary);
  border-radius: 2px;
  position: absolute;
  left: 0;
  top: 2px;
  transition: 0.5s;
  pointer-events: none;
}
.woocommerce .shop-content .group:after {
  content: "";
  width: 18px;
  height: 18px;
  left: 1px;
  top: 3px;
  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;
}
.woocommerce .filters-form .padding-box .inputs.price .group:after {
  display: none;
}
.woocommerce .filters-form .padding-box .inputs.price .group:nth-child(1):before {
  content: "от";
  width: 20px;
  height: 10px;
  position: absolute;
  top: 21px;
  left: 20px;
  font-weight: 300;
  font-size: 14px;
  line-height: 150%;
  color: var(--main-text-primary);
  z-index: 1;
  border: unset;
  background: unset;
}
.woocommerce .filters-form .padding-box .inputs.price .group:nth-child(2):before {
  content: "до";
  width: 20px;
  height: 10px;
  position: absolute;
  top: 21px;
  left: 20px;
  font-weight: 300;
  font-size: 14px;
  line-height: 150%;
  color: var(--main-text-primary);
  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: 11px;
  height: 11px;
  background: var(--primary);
  border-radius: 100%;
  border: unset;
  box-shadow: unset;
  top: -3px;
  cursor: pointer;
}
.woocommerce .shop-content .noUi-handle:after,
.woocommerce .shop-content .noUi-handle:before {
  display: none;
}
.woocommerce .shop-content .noUi-connects {
  background: var(--background-thirdly);
  height: 4px;
}
.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: -11px;
}
.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;
}
.seo-block {
  padding-top: 65px;
  padding-bottom: 130px;
}
.seo-block .seo-wrapper {
  display: flex;
  gap: 30px;
}
.seo-block .seo-img {
  height: 360px;
  width: 50%;
  display: flex;
  border-radius: 10px;
  overflow: hidden;
}
.seo-block .seo-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.seo-block .seo-right-side {
  height: 360px;
  width: 50%;
  border-radius: 10px;
  background: var(--background-secondary);
  padding: 30px;
}
.seo-block .add-wrapper {
  overflow: auto;
  height: 300px;
  padding-right: 30px;
}
.seo-block .seo-title {
  font-weight: 500;
  font-size: 32px;
  line-height: 100%;
  margin-bottom: 15px;
}
.page-favorites .favorite-holder {
  padding-bottom: 130px;
}
.page-favorites .favorite-holder ul {
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
}
.page-favorites .info-holder {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 40px;
}
.page-favorites .order-count {
  display: flex;
  gap: 10px;
  align-items: center;
}
.page-favorites .order-count .name {
  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-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--main-text-primary);
  background: transparent;
  cursor: pointer;
  transition: 0.5s;
  width: fit-content;
}
.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: 150px;
  border-radius: 10px;
  padding: 30px;
  background: var(--background-secondary);
  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(--background-secondary);
  border-radius: 10px;
  padding: 20px;
  padding-right: 55px;
  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: cover;
}
.woocommerce-cart .woocommerce .info-holder {
  display: flex;
  gap: 30px;
  flex-grow: 1;
}
.woocommerce-cart .woocommerce .product-name {
  max-width: 400px;
}
.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;
}
.woocommerce-cart .woocommerce .product-remove .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 del,
.woocommerce-cart .woocommerce ins {
  text-decoration: unset;
}
.woocommerce-cart .woocommerce bdi,
.woocommerce-cart .woocommerce bdi span {
  font-weight: 600;
  font-size: 22px;
  line-height: 110%;
}
.woocommerce-cart .woocommerce del bdi,
.woocommerce-cart .woocommerce del bdi span {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  text-decoration: line-through;
  color: var(--secondary-text);
}
.woocommerce-cart .woocommerce ins bdi,
.woocommerce-cart .woocommerce ins bdi span {
  font-weight: 600;
  font-size: 22px;
  line-height: 110%;
  text-align: right;
}
.woocommerce-cart .woocommerce .qty-wrapper {
  display: flex;
  gap: 15px;
  align-items: center;
  height: 50px;
}
.woocommerce-cart .woocommerce .qty-button {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  cursor: pointer;
  border-radius: 10px;
  background: var(--primary);
}
.woocommerce-cart .woocommerce .qty-button:hover {
  background: var(--primary-hover);
  color: var(--background);
}
.woocommerce-cart .woocommerce .qty-wrapper .quantity {
  height: 100%;
}
.woocommerce-cart .woocommerce .qty-wrapper input {
  border: unset;
  outline: none;
  width: 50px;
  min-width: 50px;
  height: 100%;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
  background: var(--background-thirdly);
  border-radius: 10px;
}
.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: 130%;
  color: var(--main-text-primary);
  padding-bottom: 30px;
  border-bottom: 1px solid var(--background-thirdly);
}
.woocommerce-cart .woocommerce .product-count-total p {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: var(--primary);
}
.woocommerce-cart .woocommerce .full-price {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--stroke);
}
.woocommerce-cart .woocommerce .full-title {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: var(--secondary-text);
}
.woocommerce-cart .woocommerce .full-value {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  text-decoration: line-through;
  color: var(--secondary-text);
}
.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 {
  color: var(--primary);
}
.woocommerce-cart .woocommerce .last-title {
  font-weight: 600;
  font-size: 22px;
  line-height: 130%;
  color: var(--second);
}
.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-weight: 400;
  font-size: 16px;
  line-height: 125%;
  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: 500;
  font-size: 32px;
  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 p label {
  display: none;
}
.woocommerce-billing-fields__field-wrapper input ,
.woocommerce-shipping-fields__field-wrapper input {
  background: var(--background-secondary);
  padding: 20px;
  border-radius: 10px;
  width: 100%;
  border: 1px solid var(--background-secondary);
  outline: none;
  font-weight: 300;
  font-size: 14px;
  line-height: 150%;
  color: var(--main-text-primary);
  transition: 0.5s;
  cursor: pointer;
} 
.woocommerce-billing-fields__field-wrapper input:hover,
.woocommerce-shipping-fields__field-wrapper input:hover {
  border-color: var(--primary);
}
.woocommerce-checkout input::placeholder {
  font-weight: 300;
  font-size: 14px;
  line-height: 150%;
  color: var(--main-text-primary);
}
.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(--main-text-secondary);
}
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 75px;
  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: 500;
  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(--main-text-secondary);
}
form.woocommerce-checkout #shipping_method li input:checked+label:before,
form.woocommerce-checkout .wc_payment_method input:checked+label:before {
  border-color: var(--third);
  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(--third);
}
.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: 10px;
  height: 130px;
  resize: none;
  outline: none;
  width: 100%;
  padding: 20px;
  border-color: var(--background-secondary);
  transition: 0.5s;
}
.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-radius: 10px;
  padding: 30px;
  height: fit-content;
  background: var(--background-secondary);
  position: sticky;
  top: 150px;
}
.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: 500;
  font-size: 24px;
  line-height: 100%;
}
.woocommerce-checkout .total-price bdi,
.woocommerce-checkout .total-price bdi span {
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  color: var(--primary);
}
.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(--background-thirdly);
}
.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 End ============= */




/* ============== Woocommerce Order Start ============= */
.woocommerce-order-received .woocommerce-order {
  padding-bottom: 40px;
}
.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;
}
.woocommerce-order-details tr,
woocommerce-order-details th {
  text-align: left;
}
.summary-wrapper {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  padding-bottom: 65px;
}
.summary-wrapper .summary-left-side {
  display: flex;
  flex-direction: column;
  width: 32%;
  position: relative;
  position: sticky;
  height: fit-content;
  top: 150px;
}
.summary-wrapper .summary-center {
  display: flex;
  flex-direction: column;
  width: 40.5%;
  gap: 40px;
}
.summary-wrapper .summary-right-side {
  display: flex;
  flex-direction: column;
  width: 23.5%;
  position: sticky;
  height: fit-content;
  top: 150px;
}
.summary-wrapper .product-gallery {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.summary-wrapper .product-gallery .btns {
  position: absolute;
  bottom: 125px;
  left: 10px;
  width: calc(100% - 20px);
  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: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--primary);
  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(--head-secondary);
}
.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%;
}
.summary-wrapper .gallery-main-wrapper .swiper-slide {
  height: 490px;
  border-radius: 10px;
  overflow: hidden;
  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;
}
.summary-wrapper .gallery-holder:before {
  content: "";
  width: 60%;
  height: 100%;
  top: 0;
  right: 0;
  position: absolute;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 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: 5px;
  z-index: 1;
  display: flex;
}
.summary-wrapper .tag-name {
  background: #da3232;
  border-radius: 10px;
  padding: 5px 10px;
  font-weight: 300;
  font-size: 14px;
  line-height: 150%;
}
.summary-wrapper .tag-name.hit {
  background: #da8332;
}
.summary-wrapper .tag-name.novinka {
  background: #3259da;
}
.summary-wrapper .single-hook {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: var(--primary);
  margin-top: 10px;
  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: 16px;
  line-height: 140%;
  color: var(--main-text-primary);
}
.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 .attrs-holder {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: 15px;
  background: var(--background-secondary);
}
.summary-wrapper .attrs {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.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(--secondary-text);
  pointer-events: none;
}
.summary-wrapper .attr-name {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--secondary-text);
  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: 500;
  font-size: 16px;
  line-height: 100%;
  padding: 8px 10px 8px 28px;
  position: relative;
  border-radius: 10px;
  background: var(--background-thirdly);
  width: fit-content;
  margin-bottom: 20px;
}
.summary-wrapper .stock-status:before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: 12px;
  left: 10px;
  background: var(--primary);
  border-radius: 100%;
}
.summary-wrapper .info-blocks {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.summary-wrapper .info-block-item {
  display: flex;
  background: var(--background-secondary);
  border-radius: 10px;
  padding: 20px;
  gap: 15px;
}
.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-thirdly);
}
.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: 500;
  font-size: 20px;
  line-height: 120%;
  margin-bottom: 15px;
}
.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: 500;
  font-size: 16px;
  line-height: 100%;
  color: var(--primary);
  margin-top: 15px;
  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 .controls {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  padding: 20px;
  background: var(--background-secondary);
}
.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-mark {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--secondary-text);
  margin-bottom: 5px;
}
.summary-wrapper .price bdi,
.summary-wrapper .price bdi span,
.summary-wrapper .price ins bdi span,
.summary-wrapper .price ins bdi {
  font-weight: 500;
  font-size: 32px;
  line-height: 100%;
}
.summary-wrapper .price ins {
  text-decoration: unset;
}
.summary-wrapper .price del {
  display: none;
}
.summary-wrapper .each-price {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  padding: 7px 10px;
  border-radius: 10px;
  background: var(--background-thirdly);
  margin-left: auto;
  width: fit-content;
}
.summary-wrapper .qty-wrapper {
  display: flex;
  gap: 15px;
  margin-bottom: 50px;
}
.summary-wrapper .qty-button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--primary);
  border: unset;
  cursor: pointer;
  transition: 0.5s;
}
.summary-wrapper .qty-button:hover {
  background: 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: 500;
  font-size: 16px;
  line-height: 100%;
  color: var(--primary);
  padding: 16px;
  margin-top: 15px;
  border-radius: 10px;
}
.summary-wrapper .favorite-btn path {
  transition: 0.5s;
}
.summary-wrapper .favorite-btn.favorite-remove {
  background: var(--background-thirdly);
  border-color: var(--background-thirdly);
}
.summary-wrapper .favorite-btn:hover {
  background: var(--second);
  color: var(--head-secondary);
  border-color: var(--second);
}
.summary-wrapper .favorite-btn:hover path {
  fill: var(--head-secondary);
}
.summary-wrapper .delivery-holder {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 40px;
}
.summary-wrapper .del-item {
  display: flex;
  gap: 30px;
  border-radius: 10px;
  padding: 15px;
  background: var(--background-secondary);
}
.summary-wrapper .del-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--background-thirdly);
}
.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%;
  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: 30px;
  border-radius: 10px;
  background: var(--background-secondary);
  position: sticky;
  top: 150px;
  height: fit-content;
}
.product-main-info .main-form-title {
  font-weight: 500;
  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);
  margin-bottom: 25px;
}
.product-main-info .main-product-title {
  font-weight: 500;
  font-size: 40px;
  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-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: 500;
  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 {
  opacity: 0.7;
}
.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(--secondary-text);
  bottom: 8px;
  left: 0px;
  position: absolute;
}
.product-main-info .main-attr-name {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--secondary-text);
  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 Order End ============= */









@media (max-width: 1600px) {
  #header {
    padding: 0px 15px;
  }
  #header .dgwt-wcas-search-wrapp {
    max-width: 400px;
  }
  li.product.type-product .woocommerce-loop-product__title {
    padding: 10px;
  }
  li.product.type-product .attrs {
    padding: 0px 10px 10px 10px;
    gap: 3px;
  }
  li.product.type-product .price {
    padding: 0px 10px 60px 10px;
  }
  li.product.type-product .card-buttons {
    width: calc(100% - 20px);
    left: 10px;
    bottom: 10px;
    gap: 10px;
  }
  li.product.type-product .add_to_cart_button {
    padding: 10px 20px;
    gap: 5px;
  }
  li.product.type-product .favorite-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }
  .summary-wrapper {
    gap: 10px;
  }
  .summary-wrapper .summary-right-side {
    width: 26.5%;
  }
}

@media (max-width: 1400px) {
  #header .logo-holder {
    padding: 10px;
    max-width: 140px;
    gap: 5px;
  }
  #header .header-wrapper {
    align-items: center;
  }
  #header .site-title,
  #footer .site-title {
    font-size: 16px;
  }
  #header .logo-holder img,
  #footer .logo-holder img {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
  #header .header-wrapper {
    gap: 10px;
    padding: 5px 0px;
  }
  #header .header-top  {
    margin-bottom: 10px;
  }
  #header .nav-menu-element a {
    font-size: 14px;
  }
  #header .phone-item {
    font-size: 16px;
  }
  #header .info-icon,
  #header .time-icon {
    width: 18px;
    height: 18px;
  }
  #header .shop-btn__counter {
    width: 25px;
    font-size: 12px;
    height: 24px;
    right: -28px;
  }
  #header .woo-menu {
    margin-right: 26px;
    gap: 10px;
  }
  #header .shop-btn {
    width: 40px;
    height: 40px;
  }
  #header .time {
    font-size: 14px;
  }
  #header .header-cat>.nav-menu-element.has-childs>a {
    padding: 12px 10px 12px 40px;
  }
  #header .header-cat>.nav-menu-element.has-childs>a:before {
    width: 20px;
    height: 20px;
    left: 14px;
    top: 9px;
  }
  #header .dgwt-wcas-search-wrapp {
    max-height: 46px;
  }
  #header .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp {
    height: 44px;
  }
  #header .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
    padding: 12px 10px 12px 0px;
  }
  #footer {
    padding: 20px 0px 0px 0px;
  }
  #footer .footer-default {
    padding: 10px 0px;
  }
  #footer .menu-holder {
    gap: 10px;
    padding: 10px 0px;
  }
  #footer .footer-wrapper {
    gap: 10px;
  }
  #footer .logo-holder {
    gap: 5px;
    padding: 10px;
    margin-right: 10px;
    max-width: 140px;
  }
  #footer .info-title {
    margin-bottom: 3px;
    font-size: 12px;
  }
  #footer .value {
    font-size: 16px;
  }
  #footer .foot-menu-nav {
    gap: 5px;
  }
  #footer .foot-menu-nav a {
    font-size: 14px;
  }
  #footer .menu-title {
    font-size: 16px;
    margin-bottom: 5px;
  }
  #footer .footer-form-holder {
    margin-bottom: 10px;
    padding: 10px;
  }
  #footer .footer-top {
    padding-bottom: 10px;
  }
  h1.page-title {
    font-size: 48px;
  }
  .product-category a {
    padding: 15px;
    min-height: 250px;
  }
  .product-category a img {
    max-height: 150px;
  }
  .product-category a .woocommerce-loop-category__title {
    font-size: 24px;
  }
  #noticer {
    top: 120px;
    padding: 7px;
  }
  .woocommerce .sidebar {
    top: 100px;
  }
  .seo-block .seo-wrapper {
    gap: 10px;
  }
  .seo-block .seo-right-side {
    padding: 15px;
  }
  .seo-block .add-wrapper {
    padding-right: 10px;
    height: 330px;
  }
  .woocommerce-cart .woocommerce .info-holder {
    gap: 10px;
  }
  .woocommerce-cart .woocommerce .cart_item {
    gap: 10px;
  }
  .woocommerce-cart .woocommerce .cart_item {
    padding: 10px;
    padding-right: 35px;
  }
  .woocommerce-cart .woocommerce .product-remove .remove {
    top: 10px;
    right: 10px;
  }
  .woocommerce-cart .woocommerce .product-name {
    max-width: 350px;
  }
  .woocommerce-cart .woocommerce .product-name a {
    font-size: 16px;
  }
  .woocommerce-cart .woocommerce .qty-wrapper {
    height: 40px;
    gap: 5px;
  }
  .woocommerce-cart .woocommerce .qty-button {
    width: 40px;
    height: 40px;
  }
  .woocommerce-cart .woocommerce .last-title {
    font-size: 16px;
  }
  .woocommerce-cart .woocommerce bdi, .woocommerce-cart .woocommerce bdi span,
  .woocommerce-cart .woocommerce ins bdi, .woocommerce-cart .woocommerce ins bdi span {
    font-size: 16px;
  }
  .woocommerce-cart .woocommerce .cart-collaterals {
    padding: 15px;
    width: 300px;
    min-width: 300px;
  }
  .woocommerce-cart .woocommerce .cart-collaterals {
    top: 100px;
  }
  .woocommerce-checkout .form-checkout-right-side {
    padding: 15px;
    width: 290px;
    min-width: 290px;
    top: 100px;
  }
  .woocommerce-billing-fields__field-wrapper, .woocommerce-shipping-fields__field-wrapper {
    gap: 10px;
  }
  #shipping_method, form.woocommerce-checkout .wc_payment_methods {
    gap: 10px;
  }
  .col2-set, .form-checkout-left-side {
    gap: 20px;
  }
  .form-checkout-title {
    font-size: 24px;
    margin-bottom: 5px;
  }
  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: 0px;
  }
  form.woocommerce-checkout #shipping_method li label:before, form.woocommerce-checkout .wc_payment_method label:before {
    top: 10px;
    left: 10px;
    width: 16px;
    height: 16px;
    border: 1px solid var(--primary);
  }
  form.woocommerce-checkout #shipping_method li label:after, form.woocommerce-checkout .wc_payment_method label:after {
    width: 12px;
    height: 12px;
    top: 13px;
    left: 13px;
  }
  form.woocommerce-checkout #shipping_method li, .woocommerce-checkout li.wc_payment_method {
    width: calc((100% - 20px) / 3);
  }
  form.woocommerce-checkout #shipping_method li:has(input.free):before {
    top: 36px;
    left: 36px;
    font-size: 12px;
  }
  form.woocommerce-checkout #shipping_method li label bdi, form.woocommerce-checkout #shipping_method li label bdi span,
  form.woocommerce-checkout #shipping_method li input:checked+label bdi, form.woocommerce-checkout #shipping_method li input:checked+label bdi span {
    line-height: 100%;
    font-size: 12px;
  }
  .summary-wrapper .summary-center {
    gap: 20px;
  }
  .summary-wrapper .delivery-holder {
    margin-top: 20px;
  }
  .summary-wrapper .summary-left-side,
  .summary-wrapper .summary-right-side {
    top: 100px;
  }
  .summary-wrapper .stock-status {
    font-size: 14px;
    margin-bottom: 10px;
    padding: 5px 10px 5px 15px;
  }
  .summary-wrapper .stock-status:before {
    top: 8px;
    left: 5px;
  }
  .summary-wrapper .controls {
    padding: 10px;
  }
  .summary-wrapper .price-mark,
  .summary-wrapper .each-price {
    font-size: 14px;
  }
  .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-wrapper {
    margin-bottom: 10px;
  }
  .summary-wrapper .del-item {
    gap: 10px;
    padding: 5px;
  }
  .summary-wrapper .gallery-main-wrapper .swiper-slide {
    height: 400px;
  }
  .summary-wrapper .product-gallery {
    gap: 5px;
  }
  .summary-wrapper .gallery-holder .swiper-slide {
    height: 80px;
  }
  .summary-wrapper .gallery-holder {
    height: 80px;
  }
  .summary-wrapper .product-gallery .btns {
    bottom: 95px;
  }
  .summary-wrapper .info-block-item {
    padding: 10px;
  }
  .summary-wrapper .info-name {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .summary-wrapper .attrs-holder {
    padding: 10px;
  }
  .summary-wrapper .info-blocks {
    gap: 20px;
  }
  .product-main-info .main-form-holder {
    top: 100px;
    padding: 10px;
    width: 350px;
    min-width: 350px;
  }
  .product-main-info .main-info-left-side {
    padding: 10px;
  }
  .product-main-info .main-product-title {
    margin-bottom: 10px;
    font-size: 32px;
  }
  .product-main-info .main-form-title {
    font-size: 24px;
  }
  .product-main-info .main-form-desc {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

@media (max-width: 1200px) {
  #header .socs {
    gap: 10px;
  }
  #header .info-wrapper {
    gap: 10px;
  }
  #header .info-item {
    gap: 5px;
  }
  #header .header-bot {
    gap: 10px;
  }
  #header .dgwt-wcas-search-wrapp {
    max-width: 300px;
  }
  #header .header-menu {
    gap: 15px;
  }
  #footer {
    margin-bottom: unset;
  }
  .breadcrumbs {
    padding: 10px 0px;
  }
  .breadcrumbs span {
    font-size: 12px;
    margin-right: 12px;
  }
  .breadcrumbs span a:has(span):before {
    width: 13px;
    height: 7px;
    top: 3px;
    background-size: contain;
  }
  .error404 #main {
    min-height: 70vh;
  } 
  .error-wrapper {
    padding: 10px;
  }
  .error-title {
    font-size: 42px;
    margin-bottom: 10px;
  }
  .error-subtitle {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .error-info {
    position: relative;
  }
  h1.page-title {
    font-size: 42px;
    margin-bottom: 30px;
  }
  .block-container {
    padding: 40px 0px;
  }
  .main-title {
    font-size: 40px;
    margin-bottom: 30px;
  }
  .main-title span {
    font-size: 40px;
  }
  .product-category a .woocommerce-loop-category__title {
    font-size: 20px;
    margin-bottom: 5px;
  }
  .product-category a .oil-item,
  .product-category a .oil-item span {
    font-size: 14px;
  }
  .product-category a .icon {
    width: 40px;
    height: 40px;
  }
  li.product.type-product .tag-list {
    gap: 3px;
    top: 5px;
    left: 5px;
  }
  li.product.type-product .tag-name {
    padding: 3px 5px;
    font-size: 10px;
    border-radius: 5px;
  }
  li.product.type-product .attrs {
    gap: 0px;
  }
  li.product.type-product .attr-value {
    font-size: 14px;
  }
  .shop-content,
  .seo-block,
  .page-favorites .favorite-holder,
  .woocommerce-cart .cart-wrapper {
    padding-bottom: 80px;
  }
  .woocommerce-cart .cart-wrapper {
    gap: 10px;
  }
  .seo-block {
    padding-top: 40px;
  }
  .tax-container .shop-content {
    padding-bottom: 40px;
  }
  .tax-container .products-wrapper {
    gap: 10px;
  }
  .tax-container ul.products.columns-3 {
    grid-template-columns: repeat(2,1fr);
  }
  .pagination {
    margin-top: 20px;
  }
  .seo-block .seo-title {
    font-size: 24px;
  }
  .page-favorites .favorite-holder ul {
    gap: 10px;
  }
  .woocommerce-cart .woocommerce .info-holder {
    flex-wrap: wrap;
  }
  .woocommerce-cart .woocommerce .product-name {
    max-width: unset;
    width: 100%;
  }
  .woocommerce-checkout .total-price {
    margin: 10px 0px;
  }
  .woocommerce-checkout .totals-title {
    font-size: 16px;
  }
  .woocommerce-checkout .total-price bdi, .woocommerce-checkout .total-price bdi span {
    font-size: 16px;
  }
  .woocommerce-checkout .total-count {
    padding-bottom: 10px;
    font-size: 14px;
  }
  .woocommerce-checkout form {
    padding-bottom: 80px;
    gap: 10px;
  }
  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;
  }
  form.woocommerce-checkout #shipping_method li:has(input.free):before {
    display: none;
  }
  .summary-wrapper .qty-button {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
  .summary-wrapper .qty-wrapper {
    gap: 5px;
  }
  .summary-wrapper .quantity input {
    width: 40px;
    min-width: 40px;
  }
  .summary-wrapper .single_add_to_cart_button {
    padding: 7px 15px;
    font-size: 12px;
  }
  .summary-wrapper .single_add_to_cart_button svg {
    width: 18px;
    height: 18px;
  }
  .summary-wrapper .favorite-btn {
    padding: 7px 15px;
    font-size: 12px;
  }
  .summary-wrapper .favorite-btn svg {
    width: 18px;
    height: 18px;
  }
  .summary-wrapper .info-icon,
  .summary-wrapper .del-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
  .summary-wrapper .info-desc,
  .summary-wrapper .product-sku,
  .summary-wrapper .short-desc {
    font-size: 14px;
  }
  .summary-wrapper .single-hook {
    font-size: 14px;
    margin-top: 5px;
  }
  .summary-wrapper .info-blocks {
    gap: 10px;
  }
  .summary-wrapper .info-block-item {
    gap: 5px;
  }
  .summary-wrapper .del-name,
  .summary-wrapper .del-desc {
    font-size: 12px;
  }
  .summary-wrapper .del-name {
    margin-bottom: unset;
  }
  .summary-wrapper .price-holder {
    flex-direction: column;
    align-items: flex-start;
  }
  .summary-wrapper .each-price {
    margin-left: unset;
  }
  .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 .tag-name {
    font-size: 12px;
    padding: 3px 5px;
    border-radius: 5px;
  }
  .summary-wrapper {
    padding-bottom: 40px;
  }
  .product-main-info .main-info-left-side {
    gap: 20px;
  }
  .product-main-info .main-product-title {
    font-size: 28px;
  }
}

@media (max-width: 996px) {
  #header .mobile-wrapper {
    display: flex;
    background: var(--primary);
    height: 45px;
    padding: 3px;
    gap: 5px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    align-items: center;
  }
  #header .dgwt-wcas-search-wrapp {
    max-height: 39px;
  }
  #header .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp {
    height: 37px;
  }
  #header .mobile-wrapper .woo-icons {
    margin-left: auto;
    display: flex;
    gap: 10px;
    margin-right: 27px;
  }
  #header .mobile-wrapper .shop-btn__counter {
    border: 1px solid var(--second);
  }
  #header .header-menu {
    display: none;
  }
  #header .header-bot .dgwt-wcas-search-wrapp {
    display: none;
  }
  #header .time-holder {
    display: none;
  }
  #header .woo-menu {
    display: none;
  }
  #footer .footer-default {
    padding-bottom: 55px;
  }
  #header .header-cat {
    margin-left: auto;
  }
  #header .burger.open_menu {
    display: flex;
  }
  #header .header-bot {
    display: none;
  }
  #header .header-cat>.nav-menu-element.has-childs a+.sub-menu {
    transform: translateX(-53%) translateY(100%);
    border-radius: 10px 0px 10px 10px;
    bottom: -1px;
    width: 310px;
  }
  #footer .footer-top {
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
  }
  #footer .info-holder {
    width: 100%;
  }
  #footer .privacy-holder {
    font-size: 12px;
  }
  .example-holder a {
    gap: 5px;
    font-size: 12px;
  }
  #footer .rights {
    font-size: 12px;
  }
  #footer .form-title {
    font-size: 16px;
    margin-bottom: 5px;
  }
  #footer .form {
    gap: 10px;
  }
  #footer .footer-form-holder {
    width: 260px;
    min-width: 260px;
  }
  #footer .form .privacy-policy {
    font-size: 12px;
  }
  .btn {
    padding: 10px 15px;
    font-size: 14px;
  }
  .error-wrapper {
    padding: 10px 10px 0px 10px;
    flex-direction: column;
    gap: 20px;
  }
  .error-info {
    order: 1;
    max-width: unset;
  }
  .error-subtitle {
    max-width: unset;
  }
  .error-img {
    order: 2;
    position: static;
    margin-left: auto;
  }
  h1.page-title {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .text-holder p, .text-holder li {
    font-size: 14px;
    line-height: 130%;
  }
  .block-container {
    padding: 30px 0px;
  }
  .main-title {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .main-title span {
    font-size: 30px;
  }
  .nav {
    margin-top: 20px;
  }
  .nav .btns {
    gap: 10px;
  }
  .nav .swiper-button-prev, .nav .swiper-button-next {
    width: 40px;
    height: 40px;
  }
  .soc {
    width: 40px;
    height: 40px;
  }
  #noticer {
    top: 100px;
  }
  .shop-content,
  .seo-block,
  .page-favorites .favorite-holder,
  .woocommerce-cart .cart-wrapper,
  .woocommerce-checkout form {
    padding-bottom: 60px;
  }
  .woocommerce-checkout form {
    flex-direction: column;
    gap: 20px;
  }
  .form-checkout-left-side {
    width: 100%;
  }
  .woocommerce-checkout .form-checkout-right-side {
    position: static;
  }
  .seo-block {
    padding-top: 30px;
  }
  .tax-container .shop-content,
  .summary-wrapper {
    padding-bottom: 30px;
  }
  .shop-content ul.products.columns-3 {
    gap: 10px;
  }
  .woocommerce-page .sidebar {
    transform: translateX(-320px);
    position: fixed;
    top: 0;
    left: 0;
    transition: 0.5s;
    background: var(--background-secondary);
    z-index: 12;
    width: 320px;
    min-width: 320px;
    overflow: auto;
    height: 100%;
    z-index: 100;
    border-right: 1px solid var(--background-forthly);
    max-height: unset;
    padding: 10px;
  }
  .woocommerce-page #sidebar-close {
    display: block;
    margin-left: auto;
    width: 16px;
    height: 16px;
    margin-bottom: 10px;
  }
  .woocommerce-page #open-filter {
    display: flex;
  }
  .woocommerce-page .sidebar.open {
    transform: unset;
  }
  .tax-container ul.products.columns-3 {
    grid-template-columns: repeat(3,1fr);
  }
  .pagination {
    gap: 10px;
  }
  .page-numbers {
    font-size: 14px;
  }
  .prev.page-numbers, .next.page-numbers {
    width: 40px;
    height: 40px;
  }
  .woocommerce .filters-form .filter-block.price__block,
  .woocommerce .filters-form .filter-block {
    padding: 10px;
  }
  .woocommerce .filters-form .padding-box .inputs.price {
    gap: 10px;
    padding-top: 10px;
    margin-bottom: 10px;
  }
  .woocommerce .filters-form .padding-box .inputs.price .group:nth-child(2):before,
  .woocommerce .filters-form .padding-box .inputs.price .group:nth-child(1):before {
    top: 8px;
  }
  .woocommerce .filters-form .padding-box .inputs.price input {
    padding: 7px 10px 7px 40px;
  }
  .woocommerce .filters-form .filter-block-title {
    font-size: 14px;
  }
  .woocommerce .filters-form .padding-box .inputs {
    padding-top: 10px;
    gap: 5px;
  }
  .woocommerce .filters-form .group-label {
    font-size: 14px;
    padding-left: 20px;
  }
  .woocommerce .filters-form .group:before {
    top: 4px;
    width: 14px;
    height: 14px;
  }
  .woocommerce .shop-content .group:after {
    width: 14px;
    height: 14px;
    top: 5px;
  }
  .woocommerce .filters-form .buttons {
    gap: 10px;
    margin-top: 10px;
  }
  .woocommerce .filters-form .clear-filters {
    gap: 5px;
    font-size: 14px;
  }
  .text-holder ol li:before {
    font-size: 14px;
    top: 5px;
  }
  .text-holder {
    gap: 10px;
  }
  .seo-block .seo-wrapper {
    flex-direction: column;
  }
  .seo-block .seo-img {
    order: 2;
    width: 100%;
  }
  .seo-block .seo-right-side {
    order: 1;
    width: 100%;
    height: 300px;
  }
  .seo-block .add-wrapper {
    height: 270px;
  }
  .page-favorites .favorite-holder ul {
    grid-template-columns: repeat(3,1fr);
  }
  .woocommerce-cart .woocommerce .cart-collaterals {
    top: 80px;
  }
  .woocommerce-cart .woocommerce .product-thumbnail {
    min-width: 120px;
  }
  .woocommerce-cart .woocommerce .cart-collaterals {
    width: 270px;
    min-width: 270px;
  }
  .summary-wrapper {
    flex-wrap: wrap;
  }
  .summary-wrapper .summary-center {
    width: 100%;
    order: 3;
  }
  .summary-wrapper .summary-left-side {
    order: 1;
  }
  .summary-wrapper .summary-right-side {
    order: 2;
  }
  .summary-wrapper .summary-left-side, .summary-wrapper .summary-right-side {
    width: calc((100% - 10px) / 2);
    position: relative;
    top: unset;
  }
  .product-main-info .main-product-title {
    font-size: 24px;
  }
  .product-main-info .main-form-holder {
    top: 80px;
  }
  .product-main-info {
    gap: 10px;
  }
  .product-main-info .use p,
  .product-main-info .main-desc p, .product-main-info .main-desc .full-text, .product-main-info .main-desc .short-text {
    font-size: 14px;
  }
  .product-main-info .main-form-holder {
    width: 300px;
    min-width: 300px;
  }
}

@media (max-width: 768px) {
  #footer .footer-wrapper {
    flex-direction: column;
  }
  #footer .footer-form-holder {
    width: 100%;
  }
  #footer .form .privacy-policy {
    display: block;
  }
  #footer .footer-default {
    flex-direction: column;
    gap: 5px;
    align-items: center;
  }
  #header .socs {
    display: none;
  }
  #header .header-top {
    margin-bottom: unset;
  }
  .error-wrapper {
    margin-top: unset;
  }
  .error404 #main {
    min-height: unset;
    padding-bottom: 20px;
  }
  .error-title {
    font-size: 32px;
  }
  h1.page-title {
    font-size: 28px;
  }
  .main-title,
  .main-title span {
    font-size: 26px;
  }
  li.product.type-product .woocommerce-loop-product__title,
  li.product.type-product .attrs {
    padding-bottom: 5px;
  }
  li.product.type-product .add_to_cart_button {
    font-size: 14px;
  }
  li.product.type-product .add_to_cart_button svg {
    width: 16px;
    height: 16px;
  }
  li.product.type-product .favorite-btn {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }
  li.product.type-product .price bdi, li.product.type-product .price bdi span,
  li.product.type-product .price del bdi, li.product.type-product .price del bdi span {
    font-size: 16px;
  }
  li.product.type-product .price ins bdi, li.product.type-product .price ins bdi span {
    font-size: 12px;
  }
  li.product.type-product .price {
    padding-bottom: 47px;
  }
  .shop-content ul.products.columns-3,
  .page-favorites .favorite-holder ul {
    grid-template-columns: repeat(2,1fr);
  }
  .woocommerce-cart .cart-wrapper {
    flex-direction: column;
  }
  .woocommerce-cart .woocommerce form {
    width: 100%;
  }
  .woocommerce-cart .woocommerce .cart-collaterals {
    width: 100%;
    max-width: unset;
  }
  .woocommerce-checkout #order_comments {
    height: 100px;
  }
  form.woocommerce-checkout #shipping_method li, .woocommerce-checkout li.wc_payment_method {
    width: calc((100% - 10px) / 2);
  } 
  .woocommerce-billing-fields__field-wrapper, .woocommerce-shipping-fields__field-wrapper {
    grid-template-columns: repeat(2,1fr);
  }
  .product-main-info {
    flex-direction: column;
    gap: 20px;
  }
  .product-main-info .main-form-holder {
    width: 100%;
    position: static;
  }
}

@media (max-width: 600px) {
  #header .info-item:nth-child(1) {
    display: none;
  }
  #header .info-wrapper {
    margin-left: auto;
  }
  #footer .info-holder,
  #footer .menu-holder {
    flex-wrap: wrap;
  }
  .error-title {
    font-size: 28px;
  }
  .error-img {
    width: 60%;
  }
  .theme-modal .title {
    margin-bottom: 10px;
    font-size: 24px;
  }
  .theme-modal .subtitle {
    font-size: 14px;
    margin-bottom: 5px;
  }
  h1.page-title {
    font-size: 24px;
  }
  .main-title,
  .main-title span {
    font-size: 22px;
  }
  .nav .swiper-button-prev, .nav .swiper-button-next {
    width: 34px;
    height: 34px;
  }
  .product-category a {
    min-height: 200px;
  }
  .product-category a img {
    max-height: 120px;
    max-width: 100px;
    right: 5px;
  }
  .seo-block .seo-title {
    font-size: 20px;
  }
  .page-favorites .info-holder {
    margin-bottom: 20px;
  }
  .summary-wrapper {
    flex-direction: column;
  }
  .summary-wrapper .summary-left-side, .summary-wrapper .summary-right-side {
    width: 100%;
  }
}

@media (max-width: 498px) {
  #footer .value {
    font-size: 14px;
  }
  #header {
    background: var(--background-thirdly);
  }
  .theme-modal.fancybox__content {
    padding: 30px 15px 15px 15px;
  }
  #modal-success.theme-modal .title {
    padding-left: 25px;
  }
  #modal-success.theme-modal .title:before {
    width: 20px;
    height: 20px;
  }
  .form input {
    padding: 10px 15px;
  }
  .form .privacy-policy {
    margin-top: 5px;
    font-size: 12px;
  }
  .product-category a {
    padding: 10px;
  }
  .product-category a .icon {
    width: 34px;
    height: 34px;
  }
  .product-category a .woocommerce-loop-category__title {
    font-size: 16px;
  }
  .product-category a .oil-item, .product-category a .oil-item span {
    font-size: 12px;
  }
  li.product.type-product .add_to_cart_button {
    padding: 7px;
  }
  .seo-block .seo-img {
    height: auto;
  }
  .page-favorites .info-holder {
    flex-direction: column;
    align-items: flex-start;
  }
  .woocommerce-cart .woocommerce .cart_item {
    flex-direction: column;
  }
  .woocommerce-cart .woocommerce .cart_item {
    padding-right: 15px;
  }
  .woocommerce-cart .woocommerce .info-holder {
    justify-content: space-between;
  }
  .product-remove {
    position: absolute;
    top: 0px;
    right: 0px;
  }
  .woocommerce-billing-fields__field-wrapper input, .woocommerce-shipping-fields__field-wrapper input {
    padding: 10px;
  }
  form.woocommerce-checkout #shipping_method li, .woocommerce-checkout li.wc_payment_method {
    width: 100%;
  } 
  .woocommerce-checkout .form-checkout-right-side {
    width: 100%;
  }
  .woocommerce-billing-fields__field-wrapper input::placeholder, .woocommerce-shipping-fields__field-wrapper input::placeholder {
    font-size: 12px;
  }
  .woocommerce-billing-fields__field-wrapper input, .woocommerce-shipping-fields__field-wrapper input {
    font-size: 12px;
  }
  .form-checkout-title {
    font-size: 20px;
  }
  .summary-wrapper .price-holder {
    flex-direction: row;
  }
  .summary-wrapper .each-price {
    margin-left: auto;
  }
  .summary-wrapper .attr-name {
    font-size: 14px;
    padding-right: 5px;
  }
  .summary-wrapper .attr-value {
    padding-left: 5px;
    font-size: 14px;
  }
  .summary-wrapper .info-icon, .summary-wrapper .del-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 5px;
  }
  .summary-wrapper .info-gallery {
    gap: 5px;
    margin-top: 5px;
  }
  .summary-wrapper .info-gallery-img {
    width: calc((100% - 15px) / 4);
  }
  .summary-wrapper .gallery-main-wrapper .swiper-slide {
    height: 300px;
  }
  .product-main-info .main-product-title {
    font-size: 20px;
  }
  .product-main-info .main-attr-name {
    padding-right: 5px;
  }
  .product-main-info .main-attr-value {
    padding-left: 5px;
  }
  .product-main-info .main-attr-name,
  .product-main-info .main-attr-value {
    font-size: 14px;
  }
}

@media (max-width: 400px) {
  #header .info-icon {
    display: none;
  }
  #header .logo-holder {
    padding: unset;
    background: transparent;
    max-width: 120px;
  }
  #header .phone-item {
    font-size: 14px;
  }
  #header {
    padding: 0px 5px;
  }
  .error-img {
    width: 100%;
  }
  .error-title {
    font-size: 24px;
  }
  .error-wrapper .btn {
    width: 100%;
  }
  li.product.type-product .woocommerce-loop-product__title {
    font-size: 14px;
  }
  li.product.type-product .attr-value {
    font-size: 12px;
  }
  li.product.type-product .card-buttons {
    gap: 5px;
  }
  li.product.type-product .add_to_cart_button {
    font-size: 12px;
  }
  #noticer {
    top: 80px;
    width: 160px;
    font-size: 10px;
  }
  .woocommerce-cart .woocommerce .product-count-total {
    padding-bottom: 5px;
  }
  .woocommerce-cart .woocommerce .last-price {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .summary.entry-summary h1.page-title {
    font-size: 20px;
  }
  .product-main-info .main-form-holder .btn {
    width: 100%;
  }
  li.product.type-product .attr-value, li.product.type-product .attr-name {
    font-size: 12px;
  }
}

@media (max-width: 370px) {
  .product-category a {
    min-height: 160px;
  }
  .shop-content ul.products.columns-3,
  .page-favorites .favorite-holder ul {
    display: flex;
    flex-direction: column;
  }
  .woocommerce-billing-fields__field-wrapper, .woocommerce-shipping-fields__field-wrapper {
    display: flex;
    flex-direction: column;
  }
}