@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Breadcrumbs */

.breadcrumbs > span {
  display: flex;
  gap: 10px;
  white-space: nowrap;
  overflow-x: auto;
  padding-top: 15px;
  padding-bottom: 15px;
  font-weight: 500;
}

.breadcrumb_last {
  font-weight: 400;
}

@media (max-width: 600px) {
  .breadcrumbs > span {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

/* Headline */

.page-headline {
  text-align: center;
}
.page-headline h1 {
  display: block;
  margin: 20px 0;
  line-height: 100%;
}

.prety-h1 {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.prety-h1 img {
  margin-top: 8px;
}

@media (max-width: 1120px) {
  .prety-h1 img {
    display: none !important;
  }
}

/* Catalog */

.catalog__body {
  margin-bottom: 50px;
}

.catalog__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 50px;
}

.listing-product_el {
  background: #f7f7f7;
  padding: 10px;
  position: relative;
}

.listing-product_el:hover {
  z-index: 3;
}

.listing-product_info {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.listing-product_visible > a {
  display: block;
  text-align: center;
  text-align: -webkit-center;
  margin-bottom: 20px;
}

.listing-product_el img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 340px;
  max-width: 340px;
}

.listing-product_el .name a {
  display: block;
}

.listing-product_el .product-name {
  max-height: 33px;
  overflow: hidden;
  font-weight: 400;
  line-height: 1.2 !important;
}

.listing-product_el .product-brands {
  font-size: 1.3em;
  line-height: 130%;
  font-weight: 700;
  margin-bottom: 10px;
}

.listing-product_el .product-price {
  font-size: 24px;
  font-weight: 500;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
}

.product-price del {
  font-size: 0.5em;
  text-align: right;
  margin-bottom: 5px;
  opacity: 0.5;
}

.product-price ins {
  text-decoration: none;
}

.listing-product_add-to-cart {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.listing-product_add-to-cart .added_to_cart {
  padding-top: 0.5em;
}

.listing-product_add-to-cart a.product_type_simple,
.listing-product_add-to-cart .product_type_variable.add_to_cart_button {
  background-color: transparent !important;
  padding: 12px 36px 12px;
  border: 1px solid #262730;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  gap: 5px;
  transition: 0.3s;
  align-items: center;
  flex-direction: row-reverse;
}

.listing-product_add-to-cart a.product_type_simple:hover,
.listing-product_add-to-cart .product_type_variable.add_to_cart_button:hover {
  border-color: #beab8d;
  background: #beab8d !important;
  color: white;
}

.category-description {
  background: #f7f7f7;
  padding: 30px 40px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.loader-listing .listing-product_el {
  overflow: hidden;
}

.loader-listing .listing-product_el:before {
  content: "";
  display: block;
  background: linear-gradient(-45deg, #f7f7f7, #d9d9d9, #ededed);
  background-size: 400% 400%;
  animation: gradient 3s ease infinite;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  border-radius: 3px;
}

.stock.in-stock {
  display: none !important;
}

@media (min-width: 1420px) {
  .listing-product_el .product-price {
    font-size: 32px;
  }
}

@media (min-width: 1180px) {
  .listing-product_el {
    width: calc(100% / 4 - 3.75px);
  }

  .listing-product_visible {
    z-index: 1;
    position: relative;
    background: inherit;
  }

  .listing-product_add-to-cart {
    width: 100%;
    position: absolute;
    /* bottom: -60px; */
    background: inherit;
    left: 0;
    padding: 0 10px 20px 10px;
    justify-content: center;
    transform: translateY(-200%);
    transition: 0.3s;
  }

  .listing-product_el:hover .listing-product_add-to-cart {
    transform: translateY(10px);
  }
}

@media (max-width: 1180px) {
  .listing-product_el {
    width: calc(100% / 3 - 3.34px);
  }
  .listing-product_add-to-cart {
    margin: 10px 0;
  }
}

@media (min-width: 1040px) {
  .listing-product_el .name {
    max-width: 170px;
  }
}

@media (max-width: 1040px) {
  .listing-product_el {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
  }
  .listing-product_info {
    flex-direction: column;
  }
  .listing-product_el .product-price del {
    text-align: center;
    margin: 0;
  }
}

@media (min-width: 700px) {
  .listing-product_el {
    transition: 0.3s;
  }

  .listing-product_el:hover {
    box-shadow: 0px 6px 12px rgb(0 0 0 / 12%);
  }

  .listing-product_el:hover .listing-product_add-to-cart {
    box-shadow: 0px 12px 12px rgb(0 0 0 / 12%);
  }
}

@media (max-width: 700px) {
  .catalog__list {
    gap: 10px;
  }
  .listing-product_el {
    width: calc(100% / 2 - 5px);
    padding: 0;
    background: none;
  }
  .listing-product_add-to-cart a.product_type_simple {
    width: 100%;
    margin-top: 20px;
  }
  .category-description {
    padding: 15px;
  }
}

@media (max-width: 330px) {
  .listing-product_el {
    width: 100%;
  }
}

/* Pagination */

.catalog__pagination {
  display: flex;
  gap: 5px;
  justify-content: center;
  margin-bottom: 50px;
}

.catalog__pagination > * {
  border-radius: 3px;
  border: 1px solid #262730;
  background-color: #fff;
  color: #262730;
  transition: 0.3s;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 100%;
}

.catalog__pagination > *:hover,
.catalog__pagination .page-numbers.current {
  background: #f7f7f7;
  border: 1px solid #f7f7f7;
}

.catalog__pagination .next.page-numbers,
.catalog__pagination .prev.page-numbers {
  width: auto;
  padding: 15px;
}

.load-more {
  margin-bottom: 20px;
}

/* Popup */

#added_product-popup {
  z-index: 999;
}

#added_product-popup .popup-window {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  background: #ededed;
  border-radius: 3px;
  z-index: 1000;
  width: 720px;
  max-width: 90%;
}

#added_product-popup .modal-headline {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 20px;
}

.added-product_name {
  font-size: 1.3em;
  line-height: 130%;
  font-weight: 700;
}
.added-product img {
  width: 75px;
  height: 75px;
  object-fit: cover;
}

.added-product_cart-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.added_product-popup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.added_product-popup-actions > * {
  width: calc(50% - 5px);
}

#added_product-popup-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#countdown {
  color: white;
}

.added-product {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.added-product > div {
  display: flex;
  gap: 10px;
  align-items: center;
}

.added-product > div:last-child {
  white-space: nowrap;
}

#added_product-popup-content p {
  margin: 0;
}

@media (max-width: 700px) {
  .added_product-popup-actions > * {
    width: 100%;
  }

  .added-product {
    flex-wrap: wrap;
  }
}

/* Range */

.slider-range {
  margin: 20px 0;
}

span.ui-slider-handle {
  width: 30px !important;
  height: 30px !important;
}

/* Filter */

.filter-body {
  padding: 30px;
  background: #f7f7f7;
  border-radius: 3px;
  transition: 0.3s;
  max-height: 90vh;
  overflow-y: auto;
}

.no-active .filter-body {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  z-index: -1;
  position: relative;
}

.filter-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

#products-filter .toggle {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  justify-content: space-between;
}

.active-filters {
  width: 100%;
  display: flex;
  gap: 10px;
  white-space: nowrap;
  overflow-x: auto;
}

.active-filters > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  height: 30px;
  background-color: #fd2840;
  border-radius: 15px;
  padding: 0 10px;
  margin-top: 20px;
  margin-bottom: 10px;
  color: white;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.active-filters > div:hover {
  opacity: 0.8;
}
.active-filters > div::before {
  content: url('data:image/svg+xml;utf8,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13.6594 13.6589C10.5379 16.7797 5.46155 16.7797 2.34009 13.6589C-0.78003 10.5381 -0.78003 5.46041 2.34009 2.3396C3.90082 0.779529 5.95044 -0.000149727 8.00009 -0.000149727C10.0497 -0.000149727 12.0987 0.779559 13.6594 2.3396C16.7802 5.46038 16.7802 10.5381 13.6594 13.6589ZM11.3009 5.64115C11.5617 5.38037 11.5617 4.95883 11.3009 4.69805C11.1709 4.56799 11.0001 4.50262 10.8294 4.50262C10.6586 4.50262 10.4879 4.56799 10.3578 4.69805L8.00005 7.0565L5.64295 4.69874C5.51223 4.56868 5.34146 4.5033 5.17138 4.5033C5.00065 4.5033 4.82988 4.56868 4.69982 4.69874C4.43904 4.95952 4.43904 5.38172 4.69982 5.64184L7.05693 7.9996L4.69916 10.3574C4.43838 10.6181 4.43838 11.0403 4.69916 11.3005C4.95929 11.5612 5.38148 11.5612 5.64226 11.3005L8.00002 8.9427L10.3578 11.3005C10.6186 11.5612 11.0401 11.5612 11.3009 11.3005C11.5617 11.0403 11.5617 10.6181 11.3009 10.3574L8.94312 7.9996L11.3009 5.64115Z" fill="white"></path></svg>');
  display: inline-block;
  width: 16px;
  height: 16px;
}

.filter-el.price-filter {
  max-width: 800px;
}

.price-input {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}

.price-input > div {
  max-width: calc(50% - 20px);
}

.price-input input {
  width: 122px;
  height: 36px;
  border: 1px solid #aeadb4;
  background-color: transparent;
  text-align: center;
  max-width: 100%;
}

.price-filter .slider-range {
  height: 1px;
  margin: 30px 0;
}

.price-filter .slider-range .ui-slider-range {
  background: #beab8d !important;
  height: 3px !important;
  margin-top: -1px;
}

.price-filter .slider-range span.ui-slider-handle {
  border-radius: 50px;
  transform: translateY(-50%) translateX(-50%);
  margin: 0 0 0 13px;
  outline: none !important;
  top: 0;
  cursor: pointer;
}

.price-filter .slider-range span.ui-state-active {
  border-color: #beab8d !important;
  background: #beab8d !important;
}

.price-filter .slider-range span:last-child {
  margin-left: -12px;
}

.price-input label {
  margin-right: 10px;
}
.catalog_filter {
  stroke: #262730;
}
.toggle-filter {
  margin: 0;
}
.toggle-filter svg {
  margin-right: 8px;
}

.sort-filter {
  position: relative;
}

#sort_order {
  position: absolute;
  max-width: 100%;
  min-width: fit-content;
  right: 0;
  top: 110%;
  padding: 10px 0;
  background: white;
  box-sizing: content-box;
  border-radius: 3px;
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.12);
  z-index: 3;
  transition: 0.3s;
  transform: translateY(0);
}

#sort_order.no-active {
  opacity: 0;
  transform: translateY(-100%);
  z-index: -1;
}

#sort_order div {
  padding: 8px 24px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 13px;
  white-space: nowrap;
}

#sort_order div:hover,
#sort_order div.active {
  background-color: #f2f2f2;
}

.sort-toggle {
  background: #f7f7f7;
  height: 46px;
  width: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  border: 1px solid #f7f7f7;
  cursor: pointer;
  transition: 0.3s;
}

.sort-toggle:hover {
  background: #e1e1e1;
  border: 1px solid #ddd;
}

.toggle-filter > span {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 100%;
}

#products-filter.no-active .close-filter,
#products-filter:not(.no-active) .open-filter {
  display: none !important;
}

.filter-body .label {
  font-weight: 600;
  padding-bottom: 10px;
}

.filter-navigation {
  display: flex;
  gap: 30px;
}

.filter-navigation .label {
  margin-bottom: 20px;
  cursor: pointer;
}

.filter-navigation .label.active {
  border-bottom: 1px solid #262730;
}

.filter-el:not(.active) {
  display: none !important;
}

.filter-attribute input[type="checkbox"] {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.filter-attribute label span {
  display: inline-flex;
  align-items: center;
  user-select: none;
  line-height: 100%;
  cursor: pointer;
}

.filter-attribute label span::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid #adb5bd;
  border-radius: 1px;
  margin-right: 0.5em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}

.filter-attribute label input:checked + span::before {
  border-color: #beab8d;
  background-color: #beab8d;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

@media (min-width: 700px) {
  .filter-body .label {
    font-size: 15px;
  }
}

@media (max-width: 700px) {
  .filter-actions > * {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .toggle-filter {
    width: -webkit-fill-available;
  }
  .active-filters {
    width: calc(100% + 40px);
    margin-left: -20px;
    padding: 0 20px;
  }
  .filter-body {
    padding: 20px 15px;
  }
  .filter-navigation {
    gap: 20px;
    overflow: auto;
    margin-left: -10px;
    padding-left: 10px;
    width: calc(100% + 20px);
  }
}

/* Подкатегории */

.child-categories {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.child-categories > a {
  padding: 9px 24px;
  background: #eeeeee;
  border-radius: 3px;
}

@media (max-width: 1040px) {
  .child-categories {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    margin-left: -20px;
    margin-right: -20px;
    padding: 0 20px;
  }
  .child-categories > a {
    padding: 9px 24px;
    background: #eeeeee;
    border-radius: 3px;
    white-space: nowrap;
  }
}

/* Product Page Gallery*/

.woocommerce-product-gallery {
  position: relative;
  max-width: 100%;
}

.woocommerce-product-gallery ul,
.woocommerce-product-gallery ol {
  margin: 0;
  padding: 0;
  list-style: none !important;
}

.woocommerce-product-gallery__image {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.woocommerce-product-gallery__image img {
  height: auto;
  width: 444px;
  height: 444px;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.pswp__bg {
  background: white !important;
}

.woocommerce-product-gallery .flex-control-thumbs {
  display: flex;
  flex-direction: row;
  margin-right: auto;
  margin-left: auto;
  width: fit-content;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  overflow-x: auto;
  margin-top: 10px;
}

.woocommerce-product-gallery .flex-control-thumbs img {
  width: 80px;
  min-width: 80px;
  height: 80px;
  object-fit: cover;
  transition: 0.3s;
  border-width: 2px;
  border-style: solid;
  border-color: transparent;
  border-radius: 3px;
  cursor: pointer;
}

.woocommerce-product-gallery .flex-control-thumbs img.flex-active {
  border-color: #f7f7f7 !important;
  padding: 5px;
}

.woocommerce-product-gallery .flex-direction-nav {
  display: flex;
  width: 100%;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  position: absolute;
  top: 220px;
}

.woocommerce-product-gallery .flex-direction-nav .flex-prev,
.woocommerce-product-gallery .flex-direction-nav .flex-next {
  width: 30px;
  height: 30px;
  display: block;
  position: relative;
  text-indent: -9999px;
  transition: 0.3s;
  opacity: 0.5;
}

.woocommerce-product-gallery .flex-direction-nav .flex-prev:hover,
.woocommerce-product-gallery .flex-direction-nav .flex-next:hover {
  opacity: 1;
}

.woocommerce-product-gallery .flex-direction-nav .flex-prev:after,
.woocommerce-product-gallery .flex-direction-nav .flex-next:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 15px;
  height: 15px;
  border-style: solid;
  border-width: 2px 2px 0 0;
  border-color: #000000;
}

.woocommerce-product-gallery .flex-direction-nav .flex-prev:after {
  transform: translate(-50%, -50%) rotate(225deg);
}

.woocommerce-product-gallery .flex-direction-nav .flex-next:after {
  transform: translate(-50%, -50%) rotate(45deg);
}

@media (max-width: 700px) {
  .woocommerce-product-gallery .flex-direction-nav {
    display: none;
  }
  .woocommerce-product-gallery__image img {
    height: auto;
    max-height: 300px;
  }
  .product-price {
    font-size: 24px;
  }
}

/* Product Page */

.product_page-preview {
  margin-top: 50px;
  margin-bottom: 50px;
}

.product_page-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 16px;
}

.product_page-info > * {
  line-height: 100%;
}

.product-brands,
.product-price {
  font-size: 32px;
  font-family: "Playfair Display", serif;
}

.product-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.product_page-info .quantity {
  display: flex;
  gap: 5px;
  width: 100%;
  margin-bottom: 20px !important;
  float: none !important;
  max-width: 124px;
}

.product_page-info .quantity input.qty {
  padding: 12px 48px;
  min-height: 46px;
  width: 124px;
  border-radius: 3px;
  border: 1px solid #26273063;
  font-weight: 500;
}

.product_page-info .quantity button {
  width: 46px;
  min-width: 46px;
  height: 46px;
  border: 1px solid #262730;
  background: transparent;
  border-radius: 3px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product_page-info .quantity button svg {
  width: 18px;
  height: 18px;
  stroke: #000000;
}

.product_page-info .quantity button:hover {
  background: #e1e1e1;
  border-color: #e1e1e1;
}

.product_page-info .quantity input.qty::-webkit-outer-spin-button,
.product_page-info .quantity input.qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product_page-info .add-to-order {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 20px;
  font-size: 14px;
}

.product_page-info .add-to-order > * {
  margin: 0 !important;
}

.product_page-info .tinv-wishlist a img {
  width: 40px !important;
  height: 40px !important;
  max-width: 46px !important;
  max-height: 46px !important;
}

.product_page-info .add-to-order .variations {
  max-width: 124px !important;
  display: block;
}

.product_page-info .add-to-order .value {
  display: flex;
  gap: 10px;
  align-items: center;
}

.product_page-info .add-to-order .value select {
  padding: 5px 10px;
}

.product_page-info .add-to-order .variations tr {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 10px 0;
}

.product_page-info .add-to-order .variations tr > * {
  line-height: 100% !important;
}

.product_page-info .woocommerce-variation-price {
  margin-bottom: 20px;
}

.listing-variation-price .at_price {
  font-size: 1rem;
}

@media (min-width: 700px) {
}

@media (max-width: 700px) {
  .woocommerce-product-gallery__image img {
    height: auto;
    max-height: 300px;
  }
  .product-price {
    font-size: 24px;
  }
}

/* Product Page Content Tabs */

.product-description_tabs {
  position: relative;
}

.product-description_tabs.tabs_navigation {
  display: flex;
  gap: 30px;
  border-bottom: 1px solid #c4c4c4;
  margin-top: 15px;
}

.product-description_tabs.tabs_navigation-name {
  padding: 15px 0;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  font-weight: 500;
}

.product-description_tabs.tabs_navigation-name:not(.active):hover {
  color: #ae804e;
}

.product-description_tabs.tabs_navigation-name:after {
  content: "";
  width: 100%;
  max-width: 0;
  height: 2px;
  border-radius: 3px;
  background: black;
  position: absolute;
  bottom: -1px;
  left: 1px;
  opacity: 0;
  transition: 0.3s;
}

.product-description_tabs.tabs_navigation-name.active:after {
  max-width: 200px;
  opacity: 1;
}

.product-description_tabs.tabs_navigation-content {
  line-height: 1.2;
  transition: 0.3s;
}

.product-description_tabs.tabs_navigation-content:not(.active) {
  transform: translateX(100%);
  opacity: 0;
  z-index: -1;
  position: absolute;
}

@media (max-width: 700px) {
  .product-description_tabs.tabs_navigation-content {
    font-size: 14px;
  }
}

/* Product Page Other products */

.product-page_other-products {
  background: #f7f7f7;
  padding: 50px 40px;
  margin-top: 50px;
  margin-bottom: 50px;
  overflow: hidden;
  position: relative;
}

.product-page_other-products h2 {
  text-align: center;
  margin: 0 0 50px 0;
}

.product-page_other-products ul.products {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.product-page_other-products ul.products .listing-product_el {
  background: #ffffff;
  float: none !important;
  margin: 0 !important;
  padding: 10px !important;
  width: 100% !important;
  height: 100% !important;
}

.product-page_other-products:before,
.product-page_other-products:after {
  content: "";
  width: 40px;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  z-index: 1;
}

.product-page_other-products:before {
  left: 0;
  background: linear-gradient(
    90deg,
    rgba(247, 247, 247, 1) 3%,
    rgba(247, 247, 247, 0) 100%
  );
}

.product-page_other-products::after {
  right: 0;
  background: linear-gradient(
    90deg,
    rgba(247, 247, 247, 0) 0%,
    rgba(247, 247, 247, 1) 97%
  );
}

.product-page_other-products .owl-nav {
  display: none;
}

@media (min-width: 700px) {
  .product-page_other-products .owl-nav {
    display: block;
  }
  button.owl-prev,
  button.owl-next {
    width: 30px;
    height: 30px;
    display: block;
    position: relative;
    text-indent: -9999px;
    transition: 0.3s;
    opacity: 0.5;
    border: none;
    outline: none;
    background-color: transparent;
    position: absolute;
    top: 50%;
    cursor: pointer;
    z-index: 2;
  }

  button.owl-prev:hover,
  button.owl-next:hover {
    opacity: 1;
  }

  button.owl-prev:after,
  button.owl-next:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 15px;
    height: 15px;
    border-style: solid;
    border-width: 2px 2px 0 0;
    border-color: #000000;
  }

  button.owl-prev {
    left: 10px;
  }

  button.owl-next {
    right: 10px;
  }

  button.owl-prev:after {
    transform: translate(-50%, -50%) rotate(225deg);
  }

  button.owl-next:after {
    transform: translate(-50%, -50%) rotate(45deg);
  }
}

@media (max-width: 700px) {
  .product-page_other-products h2 {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }
  .product-page_other-products {
    padding: 30px 20px;
    margin-left: -20px;
    margin-right: -20px;
  }
  .product-page_other-products:before,
  .product-page_other-products:after {
    width: 20px;
  }
}

/* Home Slider */

.home-slider_container {
  background-color: #efefef;
  overflow: hidden;
}

.home-slider {
  position: relative;
}
.home-slider_container .owl-nav {
  display: none !important;
}

.home-slider_container .owl-item {
  overflow: hidden;
}
.home-slider_item {
  max-width: 1550px;
  margin: auto;
  display: flex;
  gap: 20px;
  align-items: center;
  height: 100%;
}

.home-slider_item > div {
  position: relative;
  height: 100%;
}

.home-slider_item > div:first-child {
  padding-top: 130px;
  padding-bottom: 130px;
}

.home-slider_item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home-slider_item h2,
.home-slider_item p {
  margin: 0 0 20px 0;
}

.slider-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  width: fit-content;
  padding: 18px 32px;
  border-radius: 3px;
  border: 1px solid #262730;
  background-color: transparent;
  color: #262730;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 500;
}

.slider-btn:hover {
  background-color: #262730;
  color: white;
}
.slider-btn:hover * {
  color: white;
  fill: white;
  stroke: white;
}

.home-slider .owl-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.home-slider .owl-dots > button {
  width: 20px;
  height: 8px;
  background: #c4c4c4;
  border-radius: 2px;
  border: none !important;
  transition: 0.3s;
  cursor: pointer;
}

.home-slider .owl-dots > button.active {
  background: #262730 !important;
}

@media (min-width: 900px) {
  .home-slider_item p {
    margin-bottom: 80px;
    max-width: 400px;
  }
}
@media (min-width: 700px) {
  img.full-banner {
    object-fit: fill;
    position: absolute;
    left: 0;
    top: 0;
    width: 60vw;
  }
  .home-slider_item > div:first-child {
    width: 40%;
  }
  .home-slider_item > div:last-child {
    width: 60%;
  }
}

@media (max-width: 700px) {
  .home-slider_item {
    flex-direction: column;
  }

  .home-slider_item > div {
    width: 100%;
  }

  .home-slider_item img {
    width: calc(100% + 40px);
    margin-left: -20px;
  }

  .home-slider_item > div:first-child {
    padding-top: 20px;
    padding-bottom: 50px;
    order: 2;
  }

  .home-slider_item h2 {
    font-size: 21px;
  }

  .home-slider .owl-dots {
    bottom: 20px;
  }
}

@media (max-width: 400px) {
  .slider-btn {
    width: 100%;
  }
}

/* Home Categories */

.home-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.home-categories a {
  position: relative;
  display: flex;
  align-items: end;
  padding: 40px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 200px;
}

.home-categories a span {
  font-size: 18px;
  font-weight: 700;
  z-index: 1;
}

.home-categories a::after {
  content: "";
  position: absolute;
  right: 40px;
  bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 100%;
  opacity: 0;
  transition: 0.3s;
  background: url(/wp-content/themes/nt-theme/include/elements/category-arrow.svg)
    center center no-repeat;
}
.home-categories a:hover::after {
  opacity: 1;
}

.home-categories a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.6),
    rgba(255, 255, 255, 0.6)
  );
  opacity: 0;
  transition: 0.3s;
}

.home-categories a:hover:before {
  opacity: 1;
}

.home-categories div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-categories > div {
  width: 100%;
}

.home-categories .row-1 > * {
  width: calc(50% - 5px);
}

.home-categories .row-1 > .col-2 > * {
  height: 240px;
  width: 100%;
}

.home-categories > .row-2 > * {
  width: calc(100% / 3 - 6.7px);
  height: 240px;
}

@media (max-width: 700px) {
  .home-categories a {
    padding: 20px;
    height: 200px !important;
  }
  .home-categories .row-1 > * {
    width: 100%;
  }

  .home-categories .row-1 > .col-2 > *,
  .home-categories > .row-2 > *:not(:first-child) {
    width: calc(50% - 5px);
  }
  .home-categories > .row-2 > *:first-child {
    width: 100%;
  }

  .home-categories a::after {
    top: 20px;
    right: 20px;
  }
}

/* Home Collection */

.home-collection_block {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-collection_block .col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 100%;
  max-height: 800px;
}

.home-collection_block .col > div {
  background-color: #f7f7f7;
  padding: 10px;
}

.home-collection_block .col-1 {
  width: calc(50% - 10px);
}

.home-collection_block .col-2,
.home-collection_block .col-3 {
  width: calc(50% / 2 - 5px);
}

.home-collection_block .col-2 > div {
  height: calc(50% - 5px);
}

.home-collection_action {
  width: 100%;
  text-align: -webkit-center;
  padding: 30px !important;
  background-color: #f7f7f7;
}

.home-collection_block img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home-collection_block .col .home-collection_headline {
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.home-collection_block .col .home-collection_headline * {
  margin: 0;
}

@media (min-width: 1120px) {
  .home-collection_action.mobile {
    display: none !important;
  }
}

@media (max-width: 1120px) {
  .home-collection_action.desktop {
    display: none !important;
  }
}

@media (max-width: 700px) {
  .home-collection_block .col .home-collection_headline {
    padding: 20px;
  }
  .home-collection_block .col-1 {
    width: 100%;
  }
  .home-collection_block .col-2,
  .home-collection_block .col-3 {
    width: calc(100% / 2 - 5px);
  }

  .home-collection_block .home-collection_headline h2 {
    font-size: 21px;
  }
}

/* Home New Products */
.new-products_block {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.new-products_headline * {
  margin: 0;
}

.new-products_headline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
}

.new-products_headline > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.new-products_action.mobile {
  width: 100%;
}

.new-products_slider .owl-stage {
  /* display: flex; */
  list-style: none;
  /* padding: 0; */
  /* margin: 0; */
  /* gap: 5px; */
}

.new-products_slider .owl-stage-outer {
  overflow-x: clip;
}

.new-products_slider .listing-product_el {
  width: 100% !important;
  height: 100%;
  background: white;
  box-shadow: none !important;
}

.new-products_slider .listing-product_el .listing-product_add-to-cart {
  box-shadow: none !important;
}

.new-products_block .owl-dots {
  display: flex;
  gap: 4px;
  padding: 10px 0;
}

.new-products_block .owl-dot {
  background: #aeadb4;
  border: none !important;
  display: block;
  border-radius: 50px;
  height: 6px;
  width: 6px;
  padding: 0;
  transition: 0.3s;
  cursor: pointer;
}

.new-products_block .owl-dot.active {
  background: #262730;
  width: 30px;
}

@media (min-width: 1120px) {
  .new-products_action.mobile,
  .new-products_slider .owl-dots {
    display: none !important;
  }
  .new-products_headline {
    width: calc(25% - 20px);
  }
  .new-products_slider {
    width: 75%;
    position: relative;
  }

  .new-products_slider .owl-nav button.owl-prev::after {
    left: -20px;
  }
  .new-products_slider .owl-nav button.owl-next::after {
    right: -65px;
  }
}

@media (max-width: 1120px) {
  .new-products_action.desktop,
  .new-products_headline .owl-dots {
    display: none !important;
  }

  .new-products_headline,
  .new-products_slider {
    width: 100%;
  }

  .new-products_headline {
    text-align: center;
  }

  .new-products_block .owl-dots {
    justify-content: center;
  }

  .new-products_action.mobile {
    text-align: -webkit-center;
  }
}

@media (min-width: 700px) {
  .new-products_slider {
    position: relative;
  }
  .new-products_slider .owl-nav button::after {
    content: "";
    background: url(/wp-content/themes/nt-theme/include/elements/category-arrow.svg)
      center center no-repeat !important;
    border: none !important;
    width: 45px;
    height: 45px;
  }

  .new-products_slider .owl-nav button.owl-prev::after {
    transform: translate(-50%, -50%) rotate(180deg);
    left: -5px;
  }
  .new-products_slider .owl-nav button.owl-next::after {
    transform: translate(-50%, -50%) rotate(0deg);
    right: -50px;
  }
}

@media (max-width: 700px) {
  .new-products_headline h2 {
    font-size: 21px;
  }

  .new-products_slider .owl-nav {
    display: none !important;
  }
}

/* Brands List */

.brands-list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.brand-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  border: 1px solid #f7f7f7;
  opacity: 0.7;
  transition: 0.3s;
  height: 150px;
}

.brand-item:hover {
  opacity: 1;
}

.brand-item .brand-name {
  margin: 0;
}

.brand-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brands-list > * {
  width: calc(100% / 2);
}

@media (min-width: 500px) {
  .brands-list > * {
    width: calc(100% / 3);
    height: 200px;
  }
}

@media (min-width: 700px) {
  .brands-list > * {
    width: calc(100% / 4);
  }
}

@media (min-width: 1120px) {
  .brands-list > * {
    width: calc(100% / 5);
    padding: 30px;
  }
}

/* Brand Page */
.collections-list {
  margin-top: 20px;
}

/* Order Popup */

#order_product-popup .modal-headline {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  font-size: 1.15rem;
  padding-bottom: 20px;
  border-bottom: 1px solid #f7f7f7;
}

#order_product-popup-content input {
  width: 100%;
  border-radius: 3px;
  border: 1px solid #aeadb4;
  padding: 12px 20px;
  width: 100%;
  max-width: 100%;
  line-height: 120%;
}

#order_product-popup-content input[type="submit"] {
  color: white;
  background-color: rgb(34, 34, 34);
  border-color: rgb(34, 34, 34);
  box-sizing: border-box;
  border-radius: 3px;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 12px 48px;
  text-align: center;
  font-size: 1em;
  outline: none;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}
#order_product-popup-content input[type="submit"]:hover {
  border-color: #beab8d;
  background: #beab8d !important;
  color: white;
}

#order_product-popup-content p {
  position: relative;
}

#order_product-popup-content span.wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

/* Contacts Page */
.contacts-map iframe {
  width: 100%;
  max-width: 100%;
}