/*
Theme Name: ar-shop
Theme URI: https://example.com/
Author: Egor Razdorojnii
Description: Custom WooCommerce theme based on bespoke layout
Version: 1.0
Text Domain: ar-shop
*/


@import url("https://fonts.googleapis.com/css2?family=Assistant:wght@200..800&display=swap");

:root {
  --main-color: #857e76;
}

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

body {
  font-family: "Assistant", sans-serif;
  margin: 0;
  background: #fff;
  color: #121212bf;
  line-height: 1.5;

}

main {
  padding: 30px 0;
}

a {
  text-decoration: none;
  color: #121212bf;
}
h1 {
  font-weight: 400;
  font-size: 2.5em;
  margin: 0 0 0.5em 0;
}

h2 {
  font-weight: 500;
}
.container {
  max-width: 1100px;
  padding: 0 15px;
  margin: 0 auto;
  /*     overflow-x: hidden;    
  overflow-y: visible;  */
}
/* ---------- HEADER ---------- */
.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
}
.header-inner {
  padding-top: 25px;
  padding-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.header-logo a {
  font-weight: 800;
  font-size: 26px;
  text-decoration: none;
  color: #000;
  line-height: 1;
}

.header-logo img {
  max-height: 40px;
}
.header-menu ul {
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.header-menu a {
  color: #121212bf;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 15px;
  letter-spacing: 0.5px;
}

.shop-page {
  padding-bottom: 60px;
}

/* Оверлей */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1000;
}

/* Меню */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  max-width: 320px;
  height: 100%;
  background: #fff;
  box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
  transition: 0.35s ease;
  z-index: 1002;
  display: flex;
  flex-direction: column;
}

.mobile-menu.open {
  left: 0;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Контент меню */
.mobile-menu__inner {
    padding: 25px;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
    justify-content: center;
}
.mobile-menu__inner img {
    position: absolute;
    opacity: 0.02;
    top: 0;
    width: 400px;
    left: 0;
    z-index: -1;
}
.menu-close {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 32px;
    line-height: 1;
    color: #000;
    cursor: pointer;
    margin-bottom: 20px;
    position: absolute;
    top: 32px;
}

.mobile-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu__list a {
    color: #222;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.25s;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    color: #000;
}


.current-menu-item a {
  color: #000;
  text-decoration: underline;
}
.header-menu a:hover {
  color: #666;
}
.header-icons {
  display: flex;
  align-items: center;
  gap: 23px;
  margin-left: auto;
}
.header-icons > div {
  cursor: pointer;
  position: relative;
}
.header-icons > div:hover svg {
  transform: scale(1.06);
}
.header-icons > div > svg {
  width: 19px;
}

.header-icons .xoo-wsc-sc-cont {
  position: absolute;
  bottom: 13px;
  right: -8px;
}

.topbar {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  background: var(--main-color);
  color: #fff;
}

.topbar .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 15px;
  text-align: center;
}

.topbar__text {
  display: inline-block;
  letter-spacing: 0.9px;
  font-size: 13px;
}
.shop-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end; /* контент снизу */
  justify-content: center;
  min-height: 720px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 0;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #000000;
  opacity: 0.55;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}
.hero__content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  color: #222;
  padding-bottom: 60px; /* отступ от низа */
  position: relative;
}

.hero__title {
  font-size: 52px;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.home main {
  padding-top: 0;
}

.hero__subtitle {
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.5px;
  color: #fff;
}

.btn__hero {
  border: 1px solid #fff;
  padding: 14px 40px;
  font-size: 15px;
  color: #fff;
  margin-top: 16px;
  display: inline-flex;
  transition: all 0.3s;
}
.btn__hero:hover {
  background: #fff;
  color: #000;
}
.shop-meta {
  display: flex;
  gap: 15px;
  align-items: center;
}

.woocommerce .products ul::after,
.woocommerce .products ul::before,
.woocommerce ul.products::after,
.woocommerce ul.products::before {
  display: none;
}
.woocommerce .woocommerce-ordering,
.woocommerce .woocommerce-result-count {
  margin: 0;
  line-height: 1;
}

/* Контейнер со списком товаров */
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 7px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.home .woocommerce ul.products {
  grid-template-columns: repeat(4, 1fr);
}
.woocommerce .related ul.products {
  grid-template-columns: repeat(4, 1fr);
}
/* Каждый товар */
.woocommerce ul.products li.product,
.woocommerce ul.products .product-item {
  background: #fff;
  overflow: hidden;
  text-align: left;
  transition: all 5s ease;
}

.quantity {
  display: inline-flex;
  align-items: center;
  border: 1px solid #020202;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 30px !important;
}

.quantity input.qty {
  width: 55px;
  text-align: center;
  border: none;
  font-size: 15px;
  padding: 14px 6px;

  outline: none;
  -moz-appearance: textfield;
}

.quantity input.qty::-webkit-inner-spin-button,
.quantity input.qty::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.qty-btn {
  background: transparent;
  border: none;
  width: 34px;
  height: 34px;
  font-size: 20px;
  font-weight: 100;
  cursor: pointer;
  transition: background 0.2s;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Assistant", sans-serif;
}

.qty-btn:hover {
}

.qty-btn-minus {
  border: none;
}

.qty-btn-plus {
  border: none;
}

.woocommerce div.product form.cart .variations label {
  font-weight: 400;
}

.woo-variation-swatches
  .wvs-style-squared.variable-items-wrapper
  .variable-item:not(.radio-variable-item) {
  border-radius: 20px;
  border: 1px solid #12121233;
  box-shadow: none;
}

.woo-variation-swatches
  .variable-items-wrapper
  .variable-item:not(.radio-variable-item) {
  -webkit-box-shadow: var(--wvs-item-box-shadow, 0 0 0 1px #000000);
  box-shadow: var(--wvs-item-box-shadow, 0 0 0 1px #000000);
  padding: 0px 10px;
}

.woocommerce div.product form.cart .variations {
  margin-bottom: 0;
}

.related.products {
  clear: both;
  display: block;
  margin-top: 40px;
}

.woocommerce div.product form.cart .button {
  background: #000;
  opacity: 1;
  width: 100%;
  padding: 20px 0;
  border-radius: 0;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price,
.woocommerce:where(body:not(.woocommerce-uses-block-theme))
  div.product
  span.price {
  color: #000000;
}

.woo-variation-swatches
  .variable-items-wrapper
  .variable-item:not(.radio-variable-item).button-variable-item.selected:not(
    .no-stock
  ) {
  background-color: #000000;
  color: #ffffff;
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fade-up 0.6s ease forwards;
}

@keyframes fade-up {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fade-in 0.4s ease forwards;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.woocommerce ul.products .product1:hover {
  transform: translateY(-3px);
}

/* Изображения */
.woocommerce ul.products .product img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.woocommerce ul.products .product .title {
  text-align: left;
  color: #000;
  text-decoration: none;
  margin: 0;
  font-weight: 300;
  font-size: 16px;
  margin-bottom: 2px;
}

.woocommerce ul.products .product .price {
  color: #000;
  font-size: 20px;
}

.woocommerce ul.products li.product a img {
  transition: opacity 0.4s ease;
  display: block;
  width: 100%;
  height: auto;
}

/* Второе фото (из галереи) */
.woocommerce ul.products .product a .secondary-image {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Для корректного позиционирования */
.woocommerce ul.products .product a {
  position: relative;
  display: block;
  overflow: hidden;
}

/* Переключение только если есть второе фото */
.product-item .product-thumb.has-secondary:hover img:first-of-type {
  opacity: 1;
}
.product-item .product-thumb.has-secondary:hover .secondary-image {
  opacity: 1;
}

.product-accordion {
  border-top: 1px solid #eee;
  clear: both;
  display: block;
  margin-top: 30px;
}
.accordion-item {
  border-bottom: 1px solid #eee;
}
.accordion-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 15px 0;
  list-style: none;
}
.accordion-item summary::-webkit-details-marker {
  display: none;
}
.accordion-title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.accordion-title h3 {
  font-size: 16px;
  margin: 0;
  font-weight: 500;
}
.accordion-content {
  padding: 0 0 15px 30px;
  font-size: 14px;
  color: #555;
}
.accordion-content p {
  margin: 0;
}
.accordion-item[open] summary {
}
.accordion-item .icon {
  flex-shrink: 0;
  fill: currentColor;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: #4e5154;
  background: #000000e6;
  padding: 60px 0 30px;
  color: #ffffff;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-title {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--main-color);
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 10px;
}

.footer-list a {
  color: #efefefa6;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-list a:hover {
  color: var(--main-color);
}

.footer-column p {
  line-height: 1.6;
  color: #efefefa6;
}

/* Newsletter */
.newsletter-form {
  display: flex;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 20px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 12px;
  border: none;
  font-size: 15px;
  outline: none;
  background: #fff;
}

.newsletter-form button {
  background: transparent;
  border: none;
  color: #fff;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter-form button:hover {
  background: var(--second-color);
}

.newsletter-form svg {
  width: 16px;
  height: auto;
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 30px;
}

.footer-social a {
  color: #b6b6b6;
  font-size: 18px;
  transition: color 0.3s;
}
.footer-social a svg {
  width: 22px;
}
.footer-social a:hover {
  color: #fff;
}

/* Bottom section */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid #ffffff21;
  padding-top: 25px;
  gap: 15px;
}

.footer-payments svg {
  height: 18px;
  width: auto;
  margin-right: 4px;
}

.footer-copy {
  font-size: 14px;
  color: #b6b6b6;
}

.footer-copy a {
  color: #b6b6b6;
  text-decoration: none;
  font-weight: 500;
}

.footer-copy a:hover {
  color: #fff;
}

.woocommerce nav.woocommerce-pagination ul,
.woocommerce nav.woocommerce-pagination ul li {
  border: none;
  background: transparent;
}

.woocommerce nav.woocommerce-pagination ul li span.current {
  background: transparent;
  color: #000;
}
.woocommerce nav.woocommerce-pagination ul li a {
  color: #868686;
}

.filters-wrap {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-10px);
  transition: max-height 0.5s ease, opacity 0.5s ease, transform 0.4s ease;
  pointer-events: none;
  position: absolute;
  width: 100%;
  background: #fff;
  top: 110px;
  z-index: 2;
  padding: 20px;
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.filters-wrap.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.btn-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  gap: 8px;
  font-size: 15px;
  cursor: pointer;
}

.btn-filters:hover {
  transform: scale(1.06);
}

.btn-filters:active {
  opacity: 0.2;
}

svg {
  width: 18px;
}

.woocommerce .woocommerce-result-count {
  color: #121212bf;
  letter-spacing: 0.5px;
  font-size: 13px;
}

.woocommerce .woocommerce-ordering select {
  border: none;
  margin-right: 30px;
  color: #121212bf;
  letter-spacing: 0.5px;
}

.wp-block-woocommerce-checkout {
  padding-top: 0;
}

/* ---------- Responsive ---------- */

.woocommerce
  div.product
  div.images
  .woocommerce-product-gallery__image:nth-child(n + 2) {
  width: 13%;
  margin-right: 5px;
  margin-top: 5px;
}

.woocommerce div.product div.images {
  width: 100%;
  position: sticky !important;
  top: 30px;
}

.woocommerce-product-details__short-description {
  clear: both;
  display: block;
  padding-top: 15px;
}
.woocommerce div.product div.summary {
  width: 100%;
}
.main-info {
  display: flex;
  justify-content: space-between;
}
.main-info__image {
  width: 65%;
}
.main-info__summary {
  max-width: 330px;
}

.clear-both {
  clear: both;
}

.image-block {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0;
  background: #f3f3f3;
  margin-top: 30px;
}

.image-block__img {
  flex: 1;
  height: 450px;
  background-size: cover;
}
.image-block__img img {
  width: 100%;
  border-radius: 15px;
}
.image-block__text {
  flex: 1;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-block__text > div {
  max-width: 260px;
}
.image-block__text h2 {
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 15px;
}
.image-block__text p {
  color: #555;
  line-height: 1.6;
  letter-spacing: 0.5px;
}

.categories {
    padding: 40px 0;
  background: #fff;
}

.categories__grid {
  display: flex;
  gap: 20px;
  align-items: stretch;
}

/* Левая часть — строго квадрат */
.category--large {
  flex: 1;
  position: relative;
  aspect-ratio: 1 / 1; /* фиксируем квадрат */
  overflow: hidden;
}

/* Правая часть */
.categories__right {
  flex: 1;
  display: grid;
  grid-template-rows: 1fr 1fr; /* два равных квадрата */
  gap: 20px;
      max-width: 335px;
}

/* Общие стили карточек */
.category {
  display: block;
  position: relative;
  overflow: hidden;

}

.category img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category__info {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(0 0 0 / 74%), transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 25px;
  transition: background 0.4s ease;
}

.category__title {
color: #fff;
    font-size: 18px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hover эффект */
.category:hover img {
  transform: scale(1.05);
}
.category:hover .category__info {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 60%);
}


.button.loading::after {
        content: "" !important;
    margin-left: .53em;
    vertical-align: bottom;
   background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'><path d='M173 172.9C254.2 91.7 385.9 91.7 467.2 172.9L494.3 200L416.1 200C402.8 200 392.1 210.7 392.1 224C392.1 237.3 402.8 248 416.1 248L552.2 248C565.5 248 576.2 237.3 576.2 224L576.2 88C576.2 74.7 565.5 64 552.2 64C538.9 64 528.2 74.7 528.2 88L528.2 166.1L501.1 139C401.1 39 239 39 139.1 139C95.9 182.2 71.3 237.1 65.5 293.5C64.1 306.7 73.7 318.5 86.9 319.8C100.1 321.1 111.9 311.6 113.2 298.4C118 252.6 137.9 208.1 173 172.9zM574.7 346.5C576.1 333.3 566.5 321.5 553.3 320.2C540.1 318.9 528.3 328.4 527 341.6C522.3 387.4 502.3 432 467.2 467.1C386 548.3 254.3 548.3 173 467.1L145.9 440L224.1 440C237.4 440 248.1 429.3 248.1 416C248.1 402.7 237.4 392 224.1 392L88 392C74.7 392 64 402.7 64 416L64 552C64 565.3 74.7 576 88 576C101.3 576 112 565.3 112 552L112 473.9L139.1 501C239.1 601 401.2 601 501.1 501C544.3 457.8 568.9 402.9 574.7 346.5z' fill='%23ffffff'/></svg>"); width: 20px;
    height: 20px;
    margin-top: 7px;
}

.xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn, .xoo-wsc-container .xoo-wsc-btn.xoo-wsc-ft-btn-checkout {
     background-color: #000;   
}

.wc-block-components-button:not(.is-link) {
    background: #000;
    color: #fff;
    box-shadow: none;
    border: none;
    border-color: #000;
    padding: 17px 0 !important;}
    
/* Адаптив */
@media (max-width: 992px) {
  .categories__grid {
    flex-direction: column;
  }

  .categories__right {
    grid-template-rows: 1fr 1fr;
  }

  .category--large,
  .category--small {
    aspect-ratio: 1 / 1;
  }
}

/* На мобильных — два квадрата в ряд */
@media (max-width: 600px) {
  .categories__right {
    grid-template-rows: none;
    grid-template-columns: 1fr 1fr;
  }

  .category__title {
    font-size: 16px;
  }
  
  .categories__right {
    max-width: 100%;
}
}

.info-block {
  display: flex;
  gap: 30px;
  padding: 50px 0;
}
.info-item {
  flex: 1 1 50%;
  background: #fff;
  border-radius: 12px;
}
.info-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 500;
}
.info-item p {
  color: #555;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.5px;
}

.related-products {
  margin-top: 60px;
}
.related-products .related-title {
  font-size: 26px;
  margin-bottom: 30px;
  font-weight: 700;
  color: var(--main-color);
}

.bapf_head h3 {
  margin-top: 0;
  color: #000;
  font-weight: 600;
}

.berocket_single_filter_widget_154 .bapf_head {
  display: none;
}

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

.bapf_sfa_min_space ul.bapf_sfa_unall li a:before {
  display: none;
}
.bapf_sfa_min_space ul.bapf_sfa_unall li a {
  text-decoration: underline;
  font-weight: 500 !important;
}

.bapf_sfa_min_space .bapf_sfa_taxonomy > ul li a,
.bapf_sfa_min_space ul.bapf_sfa_unall li a {
  color: #000000;
  font-size: 15px;
  font-weight: 300;
  padding: 4px 20px 4px 9px;
}
.bapf_sfa_min_space .bapf_sfa_taxonomy > ul li a:after,
.bapf_sfa_min_space ul.bapf_sfa_unall li a:before {
  color: #000000;
  top: 4px;
}
.berocket_aapf_widget_selected_area .bapf_sfa_taxonomy a {
  border: 1px solid #12121233;
  border-radius: 30px !important;
}

.ajax-search {
  position: relative;
  max-width: 100%;
  margin: -13px auto 10px;
}

.ajax-search input {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 19' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.03 11.68A5.784 5.784 0 112.85 3.5a5.784 5.784 0 018.18 8.18zm.26 1.12a6.78 6.78 0 11.72-.7l5.4 5.4a.5.5 0 11-.71.7l-5.41-5.4z' fill='%23currentColor'%3E%3C/path%3E%3C/svg%3E");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
}

.ajax-search input:focus {
  border-color: var(--main-color);
  box-shadow: 0 0 0 2px rgba(98, 40, 255, 0.1);
}

.search__wrap {
  display: none;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.search__wrap.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

#search-results {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 99;
  overflow: hidden;
}

.search-products-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.search-product-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 15px;
  transition: background 0.2s;
}

.search-product-item:hover {
  background: #f5f5f5;
}

.search-product-thumb img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

.search-product-info {
  flex: 1;
}

.search-product-title {
  font-size: 15px;
  color: #222;
  font-weight: 600;
  margin-bottom: 3px;
}

.search-product-price {
  font-size: 14px;
  color: var(--main-color);
}

.search-no-results {
  padding: 15px;
  text-align: center;
  color: #777;
  font-size: 14px;
}

.text-block {
  text-align: center;
}
.section-text {
  margin-bottom: 40px;
}

.text-block__title {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #000;
  letter-spacing: 0.5px;
  margin-top: 60px;
}

.text-block__desc {
  line-height: 1.6;
  letter-spacing: 0.5px;
  line-height: 1.7;
  color: #444;
  font-size: 15px;
}

/* Адаптив */
@media (max-width: 992px) {
  .text-block__title {
    font-size: 32px;
  }
  .text-block__desc {
    font-size: 16px;
  }
}

@media (min-width: 1025px) {
  .header-hamb {
    display: none;
  }
}
@media (max-width: 1024px) {
  .hero {
    min-height: 420px;
    align-items: center;
  }

  .hero__title {
    font-size: 36px;
    line-height: 1;
    max-width: 300px;
    margin: 0 auto;
  }

  .hero__content {
    padding-bottom: 0;
  }

  .image-block__img {
    height: 450px;
    width: 100%;
    background-size: cover;
    flex: none;
    background-position: center center;
  }

  .image-block {
    flex-direction: column-reverse;
  }
  .info-item {
    flex: 1 1 100%;
  }

  .image-block__text {
    flex: 1;
    width: 100%;
    padding-bottom: 60px;
  }
  .woocommerce .related ul.products {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-block {
    gap: 0;
    flex-direction: column;
    padding: 50px 0 20px;
  }
  .site-footer {
    padding: 60px 25px 30px;
  }

  .main-info {
    flex-direction: column;
  }
  .main-info__image {
    width: 100%;
  }
  .main-info__summary {
    max-width: 100%;
  }
  .overlay-filters.is-open {
    position: fixed;
    background: #00000059;
    top: -400px;
    left: 0;
    right: 0;
    bottom: -20px;
    z-index: 1;
  }

  .filters-wrap {
    width: auto;
    left: 15px;
    right: 15px;
    top: 100px;
  }

  .btn-hamb {
    background: none;
    border: none;
    padding: 12px;
    color: #000;
  }

  .btn-hamb svg {
    width: 20px;
  }
  .header-inner {
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .shop-meta span,
  .woocommerce-ordering {
    display: none !important;
  }
  main {
    padding: 20px 0;
  }

  h1 {
    font-size: 2em;
  }

  .header-icons {
    margin-left: unset;
  }

  .header-inner > div {
    width: 33.333333%;
    display: flex;
    justify-content: center;
  }

  .header-inner > div:first-child {
    justify-content: flex-start;
  }

  .header-inner > div:last-child {
    justify-content: flex-end;
  }
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }

  .header-menu {
    display: none;
  }
}

@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
    padding: 10px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 1024px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 2 товара в ряд (мобильные горизонтально) */
@media (max-width: 768px) {
  .woocommerce ul.products,
  .home .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 1 товар в ряд (мобильные узкие) */
@media (max-width: 480px) {
}

/* Адаптив */
@media (max-width: 768px) {
  .topbar {
    font-size: 13px;
    padding: 6px 0;
  }
}

@media (max-width: 480px) {
  .topbar {
    font-size: 12px;
    padding: 5px 0;
  }
}
