@charset "UTF-8";
html, body {
  min-height: 100%;
  height: 100%;
  max-width: 1920px;
  margin: 0 auto;
  color: #2E2E2E;
}

h1:not([class]), h2:not([class]), h3:not([class]), h4:not([class]), h5:not([class]) {
  color: #313131;
}

body {
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  line-height: 1.4;
}

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

.container {
  max-width: 1440px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
@media (max-width: 988px) {
  .container {
    padding: 0 16px;
  }
}

footer {
  font-size: 20px;
}

a {
  text-decoration: none;
  color: unset;
}

button {
  color: unset;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.header {
  position: relative;
  z-index: 10;
  background: white;
  min-height: 128px;
  font-size: 36px;
}
@media (max-width: 988px) {
  .header {
    position: fixed;
    width: calc(100% - 32px);
    margin: 16px;
    border-radius: 10px;
    min-height: 0;
  }
}
.header-top {
  background: #5F2D00;
  color: white;
  font-weight: 500;
  font-size: 13px;
  padding: 18px 0;
  position: relative;
  z-index: 2;
}
.header-top__container {
  display: flex;
}
@media (max-width: 988px) {
  .header-top {
    display: none;
  }
}
.header-contacts {
  display: flex;
  justify-content: space-around;
  flex: 0 0 75%;
}
.header-contact {
  display: flex;
  align-items: center;
  position: relative;
  gap: 6px;
  background-image: linear-gradient(to right, #fff, #fff 50%, transparent 50%);
  background-size: 200% 1px;
  background-position: 100% 100%;
  background-repeat: no-repeat;
  transition: all 0.5s ease;
}
.header-contact__link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.header-contact:hover {
  background-position: 0% 100%;
}
.header-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex: 0 0 25%;
}
.header-social {
  width: 22px;
  height: 22px;
  position: relative;
}
.header-social__link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.header-middle {
  position: fixed;
  width: 100%;
  background: white;
  box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.5);
}
@media (max-width: 988px) {
  .header-middle {
    position: static;
    background: transparent;
    border-radius: 10px;
  }
}
.header-middle__container {
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-logo {
  position: relative;
  display: flex;
  align-items: center;
}
.header-logo__link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.header-logo__img {
  width: 225px;
}
@media (max-width: 988px) {
  .header-logo__img {
    width: 150px;
  }
}
.header-menu {
  display: flex;
  gap: 42px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  height: 100%;
}
.header-menu__item {
  height: calc(100% + 32px);
  margin-top: -16px;
  position: relative;
}
.header-menu__item:hover .header-submenu {
  display: flex;
}
.header-menu__link {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  color: rgb(123, 123, 123);
  transition: color 0.3s ease, font-size 0.3s ease;
}
.header-menu__link:hover {
  color: #2E2E2E;
  font-size: 14.2px;
}
@media (max-width: 1200px) {
  .header-menu {
    display: none;
  }
}
.header-menu__submenu {
  position: relative;
}
.header-menu__submenu::after {
  pointer-events: none;
  content: "";
  background: url(../img/arrow-black.svg);
  position: absolute;
  background-repeat: no-repeat;
  top: calc(50% - 4px);
  right: -14px;
  width: 8px;
  height: 8px;
}
.header-submenu {
  background: white;
  padding: 16px;
  position: absolute;
  min-width: 200px;
  left: -16px;
  display: none;
  flex-direction: column;
  gap: 8px;
  border-radius: 10px;
  text-transform: none;
  box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.5);
}
.header-submenu__item:hover {
  color: rgb(123, 123, 123);
}
.header-controls {
  display: flex;
  gap: 30px;
  align-items: center;
}
@media (max-width: 988px) {
  .header-controls {
    gap: 11px;
  }
}
.header-control {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  background: #5F2D00;
  border-radius: 100px;
  position: relative;
}
.header-control__link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.header-control__link[data-quantity]::after {
  content: attr(data-quantity);
  position: absolute;
  top: -5px;
  right: -5px;
  color: #5F2D00;
  width: 20px;
  height: 20px;
  border-radius: 100px;
  background: #e5e5e5;
  font-size: 12px;
  line-height: 1;
  display: grid;
  place-items: center;
  font-weight: 500;
}
.header-burger {
  display: none;
}
@media (max-width: 1200px) {
  .header-burger {
    display: block;
  }
}

.mobile-menu {
  position: fixed;
  max-width: 425px;
  left: -425px;
  width: 100%;
  height: 100%;
  background: #5F2D00;
  z-index: 11;
  overflow-y: auto;
  color: white;
  font-size: 16px;
  transition: left 0.5s ease-in-out;
  display: flex;
  flex-direction: column;
  top: 0;
}
.mobile-menu__link, .mobile-menu__top {
  padding: 16px 50px;
  border-bottom: 1px solid rgba(217, 217, 217, 0.2);
}
.mobile-menu__title {
  font-size: 24px;
}
.mobile-menu__link {
  display: block;
  position: relative;
}
.mobile-menu__submenu .mobile-menu__link::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: url(../img/arrow.svg);
  transition: transform 0.2s ease;
  background-size: contain;
  right: 60px;
  top: calc(50% - 5px);
}
.mobile-menu__submenu.active .mobile-menu__link::after {
  transform: rotate(-180deg);
}
.mobile-menu__submenu.active .mobile-submenu {
  opacity: 1;
  max-height: 636px;
  transform: translateY(0);
  pointer-events: all;
  user-select: all;
}
.mobile-menu__description {
  font-size: 16px;
  margin-top: auto;
  padding: 32px 50px;
}
.mobile-menu__phone {
  font-size: 18px;
}
.mobile-menu__top {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}
.mobile-menu.active {
  left: 0;
}

.mobile-submenu {
  background: #7e491b;
  opacity: 0;
  pointer-events: none;
  user-select: none;
  height: 100%;
  max-height: 0;
  transition: max-height 0.4s ease-out, opacity 0.4s ease-out;
  overflow: hidden;
}
.mobile-submenu__item {
  padding: 0;
  border-bottom: 1px solid rgba(217, 217, 217, 0.2);
}
.mobile-submenu__link {
  padding: 16px 50px 16px 70px;
  display: block;
}

#mobile-menu__close {
  display: flex;
  align-items: center;
}

.home-screen {
  position: relative;
  width: 100%;
  min-height: 768px;
  height: calc(100% - 128px);
  max-height: -webkit-fill-available;
  display: flex;
  align-items: center;
}
@media (max-width: 988px) {
  .home-screen {
    height: 100%;
  }
}
.home-screen__background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.home-screen__container {
  position: relative;
  z-index: 2;
}
.home-screen__content {
  max-width: 1080px;
  width: 100%;
  padding: 80px;
  background: rgba(102, 51, 0, 0.5);
  box-shadow: 10px 4px 20px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 15px;
  color: white;
}
@media (max-width: 988px) {
  .home-screen__content {
    padding: 48px 24px;
    text-align: center;
  }
}
.home-screen__title {
  max-width: 643px;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 45px;
  color: white;
}
@media (max-width: 988px) {
  .home-screen__title {
    font-weight: 700;
    font-size: 28px;
  }
}
.home-screen__description {
  font-size: 24px;
  max-width: 866px;
  margin-bottom: 70px;
}
@media (max-width: 988px) {
  .home-screen__description {
    font-size: 15px;
    margin-bottom: 50px;
  }
}
.home-screen__link {
  background: #F1F1F1;
  border: 1px solid #000000;
  border-radius: 5px;
  font-weight: 300;
  font-size: 20px;
  padding: 20px 80px;
  color: #5F2D00;
  display: inline-block;
  transition: background 0.3s ease;
}
.home-screen__link:hover {
  background: white;
}
@media (max-width: 988px) {
  .home-screen__link {
    padding: 10px 32px;
    font-size: 18px;
  }
}
.home-screen__slider {
  margin-top: 100px;
  display: flex;
  gap: 60px;
  padding-left: 60px;
}
.home-screen__controls {
  display: flex;
}

.home-advantage {
  display: flex;
  align-items: center;
  gap: 11px;
  color: white;
}
.home-advantage__title {
  font-weight: 900;
  font-size: 36px;
  display: inline-block;
  white-space: nowrap;
}
.home-advantage__description {
  font-weight: 300;
  font-size: 13px;
  line-height: 16px;
}

.button-prev, .button-next {
  width: 30px;
  height: 42px;
  position: relative;
  background: #5F2D00;
  cursor: pointer;
  margin-right: 1px;
  z-index: 2;
}
.button-prev::after, .button-next::after {
  content: "";
  position: absolute;
  background: url("../img/slider-arrow.svg");
  top: calc(50% - 7.5px);
  left: calc(50% - 7.5px);
  width: 15px;
  height: 15px;
  pointer-events: none;
}

.button-prev::after {
  transform: rotate(180deg);
}

.home-title {
  font-weight: 700;
  font-size: 25px;
  margin-bottom: 32px;
}

.home-categories {
  margin-top: 80px;
}
.home-categories__list {
  display: grid;
  /* grid-template-columns: repeat(4, calc((100% - 144px) / 4)); */
  grid-template-columns: repeat(3, calc((100% - 96px) / 3));
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}
@media (max-width: 1200px) {
  .home-categories__list {
    grid-template-columns: repeat(3, calc((100% - 96px) / 3));
  }
}
@media (max-width: 988px) {
  .home-categories__list {
    grid-template-columns: 1fr;
  }
}

.product-category img {
  aspect-ratio: 3/2;
  object-fit: contain;
  padding: 50px;
  width: 100% !important;
  background: #F1F1F1;
  transition: background 0.5s ease, padding 0.3s ease;
  border: 0.5px solid #663300;
  border-radius: 20px;
}
@media (max-width: 988px) {
  .product-category img {
    margin-bottom: 0 !important;
    border-radius: 20px 20px 0 0;
  }
}
.product-category img:hover {
  background: #FDFDFD;
  padding: 45px;
}
@media (max-width: 988px) {
  .product-category img {
    padding: 24px !important;
  }
}
.product-category .woocommerce-loop-category__title {
  font-weight: 500;
  font-size: 20px;
}

.home-services {
  margin-top: 80px;
  margin-bottom: 40px;
}
.home-services__list {
  display: grid;
  grid-template-columns: repeat(2, calc((100% - 54px) / 2));
  gap: 54px;
  margin-bottom: 40px;
}
@media (max-width: 988px) {
  .home-services__list {
    grid-template-columns: 1fr;
  }
}
.home-services__link {
  font-weight: 300;
  font-size: 20px;
  padding: 20px 80px;
  border: 1px solid #2E2E2E;
  border-radius: 5px;
  display: inline-block;
  transition: background 0.5s ease;
}
.home-services__link:hover {
  background: #F1F1F1;
}
@media (max-width: 988px) {
  .home-services__link {
    padding: 10px 32px;
    font-size: 18px;
  }
}

.home-service {
  aspect-ratio: 2/1;
  background: #F1F1F1;
  transition: background 0.5s ease;
  border: 1px solid #5F2D00;
  border-radius: 20px;
  padding: 120px 80px;
  display: flex;
  gap: 86px;
  align-items: center;
  position: relative;
}
.home-service:hover {
  background: #FDFDFD;
}
@media (max-width: 1200px) {
  .home-service {
    padding: 80px 40px;
  }
}
@media (max-width: 988px) {
  .home-service {
    padding: 60px;
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
}
.home-service__link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.home-service__title {
  font-weight: 500;
  font-size: 20px;
}

.home-about {
  display: grid;
  grid-template-columns: repeat(2, 50%);
  grid-template-rows: 480px;
  position: relative;
}
@media (max-width: 988px) {
  .home-about {
    display: block;
    padding: 60px 16px;
  }
}
.home-about__content {
  padding: 80px;
  background: #663300;
  color: white;
}
@media (max-width: 988px) {
  .home-about__content {
    background: rgba(102, 51, 0, 0.5);
    box-shadow: 10px 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(22.5px);
    -webkit-backdrop-filter: blur(22.5px);
    text-align: center;
    padding: 64px 32px;
  }
}
.home-about__title {
  font-weight: 500;
  font-size: 25px;
  margin-bottom: 40px;
  color: white;
}
.home-about__description {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 40px;
}
.home-about__link {
  background: #FFFFFF;
  transition: background 0.5s ease;
  border: 1px solid #5F2D00;
  border-radius: 5px;
  padding: 12px 40px;
  color: #2E2E2E;
  display: inline-block;
}
.home-about__link:hover {
  background: #F1F1F1;
}
.home-about__slider .swiper {
  height: 100%;
}
.home-about__slider .swiper img {
  object-fit: cover;
}
@media (max-width: 988px) {
  .home-about__slider {
    display: none;
  }
}
.home-about__buttons {
  position: absolute;
  bottom: 64px;
  right: calc(50% - 31px);
  display: flex;
}
.home-about__background {
  display: none;
}
@media (max-width: 988px) {
  .home-about__background {
    display: block;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
}

.home-news {
  margin-bottom: 120px;
}
.home-news__title {
  margin-top: 60px;
}
.home-news__list {
  display: grid;
  grid-template-columns: repeat(3, calc((100% - 72px) / 3));
  gap: 36px;
  margin-bottom: 40px;
}
@media (max-width: 1200px) {
  .home-news__list {
    grid-template-columns: repeat(3, calc((100% - 36px) / 3));
    gap: 18px;
  }
}
@media (max-width: 988px) {
  .home-news__list {
    grid-template-columns: 1fr;
  }
}
.home-news__link {
  font-weight: 300;
  font-size: 20px;
  padding: 20px 80px;
  border: 1px solid #2E2E2E;
  border-radius: 5px;
  display: inline-block;
  transition: background 0.5s ease;
}
.home-news__link:hover {
  background: #F1F1F1;
}
@media (max-width: 988px) {
  .home-news__link {
    padding: 10px 32px;
    font-size: 18px;
  }
}

.news-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px 15px 0px 0px;
}
.news-card:hover .news-card__img {
  transform: scale(1.1);
}
.news-card__img {
  transition: transform 0.5s ease;
  aspect-ratio: 6/5;
  width: 100%;
  border-radius: 15px 15px 0px 0px;
  display: block;
  object-fit: cover;
}
@media (max-width: 988px) {
  .news-card__img {
    aspect-ratio: 1/1;
  }
}
.news-card__title {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 16px;
}
.news-card__link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.news-card__description {
  font-weight: 500;
  font-size: 16px;
}
.news-card__content {
  background: white;
  position: relative;
  padding: 24px;
  border-radius: 0px 0px 15px 15px;
  border: 0.5px solid rgba(0, 0, 0, 0.25);
  border-top: none;
}
.news-card__date {
  margin-top: 60px;
  font-weight: 500;
  font-size: 16px;
  color: rgba(49, 49, 49, 0.5);
}

.footer {
  padding: 60px 0;
  background: #663300;
  color: white;
}
.footer__container {
  display: grid;
  grid-template-columns: 40% 15% 35%;
  gap: 5%;
}
@media (max-width: 988px) {
  .footer__container {
    display: flex;
    flex-direction: column;
    gap: 60px;
  }
}
.footer-about {
  font-size: 13px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 988px) {
  .footer-about {
    order: 2;
  }
}
.footer-about a {
  font-weight: 700;
}
.footer-copy {
  margin-top: auto;
}
@media (max-width: 988px) {
  .footer-copy {
    margin-top: 32px;
  }
}
.footer-menu {
  font-size: 13px;
}
@media (max-width: 988px) {
  .footer-menu {
    display: none;
  }
}
.footer-menu li {
  list-style-type: none;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.footer-menu li:hover {
  font-weight: 700;
}
.footer-title {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: white;
}
.footer-contacts {
  position: relative;
  padding: 24px 32px;
  border: 1px solid white;
  border-radius: 10px;
  font-size: 13px;
}
@media (max-width: 988px) {
  .footer-contacts {
    order: 1;
  }
}
.footer-contacts__title {
  margin: 0;
  padding: 3px 10px;
  background: #663300;
  position: absolute;
  top: -12px;
  left: 22px;
}
.footer-contacts__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
}

.product-archive__top {
  padding: 40px 16px;
  background-color: #5F2D00;
  background: url("../img/archive-background.jpg");
  background-repeat: no-repeat !important;
  background-size: cover !important;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.product-archive__top * {
  z-index: 3;
}
@media (max-width: 988px) {
  .product-archive__top {
    text-align: center;
  }
}
.product-archive__top::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(360deg, rgba(0, 0, 0, 0.5) -3%, rgba(0, 0, 0, 0) 44.24%);
  z-index: 2 !important;
}
@media (max-width: 988px) {
  .product-archive__top::after {
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.8) -3%, rgba(0, 0, 0, 0) 70%);
  }
}
.product-archive__top .woocommerce-breadcrumb {
  order: 2;
  font-weight: 400;
  font-size: 15px;
}
.product-archive__top .woocommerce-products-header h1 {
  order: 1;
  font-weight: 700;
  font-size: 48px;
  padding: 60px 120px;
  background: rgba(102, 51, 0, 0.5);
  box-shadow: 10px 4px 20px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  display: inline-block;
  margin-bottom: 32px;
  text-align: center;
  color: white;
}
@media (min-width: 989px) {
  .product-archive__top .woocommerce-products-header h1 {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }
}
@media (max-width: 988px) {
  .product-archive__top .woocommerce-products-header h1 {
    font-size: 18px;
    background: none;
    padding: 0;
    padding-top: 80px;
    box-shadow: none;
    margin-bottom: 16px;
  }
}
.product-archive__description {
  font-weight: 500;
  font-size: 20px;
}
@media (max-width: 988px) {
  .product-archive__description {
    text-align: center;
    font-size: 16px;
  }
}

.woocommerce.archive ul.products {
  margin: 64px auto !important;
  padding: 0 20px;
}
@media (max-width: 988px) {
  .woocommerce.archive ul.products {
    margin: 32px auto !important;
    padding: 0 16px;
  }
}
.woocommerce.archive .home-advantages {
  margin-top: 32px;
  margin-bottom: 64px;
}
@media (max-width: 988px) {
  .woocommerce.archive .home-advantages {
    display: block;
    padding: 0;
  }
  .woocommerce.archive .home-advantages .home-screen__controls {
    display: none;
  }
  .woocommerce.archive .home-advantages .swiper-wrapper {
    align-items: center;
  }
}
.woocommerce.archive .home-advantage {
  color: #2E2E2E;
}
@media (max-width: 988px) {
  .woocommerce.archive .home-advantage__title {
    font-size: 24px;
  }
}
@media (max-width: 988px) {
  .woocommerce.archive .product-category .woocommerce-loop-category__title {
    padding: 12px !important;
    border-width: 0px 1px 1px 1px;
    border-style: solid;
    border-color: rgba(49, 49, 49, 0.2);
    border-radius: 0px 0px 15px 15px;
    word-break: break-word;
  }
  .woocommerce.archive .product-category ul.products li.product a img {
    margin: 0;
    border-radius: 15px 15px 0px 0px;
  }
}
.woocommerce.archive .product.type-product img {
  aspect-ratio: 3/2;
  width: 100%;
  background: #F1F1F1;
  transition: background 0.5s ease, padding 0.3s ease;
  padding: 20%;
  border: 0.5px solid #663300;
  border-radius: 20px;
  object-fit: contain;
}
.woocommerce.archive .product.type-product img:hover {
  background: #FDFDFD;
  padding: 18%;
}
@media (max-width: 988px) {
  .woocommerce.archive .product.type-product img {
    border-radius: 15px 15px 0 0;
    margin: 0 !important;
  }
}
.woocommerce.archive .product.type-product .button {
  display: none;
}
.woocommerce.archive .product.type-product .woocommerce-loop-product__title {
  font-weight: 500;
  font-size: 20px;
  padding: 0;
}
@media (max-width: 988px) {
  .woocommerce.archive .product.type-product .woocommerce-loop-product__title {
    font-size: 16px;
    padding: 12px;
    border-radius: 0 0 15px 15px;
    border: 0.5px solid #663300;
    border-top: none;
  }
}
.woocommerce.archive .product.type-product .price {
  display: none;
}

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

.woocommerce .woocommerce-breadcrumb,
.woocommerce .woocommerce-breadcrumb a {
  color: white !important;
}

@media (max-width: 988px) {
  .woocommerce ul.products[class*=columns-] li.product, .woocommerce-page ul.products[class*=columns-] li.product {
    width: 48%;
    float: left;
    clear: both;
    margin: 0 0 2.992em;
  }
  .woocommerce ul.products[class*=columns-] li.product:nth-child(2n), .woocommerce-page ul.products[class*=columns-] li.product:nth-child(2n) {
    float: right;
    clear: none !important;
  }
}
.term-description {
  display: none;
}

.npf-container .woocommerce-info {
  margin: 2em 0;
}

.woocommerce-result-count {
  display: none;
}

.woocommerce-ordering {
  display: none;
}

.woocommerce-page div.product div.images {
  width: 100%;
}

.single-product-wrapper .woocommerce-product-gallery__wrapper img {
  aspect-ratio: 3/2;
  object-fit: contain;
  border: 1px solid rgba(49, 49, 49, 0.2);
  border-radius: 15px;
}

.single-product-wrapper {
  display: grid;
  gap: 58px;
  grid-template-columns: 40% calc(60% - 58px);
}
@media (max-width: 988px) {
  .single-product-wrapper {
    display: block;
  }
}

.single-product-wrapper .summary {
  border-radius: 15px;
  border: 1px solid rgba(49, 49, 49, 0.2);
  padding: 36px;
  width: 100% !important;
}
@media (max-width: 988px) {
  .single-product-wrapper .summary {
    padding: 16px;
  }
}
.single-product-wrapper .product_title {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 16px;
}
.single-product-wrapper .price {
  display: none !important;
  font-weight: 700;
  font-size: 28px !important;
  color: #2E2E2E !important;
}
@media (max-width: 988px) {
  .single-product-wrapper .price {
    display: inline-block;
    max-width: 20%;
  }
}
.single-product-wrapper form {
  display: none;
}
.single-product-wrapper .custom-form {
  margin: 32px 0;
  display: flex;
  gap: 32px;
}
@media (max-width: 988px) {
  .single-product-wrapper .custom-form {
    margin: 0;
  }
}
.single-product-wrapper .custom-form #add-to-cart-quantity {
  font-size: 28px;
  padding: 8px 0;
  max-width: 50px;
  text-align: center;
  border: 1px solid #2E2E2E;
}
@media (max-width: 988px) {
  .single-product-wrapper .custom-form #add-to-cart-quantity {
    font-size: 18px;
    border-radius: 5px;
  }
}
.single-product-wrapper .custom-form #add-to-cart-submit {
  font-size: 16px;
  padding: 14px 32px;
  font-weight: 500;
  text-align: center;
  background: white;
  border: 1px solid #663300;
  border-radius: 5px;
  transition: background 0.5s ease;
}
.single-product-wrapper .custom-form #add-to-cart-submit:hover {
  background: #F1F1F1;
}
@media (max-width: 988px) {
  .single-product-wrapper .custom-form #add-to-cart-submit {
    font-weight: 500;
    font-size: 12px;
    padding: 8px 16px;
  }
}
.single-product-wrapper .custom-form__button {
  cursor: pointer;
}
@media (max-width: 988px) {
  .single-product-wrapper .custom-form {
    display: inline-flex;
    max-width: calc(80% - 16px);
    margin-left: 16px;
    gap: 16px;
  }
}
.single-product-wrapper .product_meta {
  display: none;
}
.single-product-wrapper .custom-attributes {
  margin: 32px 0;
}
.single-product-wrapper .custom-attribute {
  padding: 4px 0;
  display: flex;
}
.single-product-wrapper .custom-attribute:not(:last-child) {
  border-bottom: 1px solid rgba(49, 49, 49, 0.2);
}
.single-product-wrapper .custom-attribute__name {
  flex: 0 0 33%;
  font-weight: 700;
  font-size: 14px;
}
.single-product-wrapper .custom-link {
  font-weight: 400;
  font-size: 14px;
  text-decoration-line: underline;
  color: #663300;
}

.tabs.wc-tabs {
  padding: 0 !important;
  margin: 0 !important;
  border: 1px solid rgba(49, 49, 49, 0.2) !important;
  border-radius: 15px !important;
}
.tabs.wc-tabs::before, .tabs.wc-tabs::after {
  display: none !important;
}
@media (max-width: 988px) {
  .tabs.wc-tabs {
    display: flex;
    justify-content: space-around;
  }
}
.tabs.wc-tabs > li {
  background: transparent !important;
  border: none !important;
  padding: 8px 0 !important;
}
.tabs.wc-tabs > li::before, .tabs.wc-tabs > li::after {
  display: none !important;
}
.tabs.wc-tabs > li > a {
  font-weight: 400 !important;
  font-size: 20px !important;
  padding: 8px 60px !important;
  border-right: 1px solid rgba(49, 49, 49, 0.2) !important;
  display: inline-block;
}
@media (max-width: 988px) {
  .tabs.wc-tabs > li > a {
    font-size: 16px !important;
    padding: 8px 0 !important;
    border: none !important;
  }
}
.tabs.wc-tabs > li.active {
  color: #663300 !important;
}

.woocommerce-tabs .panel {
  margin-top: 60px !important;
  padding: 60px !important;
  border-radius: 15px !important;
  border: 1px solid rgba(49, 49, 49, 0.2) !important;
}
.woocommerce-tabs .panel * {
  margin: revert;
  padding: revert;
}
@media (max-width: 988px) {
  .woocommerce-tabs .panel {
    margin-top: 2em !important;
    padding: 16px !important;
  }
}

#tab-variations {
  padding: 0 !important;
}
#tab-variations .custom-table#variations-table {
  border-collapse: collapse;
  width: 100%;
  font-weight: 400;
  font-size: 18px;
}
@media (max-width: 988px) {
  #tab-variations .custom-table#variations-table {
    display: none !important;
    font-size: 16px;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  #tab-variations .custom-table#variations-table tbody {
    display: table;
    width: 100%;
  }
}
#tab-variations .custom-table#variations-table tr {
  width: 100%;
}
#tab-variations .custom-table#variations-table td:nth-child(1) {
  padding-left: 60px;
}
@media (max-width: 988px) {
  #tab-variations .custom-table#variations-table td:nth-child(1) {
    padding-left: 14px;
  }
}
#tab-variations .custom-table#variations-table td:last-of-type {
  text-align: end;
  padding-right: 60px;
}
@media (max-width: 988px) {
  #tab-variations .custom-table#variations-table td:last-of-type {
    padding-right: 16px;
  }
}
#tab-variations .custom-table#variations-table td:not(:last-of-type) {
  padding-right: 24px;
}
@media (max-width: 988px) {
  #tab-variations .custom-table#variations-table td:not(:last-of-type) {
    padding-right: 16px;
  }
}
#tab-variations .custom-table#variations-table tr:not(:last-child) {
  border-bottom: 1px solid rgba(49, 49, 49, 0.2);
}
#tab-variations .custom-table#variations-table .custom-table__head {
  font-weight: 500;
  font-size: 20px;
}
@media (max-width: 988px) {
  #tab-variations .custom-table#variations-table .custom-table__head {
    font-size: 16px;
  }
}
#tab-variations .custom-table#variations-table td {
  padding: 16px 0;
}
@media (max-width: 988px) {
  #tab-variations .custom-table#variations-table td {
    padding: 8px 0;
  }
}
#tab-variations .custom-table#variations-table button {
  font-weight: 500;
  font-size: 15px;
  padding: 16px 0;
  background: transparent;
  border: 1px solid #663300;
  border-radius: 5px;
  cursor: pointer;
  min-width: 165px;
  transition: background 0.5s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  max-height: 51.25px;
}
#tab-variations .custom-table#variations-table button * {
  pointer-events: none;
}
#tab-variations .custom-table#variations-table button:hover {
  background: #F1F1F1;
}
@media (max-width: 988px) {
  #tab-variations .custom-table#variations-table button {
    min-width: 0;
    font-size: 14px;
    padding: 8px 16px;
  }
}

.single-product #sidebar {
  display: none;
}

.single-product .product.type-product {
  margin-top: 60px;
}

* {
  scroll-behavior: smooth;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  margin: 0 !important;
}

.mobile-variations {
  display: none;
}
@media (max-width: 988px) {
  .mobile-variations {
    display: block;
    margin: 0 !important;
    padding: 0 !important;
  }
}
.mobile-variations .mobile-variation {
  padding: 16px;
}
.mobile-variations .mobile-variation:not(:last-child) {
  border-bottom: 1px solid rgba(49, 49, 49, 0.2) !important;
}
.mobile-variations .mobile-variation__name {
  font-weight: 700;
  font-size: 15px;
  position: relative;
  cursor: pointer;
}
.mobile-variations .mobile-variation__name::after {
  transform: rotate(180deg);
  pointer-events: none;
  content: "";
  background: url(../img/arrow-black.svg);
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
  top: calc(50% - 4px);
  right: 0px;
  width: 10px;
  height: 10px;
}
.mobile-variations .mobile-variation__table {
  margin: 12px 0;
  width: 100%;
}
.mobile-variations .mobile-variation__table td {
  width: 50%;
}
.mobile-variations .mobile-variation__button {
  background: transparent;
  border: 1px solid #663300;
  border-radius: 5px;
  font-weight: 500;
  font-size: 12px;
  padding: 10px;
  width: 100%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
  height: 36px;
}

.mobile-variation.hidden .mobile-variation__content {
  display: none;
}
.mobile-variation.hidden .mobile-variation__name::after {
  transform: rotate(0);
}

.popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  place-items: center;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  padding: 16px;
  overflow-y: auto;
}
.popup__buttons {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.popup__buttons #add-to-cart-popup-submit {
  color: white;
  background: #5F2D00;
  transition: background 0.5s ease;
  border: none;
}
.popup__buttons #add-to-cart-popup-submit:hover {
  background: #7e491b;
}
.popup__title {
  margin-bottom: 8px;
}
.popup__group {
  width: 100%;
}
.popup__group label {
  font-size: 14px;
  padding: 8px 0;
  display: inline-block;
}
.popup__group-wrapper {
  display: flex;
  gap: 16px;
}
@media (max-width: 988px) {
  .popup__group-wrapper {
    flex-wrap: wrap;
  }
}
.popup__wrapper {
  min-width: 320px;
  max-width: 480px;
  width: 100%;
  z-index: 1;
  background: white;
  border-radius: 5px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: start;
  position: relative;
}
@media (max-width: 988px) {
  .popup__wrapper {
    padding: 16px;
  }
}
.popup__wrapper input, .popup__wrapper textarea {
  display: block;
  width: 100%;
  min-height: 50px;
  padding: 12px 19px;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #2E2E2E;
  background-color: #f8f8f8;
  background-image: none;
  border: 1px solid #f8f8f8;
  border-radius: 3px;
}
.popup__wrapper input:focus, .popup__wrapper textarea:focus {
  outline: none;
}
.popup__wrapper textarea {
  overflow: auto;
  resize: vertical;
}
.popup__wrapper button {
  cursor: pointer;
  background: transparent;
  border-radius: 5px;
  border: 1px solid #2E2E2E;
  padding: 8px 16px;
  font-weight: 500;
  margin-top: 16px;
  transition: background 0.5s ease;
}
.popup__wrapper button:hover {
  background: #F1F1F1;
}
.popup__wrapper .popup__cross {
  border: none;
  background: url(../img/cross.svg);
  background-position: center;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  border-radius: 0;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 6px;
  right: 6px;
}

.popup.open {
  display: grid;
}

.cart-top {
  margin-bottom: 72px;
}
@media (max-width: 988px) {
  .cart-top {
    margin-bottom: 36px;
  }
}

.woocommerce-cart-form table {
  border: none !important;
}
.woocommerce-cart-form .tr-actions {
  display: none !important;
}
.woocommerce-cart-form .cart_item {
  border: 1px solid #2E2E2E !important;
  border-radius: 15px;
  margin-bottom: 36px;
  padding: 40px !important;
  display: flex !important;
  align-items: center;
}
@media (max-width: 988px) {
  .woocommerce-cart-form .cart_item {
    flex-direction: column;
    padding: 16px !important;
  }
}
.woocommerce-cart-form .cart_item .cart-td-container {
  display: flex;
  justify-content: space-between;
}
.woocommerce-cart-form .cart_item .cart-td__title_mobile {
  display: none;
}
@media (max-width: 988px) {
  .woocommerce-cart-form .cart_item .cart-td__title_mobile {
    display: block;
    font-weight: 700;
    font-size: 12px;
  }
}
.woocommerce-cart-form .cart_item td {
  width: auto !important;
  padding: 0px !important;
  border: none !important;
  order: 2;
  background: transparent !important;
}
.woocommerce-cart-form .cart_item td::before {
  content: "" !important;
}
@media (max-width: 988px) {
  .woocommerce-cart-form .cart_item .product-quantity {
    width: 100% !important;
    flex: 0 0 100% !important;
    border-bottom: 1px solid #2E2E2E !important;
    padding-bottom: 16px !important;
    margin: 0 !important;
    padding: 16px 0 !important;
  }
}
@media (max-width: 988px) {
  .woocommerce-cart-form .cart_item .product-price {
    width: 100% !important;
    flex: 0 0 100% !important;
    border-bottom: 1px solid #2E2E2E !important;
    padding-bottom: 16px !important;
    margin: 0 !important;
    padding: 16px 0 !important;
  }
}
@media (max-width: 988px) {
  .woocommerce-cart-form .cart_item .product-remove {
    padding: 16px 0 !important;
    width: 100% !important;
    flex: 0 0 100% !important;
  }
}
.woocommerce-cart-form .cart_item .product-thumbnail {
  flex: 0 0 120px;
  margin-right: 40px;
  width: 120px !important;
}
@media (max-width: 988px) {
  .woocommerce-cart-form .cart_item .product-thumbnail {
    flex: 0 0 auto;
    width: 100% !important;
    border-bottom: 1px solid #2E2E2E !important;
    padding-bottom: 16px !important;
    margin: 0 !important;
    order: 1;
    padding-top: 16px !important;
    display: block !important;
  }
}
.woocommerce-cart-form .cart_item .product-thumbnail a {
  height: 100% !important;
  width: 100% !important;
  display: inline-flex !important;
  border: 1px solid #2E2E2E;
  border-radius: 15px;
  max-width: 120px !important;
  justify-content: center;
  align-items: center;
}
.woocommerce-cart-form .cart_item .product-thumbnail img {
  width: 100% !important;
  aspect-ratio: 6/5 !important;
  object-fit: contain !important;
}
.woocommerce-cart-form .cart_item .product-name {
  font-weight: 700;
  font-size: 20px;
  width: calc(50% - 120px) !important;
  flex: 0 0 calc(50% - 120px);
}
@media (max-width: 988px) {
  .woocommerce-cart-form .cart_item .product-name {
    order: 0;
    flex: 0 0 auto;
    width: 100% !important;
    border-bottom: 1px solid #2E2E2E !important;
    padding-bottom: 16px !important;
    padding-top: 0 !important;
    margin: 0 !important;
  }
  .woocommerce-cart-form .cart_item .product-name a {
    font-weight: 700;
    font-size: 12px;
  }
}
.woocommerce-cart-form .cart_item .quantity input {
  font-size: 28px;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 5px;
  border: 1px solid #2E2E2E;
  outline: none;
}
.woocommerce-cart-form .cart_item .product-price {
  font-weight: 700;
  font-size: 28px;
}
@media (max-width: 988px) {
  .woocommerce-cart-form .cart_item .product-price {
    font-size: 16px;
  }
}
.woocommerce-cart-form .cart_item .woocommerce-Price-currencySymbol::before {
  content: " ";
}
.woocommerce-cart-form .cart_item .product-remove {
  margin-left: auto !important;
}
.woocommerce-cart-form .cart_item a.remove {
  display: flex !important;
  justify-content: center;
  padding: 0 36px !important;
  align-items: center;
  font-weight: 500 !important;
  font-size: 15px !important;
  width: auto !important;
  height: auto !important;
  text-align: center;
  line-height: 1;
  border-radius: 5px;
  color: #2E2E2E !important;
  background: transparent !important;
  transition: background 0.5s ease;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid #2E2E2E !important;
  height: 50px !important;
}
.woocommerce-cart-form .cart_item a.remove:hover {
  background: #F1F1F1 !important;
  color: #2E2E2E !important;
}
.woocommerce-cart-form .cart_item .no-price {
  font-size: 16px;
  font-weight: 500;
}

.cart_totals {
  width: 100% !important;
}
.cart_totals h2 {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 26px;
}
.cart_totals table {
  border: none !important;
}
.cart_totals tr {
  padding: 36px 48px;
  display: flex;
  gap: 36px;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #2E2E2E;
  box-shadow: 10px 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
}
.cart_totals tr > * {
  padding: 0 !important;
  width: auto !important;
}
.cart_totals tr th {
  font-weight: 700;
  font-size: 18px;
}
.cart_totals tr td {
  font-weight: 700;
  font-size: 28px;
}
.cart_totals .woocommerce-Price-currencySymbol::before {
  content: " ";
}
.cart_totals .wc-proceed-to-checkout {
  text-align: right;
  padding: 0;
}
.cart_totals .checkout-button {
  display: inline-flex !important;
  justify-content: center;
  padding: 0 36px !important;
  align-items: center;
  font-weight: 700 !important;
  font-size: 15px !important;
  width: auto !important;
  height: auto !important;
  text-align: center;
  line-height: 1;
  border-radius: 5px !important;
  color: white !important;
  background: #5F2D00 !important;
  transition: background 0.5s ease;
  text-decoration: none;
  font-weight: 700;
  border: none !important;
  height: 50px !important;
  margin-bottom: 0 !important;
}
.cart_totals .checkout-button:hover {
  background: #7e491b !important;
}
@media (max-width: 988px) {
  .cart_totals .checkout-button {
    width: 100% !important;
  }
}

.woocommerce table.shop_table {
  margin: 0 !important;
}

.swal-text {
  text-align: center !important;
}

.swal-modal {
  width: 100%;
  max-width: 460px;
  min-width: 320px;
}

.swal-button {
  background: #5F2D00 !important;
}

.swal-button:focus {
  box-shadow: none;
  outline: none;
}

.swal-button:focus-visible {
  outline: 1px auto #101010;
}

form.woocommerce-checkout.checkout {
  display: flex;
  gap: 2%;
  margin-bottom: 72px;
  flex-wrap: wrap;
}
@media (max-width: 988px) {
  form.woocommerce-checkout.checkout {
    gap: 32px;
    flex-direction: column;
  }
  form.woocommerce-checkout.checkout .form-row-last, form.woocommerce-checkout.checkout .form-row-first {
    width: 49%;
  }
}
form.woocommerce-checkout.checkout .custom-checkout__col {
  grid: 0 0 49%;
  width: 100%;
  max-width: 49%;
  padding: 32px;
  border: 1px solid #2E2E2E;
  border-radius: 10px;
}
@media (max-width: 988px) {
  form.woocommerce-checkout.checkout .custom-checkout__col {
    grid: 0 0 100%;
    max-width: 100%;
    padding: 16px 8px;
  }
}
form.woocommerce-checkout.checkout h3 {
  font-weight: 700;
  font-size: 20px;
}
form.woocommerce-checkout.checkout label {
  font-size: 14px;
  padding: 8px 0;
  display: inline-block;
}
form.woocommerce-checkout.checkout input, form.woocommerce-checkout.checkout textarea {
  display: block;
  width: 100%;
  min-height: 50px;
  padding: 12px 19px;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #2E2E2E;
  background-color: #f8f8f8;
  background-image: none;
  border: 1px solid #f8f8f8;
  border-radius: 3px;
}
form.woocommerce-checkout.checkout textarea {
  overflow: auto;
  resize: vertical;
  height: auto;
  min-height: 150px;
}
form.woocommerce-checkout.checkout .woocommerce-additional-fields h3 {
  display: none;
}
form.woocommerce-checkout.checkout .woocommerce-NoticeGroup-checkout {
  flex: 0 0 100%;
  width: 100%;
}

#order_review {
  margin-top: 32px;
}
#order_review .woocommerce-checkout-review-order-table tfoot {
  display: none;
}
#order_review .woocommerce-checkout-payment {
  margin-top: 32px;
}
#order_review .woocommerce-checkout-payment .wc_payment_methods {
  display: none;
}
#order_review .woocommerce-privacy-policy-text {
  font-weight: 300;
}
#order_review .woocommerce-privacy-policy-text .woocommerce-privacy-policy-link {
  color: #5F2D00;
  transition: color 0.5s ease;
  font-weight: 500;
}
#order_review .woocommerce-privacy-policy-text .woocommerce-privacy-policy-link:hover {
  color: #7e491b;
}
#order_review #payment {
  background: #f8f8f8;
}
#order_review #place_order {
  background: #5F2D00;
  transition: background 0.5s ease;
  color: white;
  border-radius: 5px;
  padding: 16px;
  font-weight: 700;
  margin-top: 32px;
}
#order_review #place_order:hover {
  background: #7e491b;
}

.woocommerce-order .woocommerce-table--order-details tfoot {
  display: none;
}
.woocommerce-order .woocommerce-customer-details {
  display: none;
}
.woocommerce-order .woocommerce-thankyou-order-received {
  margin-bottom: 16px;
}
.woocommerce-order .woocommerce-thankyou-order-details {
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}
.woocommerce-order ul.order_details {
  margin-bottom: 16px !important;
}
.woocommerce-order .woocommerce-order-details {
  margin-top: 36px;
}
.woocommerce-order .woocommerce-order-details .woocommerce-order-details__title {
  margin-bottom: 16px;
}
@media (max-width: 988px) {
  .woocommerce-order .woocommerce-thankyou-order-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .woocommerce-order .woocommerce-thankyou-order-details li {
    border: none !important;
  }
}

.default-container {
  margin-bottom: 72px;
}

.cart-collaterals .blockUI {
  display: none !important;
}

@keyframes ldio-4o5fxyrzbw9 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.ldio-4o5fxyrzbw9 div {
  box-sizing: border-box !important;
}

.ldio-4o5fxyrzbw9 > div {
  position: absolute;
  width: 72px;
  height: 72px;
  top: 14px;
  left: 14px;
  border-radius: 50%;
  border: 8px solid #000;
  border-color: #000000 transparent #000000 transparent;
  animation: ldio-4o5fxyrzbw9 2s linear infinite;
}

.ldio-4o5fxyrzbw9 > div:nth-child(2) {
  border-color: transparent;
}

.ldio-4o5fxyrzbw9 > div:nth-child(2) div {
  position: absolute;
  width: 100%;
  height: 100%;
  transform: rotate(45deg);
}

.ldio-4o5fxyrzbw9 > div:nth-child(2) div:before, .ldio-4o5fxyrzbw9 > div:nth-child(2) div:after {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  top: -8px;
  left: 24px;
  background: #000000;
  border-radius: 50%;
  box-shadow: 0 64px 0 0 #000000;
}

.ldio-4o5fxyrzbw9 > div:nth-child(2) div:after {
  left: -8px;
  top: 24px;
  box-shadow: 64px 0 0 0 #000000;
}

.loadingio-spinner-dual-ring-v6z2eci8d1 {
  width: 24px;
  height: 24px;
  display: inline-block;
  overflow: hidden;
  background: transparent;
}

.ldio-4o5fxyrzbw9 {
  width: 100%;
  height: 100%;
  position: relative;
  transform: translateZ(0) scale(0.24);
  backface-visibility: hidden;
  transform-origin: 0 0; /* see note above */
}

.ldio-4o5fxyrzbw9 div {
  box-sizing: content-box;
}

/* generated by https://loading.io/ */
.add-to-cart-loader {
  display: none;
}

.woocommerce-Tabs-panel--description table td {
  border: 1px solid #2E2E2E;
  padding: 4px !important;
}

.custom__table-wrapper {
  overflow: auto;
}

.archive .products {
  display: grid;
  grid-template-columns: repeat(4, calc((100% - 144px) / 4));
  gap: 48px;
}
@media (max-width: 988px) {
  .archive .products {
    grid-template-columns: repeat(2, calc((100% - 16px) / 2));
    gap: 16px;
  }
}
.archive .products .product {
  width: 100% !important;
}
.archive .products::before, .archive .products::after {
  display: none !important;
}
.archive.post-type-archive-news .products {
  gap: 32px;
  grid-template-columns: repeat(4, calc((100% - 96px) / 4));
}
@media (max-width: 988px) {
  .archive.post-type-archive-news .products {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.related {
  display: none;
}

.popup-search-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: -150px;
  height: 150px;
  width: 100%;
  padding: 0 63px 0 63px;
  margin: 0 auto;
  z-index: 4000;
  background: #fff;
  -webkit-box-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.5s;
  color: #888;
  font-size: 26px;
}
.popup-search-container svg {
  width: 26px;
}
@media (max-width: 988px) {
  .popup-search-container {
    padding: 0 16px 0 16px;
    height: 86px;
  }
  .popup-search-container svg {
    width: 16px;
  }
}

.popup-search-form {
  flex-grow: 1;
  margin: 0 40px 0 40px;
}
@media (max-width: 988px) {
  .popup-search-form {
    margin: 0 16px 0 16px;
  }
}

.popup-search-form-input {
  background: transparent;
  border: none;
  width: 100%;
  color: #1d1d1d;
  font-size: 26px;
  line-height: 40px;
  height: 40px;
  outline: none;
}
@media (max-width: 988px) {
  .popup-search-form-input {
    font-size: 16px;
  }
}

.popup-search-container.open {
  top: 0px;
}

.global-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: -2000;
  opacity: 0;
  transition: opacity 0.4s;
}
.global-overlay.active {
  z-index: 2000;
  opacity: 1;
}

.popup-search-close {
  cursor: pointer;
}

.default-content {
  font-weight: 500;
  font-size: 20px;
}
@media (max-width: 988px) {
  .default-content {
    font-size: 16px;
    text-align: center;
  }
}

.services-list {
  margin-bottom: 64px;
}

.services-item {
  margin-bottom: 48px;
}
.services-item__container {
  display: grid;
  gap: 60px;
  grid-template-columns: 40% calc(60% - 60px);
  grid-template-rows: repeat(3, auto);
}
@media (max-width: 988px) {
  .services-item__container {
    grid-template-columns: repeat(2, calc((100% - 16px) / 2));
    gap: 16px;
  }
}
.services-item__img {
  grid-row: 1/4;
  aspect-ratio: 1/1;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 988px) {
  .services-item__img {
    grid-row: 1/2;
  }
}
@media (max-width: 988px) {
  .services-item .content {
    grid-row: 2/3;
  }
}
.services-item:nth-of-type(2n) .services-item__img {
  grid-column: 2/3;
}
@media (max-width: 988px) {
  .services-item:nth-of-type(2n) .services-item__img {
    grid-row: 1/2;
  }
}
.services-item:nth-of-type(2n) .services-item__container {
  grid-template-columns: calc(60% - 60px) 40%;
}
@media (max-width: 988px) {
  .services-item:nth-of-type(2n) .services-item__container {
    grid-template-columns: repeat(2, calc((100% - 16px) / 2));
    gap: 16px;
  }
}
.services-item__title {
  font-size: 36px;
  margin-bottom: 32px;
}
@media (max-width: 988px) {
  .services-item__title {
    font-size: 18px;
    margin-bottom: 8px;
  }
}
.services-item__text {
  font-weight: 500;
  font-size: 20px;
}
@media (max-width: 988px) {
  .services-item__text {
    font-size: 13px;
  }
}
.services-item__table {
  border: 1px solid rgba(49, 49, 49, 0.2);
  border-radius: 15px;
}
@media (max-width: 988px) {
  .services-item__table {
    grid-column: 1/3;
  }
}
.services-item__table table {
  font-weight: 400;
  font-size: 16px;
  height: 100% !important;
}
@media (max-width: 988px) {
  .services-item__table table {
    font-size: 12px;
  }
}
.services-item__table table tr:first-of-type {
  font-weight: 500;
  font-size: 20px;
}
@media (max-width: 988px) {
  .services-item__table table tr:first-of-type {
    font-size: 12px;
  }
}
.services-item__table table tbody {
  height: 100%;
}
.services-item__table table tr {
  border-bottom: 1px solid rgba(49, 49, 49, 0.2);
}
.services-item__table table tr:last-child {
  border-bottom: none;
}
.services-item__table table td {
  padding: 12px 24px;
}
@media (max-width: 988px) {
  .services-item__table table td {
    padding: 8px;
  }
}
.services-item__button {
  cursor: pointer;
  background: transparent;
  border-radius: 5px;
  border: 1px solid #2E2E2E;
  padding: 12px 24px;
  font-weight: 500;
  margin-top: 16px;
  justify-self: start;
  align-self: end;
  transition: background 0.5s ease;
}
.services-item__button:hover {
  background: #F1F1F1;
}
@media (max-width: 988px) {
  .services-item__button {
    grid-column: 1/3;
    justify-self: auto;
    margin-top: 0;
  }
}

#tab-description ul {
  list-style-type: disc;
}

#tab-description h1, #tab-description h2, #tab-description h3, #tab-description h4, #tab-description h5 {
  color: #663300;
  font-size: 20px;
}

.woocommerce-pagination {
  margin-bottom: 64px;
}
@media (max-width: 988px) {
  .woocommerce-pagination {
    margin-bottom: 32px;
  }
}
.woocommerce-pagination ul {
  border: none !important;
}
.woocommerce-pagination li {
  width: 32px;
  height: 32px;
  background: #5F2D00;
  color: white !important;
  border: none !important;
  margin-right: 1px !important;
}
.woocommerce-pagination .next, .woocommerce-pagination .prev {
  color: transparent !important;
  position: relative;
}
.woocommerce-pagination .next:hover, .woocommerce-pagination .prev:hover {
  background: #a36d3e !important;
  color: transparent !important;
}
.woocommerce-pagination .next:focus, .woocommerce-pagination .prev:focus {
  background: #a36d3e !important;
  color: transparent !important;
}
.woocommerce-pagination .next::after, .woocommerce-pagination .prev::after {
  content: "";
  background: url(../img/slider-arrow.svg);
  background-repeat: no-repeat;
  width: 15px;
  height: 15px;
  position: absolute;
  top: calc(50% - 7.5px);
}
.woocommerce-pagination .prev::after {
  transform: rotate(180deg);
}
.woocommerce-pagination a {
  font-weight: 500 !important;
  font-size: 20px !important;
  padding: 0 !important;
  height: 100%;
  display: grid !important;
  place-items: center;
}
.woocommerce-pagination a:hover {
  background: #a36d3e !important;
  color: white !important;
}
.woocommerce-pagination a:focus {
  background: #a36d3e !important;
  color: white !important;
}
.woocommerce-pagination span {
  background: #a36d3e !important;
  color: white !important;
  font-weight: 500 !important;
  font-size: 20px !important;
  padding: 0 !important;
  height: 100%;
  display: grid !important;
  place-items: center;
}

/* стили поля выбора города --> */
.select-city {
  min-width: 170px;
  position: relative;
  user-select: none;
  z-index: 1;
}

.select-city__input {
  min-height: 31px;
  display: flex;
  align-items: center;
  /* gap: 4px; */
}

.select-city__input > svg {
  fill: white;
  width: 16px;
  height: 16px;
}

.select-city__button.active {
  width: 130px;
}

.select-city__button_link {
  color: white !important;
  font-weight: 400;
  font-size: 14px;
  cursor: pointer;
  position: relative;
  padding: 0 10px;
  display: flex;
  padding-left: 4px;
}

.select-city__input > svg {
  margin-bottom: 1px;
}

.select-city__button.active {
  display: block;
  color: white !important;
}

.select-city__button {
  display: block;
  width: 100%;
  font-size: 16px;
  padding: 5px 10px !important;
  margin: 0 !important;
  border: none;
  background: none;
  display: none;
  height: unset !important;
  border-radius: 0;
}

.select-city__list.hide {
  display: none;
}

.select-city__list {
  display: flex;
  flex-direction: column;
  padding: 5px !important;
  margin: 0;
  position: absolute;
  width: 120%;
  max-height: 180px;
  overflow-y: scroll;
  top: 39px;
  background: white;
  -webkit-box-shadow: 0px 2px 8px 0px rgba(34, 60, 80, 0.25);
  -moz-box-shadow: 0px 2px 8px 0px rgba(34, 60, 80, 0.25);
  box-shadow: 0px 2px 8px 0px rgba(34, 60, 80, 0.25);
}
@media (max-width: 988px) {
  .select-city__list {
    width: 100%;
    max-height: 130px;
  }
}

.select-city__link {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 14px;
  padding: 5px 10px;
  color: rgb(123, 123, 123);
}

.select-city__item {
  list-style-type: none;
}

.select-city {
  width: unset;
}

.select-city__button_link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 8px;
  right: -8px;
  border: 5px solid white;
  border-right-color: white;
  border-bottom-color: white;
  border-bottom-style: solid;
  border-bottom-width: 5px;
  border-left-color: white;
  border-bottom: none;
  border-left-color: transparent;
  border-right-color: transparent;
}

@media (min-width: 1200px) and (max-width: 1400px) {
  .header__middle__inner .input__inner {
    width: 300px;
  }
}
.select-city__item.hidden {
  display: none;
}

.header__middle__inner .select-city__button.active {
  color: #000 !important;
}

.select-city__list.hidden {
  display: none;
}

.select-city__item a:hover {
  background-color: lightgrey;
  color: #2E2E2E;
}

.select-scroll::-webkit-scrollbar, .catalog-sidebar-menu-subcategories::-webkit-scrollbar {
  width: 5px;
}

.select-scroll::-webkit-scrollbar-thumb, .catalog-sidebar-menu-subcategories::-webkit-scrollbar-thumb {
  background: #7e491b;
}

.select-scroll::-webkit-scrollbar-track, .catalog-sidebar-menu-subcategories::-webkit-scrollbar-track {
  border-radius: 0 4px 4px 0;
  background-color: #f9f9fb;
}

.select-city__button_link.hide {
  display: none;
}

.select-city__button:focus {
  border-bottom: 1px #5F2D00 solid;
  outline: none;
}

.select-city__button:focus-visible {
  outline: none;
}

.select-city_mobil {
  display: none;
}

@media screen and (max-width: 992px) {
  .select-city_desctop {
    display: none;
  }
  .select-city_mobil {
    display: block;
  }
}
/* <-- стили поля выбора города */
.contacts-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 988px) {
  .contacts-content {
    grid-template-columns: repeat(1, 1fr);
  }
}

.contacts-text__title {
  font-size: 37px;
  font-weight: 400;
  margin-bottom: 30px;
}

.contacts-text__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 60px;
}

.contacts-text__link {
  border-bottom: 1px solid #000;
  transition: border-color 0.3s ease;
}

.contacts-text__link:hover {
  border-color: transparent;
  font-weight: 500;
}

.contacts-content a:hover {
  font-weight: 500;
}

.contacts-schedule {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 18px;
  margin-bottom: 60px;
}

.contacts-schedule__values {
  display: flex;
  margin-top: 4px;
  font-weight: 700;
}

.contacts-schedule__value:first-child {
  position: relative;
  padding-right: 88px;
}

.contacts-schedule__value:first-child::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 80px;
  height: 1px;
  background: #000;
}

.contacts-schedule__title {
  font-weight: 500;
}

.contacts-text__map {
  margin: 0 -16px;
}
.contacts-text__map iframe {
  width: 100%;
}

.success-message {
  font-size: 24px;
  text-align: center;
  margin: 40px 0;
}

.success-message.hide {
  display: none;
}

.contacts-form {
  font-size: 20px;
  display: flex;
  align-items: start;
  flex-direction: column;
  margin-bottom: 120px;
}

.contacts-text__title {
  font-size: 37px;
  font-weight: 400;
  margin-bottom: 30px;
}
@media (max-width: 988px) {
  .contacts-text__title {
    font-weight: 400;
    font-size: 28px;
    margin-bottom: 20px;
  }
}

.contacts-form__input {
  border: none;
  padding: 13px;
  width: 100%;
  border-bottom: 1px solid #000;
}

.contacts-form__input {
  border: none;
  padding: 13px;
  width: 100%;
  border-bottom: 1px solid #000;
}

.contacts-form__message {
  padding: 0 13px;
  line-height: 46px;
  border: none;
  z-index: 1;
  width: 100%;
  background: linear-gradient(transparent, transparent 45px, #000 0);
  background-size: 100% 46px;
  background-attachment: local;
  resize: none;
  margin-bottom: 40px;
}

.contacts-form__bottom {
  display: flex;
  align-items: center;
}

.contacts-submit {
  padding: 10px 24px;
  display: block;
  font-weight: 500;
  font-size: 18px;
  background: 0 0;
  border-radius: 3px;
  margin-right: 24px;
  transition: background 0.5s ease;
  cursor: pointer;
}
.contacts-submit:hover {
  background: #F1F1F1;
}

.contacts-form__description {
  max-width: 320px;
  font-weight: 300;
  font-size: 13px;
}

.privacy_url {
  text-decoration: underline;
}

.contacts-map {
  margin-bottom: 120px;
}
.contacts-map.hide {
  display: none;
}

.contacts-map > div {
  position: sticky !important;
  top: 0;
  width: 100%;
  height: 100vh;
}

.contacts-content iframe {
  border: none;
  outline: 0;
}

.contacts-map iframe {
  width: 100% !important;
  height: 100vh !important;
}

textarea {
  overflow: auto;
}

.contacts-form input, .contacts-form textarea {
  outline: none;
}

.default-container p:not([class]), .default-container h1:not([class]), .default-container h2:not([class]), .default-container h3:not([class]), .default-container h4:not([class]), .default-container h5:not([class]) {
  margin: revert;
  padding: revert;
}

.contacts-form.hide {
  display: none;
}

.select-city_mobile {
  padding: 16px 50px;
}

.contacts-mobile .header-contact {
  padding: 16px 50px;
}

.mobile-menu__additional {
  margin-top: auto;
  margin-bottom: 60px;
}

.single-news__top-container {
  display: grid;
  gap: 60px;
  grid-template-columns: 40% calc(60% - 60px);
}
@media (max-width: 988px) {
  .single-news__top-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.single-news__title {
  font-size: 36px;
}
@media (max-width: 988px) {
  .single-news__title {
    font-size: 24px;
  }
}
.single-news__content_first {
  display: grid;
  align-items: center;
}
@media (max-width: 988px) {
  .single-news__content_first {
    order: 1;
  }
}
.single-news__image_first {
  object-fit: contain;
  width: 100%;
  border-radius: 15px;
}
@media (max-width: 988px) {
  .single-news__image_first {
    order: 2;
  }
}
.single-news__date {
  align-self: flex-end;
  font-size: 16px;
  color: rgba(49, 49, 49, 0.5);
}
.single-news__content p {
  margin: 60px 0 !important;
}
@media (max-width: 988px) {
  .single-news__content p {
    margin: 32px 0 !important;
  }
}
.single-news__content table.not-table tr {
  display: flex;
  gap: 60px;
  align-items: center;
}
@media (max-width: 988px) {
  .single-news__content table.not-table tr {
    flex-direction: column;
    gap: 16px;
  }
}
.single-news__content table.not-table tr td {
  width: 100% !important;
}
.single-news__content table.not-table img {
  border-radius: 15px;
  width: 100%;
  object-fit: contain;
}
.single-news h2:not([class]), .single-news p:not([class]) {
  margin: revert;
  padding: revert;
}

.galleries-control {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 988px) {
  .galleries-control {
    gap: 12px;
  }
}
.galleries-control__link {
  padding: 12px 24px;
  font-weight: 500;
  font-size: 18px;
  border: 1px solid #663300;
  border-radius: 5px;
}
@media (max-width: 988px) {
  .galleries-control__link {
    width: 100%;
    text-align: center;
    font-size: 12px;
    padding: 6px 12px;
  }
}
.galleries-control__link.active {
  background: #7e491b;
  color: white;
  border: 1px solid transparent;
}

.post-type-archive-galleries .product-archive__top {
  margin-bottom: 40px;
}

.gallery-content__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 60px;
}
@media (max-width: 988px) {
  .gallery-content__list {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 32px;
  }
}

.gallery-content__wrapper {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-content__item {
  object-fit: cover;
  width: 100%;
  aspect-ratio: 1;
}

.gallery-content__item {
  object-fit: cover;
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
}

.gallery-content__item {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-content__wrapper::after {
  content: "";
  opacity: 0;
  position: absolute;
  top: calc(50% - 24px);
  left: calc(50% - 24px);
  width: 48px;
  height: 48px;
  transition: opacity 0.3s ease;
  pointer-events: none;
  background: url(../img/magnifying-glass-plus-solid.svg);
  z-index: 3;
}

.gallery-content__wrapper:hover::after {
  opacity: 1;
}

.gallery-content__wrapper::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: transparent;
  z-index: 2;
  transition: background 0.3s ease;
  pointer-events: none;
}

.gallery-content__wrapper:hover::before {
  background: rgba(0, 0, 0, 0.3);
}
.gallery-content__wrapper:hover .gallery-content__item {
  transform: scale(1.1);
}

.gallery-content__item_skeleton {
  width: 100%;
  aspect-ratio: 1;
  background-image: linear-gradient(90deg, #ddd 0px, #e8e8e8 40px, #ddd 80px);
  background-size: 600px;
}

.home-advantage.not-home {
  color: black !important;
}

@media (max-width: 1200px) {
  .home .home-screen__slider {
    display: none;
  }
}

@media (max-width: 988px) {
  .home-screen__slider {
    margin-top: 32px;
    gap: 0;
    padding-left: 0;
  }
}

@media (max-width: 988px) {
  .home-screen__controls {
    display: none;
  }
}

.galleries-container {
  margin-bottom: 72px;
}

.archive__additional-description {
  margin-top: 60px;
  font-weight: 500;
  font-size: 20px;
}
@media (max-width: 988px) {
  .archive__additional-description {
    margin-top: 32px;
    font-size: 16px;
    text-align: center;
  }
}

@media (max-width: 988px) {
  .about-content {
    text-align: center;
  }
}
.about-content .swiper {
  width: 50%;
  margin-left: 60px;
  float: right;
  aspect-ratio: 720/437;
  position: relative;
}
@media (max-width: 988px) {
  .about-content .swiper {
    width: 100%;
    float: none;
    margin-left: 0;
  }
}
.about-content .swiper-buttons {
  display: flex;
  position: absolute;
  bottom: 32px;
  width: 100%;
  justify-content: center;
}
@media (max-width: 988px) {
  .about-content .swiper-buttons {
    display: none;
  }
}
.about-content .swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-content p {
  margin: 40px 0 !important;
}
@media (max-width: 988px) {
  .about-content p {
    margin: 16px 0 !important;
  }
}

/*# sourceMappingURL=main.css.map */
