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

/* Remove default margin */
html, body, h1, h2, h3, h4, h5, h6, p,
figure, blockquote, dl, dd {
  margin: 0;
}

/* Remove list styles */
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Reset headings */
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

/* Reset links */
a {
  color: inherit;
  text-decoration: none;
}

/* Reset images, video */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Reset forms */
input, button, textarea, select {
  font: inherit;
  color: inherit;
  margin: 0;
}

/* Buttons reset */
button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

/* Remove animations for users preferring reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "Geologica";
  src: url("../fonts/Geologica/Geologica-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Geologica";
  src: url("../fonts/Geologica/Geologica-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Geologica";
  src: url("../fonts/Geologica/Geologica-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Geologica";
  src: url("../fonts/Geologica/Geologica-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Geologica";
  src: url("../fonts/Geologica/Geologica-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Geologica";
  src: url("../fonts/Geologica/Geologica-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Geologica";
  src: url("../fonts/Geologica/Geologica-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Geologica";
  src: url("../fonts/Geologica/Geologica-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Geologica";
  src: url("../fonts/Geologica/Geologica-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
body {
  font-family: "Geologica";
}

.header {
  position: fixed;
  width: 100%;
  z-index: 9999;
  top: 0;
}
.header__top {
  background: #161616;
  padding: 12px 0;
}
.header__top-content {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
}
.header__top-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}
.header__top-menu-link {
  font-family: "Geologica";
  font-weight: 500;
  font-size: 18px;
  color: #ffffff;
}
.header__localization {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 5px;
}
.header__localization-text {
  font-family: "Geologica";
  font-weight: 500;
  font-size: 20px;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 0%;
  text-underline-offset: 4px;
  color: #ffffff;
}
.header__main {
  background: #fff;
}
.header__main-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  padding: 15px 0;
  cursor: pointer;
}
.header__menu-list {
  display: flex;
  align-items: center;
  gap: 80px;
}
.header__menu-item {
  position: relative;
}
.header__menu-item:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  color: #161616;
  font-family: "Geologica";
  font-weight: 300;
  font-size: 20px;
  line-height: 130%;
  text-transform: uppercase;
}
.header__menu-item:last-child .header__menu-link {
  color: #e00d0d;
}
.header__menu-link {
  font-family: "Geologica";
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #161616;
  transition: color 0.2s;
}
.header__buttons {
  display: flex;
  align-items: center;
  gap: 40px;
}
.header__search {
  cursor: pointer;
}
.header__cart {
  cursor: pointer;
  position: relative;
}
.header__cart-count {
  position: absolute;
  right: -3px;
  bottom: -3px;
  font-family: "Geologica";
  font-weight: 600;
  font-size: 11px;
  color: #161616;
  min-width: 16px;
  min-height: 16px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__account {
  cursor: pointer;
}
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.header__burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #161616;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.header__burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.header__burger.active span:nth-child(2) {
  opacity: 0;
}
.header__burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.header__mobile {
  position: fixed;
  top: 90px;
  left: -100%;
  width: 98%;
  height: 88vh;
  background: #fff;
  padding: 80px 20px;
  z-index: 1000;
}
.header__mobile.active {
  left: 10px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
}
.breadcrumbs__link {
  font-family: "Geologica";
  font-weight: 400;
  font-size: 16px;
  color: #484848;
}
.breadcrumbs__divider {
  font-family: "Geologica";
  font-weight: 400;
  font-size: 16px;
  color: #484848;
}

.title {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 40px;
  line-height: 120%;
  text-transform: uppercase;
  color: #161616;
}

.description {
  font-family: "Geologica";
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  color: #484848;
}

.link--black {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  color: #fff;
  background: #161616;
  border-radius: 50px;
  padding: 12px 24px;
  display: block;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.slider-button {
  width: 48px;
  height: 48px;
  background: #fff;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.swiper-pagination-bullets {
  position: relative;
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}
.swiper-pagination-bullets .swiper-pagination-bullet {
  background: #868686 !important;
  width: 8px;
  height: 8px;
}
.swiper-pagination-bullets .swiper-pagination-bullet-active {
  background: #161616 !important;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}
.pagination__page {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #161616;
}
.pagination__page.is-active {
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1019607843);
  padding: 12px 24px;
  background: #fff;
  border-radius: 50px;
}

.footer {
  background: #161616;
  padding-top: 160px;
  padding-bottom: 40px;
}
.footer__column:nth-child(1) {
  width: 25%;
}
.footer__column:nth-child(1) .footer__localization {
  display: none;
}
.footer__column:nth-child(1) .footer__ratings-wrap {
  display: block;
}
.footer__column:nth-child(2) {
  width: 25%;
}
.footer__column:nth-child(3) {
  width: 25%;
}
.footer__column:nth-child(4) {
  width: 25%;
}
.footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__text {
  font-family: "Geologica";
  font-size: 16px;
  color: #ffffff;
  font-weight: 400;
  margin-top: 20px;
  max-width: 280px;
}
.footer__ratings {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #ffffff;
  border-radius: 16px;
  padding: 30px 40px;
}
.footer__ratings-wrap {
  display: none;
  padding-top: 35px;
  max-width: 300px;
}
.footer__ratings-title {
  color: #868686;
  font-weight: 400;
  font-size: 20px;
  font-family: "Geologica";
  margin-bottom: 20px;
}
.footer__ratings-text p:nth-child(1) {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 18px;
  color: #ffffff;
}
.footer__ratings-text p:nth-child(2) {
  font-family: "Geologica";
  font-weight: 400;
  font-size: 12px;
  color: #ffffff;
}
.footer__ratings-text p:nth-child(2) span {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 12px;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 8.5%;
}
.footer__menu-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer__menu-link {
  color: #fff;
  font-family: "Geologica";
  font-weight: 500;
  font-size: 20px;
  text-transform: uppercase;
}
.footer__menu-link.sale {
  color: #e00d0d;
}
.footer__title {
  color: #868686;
  font-family: "Geologica";
  font-weight: 400;
  font-size: 20px;
  padding-bottom: 20px;
}
.footer__messenger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #ffffff;
  border-radius: 50px;
  width: 100%;
  padding: 12px 12px 12px 24px;
  margin-bottom: 20px;
}
.footer__messenger-text {
  font-family: "Geologica";
  font-weight: 600;
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
}
.footer__localization {
  padding-top: 70px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
}
.footer__localization p {
  font-family: "Geologica";
  font-weight: 500;
  font-size: 20px;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 0%;
  text-underline-offset: 4px;
  color: #ffffff;
}
.footer__copyright {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 100px 0 0px 0;
  position: relative;
}
.footer__copyright p {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Geologica";
  font-weight: 400;
  font-size: 16px;
  color: #868686;
}
.footer__link {
  color: #868686;
  font-family: "Geologica";
  font-weight: 400;
  font-size: 16px;
}
.footer__link-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}

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

.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
  padding-left: 10px;
}
.tooltip__text {
  width: 370px;
  padding: 20px;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1019607843);
  background: #fff;
  color: #484848;
  font-family: "Geologica";
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: 160%;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.3s;
  z-index: 10;
}
.tooltip:hover .tooltip__text {
  visibility: visible;
  opacity: 1;
}

.hero {
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position:center;
  display: flex;
  align-items: flex-end;
  margin-top: 140px;
}
.hero__content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 150px;
}
.hero__title {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 56px;
  line-height: 120%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #fff;
  max-width: 900px;
  padding-bottom: 35px;
}
.hero__title.black {
  color: #161616;
}
.hero__text {
  font-family: "Geologica";
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  max-width: 800px;
  color: #fff;
  padding-bottom: 25px;
}
.hero__text.black {
  color: #161616;
}
.hero__button {
  background: #ffffff;
  color: #161616;
  border-radius: 50px;
  padding: 12px 24px;
  font-family: "Geologica";
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
.hero__button.black {
  background: #161616;
  color: #fff;
}
.hero__ratings {
  display: flex;
  align-items: center;
  background: #ffffff;
  padding: 30px 40px;
  border-radius: 16px;
  gap: 12px;
}
.hero__ratings-text p:nth-child(1) {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 18px;
  color: #2d2d2d;
}
.hero__ratings-text p:nth-child(2) {
  font-family: "Geologica";
  font-weight: 400;
  font-size: 12px;
  color: #2d2d2d;
}
.hero__ratings-text p:nth-child(2) span {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 12px;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 8.5%;
}

.contactus-page .hero__content h1 {
  padding-top: 300px;
}

.showcase {
  border-bottom: 1px solid #484848;
}
.showcase__content {
  display: flex;
  align-items: center;
}
.showcase__column {
  padding-top: 160px;
  width: 50%;
  position: relative;
}
.showcase__column:nth-child(1) {
  border-right: 1px solid #484848;
}
.showcase__column:nth-child(2) {
  padding-left: 100px;
}
.showcase__column:nth-child(2) img {
  max-width: 455px;
  margin-left: auto;
}
.showcase__title {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 40px;
  text-transform: uppercase;
  color: #161616;
  padding-bottom: 30px;
}
.showcase__text {
  font-family: "Geologica";
  font-weight: 400;
  font-size: 20px;
  color: #161616;
  padding-bottom: 35px;
}
.showcase__link {
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1019607843);
  font-family: "Geologica";
  color: #161616;
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  border-radius: 16px;
  padding: 8px 16px;
  background: #fff;
}

.price-week-tablet {
  display: none !important;
}

.hotsale {
  padding: 160px 0 0 0;
}
.hotsale__title {
  display: flex;
  gap: 15px;
  align-items: center;
}
.hotsale__link {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: 0%;
  text-transform: uppercase;
  border-bottom: 1px solid #161616;
}
.hotsale__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 60px;
}
.hotsale__content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.hotsale__button {
  display: none;
}
.hotsale__column {
  width: 50%;
  position: relative;
}
.hotsale__column:nth-child(1) .hotsale__link {
  display: none;
}
.hotsale__column .sale-button-next {
  position: absolute;
  top: 50%;
  right: -20px;
  z-index: 1;
  transform: translateY(-50%);
}
.hotsale__column .sale-button-prev {
  position: absolute;
  top: 50%;
  left: -20px;
  z-index: 1;
  transform: translateY(-50%);
}
.hotsale__column .sale-pagination {
  padding-top: 20px;
  display: flex;
  justify-content: center !important;
}
.hotsale__column_link {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 36px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 36px;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 50px;
  background: #fff;
  gap: 10px;
}

.sale__slider-wrapper {
  overflow: hidden;
}

.price-week {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../images/main/banner.png") no-repeat;
  background-size: cover;
}

.workflow {
  background-size: cover;
  padding: 160px 0 160px 0;
}
.workflow__title {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.workflow__description {
  text-align: center;
  padding-top: 20px;
  max-width: 800px;
  margin: 0 auto;
}
.workflow__cards {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 80px;
}
.workflow__slider {
  display: none;
  overflow: hidden;
}
.workflow__buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 20px 0;
  gap: 20px;
}
.workflow-button-next, .workflow-button-prev {
  width: 36px;
  height: 36px;
}
.workflow__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  background: #fff;
  width: calc((100% - 60px) / 4);
  position: relative;
  padding: 40px 30px;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.0509803922);
}
.workflow__card:nth-child(1):before {
  content: "01";
  position: absolute;
  top: -50px;
  z-index: -1;
  font-family: "Geologica";
  font-weight: 600;
  font-size: 64px;
  text-transform: uppercase;
  color: #161616;
}
.workflow__card:nth-child(2):before {
  content: "02";
  position: absolute;
  top: -50px;
  z-index: -1;
  font-family: "Geologica";
  font-weight: 600;
  font-size: 64px;
  text-transform: uppercase;
  color: #161616;
}
.workflow__card:nth-child(3):before {
  content: "03";
  position: absolute;
  top: -50px;
  z-index: -1;
  font-family: "Geologica";
  font-weight: 600;
  font-size: 64px;
  text-transform: uppercase;
  color: #161616;
}
.workflow__card:nth-child(4):before {
  content: "04";
  position: absolute;
  top: -50px;
  z-index: -1;
  font-family: "Geologica";
  font-weight: 600;
  font-size: 64px;
  text-transform: uppercase;
  color: #161616;
}
.workflow__card-title {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 36px;
  line-height: 120%;
  text-transform: uppercase;
  color: #161616;
  min-height: 90px;
}
.workflow__card-text {
  font-family: "Geologica";
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  color: #484848;
}

.reviews {
  padding: 160px 0;
}
.reviews__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 90px;
  position: relative;
}
.reviews__content {
  overflow: hidden;
}
.reviews__title {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 40px;
  line-height: 120%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #161616;
  margin: 0 auto;
}
.reviews__buttons {
  display: flex;
  align-items: center;
  gap: 40px;
  position: absolute;
  right: 0;
}
.reviews__slide {
  background: #fafafa;
  padding: 80px 60px;
  position: relative;
  height: 525px !important;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}
.reviews__slide::before {
  content: "";
  background: url("../images/main/quote.svg") no-repeat center;
  width: 110px;
  height: 80px;
  position: absolute;
  top: -40px;
}
.reviews__slide-title {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 36px;
  line-height: 130%;
  text-transform: uppercase;
  color: #161616;
}
.reviews__slide-text {
  padding-top: 30px;
  font-family: "Geologica";
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  color: #161616;
  max-width: 690px;
}
.reviews__slide-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.reviews__autor {
  display: flex;
  align-items: center;
  gap: 20px;
}
.reviews__autor-name {
  font-family: "Geologica";
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #484848;
}
.reviews__autor-job {
  font-family: "Geologica";
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #484848;
}
.reviews__google {
  display: flex;
  align-items: center;
  gap: 20px;
}
.reviews__google-rating {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 18px;
  color: #161616;
}
.reviews__google-reviews {
  font-family: "Geologica";
  font-weight: 400;
  font-size: 12px;
  color: #161616;
}
.reviews__google-reviews span {
  font-weight: 600;
  font-size: 12px;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-offset: 15%;
  text-decoration-thickness: 8.5%;
}
.reviews-pagination {
  margin-top: 20px;
}

.offers {
  padding-bottom: 160px;
}
.offers__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 60px;
}
.offers__button {
  display: none;
}
.offers__content {
  position: relative;
}
.offers__title {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 40px;
  text-transform: uppercase;
  color: #161616;
}
.offers__link {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  color: #161616;
  border-bottom: 1px solid #161616;
}
.offers__link-tablet {
  display: none;
}
.offers__list {
  display: flex;
  gap: 20px;
}
.offers-button-next, .offers-button-prev {
  position: absolute;
  top: 50%;
  z-index: 10;
  left: -25px;
}
.offers-button-next {
  left: initial;
  right: -25px;
}
.offers .product-card {
  width: initial;
}

.product-card {
  width: calc(25% - 20px);
}
.product-card__top {
  position: relative;
}
.product-card__top img {
  width: 100%;
}
.product-card__quality {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 60px;
  height: 45px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card__quality--red {
  background: #ffd7d3;
}
.product-card__quality--red p {
  color: #e00d0d;
}
.product-card__quality--yellow {
  background: #fff1d4;
}
.product-card__quality--yellow p {
  color: #ffae00;
}
.product-card__quality--green {
  background: #d3fff1;
  color: #00b57a;
}
.product-card__quality p {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
}
.product-card__bottom {
  padding-top: 25px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.product-card__name {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  color: #161616;
  padding-bottom: 25px;
}
.product-card__price {
  font-family: "Geologica";
  font-weight: 400;
  font-size: 20px;
  color: #161616;
}
.product-card__price span {
  font-family: "Geologica";
  font-weight: 400;
  font-size: 16px;
  color: #868686;
}
.product-card__button {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #161616;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card__button img {
  width: 24px;
  height: 24px;
}
.catalog {
  margin-top: 130px;
}
.catalog__header {
  padding-top: 60px;
}
.catalog__title {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 56px;
  text-transform: uppercase;
  color: #161616;
}
.catalog__controls {
  padding-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.catalog__filters {
  display: flex;
  align-items: center;
  gap: 20px;
}
.catalog__filters-toggle {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1019607843);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 415px;
  height: 50px;
  border-radius: 50px;
}
.catalog__filters-btn {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1019607843);
  height: 50px;
  border-radius: 50px;
  background: #fff;
  color: #161616;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
.catalog__filters-btn.is-active {
  color: #ffffff;
  background: #161616;
}
.catalog__filters-list {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 840px;
  overflow-x: auto;
  white-space: nowrap;
  padding: 0 10px 0 0;
  height: 60px;
}
.catalog__filters-popup {
  position: fixed;
  top: 0;
  left: -515px;
  width: 515px;
  height: 100%;
  background: #fff;
  transition: left 0.3s;
  z-index: 1000;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.2);
}
.catalog__filters-popup.active {
  left: 0;
}
.catalog__filters-popup__content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.catalog__filters-popup__title {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Geologica";
}
.catalog__filters-popup__header {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-size: 20px;
  font-family: "Geologica";
  background: #fafafa;
  margin-bottom: 50px;
}
.catalog__filters-popup__body {
  padding-left: 100px;
  overflow-y: auto;
  flex: 1;
}
.catalog__filters-popup__close {
  position: absolute;
  right: 20px;
  cursor: pointer;
}
.catalog__sort {
  display: inline-block;
}
.catalog__sort__toggle {
  text-transform: uppercase;
  font-family: "Geologica";
  font-weight: 600;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #161616;
}
.catalog__sort__toggle.is-active img {
  transform: rotateX(180deg);
}
.catalog__sort__list {
  position: absolute;
  background: #fff;
  top: 100%;
  right: 0;
  display: none;
  z-index: 10;
  padding: 20px;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1019607843);
}
.catalog__sort__list.active {
  display: block;
}
.catalog__sort__option {
  text-transform: uppercase;
  font-family: "Geologica";
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 10px;
  max-width: -moz-max-content;
  max-width: max-content;
}
.catalog__sort__option:last-child {
  margin-bottom: 0;
}
.catalog__sort__option.is-active {
  border-bottom: 1px solid #161616;
}
.catalog__products {
  margin-top: 80px;
  display: flex;
  flex-wrap: wrap;
  gap: 50px 20px;
}
.catalog__products .products__item {
  width: calc(25% - 20px);
}
.catalog__products .products__item .product-card {
  width: 100%;
}
.catalog__pagination {
  margin-top: 80px;
}

.popup-filters__list {
  display: none;
}
.popup-filters__list.active {
  display: block;
}
.popup-filters__group {
  padding-bottom: 40px;
}
.popup-filters__toggle {
  display: flex;
  align-items: center;
  font-family: "Geologica";
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
}
.popup-filters__toggle img {
  position: absolute;
  right: 20px;
}
.popup-filters__toggle.is-active img {
  transform: rotate(180deg);
}
.popup-filters__toggle span {
  color: #868686;
  padding-left: 20px;
}
.popup-filters__list {
  padding-top: 20px;
}
.popup-filters__option {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  padding-bottom: 10px;
}
.popup-filters__option.is-active {
  border-bottom: 1px solid #161616;
}
.popup-filters__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  padding-right: 20px;
  padding-bottom: 70px;
}
.popup-filters__clear {
  font-size: 20px;
  font-weight: 600;
  font-family: "Geologica";
  text-transform: uppercase;
  color: #161616;
  background: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1019607843);
}
.popup-filters__apply {
  font-size: 20px;
  font-weight: 600;
  font-family: "Geologica";
  text-transform: uppercase;
  color: #fff;
  background: #161616;
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1019607843);
}

.product-page {
  overflow: hidden;
  margin-top: 130px;
}
.product-page .catalog__breadcrumbs {
  display: none;
}
.product-page__content {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
}
.product-page__column {
  width: calc(30% - 30px);
}
.product-page__column:nth-child(1) {
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.product-page__column:nth-child(1) .catalog__breadcrumbs {
  display: block;
}
.product-page__column:nth-child(2) {
  width: calc(40% - 30px);
  position: relative;
}
.product-page__column:nth-child(2) img {
  width: 100%;
  height: -webkit-fill-available;
}
.product-page__column:nth-child(3) {
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
}
.product-page__subtitle {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  color: #161616;
  padding-bottom: 40px;
}
.product-page__text p {
  font-family: "Geologica";
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  color: #484848;
}
.product-page__info {
  flex: 1;
}
.product-page__info-pallet {
  flex: none;
}
.product-page__title {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 56px;
  line-height: 120%;
  text-transform: uppercase;
  color: #161616;
  padding-bottom: 50px;
}
.product-page__stock {
  padding-bottom: 50px;
}
.product-page__stock--instock {
  font-family: "Geologica";
  font-weight: 400;
  font-size: 18px;
  color: #00b57a;
}
.product-page__stock--outstock {
  color: #e00d0d;
  font-family: "Geologica";
  font-weight: 400;
  font-size: 18px;
}
.product-page__description {
  padding-bottom: 50px;
}
.product-page__description p {
  font-family: "Geologica";
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: #484848;
}
.product-page__variation-group {
  padding-bottom: 40px;
}
.product-page__variation-label {
  font-family: "Geologica";
  font-weight: 400;
  font-size: 18px;
  color: #484848;
  padding-bottom: 20px;
}
.product-page__variation-list {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding: 5px 0;
}
.product-page__variation-button {
  background: #fff;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1019607843);
  font-family: "Geologica";
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  color: #161616;
  border-radius: 50px;
  padding: 12px 24px;
  white-space: nowrap;
}
.product-page__variation-button.is-active {
  background: #161616;
  color: #fff;
}
.product-page__variation-select {
  position: relative;
}
.product-page__variation-toggle {
  background: #fff;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1019607843);
  font-family: "Geologica";
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  color: #161616;
  border-radius: 50px;
  padding: 12px 24px;
  width: 100%;
  text-align: left;
}
.product-page__variation-toggle img {
  position: absolute;
  right: 24px;
  top: 18px;
}
.product-page__variation-toggle.is-active img {
  transform: rotate(180deg);
}
.product-page__variation-dropdown {
  position: absolute;
  background: #fff;
  top: 100%;
  left: 0;
  top: 50px;
  display: none;
  z-index: 10;
  padding: 20px;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1019607843);
}
.product-page__variation-dropdown.active {
  display: block;
}
.product-page__variation-option {
  font-family: "Geologica";
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: #161616;
  padding-bottom: 3px;
}
.product-page__variation-option.is-active {
  border-bottom: 1px solid #161616;
}
.product-page__variation-option:last-child {
  padding-bottom: 0;
}
.product-page__classification {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 16px;
  color: #161616;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 50px;
  padding: 12px;
  background: #fff;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  top: 30px;
  right: 30px;
}
.product-page__sku {
  font-family: "Geologica";
  font-weight: 400;
  font-size: 18px;
  color: #484848;
  padding-bottom: 30px;
}
.product-page__quantity {
  font-family: "Geologica";
  font-weight: 400;
  font-size: 18px;
  color: #484848;
}
.product-page__price {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 40px;
  text-align: right;
  color: #161616;
  line-height: 30px;
}
.product-page__price-wrap {
  display: flex;
  align-items: flex-end;
  justify-content:flex-end;
  gap: 5px;
}
.product-page__price-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.product-page__price-perkilo {
  font-family: "Geologica";
  font-weight: 400;
  font-size: 16px;
  color: #868686;
}
.product-page__price-vat {
  font-family: "Geologica";
  font-weight: 400;
  font-size: 16px;
  color: #868686;
  line-height: 15px;
}
.product-page__price span {
  font-family: "Geologica";
  font-weight: 400;
  font-size: 16px;
  color: #868686;
}
.product-page__buy-column {
  padding-top: 50px;
  margin: 0;
}
.product-page__buy-btn {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  color: #fff;
  background: #161616;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  border-radius: 50px;
}
.product-page__buy-pallet {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  color: #fff;
  background: #161616;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  border-radius: 50px;
}
.product-page__buy-pallet.mobile {
  display: none;
}
.product-page__buy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-page__buy p {
  display: flex;
  justify-content: center;
  padding-top: 10px;
}
.product-page__buy p span {
  font-family: "Geologica";
  font-weight: 400;
  font-size: 16px;
  color: #868686;
}
.product-page__quantity-title {
  padding-bottom: 20px;
  font-family: "Geologica";
  font-weight: 400;
  font-size: 18px;
  color: #484848;
}
.product-page__quantity-form {
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-page__quantity-form button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  height: 45px;
  width: -moz-fit-content;
  width: fit-content;
  background: #fff;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1019607843);
  color: #161616;
  border-radius: 50px;
  font-family: "Geologica";
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
}
.product-page__quantity-form span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 75px;
  padding: 12px 24px;
  height: 45px;
  background: #fff;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1019607843);
  color: #161616;
  border-radius: 50px;
  font-family: "Geologica";
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
}

.pallet-form {
  display: flex;
  flex-direction: column;
  padding-bottom: 40px;
}
.pallet-form label {
  font-family: "Geologica";
  font-weight: 400;
  font-size: 18px;
  color: #484848;
  padding-bottom: 20px;
}
.pallet-form input {
  background: #fff;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1019607843);
  font-family: "Geologica";
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  color: #161616;
  border-radius: 50px;
  padding: 12px 24px;
  width: 100%;
  border: none;
}
.pallet-form input::-moz-placeholder {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  color: #484848;
}
.pallet-form input::placeholder {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  color: #484848;
}

/* pallet popup */
.popup-pallet {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  background: rgba(0, 0, 0, 0.4);
  z-index: 1000;
}

.popup-pallet.active {
  display: flex;
}

.popup-pallet__content {
  background: #fff;
  width: 415px;
  max-width: 90%;
  overflow: hidden;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1019607843);
}

.popup-pallet__header {
  display: flex;
  align-items: center;
  background: #fafafa;
  height: 100px;
  justify-content: center;
  position: relative;
}

.popup-pallet__title {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  color: #161616;
}

.popup-pallet__close {
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 35px;
}

.popup-pallet__body {
  padding: 50px 30px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.popup-pallet__row {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  color: #161616;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.popup-pallet__ok {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  color: #fff;
  border-radius: 50px;
  padding: 12px 24px;
  background: #161616;
}

/* pallet popup */
.similar-products {
  padding-top: 160px;
}
.similar-products__title {
  text-align: center;
}
.similar-products__content {
  padding-top: 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.similar-products__content .products__item {
  width: calc(25% - 20px);
}
.similar-products__content .products__item .product-card {
  width: 100%;
}

.contactus {
  padding-top: 160px;
}
.contactus__title {
  text-align: center;
}
.contactus__content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 60px;
}
.contactus__column {
  width: calc(50% - 20px);
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.0509803922);
  background: #fff;
  padding: 30px;
}
.contactus__column-title {
  padding-bottom: 50px;
  font-family: "Geologica";
  font-weight: 600;
  font-size: 36px;
  text-transform: uppercase;
}
.contactus__column-description {
  padding-bottom: 30px;
  font-family: "Geologica";
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  color: #484848;
}
.contactus__column-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 1px solid #161616;
  border-radius: 50px;
  padding: 12px 12px 12px 24px;
  min-width: 370px;
  width: -moz-fit-content;
  width: fit-content;
}
.contactus__column-link span {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  color: #161616;
}

.shop__content {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
.shop__container {
  width: 76%;
}
.shop__sidebar {
  width: 24%;
}
.shop__title {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 56px;
  text-transform: uppercase;
  color: #161616;
}
.shop__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}
.shop__link-shop {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  color: #161616;
  border-bottom: 1px solid #161616;
}

.cart {
  margin-top: 130px;
  padding-top: 120px;
}
.cart__content {
  display: flex;
  justify-content: space-between;
}
.cart__item {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  border-bottom: 1px solid #868686;
  padding: 80px 0 30px 0;
}
.cart__item:first-child {
  padding: 0 0 30px 0;
}
.cart__item:last-child {
  padding: 80px 0 0 0;
  border: none;
}
.cart__item-img {
  max-width: 240px;
}
.cart__item-img img {
  width: 100%;
}
.cart__item-name {
  padding-bottom: 30px;
  font-family: "Geologica";
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  color: #161616;
}
.cart__item-category {
  padding-bottom: 20px;
  font-family: "Geologica";
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: #484848;
}
.cart__item-sku {
  font-family: "Geologica";
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: #484848;
}
.cart__item-column {
  display: flex;
  gap: 20px;
}
.cart__item-column.desktop-dn {
  display: block;
}
.cart__item-column:nth-child(1) {
  width: 45%;
}
.cart__item-column:nth-child(2) {
  width: 20%;
}
.cart__item-column:nth-child(3) {
  width: 33%;
}
.cart__item-column:nth-child(4) {
  width: 2%;
}
.cart__item-info .cart__item-qty {
  display: none;
}
.cart__item-info .cart__item-cell {
  display: none;
}
.cart__item-info .cart__item-vat {
  display: none;
}
.cart__item-container {
  display: flex;
}
.cart__item-container.tablet {
  display: none;
}
.cart__item-cell {
  font-family: "Geologica";
  font-weight: 400;
  font-size: 18px;
  color: #484848;
}
.cart__item-value {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 20px;
  text-align: left;
  color: #161616;
}
.cart__item-perkg {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 20px;
  text-align: left;
  color: #161616;
}
.cart__item-vat.desktop-dn {
  display: none;
}
.cart__item-vat p {
  display: flex;
  align-items: center;
  font-family: "Geologica";
  font-weight: 400;
  font-size: 18px;
  color: #484848;
}
.cart__container {
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1019607843);
  margin-bottom: 30px;
}
.cart__container-header {
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafafa;
}
.cart__container-title {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  text-transform: uppercase;
  color: #161616;
}
.cart__container-body {
  padding: 20px 20px 30px 20px;
}
.cart__summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 30px;
}
.cart__summary-border {
  border-top: #868686 1px solid;
  padding-top: 30px;
}
.cart__summary-amount {
  font-family: "Geologica";
  font-weight: 400;
  font-size: 20px;
  text-align: right;
  color: #161616;
}
.cart__summary-subtotal, .cart__summary-total, .cart__summary-vat {
  font-family: "Geologica";
  font-weight: 400;
  font-size: 20px;
  color: #484848;
}
.cart__summary-button a {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  color: #fff;
  background: #161616;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 50px;
}
.cart__summary-button a.disable {
  background: #868686;
}
.cart__summary-button p {
  display: flex;
  justify-content: center;
  padding-top: 10px;
  gap: 5px;
}
.cart__summary-button p span {
  font-family: "Geologica";
  font-weight: 400;
  font-size: 16px;
  color: #868686;
}
.cart__note {
  padding: 20px;
  font-family: "Geologica";
  font-weight: 400;
  font-size: 20px;
  color: #484848;
  background: #fafafa;
}
.cart__note a {
  font-weight: 600;
}

.form-discount {
  display: flex;
  align-items: center;
  position: relative;
}
.form-discount-field {
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1019607843);
  border: none;
  border-radius: 50px;
}
.form-discount input {
  width: 100%;
  font-family: "Geologica";
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  color: #161616;
  border-radius: 50px;
  padding: 12px 24px;
  border: none;
}
.form-discount input::-moz-placeholder {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  color: #868686;
}
.form-discount input::placeholder {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  color: #868686;
}
.form-discount button {
  width: 30%;
  right: 0px;
  top: 0;
  position: absolute;
  font-family: "Geologica";
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  color: #fff;
  background: #161616;
  padding: 12px 24px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.form-discount button img {
  display: none;
}
.form-discount button.is-active {
  background: #d3fff1;
}
.form-discount button.is-active span {
  display: none;
}
.form-discount button.is-active img {
  display: block;
}

.shop__label {
  font-family: "Geologica";
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0%;
  color: #484848;
  margin-bottom: 25px;
  display: block;
}
.shop__tab {
  border-bottom: 1px solid #868686;
  padding-bottom: 60px;
}
.shop__tab:nth-child(2) {
  padding-top: 60px;
  border: none;
}
.shop__tab-title {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 40px;
  letter-spacing: 0%;
  color: #161616;
}
.shop__tab-select {
  position: relative;
}
.shop__tab-select-wrap {
  padding-top: 40px;
}
.shop__tab-toggle {
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-family: "Geologica";
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #161616;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1019607843);
  background: #fff;
  border-radius: 50px;
}
.shop__tab-current {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #161616;
}
.shop__tab-current span {
  color: #868686;
  font-family: "Geologica";
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0%;
  text-transform: uppercase;
}
.shop__tab-icon.is-active {
  transform: rotateX(180deg);
}
.shop__tab-option {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #161616;
}
.shop__tab-option.is-active {
  border-bottom: 1px solid #161616;
}
.shop__tab-option span {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #868686;
}
.shop__tab-dropdown {
  position: absolute;
  background: #fff;
  top: 60px;
  left: 0;
  display: none;
  z-index: 10;
  padding: 20px;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1019607843);
}
.shop__tab-dropdown.active {
  display: block;
}
.shop__tab-button {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}
.shop__tab-button button {
  background: #161616;
  color: #fff;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 50px;
  padding: 12px 24px;
  font-family: "Geologica";
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: 0%;
  text-transform: uppercase;
  min-width: 375px;
  width: -moz-fit-content;
  width: fit-content;
}
.shop__controls {
  margin-top: 50px;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1019607843);
  background: #fff;
}
.shop__controls-radio {
  display: none;
}
.shop__controls-header {
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Geologica";
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  color: #161616;
  background: #fafafa;
}
.shop__controls-body {
  padding: 30px 20px;
}
.shop__controls-container {
  display: flex;
  align-items: center;
}
.shop__controls-container label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.shop__controls-label {
  font-family: "Geologica";
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0%;
  color: #484848;
}
.shop__form-row {
  margin-top: 50px;
}
.shop__form-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.shop__form-input {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  text-transform: uppercase;
  color: #161616;
  border: none;
  width: 100%;
  height: 100%;
  padding: 16px 24px;
  border-radius: 50px;
}
.shop__form-input::-moz-placeholder {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  text-transform: uppercase;
  color: #868686;
}
.shop__form-input::placeholder {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  text-transform: uppercase;
  color: #868686;
}
.shop__form-field-wrap {
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1019607843);
  background: #fff;
  border-radius: 50px;
}
.shop__form-field.w30 {
  width: calc(30% - 20px);
}
.shop__form-field.w50 {
  width: calc(50% - 20px);
}
.shop__form-field.w70 {
  width: calc(70% - 20px);
}
.shop__form-field.w100 {
  width: 100%;
}
.shop__form-container {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 25px;
}
.shop__form-container .shop__label {
  margin-bottom: 0;
}
.shop__account {
  display: flex;
  max-width: 415px;
}
.shop__account span {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #161616;
}
.shop__account a {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #161616;
  text-decoration: underline;
}
.shop__account a span {
  text-transform: lowercase !important;
}

.shop__tab-hide {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #484848;
  padding-top: 50px;
}

.shop__tab:nth-child(2) .shop__tab-container {
  display: none;
}

.shop__tab:nth-child(2) .shop__tab-hide {
  display: block;
}

.custom-radio,
.shop__form-custom-radio {
  width: 24px;
  height: 24px;
  border: 1px solid #161616;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
  position: relative;
}

.shop__controls-radio:checked + label .custom-radio::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background-color: #161616;
  border-radius: 50%;
}

.shop__form-radio {
  display: none;
}

.shop__form-radio:checked + label .shop__form-custom-radio::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background-color: #161616;
  border-radius: 50%;
}

.summary-delivery {
  display: flex;
  align-items: center;
  gap: 10px;
}
.summary-delivery span {
  font-family: "Geologica";
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #484848;
}

.summary-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.summary-details span {
  font-family: "Geologica";
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #484848;
}

.change-btn {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #161616;
  border-radius: 50px;
  padding: 12px 24px;
  border: 1px solid #161616;
}

.error-text {
  font-family: "Geologica";
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #e00d0d;
}

.checkout {
  margin-top: 130px;
  padding-top: 130px;
}

.page {
  margin-top: 130px;
  padding-top: 20px;
  padding-bottom: 160px;
}
.page .title {
  text-align: center;
  padding: 70px 0;
  font-size: 56px;
}
.page__content {
  margin: 0 auto;
  max-width: 1000px;
}
.page__container {
  padding-bottom: 40px;
}
.page__title {
  padding-bottom: 40px;
  font-family: "Geologica";
  font-weight: 600;
  font-size: 36px;
  line-height: 120%;
  text-transform: uppercase;
  color: #161616;
}

.page__text ul li{
  font-family: "Geologica";
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  color: #484848;
  list-style-type: disc;
  margin-left: 25px;
  padding-bottom: 10px;
}
.page__text p {
  font-family: "Geologica";
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  color: #484848;
  padding-bottom: 10px;
}
.page__text--address {
  font-family: "Geologica";
  font-weight: 400;
  font-size: 18px;
  line-height: 40px;
  color: #484848;
}

.contactus-page {
  position: relative;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
.contactus-page__breadcrumbs {
  position: absolute;
  top: 20px;
}
.contactus-page__info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.contactus-page__info-wrap {
  padding-top: 160px;
}
.contactus-page__container {
  width: calc(25% - 20px);
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.0509803922);
  background: #fff;
  padding: 40px 30px;
}
.contactus-page__container .page__title {
  max-width: 300px;
}
.contactus-page__container .contactus__column-link {
  gap: 10px;
  min-width: initial;
}
.contactus-page__container .contactus__column-link span {
  font-size: clamp(16px, 1.8vw, 18px);
}

.padding-top {
  padding: 0 0 160px 0 !important;
}

.needhelp {
  padding: 160px 0 160px 0;
  background: url(../images/main/map.svg) no-repeat;
  background-size: cover;
}
.needhelp__top {
  max-width: 800px;
  padding-bottom: 40px;
  margin: 0 auto;
  text-align: center;
}
.needhelp__title {
  padding-bottom: 30px;
}
.needhelp__content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.needhelp__column {
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.0509803922);
  width: calc(33% - 20px);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  gap: 30px;
  /*  */
}
.needhelp__column .page__title {
  padding-bottom: 0;
}
.needhelp__column .page__text {
  max-width: 500px;
}
.needhelp__column .contactus__column-link span {
  font-size: clamp(16px, 2vw, 20px);
}

.map {
  margin-top: 160px;
  padding-top: 160px;
  padding-bottom: 230px;
}
.map__content {
  display: flex;
  justify-content: flex-start;
}
.map__info {
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.0509803922);
  width: 415px;
  padding: 40px 30px;
}
.map__title {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 28px;
  line-height: 120%;
  text-transform: uppercase;
  color: #161616;
}
.map__subtitle {
  font-family: "Geologica";
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  color: #484848;
  padding: 30px 0;
}
.map__link {
  width: 100%;
  text-align: center;
}

.main-hero .hero__content h1 {
  padding-top: 400px;
}

.mt160 {
  margin-top: 160px;
}

.aboutus-page .hero__content h1 {
  padding-top: 100px;
}
.aboutus-page__breadcrumbs {
  position: absolute;
  top: 20px;
}

.faq {
  overflow: hidden;
}
.faq__title {
  padding: 60px 0 0 0 !important;
}
.faq__tabs {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 20px;
  padding: 60px 0;
}
.faq__tab {
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1019607843);
  font-family: "Geologica";
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  color: #161616;
  padding: 12px 24px;
  background: #fff;
  border-radius: 50px;
  white-space: nowrap;
  cursor: pointer;
}
.faq__tab.is-active {
  color: #fff;
  background: #161616;
}
.faq__wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
}
.faq__container {
  width: calc(33% - 20px);
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.0509803922);
  padding: 20px;
}
.faq__pagination {
  padding-top: 80px;
}

.thankyou {
  padding: 160px 0;
  margin-top: 130px;
}
.thankyou__content {
  max-width: 1000px;
  margin: 0 auto;
}
.thankyou__title {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 56px;
  line-height: 120%;
  text-transform: uppercase;
  color: #161616;
}
.thankyou__subtitle {
  font-family: "Geologica";
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  color: #484848;
  padding-top: 40px;
}
.thankyou__link {
  margin-top: 30px;
}

.error {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 160px 0;
}
.error__image {
  display: flex;
  justify-content: center;
}
.error__image-mob {
  display: none;
}
.error__image img {
  width: 100%;
}
.error__title {
  margin-top: 80px;
  text-align: center;
  font-family: "Geologica";
  font-weight: 600;
  font-size: 40px;
  line-height: 130%;
  text-transform: uppercase;
  color: #484848;
}
.error__link {
  margin-top: 40px;
}

.slider-button {
  margin-right: 5px;
}

.cookie__modal {
  padding: 40px 30px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 415px;
  width: 100%;
  background: #fff;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1019607843);
  z-index: 9999;
  max-height: -moz-fit-content;
  max-height: fit-content;
  display: none;
  overflow-y: auto;
  height: 100%;
}
.cookie__title {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 40px;
  line-height: 130%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  color: #161616;
}
.cookie__description {
  font-family: "Geologica";
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #484848;
  margin: 30px 0;
}
.cookie__description a {
  font-weight: 700;
}
.cookie__controls {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  gap: 20px;
}
.cookie__controls button {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: 0%;
  text-transform: uppercase;
  border-radius: 50px;
}
.cookie__btn-customize {
  color: #fff;
  background: #161616;
  width: 100%;
  padding: 12px;
}
.cookie__btn-customize.hidden {
  display: none;
}
.cookie__btn-decline {
  background: transparent;
  border: 1px solid #161616;
  color: #161616;
  width: calc(50% - 20px);
  padding: 12px;
}
.cookie__btn-accept {
  color: #fff;
  background: #161616;
  width: calc(50% - 20px);
  padding: 12px;
}
.cookie__btn-accept.hidden {
  display: none;
}
.cookie__btn-save {
  color: #fff;
  background: #161616;
  width: calc(50% - 20px);
  padding: 12px;
  display: none;
}
.cookie__btn-save.active {
  display: block;
}

.cookie__modal.active {
  display: block;
}

.cookie__settings {
  display: none;
}

.cookie__settings.active {
  display: block;
}

.cookie__tab-body {
  display: none;
}

.cookie__tab.active .cookie__tab-body {
  display: block;
}

.cookie__tab.active {
  border: 1px solid #161616;
}
.cookie__tab.active .cookie__tab-button img {
  transform: rotateX(180deg);
}

.cookie__tab {
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1019607843);
  background: #fff;
  border-radius: 50px;
  padding: 12px 24px;
  margin-bottom: 20px;
}
.cookie__tab:last-child {
  margin-bottom: 0;
}
.cookie__tab.active {
  border-radius: 24px;
}

.cookie__tab-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.cookie__tab-name {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #161616;
}

.cookie__tab-button {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: "Geologica";
  font-weight: 400;
  font-size: 12px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #00b57a;
}

.cookie__tab-body {
  padding-top: 20px;
  font-family: "Geologica";
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #484848;
}

.switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #dbdbdb;
  transition: 0.3s;
  border-radius: 22px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 2px;
  bottom: 2px;
  background-color: #484848;
  transition: 0.3s;
  border-radius: 50%;
}

.switch input:checked + .slider:before {
  transform: translateX(20px);
  background: #161616;
  left: 0px;
  bottom: 2px;
}

.lang__modal {
  padding: 60px 30px 40px 30px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 415px;
  width: 100%;
  background: #fff;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1019607843);
  z-index: 9999;
  display: none;
}
.lang__modal.active {
  display: block;
}
.lang__modal-close {
  position: absolute;
  right: 30px;
  top: 20px;
}
.lang__modal-description {
  font-family: "Geologica";
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: 0%;
  color: #484848;
  margin-bottom: 20px;
}
.lang__modal-select {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: 0%;
  text-transform: uppercase;
}
.lang__modal-select span {
  color: #868686;
}
.lang__tab {
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1019607843);
  background: #fff;
  border-radius: 50px;
  padding: 12px 24px;
  margin-bottom: 20px;
}
.lang__tab.active {
  border-radius: 24px;
}
.lang__tab-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.lang__modal-option {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #161616;
}
.lang__modal-option span {
  color: #868686;
}

.lang__modal-save {
  font-family: "Geologica";
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #fff;
  background: #161616;
  border-radius: 50px;
  margin-top: 30px;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 100%;
}

.lang__tab-body {
  display: none;
  flex-direction: column;
}

.lang__tab.active .lang__tab-body {
  display: flex;
}

.lang__modal-option {
  margin-top: 20px;
}

.lang__tab.active {
  border: 1px solid #161616;
}

.blur-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.1019607843);
  z-index: 9998;
  display: none;
}

.blur-overlay.active {
  display: block;
}

.search__modal.active {
  display: block;
}

.search__modal {
  background: #fff;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1019607843);
  height: 85px;
  position: fixed;
  width: 100%;
  max-width: 1720px;
  top: 190px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  display: none;
  padding: 20px 30px;
}
.search__modal-container {
  display: flex;
  justify-content: space-between;
}
.search__modal-icon {
  width: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search__modal-field {
  width: 90%;
  display: flex;
  align-items: center;
}
.search__modal-field input {
  width: 100%;
  font-family: "Geologica";
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #161616;
  border: none;
}
.search__modal-field input:focus {
  border: none;
  outline: none;
}
.search__modal-field input::-moz-placeholder {
  font-family: "Geologica";
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #484848;
}
.search__modal-field input::placeholder {
  font-family: "Geologica";
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #484848;
}
.search__modal-field img {
  display: none;
  margin-right: 20px;
}
.search__modal-field img.active {
  display: block;
}
.search__modal-button {
  width: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search__modal-button button {
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1019607843);
  background: #161616;
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: "Geologica";
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #fff;
}

@media (max-width: 1700px) {
  .cart__item-img {
    max-width: 180px;
  }
}
@media (max-width: 1600px) {
  .shop__content {
    flex-direction: column;
  }
  .shop__container {
    width: 100%;
  }
  .shop__sidebar {
    width: 100%;
  }
  .cart__item {
    justify-content: space-between;
  }
  .cart__item-img {
    max-width: 240px;
  }
}
@media (max-width: 1520px) {
  .catalog__filters-list {
    max-width: 660px;
  }
  .needhelp__column .contactus__column-link {
    gap: 10px;
  }
  .contactus-page__container {
    width: calc(50% - 20px);
  }
}
@media (max-width: 1400px) {
  .mt160 {
    margin-top: 120px;
  }
  .main-hero .hero__content h1 {
    padding-top: 100px;
  }
  .aboutus-page .hero__content h1 {
    padding-top: 0px;
  }
  .contactus-page .hero__content h1 {
    padding-top: 0px;
  }
  .reviews__buttons {
    position: relative;
  }
  .reviews__title {
    margin-right: auto;
    margin: initial;
  }
  .hero, .cart, .catalog, .checkout, .page, .product-page, .thankyou {
    margin-top: 88px;
  }
  .error {
    margin: 120px 0;
  }
  .padding-top {
    padding-bottom: 120px !important;
  }
  .page {
    padding-bottom: 80px;
  }
  .catalog__products {
    margin-top: 40px;
  }
  .checkout {
    padding-top: 0;
  }
  .search__modal {
    width: 99%;
    top: 135px;
  }
  .header {
    /* 
    &__menu {
      position: fixed;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100vh;
      background: #fff;
      padding: 80px 20px;
      transition: left 0.3s ease;
      z-index: 1000;

      &.active {
        left: 0;
      }

      &-list {
        flex-direction: column;
        gap: 20px;
      }
    } */
  }
  .header__top {
    display: none;
  }
  .header__burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
  }
  .header__burger span {
    display: block;
    height: 2px;
    width: 100%;
    background: #161616;
    transition: all 0.3s ease;
  }
  .header__burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .header__burger.active span:nth-child(2) {
    opacity: 0;
  }
  .header__burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }
  .header__menu {
    display: none;
  }
  .header__mobile {
    display: flex;
    flex-wrap: wrap;
    overflow-y: auto;
  }
  .header__mobile.active .header__mobile-column .header__menu {
    display: block;
  }
  .header__mobile.active .header__mobile-column:nth-child(1) {
    width: 75%;
  }
  .header__mobile.active .header__mobile-column:nth-child(2) {
    width: 25%;
  }
  .header__mobile.active .header__mobile-column:nth-child(3) {
    margin-top: 100px;
    width: 30%;
  }
  .header__mobile.active .header__mobile-column:nth-child(3) .header__mobile-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .header__mobile.active .header__mobile-column:nth-child(4) {
    margin-top: 100px;
    width: 30%;
  }
  .header__mobile.active .header__mobile-column:nth-child(4) .header__mobile-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .header__mobile.active .header__mobile-column:nth-child(5) {
    margin-top: 100px;
    width: 40%;
  }
  .header__menu-item:not(:last-child)::after {
    content: none;
  }
  .header__menu-list {
    gap: 40px 50px;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-start;
  }
  .header__menu-item {
    width: calc(50% - 50px);
  }
  .header__menu-link::after {
    content: none;
  }
  .header__menu-link {
    font-size: 40px;
  }
  .header__localization-text {
    color: #161616;
  }
  .header__mobile-list-link {
    font-family: "Geologica";
    font-weight: 500;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #161616;
  }
  .header-contact {
    border: 1px solid #161616;
    border-radius: 50px;
    padding: 12px 12px 12px 24px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  .header-contact:last-child {
    margin-bottom: 0;
  }
  .header-contact-text {
    color: #161616;
    font-family: "Geologica";
    text-transform: uppercase;
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: 0%;
    text-transform: uppercase;
  }
  .hero__content {
    flex-direction: column;
    align-items: initial;
    padding: 90px 0;
    gap: 170px;
  }
  .hero__content_column:nth-child(2) {
    display: flex;
    justify-content: flex-end;
  }
  .hero__ratings {
    width: -moz-fit-content;
    width: fit-content;
  }
  .showcase {
    overflow: hidden;
    position: relative;
    border-bottom: 0;
  }
  .showcase__content {
    flex-direction: column;
  }
  .showcase__column {
    padding-top: 90px;
    position: static;
    width: 100%;
    height: 840px;
  }
  .showcase__column:nth-child(1) {
    border-right: none;
  }
  .showcase__column:nth-child(1)::after {
    content: "";
    border-bottom: 1px solid #484848;
    width: 100%;
    height: 1px;
    display: block;
    position: absolute;
    bottom: 47%;
  }
  .showcase__column:nth-child(2) {
    padding-left: 0;
  }
  .showcase__column:nth-child(2) img {
    max-width: 560px;
  }
  .showcase__image {
    position: absolute;
    max-width: 100%;
    right: 0;
  }
  .display-none {
    display: none;
  }
  .sale__slider-wrapper .slider-button {
    display: none;
  }
  .slider-button {
    width: 36px;
    height: 36px;
  }
  .hotsale {
    padding: 80px 0 0 0;
  }
  .hotsale__top {
    padding-bottom: 50px;
  }
  .hotsale__top .hotsale__link {
    display: none;
  }
  .hotsale__button {
    display: flex;
    gap: 10px;
  }
  .hotsale__content {
    flex-direction: column;
  }
  .hotsale__column {
    width: 100%;
  }
  .hotsale__column:nth-child(1) .hotsale__link {
    display: flex;
    justify-content: center;
    margin-top: 40px;
  }
  .hotsale__column:nth-child(2) {
    display: none;
  }
  .offers {
    padding-bottom: 80px;
  }
  .offers__button {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .offers__button .offers-button-prev, .offers__button .offers-button-next {
    display: flex !important;
    position: static;
  }
  .offers__top .offers__link {
    display: none;
  }
  .offers__top .display-none {
    display: none;
  }
  .offers__content .slider-button {
    display: none;
  }
  .offers .offers__link-tablet {
    display: flex;
    justify-content: center;
    margin-top: 50px;
  }
  .price-week-tablet {
    display: flex !important;
    justify-content: center;
    align-items: center;
    margin-top: 120px;
    height: 650px;
  }
  .workflow {
    background-position-y: 19px;
    background-position-x: -120px;
    padding: 120px 0 120px 0;
  }
  .workflow__cards {
    flex-wrap: wrap;
    gap: 100px 20px;
  }
  .workflow__card {
    padding: 30px;
    background: #fff;
    width: calc((100% - 20px) / 2);
  }
  .catalog__controls {
    flex-wrap: wrap;
    gap: 30px;
  }
  .catalog__sort {
    order: 3;
  }
  .catalog__filters {
    width: 100%;
    order: 1;
  }
  .catalog__filters-list {
    max-width: 100%;
    width: 100%;
  }
  .catalog__filters-toggle {
    order: 2;
  }
  .catalog__filters-popup.active {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 97%;
    height: 97%;
  }
  .catalog__filters-popup__body {
    padding: 0 100px;
  }
  .catalog__filters-popup__close {
    right: 100px;
  }
  .catalog__pagination {
    margin-top: 60px;
  }
  .popup-filters__toggle img {
    right: 100px;
  }
  .product-page .catalog__breadcrumbs {
    display: flex;
  }
  .product-page__content {
    flex-wrap: wrap;
    gap: 20px;
  }
  .product-page__column:nth-child(1) {
    order: 3;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 0;
  }
  .product-page__column:nth-child(1) .catalog__breadcrumbs {
    display: none;
  }
  .product-page__column:nth-child(2) {
    width: calc(50% - 20px);
    order: 1;
  }
  .product-page__column:nth-child(3) {
    width: calc(50% - 20px);
    order: 2;
  }
  .product-page__title {
    font-size: 48px;
    padding-bottom: 30px;
  }
  .product-page__stock {
    padding-bottom: 30px;
  }
  .product-page__description {
    padding-bottom: 40px;
  }
  .product-page__sku {
    padding-bottom: 20px;
    padding-top: 30px;
  }
  .product-page__quantity {
    padding-bottom: 30px;
  }
  .product-page__variation-group {
    padding-bottom: 30px;
  }
  .product-page__variation-label {
    padding-bottom: 10px;
  }
  .product-page__buy-pallet.desktop {
    display: none;
  }
  .product-page__buy-pallet.mobile {
    display: flex;
    margin-bottom: 60px;
  }
  .product-page .popup-pallet__content {
    width: 97%;
    max-width: 97%;
    height: 97%;
  }
  .product-page .popup-pallet__body {
    padding: 130px 30px 30px 30px;
  }
  .product .thankyou {
    padding: 80px 0;
  }
  .similar-products {
    padding-top: 120px;
  }
  .similar-products__content {
    gap: 30px 20px;
  }
  .similar-products__content .products__item {
    width: calc(50% - 20px);
  }
  .needhelp {
    padding: 120px 0;
  }
  .needhelp__column {
    width: 100%;
  }
  .needhelp__column .page__text {
    max-width: 100%;
  }
  .map {
    margin-top: 120px;
    padding-top: 120px;
    padding-bottom: 270px;
  }
  .mt-30 {
    margin-top: 20px;
  }
  .mt-55 {
    margin-top: 0;
  }
  .cart__title {
    font-size: 48px;
  }
  .cart__item {
    padding: 70px 0 30px 0;
    justify-content: initial;
  }
  .cart__item:last-child {
    padding: 70px 0 0 0;
  }
  .cart__item-img {
    max-width: 120px;
    margin-right: 20px;
  }
  .cart__item-container.tablet {
    display: flex;
    padding-top: 30px;
    width: 100%;
  }
  .cart__item-container.tablet .cart__item-padding {
    padding: 0 70px 0 0;
  }
  .cart__item-column {
    gap: 0;
  }
  .cart__item-column.tablet-dn {
    display: none;
  }
  .cart__item-column.desktop-dn {
    display: block;
  }
  .cart__item-column:nth-child(1) {
    width: 45%;
  }
  .cart__item-column:nth-child(2) {
    flex-direction: column;
    width: 50%;
  }
  .cart__item-column:nth-child(3) {
    width: 33%;
  }
  .cart__item-column:nth-child(4) {
    margin-left: auto;
    width: 5%;
  }
  .cart__item-column.desktop {
    display: none;
  }
  .cart-product-default .cart__item-column:nth-child(2) {
    display: flex;
    flex-direction: row;
    gap: 50px;
  }
  .shop__top {
    flex-direction: column;
    align-items: flex-start;
  }
  .shop__form-field.w30 {
    width: calc(50% - 20px);
  }
  .shop__form-field.w70 {
    width: calc(50% - 20px);
  }
  .shop__controls {
    margin-top: 35px;
  }
  .shop__form-row {
    margin-top: 35px;
  }
  .shop__account {
    max-width: 100%;
  }
  .footer {
    padding-top: 120px;
  }
  .footer__row {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 50px;
  }
  .footer__text {
    text-align: center;
  }
  .footer .footer__ratings-wrap {
    display: block;
    margin-left: auto;
  }
  .footer__column:nth-child(1) {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  .footer__column:nth-child(1) .footer__ratings-wrap {
    display: none;
  }
  .footer__column:nth-child(1) .footer__localization {
    display: flex;
    padding-bottom: 50px;
  }
  .footer__column:nth-child(2) {
    width: calc(25% - 50px);
  }
  .footer__column:nth-child(3) {
    width: calc(33% - 50px);
  }
  .footer__column:nth-child(4) {
    width: calc(42% - 50px);
  }
  .footer__localization {
    display: none;
  }
  .footer__copyright {
    justify-content: space-between;
  }
  .footer__copyright p {
    position: static;
    transform: none;
  }
}
@media (max-width: 1200px) {
  .catalog__products .products__item {
    width: calc(50% - 20px);
  }
  .contactus {
    padding-top: 120px;
  }
  .contactus__content {
    flex-direction: column;
    padding-top: 50px;
  }
  .contactus__column {
    width: 100%;
  }
  .contactus-page {
    align-items: initial;
    padding-top: 50px;
  }
  .contactus-page__info-wrap {
    padding-top: 80px;
  }
  .reviews {
    padding: 120px 0;
  }
  .reviews__top-empty {
    display: none;
  }
  .page .title {
    text-align: left;
    padding: 50px 0;
  }
  .faq__tabs {
    padding: 60px 0 30px 0;
    overflow-x: auto;
    justify-content: flex-start;
  }
  .faq__tab {
    text-wrap: nowrap;
  }
  .faq__wrap {
    gap: 20px;
  }
  .faq__container {
    width: calc(50% - 20px);
  }
  .error__image-desc {
    display: none;
  }
  .error__image-mob {
    display: block;
  }
  .error__title {
    font-size: 36px;
  }
}
@media (max-width: 950px) {
  .header__menu-link {
    font-size: clamp(24px, 2.5vw, 40px);
  }
}
@media (max-width: 830px) {
  .header__mobile {
    padding: 30px 20px;
    gap: 30px;
  }
  .header__menu-list {
    flex-direction: column;
    gap: 20px;
  }
  .header__menu-item {
    width: 100%;
  }
  .header__mobile-list-link {
    font-size: 16px;
  }
  .header__mobile.active .header__mobile-column:nth-child(1) {
    width: 100%;
  }
  .header__mobile.active .header__mobile-column:nth-child(2) {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .header__mobile.active .header-contact-text {
    font-size: 16px;
  }
  .header__mobile.active .header__mobile-column:nth-child(3) {
    margin-top: 0;
    width: calc(70% - 30px);
  }
  .header__mobile.active .header__mobile-column:nth-child(4) {
    width: calc(30% - 30px);
    margin-top: 0;
  }
  .header__mobile.active .header__mobile-column:nth-child(5) {
    width: 100%;
    margin-top: 0;
  }
  .header__mobile.active .header__mobile-column:nth-child(3) .header__mobile-list {
    gap: 20px;
  }
  .header__mobile {
    top: 70px;
    width: 97%;
  }
}
@media (max-width: 900px) {
  .mt-30 {
    margin-top: 15px;
  }
  .shop__top {
    margin-bottom: 40px;
  }
  .shop__link-shop {
    display: none;
  }
  .shop__link-shop.tablet {
    padding-top: 50px;
    padding-bottom: 5px;
    display: flex;
    justify-content: center;
  }
  .shop__title {
    font-size: 32px;
  }
  .cart__item {
    flex-wrap: wrap;
    position: relative;
    gap: 0;
    padding: 30px 0 30px 0;
  }
  .cart__item-img, .cart__item-name {
    margin: 0;
  }
  .cart__item:last-child {
    padding: 30px 0 0 0;
  }
  .cart__item-close button img {
    max-width: 24px;
    width: 24px;
    height: 24px;
  }
  .cart__item-name {
    padding-bottom: 15px;
  }
  .cart__item-img {
    margin-right: 10px;
  }
  .cart__item-img img {
    width: 120px;
    max-width: 120px;
  }
  .cart__item-padding {
    padding: 0 80px 0 0;
  }
  .cart__item-cell {
    font-size: 16px;
  }
  .cart__item-name, .cart__item-category, .cart__item-sku {
    font-size: 16px;
    max-width: 180px;
  }
  .cart__item-info .product-page__quantity-form {
    gap: 5px;
  }
  .cart__item-info .cart__item-qty {
    display: block;
  }
  .cart__item-info .cart__item-cell {
    display: block;
  }
  .cart__item-info .cart__item-vat {
    display: block;
  }
  .cart__item-info .cart__item-qty {
    padding-bottom: 20px;
    display: block;
  }
  .cart__item-info .cart__item-qty p {
    padding: 20px 0 10px 0;
    font-family: "Geologica";
    font-weight: 400;
    font-size: 16px;
    color: #484848;
  }
  .cart__item-info .cart__item-qty button img {
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
  .cart__item-vat p {
    font-size: 16px;
  }
  .cart__item-perkg {
    font-size: 16px;
  }
  .cart__item-container.tablet {
    display: none;
  }
  .cart__item-column:nth-child(1) {
    width: 100%;
    order: 1;
  }
  .cart__item-column:nth-child(2) {
    display: none;
    order: 4;
  }
  .cart__item-column:nth-child(3) {
    order: 3;
  }
  .cart__item-column:nth-child(3).desktop {
    display: flex;
    width: 100%;
  }
  .cart__item-column:nth-child(4) {
    order: 2;
    margin-left: initial;
    position: absolute;
    right: 0;
    top: 30px;
  }
  .cart-product-default .cart__item-column:nth-child(2), .cart-product-default .cart__item-column:nth-child(3) {
    display: none;
  }
  .tooltip__text {
    left: initial;
    right: 0;
    transform: translateX(0);
    font-size: 16px;
    width: 335px;
  }
  .footer {
    padding-top: 80px;
  }
  .footer__row {
    gap: 0;
  }
  .footer__column:nth-child(2) {
    width: 50%;
  }
  .footer__column:nth-child(3) {
    width: 50%;
  }
  .footer__column:nth-child(4) {
    width: 100%;
    padding-top: 50px;
  }
  .footer__logo_img {
    width: 60px;
    height: 50px;
  }
  .footer__text {
    font-size: 16px;
  }
  .footer__messenger-text {
    font-size: 16px;
  }
  .footer__ratings-wrap {
    max-width: 100%;
    padding-top: 50px;
    margin-left: initial !important;
  }
  .footer__menu-list {
    gap: 30px;
  }
  .footer__menu-link {
    font-size: 18px;
  }
  .footer__localization {
    padding: 50px 0;
  }
  .footer__copyright {
    flex-direction: column-reverse;
    align-items: flex-start;
    margin-top: 50px;
  }
  .footer__copyright p {
    text-align: center;
    width: 100%;
    padding-top: 50px;
  }
  .footer__link-wrap {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
@media (max-width: 762px) {
  .mt160 {
    margin-top: 80px;
  }
  .main-hero .hero__content h1 {
    padding-top: 0px;
  }
  .product-page__column:nth-child(2) img {
    width: 100%;
    height: 450px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .padding-top {
    padding-bottom: 80px !important;
  }
  .cart {
    padding-top: 20px;
  }
  .footer__messenger img {
    width: 36px;
    height: 36px;
  }
  .hero, .cart, .catalog, .checkout, .page, .product-page, .thankyou {
    margin-top: 65px;
  }
  .error {
    margin: 100px 0 80px;
  }
  .catalog__products {
    margin-top: 20px;
  }
  .reviews__top {
    margin-bottom: 30px;
  }
  .header__logo-img {
    width: 40px;
    height: 30px;
  }
  .header__buttons {
    gap: 35px;
  }
  .header__search-icon,
  .header__account-icon,
  .header__cart-icon {
    width: 20px;
    height: 20px;
  }
  .title {
    font-size: 28px;
  }
  .description {
    font-size: 18px;
  }
  .breadcrumbs__link {
    font-size: 12px;
  }
  .breadcrumbs__divider {
    font-size: 12px;
  }
  .showcase__column {
    height: 300px;
    padding-top: 80px;
  }
  .showcase__column:nth-child(1)::after {
    content: none;
  }
  .showcase__column:nth-child(1) img {
    width: 375px;
    top: 62px;
    z-index: -1;
  }
  .showcase__column:nth-child(2)::before {
    content: "";
    background: #484848;
    width: 100%;
    height: 1px;
    display: block;
    top: 51%;
    position: absolute;
    right: 0;
    left: 0;
  }
  .showcase__column:nth-child(2) img {
    width: 215px;
    top: 340px;
    z-index: -1;
  }
  .showcase__title {
    font-size: 28px;
  }
  .showcase__text {
    font-size: 18px;
  }
  .showcase__link {
    font-size: 18px;
  }
  .price-week-tablet {
    height: 600px;
    margin-top: 80px;
  }
  .hotsale__title img {
    width: 30px;
  }
  .hotsale__top {
    padding-bottom: 20px;
  }
  .hotsale__column_link {
    padding: 14px 24px;
  }
  .hotsale__column_link span {
    font-size: 20px;
  }
  .offers__top {
    padding-bottom: 20px;
  }
  .offers__title {
    max-width: 200px;
  }
  .offers .offers__link-tablet {
    margin-top: 20px;
  }
  .search__modal {
    padding: 10px;
    width: 97%;
    height: 65px;
    top: 105px;
  }
  .search__modal-icon {
    width: 10%;
  }
  .search__modal-field {
    width: 70%;
  }
  .search__modal-button {
    width: 20%;
  }
  .search__modal-field input {
    font-size: 16px;
  }
  .search__modal-field input::-moz-placeholder {
    font-size: 16px;
  }
  .search__modal-field input::placeholder {
    font-size: 16px;
  }
  .search__modal-button button {
    font-size: 16px;
  }
  .cookie__modal {
    max-width: 335px;
  }
  .cookie__title {
    font-size: 32px;
  }
  .cookie__controls {
    flex-direction: column;
  }
  .cookie__btn-decline,
  .cookie__btn-accept,
  .cookie__btn-save {
    width: 100%;
  }
  .lang__modal {
    max-width: 335px;
    padding: 50px 20px 20px 20px;
  }
  .lang__modal-option {
    margin-top: 10px;
  }
  .lang__modal-description {
    max-width: 295px;
    font-size: 16px;
  }
  .header__mobile.active {
    left: 7px;
  }
  .header-contact {
    padding: 10px 12px 10px 24px;
  }
  .hero__content {
    padding: 20px 0;
    gap: 120px;
  }
  .hero__title {
    font-size: 32px;
    padding-bottom: 20px;
  }
  .hero__text {
    font-size: 18px;
  }
  .hero__button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    font-size: 18px;
  }
  .hero__ratings {
    padding: 20px 25px;
  }
  .contactus-page {
    padding-top: 50px;
    background-position-x: -130px !important;
  }
  .contactus-page .hero__content {
    padding: 0 !important;
  }
  .contactus-page__info-wrap {
    padding-top: 50px;
  }
  .contactus-page__container {
    width: 100%;
    padding: 30px 20px;
  }
  .contactus-page__container .page__title {
    max-width: 100%;
  }
  .contactus-page__container .contactus__column-link {
    padding: 12px;
    gap: 5px;
  }
  .slider-button img {
    width: 14px;
  }
  .workflow__buttons, .reviews__buttons, .offers__button, .hotsale__button {
    padding: 20px 5px 20px 0;
  }
  .slider-button {
    margin-right: 0;
  }
  .workflow {
    padding: 80px 0 80px 0;
  }
  .workflow__title, .workflow__description {
    text-align: left;
  }
  .workflow__cards {
    display: none;
  }
  .workflow__slider {
    display: block;
  }
  .workflow__card {
    width: 100%;
    padding: 25px 20px;
  }
  .workflow__card::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    background: #fff;
    top: 0;
  }
  .workflow__card-title {
    font-size: 20px;
    min-height: 30px;
    position: relative;
    z-index: 1;
  }
  .workflow__card-text {
    font-size: 16px;
    padding-top: 40px;
  }
  .workflow__card:nth-child(1):before {
    top: -25px;
    z-index: -1;
    font-size: 36px;
  }
  .workflow__card:nth-child(2):before {
    top: -25px;
    z-index: -1;
    font-size: 36px;
  }
  .workflow__card:nth-child(3):before {
    top: -25px;
    z-index: -1;
    font-size: 36px;
  }
  .workflow__card:nth-child(4):before {
    top: -25px;
    z-index: -1;
    font-size: 36px;
  }
  .needhelp {
    padding: 80px 0;
  }
  .needhelp__title {
    text-align: left;
  }
  .needhelp__description {
    text-align: left;
  }
  .needhelp__column {
    padding: 30px 20px;
  }
  .reviews {
    padding: 80px 0;
  }
  .reviews__title {
    font-size: 28px;
    max-width: 200px;
  }
  .reviews .slider-button {
    width: 36px;
    height: 36px;
  }
  .reviews__buttons {
    gap: 20px;
  }
  .reviews__slide {
    min-height: 335px !important;
    height: 100% !important;
    padding: 40px 20px;
  }
  .reviews__slide::before {
    width: 55px;
    height: 40px;
    background-size: cover;
    top: -20px;
  }
  .reviews__slide-title {
    font-size: 20px;
  }
  .reviews__slide-text {
    font-size: 16px;
  }
  .reviews__slide-bottom {
    padding-top: 30px;
    flex-direction: column;
    align-items: flex-start;
  }
  .reviews__autor-image img {
    width: 64px;
    height: 64px;
  }
  .reviews__autor-name {
    font-size: 16px;
  }
  .reviews__autor-job {
    font-size: 16px;
  }
  .reviews__google {
    margin: 0 auto;
    padding-top: 30px;
  }
  .catalog__header {
    padding-top: 50px;
  }
  .catalog__title {
    font-size: 32px;
  }
  .catalog__breadcrumbs {
    display: none;
  }
  .catalog__controls {
    padding-top: 20px;
    gap: 20px;
  }
  .catalog__filters-list {
    gap: 10px;
  }
  .catalog__filters-btn {
    font-size: 16px;
  }
  .catalog__filters-toggle {
    font-size: 16px;
    min-width: 165px;
    width: -moz-max-content;
    width: max-content;
  }
  .catalog__filters-popup__header {
    height: 80px;
  }
  .catalog__filters-popup__body {
    padding: 0 20px;
  }
  .catalog__filters-popup__close {
    right: 20px;
  }
  .catalog__sort__toggle {
    font-size: 16px;
  }
  .catalog__sort__option {
    font-size: 16px;
  }
  .catalog__products {
    gap: 10px;
    justify-content: space-between;
  }
  .catalog__products .products__item {
    width: calc(50% - 10px);
  }
  .catalog__pagination {
    margin-top: 30px;
  }
  .popup-filters__label {
    font-size: 16px;
  }
  .popup-filters__toggle img {
    right: 20px;
  }
  .popup-filters__actions {
    gap: 10px;
  }
  .popup-filters__clear {
    font-size: 18px;
  }
  .popup-filters__apply {
    font-size: 18px;
  }
  .pagination {
    justify-content: center;
  }
  .product-card__quality {
    width: 24px;
    height: 24px;
  }
  .product-card__quality p {
    font-size: 12px;
  }
  .product-card__bottom {
    padding-top: 5px;
  }
  .product-card__name {
    padding-bottom: 15px;
    font-size: 16px;
  }
  .product-card__price {
    font-size: 16px;
  }
  .product-card__price span {
    font-size: 10px;
  }
  .product-card__button {
    min-width: 36px;
    min-height: 36px;
    max-width: 36px;
    max-height: 36px;
  }
  .product-card__button img {
    min-width: 16px;
    min-height: 16px;
    max-width: 16px;
    max-height: 16px;
  }
  .product-page .catalog__breadcrumbs {
    display: flex;
  }
  .product-page__content {
    flex-wrap: wrap;
    gap: 20px;
  }
  .product-page__column:nth-child(1) {
    width: 100%;
    padding-top: 30px;
  }
  .product-page__column:nth-child(2) {
    width: 100%;
  }
  .product-page__column:nth-child(3) {
    width: 100%;
    padding-bottom: 0;
  }
  .product-page__title {
    font-size: 32px;
  }
  .product-page__stock {
    padding-bottom: 30px;
  }
  .product-page__stock span {
    font-size: 18px;
  }
  .product-page__description {
    padding-bottom: 0;
  }
  .product-page__sku {
    padding-bottom: 15px;
  }
  .product-page__variation-group {
    padding-bottom: 20px;
  }
  .product-page__price {
    line-height: 0;
    font-size: 32px;
  }
  .product-page__price-vat {
    line-height: 0;
  }
  .product-page__subtitle {
    padding-bottom: 20px;
  }
  .product-page__variation-toggle {
    font-size: 16px;
  }
  .product-page__quantity-form {
    gap: 1px;
  }
  .product-page__quantity-form button {
    min-width: 40px;
    width: 40px;
  }
  .product-page__quantity-form button img {
    min-width: -moz-fit-content;
    min-width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .product-page__quantity-form span {
    min-width: 50px;
  }
  .pallet-form {
    padding-bottom: 0;
  }
  .pallet-form label {
    font-size: 16px;
  }
  .popup-pallet__body {
    padding: 1300px 60px 60px 60px;
  }
  .product-page__variation-label,
  .product-page__buy-pallet {
    font-size: 16px;
  }
  .product-page__buy-pallet .mobile {
    margin-bottom: 50px;
  }
  .similar-products {
    padding-top: 80px;
  }
  .similar-products__title {
    text-align: left;
  }
  .similar-products__content {
    padding-top: 30px;
    gap: 10px 5px;
  }
  .similar-products__content .products__item {
    width: calc(50% - 5px);
  }
  .contactus {
    padding-top: 80px;
  }
  .contactus__content {
    padding-top: 30px;
  }
  .contactus__column {
    padding: 30px 20px;
  }
  .contactus__column-title {
    font-size: 20px;
    padding-bottom: 30px;
  }
  .contactus__column-description {
    font-size: 18px;
    padding-bottom: 30px;
  }
  .contactus__column-link {
    min-width: 100%;
    gap: 5px;
  }
  .contactus__column-link span {
    font-size: 16px;
  }
  .contactus__column-link img {
    width: 36px;
    height: 36px;
  }
  .faq__title {
    padding-top: 30px !important;
  }
  .faq__tabs {
    padding: 30px 0 30px 0;
    gap: 10px;
  }
  .faq__tab {
    font-size: 16px;
  }
  .faq__wrap {
    gap: 20px;
  }
  .faq__container {
    width: 100%;
  }
  .faq__pagination {
    padding-top: 30px;
  }
  .page .title {
    padding: 30px 0;
    font-size: 32px;
  }
  .page__container {
    padding-bottom: 20px;
  }
  .page__title {
    font-size: 20px;
    padding-bottom: 20px;
  }
  .page__text--address {
    line-height: 30px;
  }
  .thankyou {
    padding-top: 60px;
    padding-bottom: 80px;
  }
  .thankyou__title {
    font-size: 32px;
  }
  .thankyou__subtitle {
    padding-top: 30px;
    font-size: 18px;
  }
  .error__image {
    display: flex;
    justify-content: center;
  }
  .error__image img {
    width: 90%;
  }
  .error__title {
    font-size: 20px;
    margin-top: 30px;
    text-align: center;
  }
  .error__link {
    margin-top: 30px;
  }
  .map {
    margin-top: 80px;
    padding-top: 80px;
    padding-bottom: 260px;
  }
  .map__info {
    padding: 35px 30px;
  }
  .map__title {
    font-size: 20px;
  }
  .map__subtitle {
    padding: 20px 0;
  }
  .map__link {
    font-size: 18px;
  }
  .shop__content {
    gap: 30px;
  }
  .shop__tab {
    padding-bottom: 30px;
  }
  .shop__tab:nth-child(2) {
    padding-top: 30px;
  }
  .shop__tab-title {
    font-size: 32px;
  }
  .shop__tab-hide {
    font-size: 16px;
    padding-top: 20px;
  }
  .shop__tab-button {
    justify-content: center;
  }
  .shop__tab-button button {
    min-width: 100%;
    width: 100%;
  }
  .shop__form-field.w30 {
    width: 100%;
  }
  .shop__form-field.w50 {
    width: 100%;
  }
  .shop__form-field.w70 {
    width: 100%;
  }
  .shop__label {
    font-size: 16px;
  }
  .cart__note {
    font-size: 16px;
  }
  .shop__controls-logo {
    width: 60px;
  }
}
@media (max-width: 500px) {
  .error__title {
    text-align: left;
  }
}/*# sourceMappingURL=main.css.map */