/** Shopify CDN: Minification failed

Line 6:0 Unexpected "<"

**/
<link href="https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;500;600;700&display=swap" rel="stylesheet">

/* ===== Общий layout коллекции ===== */

.beyo-collection,
.beyo-product-card,
.beyo-filters,
.no-results-form {
  font-family: "Mulish", sans-serif !important;
}

.beyo-collection__layout {
  display: flex;
  gap: 5px;
}

/* Desktop: sidebar + products */
.beyo-filters {
  width: 280px;
  flex-shrink: 0;
  position: sticky;
  top: 16px; /* чуть ближе к верху, можешь подстроить */
  align-self: flex-start;
  max-height: calc(100vh - 24px); /* высота окна минус небольшой отступ */
  overflow-y: auto;
  padding-right: 10px; /* чтобы scroll не перекрывал контент */
  padding-bottom: 50px;
}

.beyo-filters::-webkit-scrollbar {
  width: 6px;
}

.beyo-filters::-webkit-scrollbar-thumb {
  background: #d4d4d8;
  border-radius: 999px;
}
.beyo-filters::-webkit-scrollbar-track {
  background: transparent;
}

/* На мобилке sticky/scroll не нужен */
@media (max-width: 749px) {
  .beyo-filters {
    padding-bottom: 0px;
    width: 100%;
    position: static;
    top: auto;
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }
}



.beyo-collection__products {
  flex: 1 1 auto;
}

/* Mobile: фильтры сверху, товары ниже */
@media (max-width: 749px) {
  .beyo-collection__layout {
    flex-direction: column;
  }

  .beyo-filters {
    width: 100%;
  }
}

/* ===== Блокировка скролла когда открыт sheet ===== */

html.beyo-no-scroll,
html.beyo-no-scroll body {
  overflow: hidden;
}

/* ===== Карточка сайдбара ===== */

.beyo-filters__header {
  padding-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.beyo-filters__title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.beyo-filters__clear {
  border: none;
  background: none;
  padding: 0;
  font-size: 13px;
  color: #6b7280;
  text-decoration: underline;
  cursor: pointer;
}

/* На мобилке основной header скрываем, работаем через header внутри sheet */
@media (max-width: 749px) {
  .beyo-filters__header {
    display: none;
  }
}

/* ===== Чипсы категорий (Price, Wood, Size, All) ===== */
/* На десктопе скрыты, только мобилка */

.beyo-filters__chips {
  display: none;
}

/* Chip base */
.beyo-filter-chip {
  white-space: nowrap;
  border-radius: 999px;
  border: 1px solid #ddd;
  padding: 6px 12px;
  font-size: 13px;
  background: #fff;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.beyo-filter-chip--primary {
  font-weight: 600;
}

.beyo-filter-chip.is-active {
  background: #111827;
  color: #fff;
  border-color: #111827;
}

/* На мобилке показываем чипсы */

@media (max-width: 749px) {
  .beyo-filters__chips {
    display: flex;
    gap: 8px;
    margin: 8px -4px 8px;
    padding: 4px 4px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .beyo-filters__chips::-webkit-scrollbar {
    display: none;
  }
}

/* ===== Bottom Sheet для мобилки ===== */

.beyo-filters__backdrop {
  display: none;
}

.beyo-filters__body {
  margin-top: 8px;
}

/* Хедер внутри sheet (для мобилки) */
.beyo-filters__sheet-header {
  display: none;
}

@media (max-width: 749px) {
  .beyo-filters__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease-out;
    z-index: 30;
    display: block;
  }

  .beyo-filters__body {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    border-radius: 18px 18px 0 0;
    box-shadow: 0 -16px 40px rgba(15, 23, 42, 0.2);
    max-height: 80vh;
    padding: 12px 16px 20px;
    transform: translateY(100%);
    transition: transform 0.25s ease-out;
    overflow-y: auto;
    z-index: 2147483647;
  }

  .beyo-filters__sheet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
  }

  .beyo-filters__sheet-title {
    font-size: 14px;
    font-weight: 600;
  }

  .beyo-filters__sheet-close {
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    cursor: pointer;
  }

  .beyo-filters--sheet-open .beyo-filters__body {
    transform: translateY(0);
  }

  .beyo-filters--sheet-open .beyo-filters__backdrop {
    opacity: 1;
    pointer-events: auto;
  }
}

/* ===== Секции фильтров в сайдбаре ===== */

.beyo-filter-panel {
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: 1px solid #e5e7eb;
  margin-top: 14px;
  padding-top: 14px;
}

/* для mobile-чипсов: мы управляем visibility через JS */
.beyo-filter-panel {
  display: none;
}
.beyo-filter-panel.is-visible {
  display: block;
}

.beyo-filter-panel__title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

.beyo-filter-panel__hint {
  font-size: 12px;
  color: #9ca3af;
  margin-bottom: 8px;
}

.beyo-filter-panel__row {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  flex-wrap: nowrap;
}

/* ===== Инпуты ===== */

.beyo-filter-input {
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  padding: 6px 10px;
  font-size: 13px;
  background: #f9fafb;
  width: 100%;
  min-width: 0;
}

.beyo-filter-input {
  flex: 1 1 auto;
  min-width: 0;
}

/* ===== Размеры (Height / Width / Depth) ===== */

.beyo-filter-dim {
  margin-bottom: 14px;
}

.beyo-filter-dim__label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.beyo-filter-dim-label {
  font-size: 12px;
  color: #4b5563;
}

/* ===== Tag-list для Wood type (как чекбоксы) ===== */

.beyo-filter-taglist {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.beyo-filter-tag {
  position: relative;              /* 👈 ВАЖНО: база для абсолютной галочки */
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  border: none;
  font-weight: bold;
  background: transparent;
  font-size: 13px;
  color: #111827;
  cursor: pointer;
}

/* Квадратик чекбокса */
.beyo-filter-tag::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.02);
  flex-shrink: 0;
}

/* Активное состояние + фон */
.beyo-filter-tag.is-selected::before {
  background: #111827;
  border-color: #111827;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.22);
}

/* Галочка внутри квадратика (тонкая, как в UI-китах) */
.beyo-filter-tag.is-selected::after {
  content: "";
  position: absolute;
  left: 7px;
  width: 4px;
  height: 8px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg);
  pointer-events: none;
}

/* ===== RANGE (двойной слайдер) ===== */

.beyo-range {
  position: relative;
  width: 100%;
  height: 22px;
  margin: 4px 0 10px;
}

.beyo-range__track {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 15px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: #e5e7eb;
}

.beyo-range__progress {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  border-radius: inherit;
  background: #020617; /* тёмная полоса */
}

/* Два range-инпута поверх трека */

.beyo-range__input {
  position: absolute;
  left: 0;
  right: 0;
  border: none;
  top: 0;
  width: 100%;
  height: 12px;
  margin: 0;
  padding: 0;
  background: transparent;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
}

/* Thumb */

.beyo-range__input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  pointer-events: auto;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 2px solid #020617;
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.08);
  cursor: pointer;
}

.beyo-range__input::-moz-range-thumb {
  pointer-events: auto;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 2px solid #020617;
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.08);
  cursor: pointer;
}

.beyo-range__input::-webkit-slider-runnable-track {
  height: 6px;
  background: transparent;
}

.beyo-range__input::-moz-range-track {
  height: 6px;
  background: transparent;
}

/* ===== Header: count + sort ===== */

.beyo-products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  gap: 12px;
}

.beyo-products-count {
  font-size: 13px;
  color: #6b7280;
}

.beyo-products-sort {
  display: flex;
  align-items: center;
  gap: 6px;
}

.beyo-products-sort__label {
  font-size: 13px;
  color: #6b7280;
}

.beyo-products-sort__select {
  background-image:none !important;
  font-size: 13px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  padding: 6px 10px;
  background: #ffffff;
}

/* ===== Toggle кнопка фильтров (десктоп) ===== */

.beyo-filters-toggle {
  display: none; /* по умолчанию скрыта (мобилка) */
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  font-size: 13px;
  padding: 6px 12px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

.beyo-filters-toggle:hover {
  background: #111827;
  color: #ffffff;
  border-color: #111827;
}

.beyo-filters-toggle.is-off {
  opacity: 0.8;
}

/* Показываем кнопку только на десктопе */
@media (min-width: 750px) {
  .beyo-filters-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
}

/* Когда фильтры скрыты — прячем сайдбар */
@media (min-width: 750px) {
  .beyo-filters.beyo-filters--collapsed {
    display: none;
  }

  /* немножко уменьшим gap, чтобы не было огромной дырки */
  .beyo-collection__layout.beyo-collection__layout--filters-collapsed {
    gap: 16px;
  }
}

/* На мобилке сортировку можно упростить/перестроить */
@media (max-width: 749px) {
  .beyo-products-header {
    flex-direction: row;
    align-items: center;
  }

  .beyo-products-count {
    font-size: 12px;
  }

  .beyo-products-sort__label {
    display: none;
  }
}

/* ===== Products grid ===== */

.beyo-products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

@media (max-width: 1023px) {
  .beyo-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 599px) {
  .beyo-products-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ===== Product card ===== */

.beyo-product-card {
  border-radius: 2px;
  overflow: hidden;
  background: #ffffff;
  border: none;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  box-shadow: none; /* в покое без тени */
  font-size: 14px; /* базовый размер */
}

.beyo-product-card__image-wrapper {
  position: relative;
  overflow: hidden;
  background: #f3f4f6;
  aspect-ratio: 1 / 1;
}

/* Контейнер слайдов: жёстко растягиваем на wrapper */
.beyo-product-card__slides {
  display: flex;
  width: 100%;      /* 👈 важно */
  height: 100%;     /* 👈 важно */
  transition: transform 0.35s ease;
  will-change: transform;
}

/* Каждый слайд занимает ровно ширину карточки */
.beyo-product-card__slide {
  flex: 0 0 100%;
  height: 100%;     /* 👈 чтобы картинка была по высоте */
  position: relative;
  overflow: hidden;
}

/* Не прячем через opacity — всё управляем только transform'ом */
.beyo-product-card__slide,
.beyo-product-card__slide.is-active {
  opacity: 1 !important;
}

/* Картинка внутри */
.beyo-product-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

/* Делаем zoom только при hover на блок изображения */
.beyo-product-card__image-wrapper:hover .beyo-product-card__image {
  transform: scale(1.05);
}
/* Кнопки навигации (кружок справа, как на скрине) */

.beyo-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(0.95);
  width: 24px;   /* было 28-30, делаем компактнее */
  height: 24px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px; /* можно 12-14 */
  cursor: pointer;
  z-index: 5;
  padding: 0;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.18);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.beyo-product-card:hover .beyo-slider-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) scale(1);
}

/* ---- Hover НА стрелку ---- */
.beyo-slider-nav:hover {
  background: #111827;
  color: #ffffff;
}

.beyo-slider-nav--prev {
  left: 8px;
}

.beyo-slider-nav--next {
  right: 8px;
}

/* Точки (индикаторы слайдов) */

.beyo-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  z-index: 5;
}

.beyo-slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  border: none;
  background: rgba(0, 0, 0, 0.2);
  padding: 0;
  cursor: pointer;
}

.beyo-slider-dot.is-active {
  background: rgba(0, 0, 0, 0.7);
}

.beyo-product-card__nav:focus-visible {
  box-shadow: 0 0 0 2px rgba(251, 191, 36, 0.9);
}

/* Body */

.beyo-product-card__body {
  padding: 10px 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.beyo-product-card__title {
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s ease;
  font-size: 14px;
  margin-bottom: 0;
  font-family: "Mulish", sans-serif !important;
  font-weight: 400;
}

/* Подчёркивание, когда наводим на карточку или сам title */
.beyo-product-card__title:hover{
  text-decoration-color: #111827;
}

.beyo-product-card__title a {
  color: inherit;
  text-decoration: none;
}

.beyo-product-card__title a:hover {
  text-decoration: underline;
}

/* Цена, как на скрине */

.beyo-product-card__price-row {
  margin-top: 4px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.beyo-product-card__price-main {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

.beyo-product-card__price-main--sale {
  color: #111827;
}

.beyo-product-card__price-compare {
  font-size: 13px;
  color: #9ca3af;
  text-decoration: line-through;
}

/* ===== Pagination ===== */

.beyo-pagination {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.beyo-page-btn {
  min-width: 32px;
  height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.beyo-page-btn:hover {
  background: #111827;
  color: #ffffff;
  border-color: #111827;
}

.beyo-page-btn.is-active {
  background: #111827;
  color: #ffffff;
  border-color: #111827;
}

/* Пустое состояние */
.beyo-products-empty {
  font-size: 14px;
  color: #6b7280;
}

.beyo-product-card__badge-col {
  position: absolute;
  top: 6px;
  right: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 6;
}

.beyo-product-card__pill--reserved {
  background: #dc2626; /* красный */
  color: #ffffff;
}

.beyo-product-card__pill {
  min-width: 64px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  text-align: center;
}

.beyo-product-card__pill--soldout {
  background: #111827;
  color: #ffffff;
}

.beyo-product-card__pill--discount {
  background: #ffffff;
  color: #111827;
}

.beyo-product-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.beyo-page-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 32px;
  font-size: 13px;
  color: #9ca3af;
}

/* ===== No-results form ===== */

.beyo-no-results {
  margin-top: 16px;
  padding: 24px 20px 20px;
  border-radius: 16px;
  border: 1px dashed #d1d5db;
  background: #f6f7f9;
  font-size: 14px;
}

.beyo-no-results__title {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 6px;
}

.beyo-no-results__subtitle {
  margin: 0 0 18px;
  color: #4b5563;
  font-size: 14px;
}

.no-results-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
}

.no-results-form__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.no-results-form__field--full {
  grid-column: 1 / -1;
}

.no-results-form__field label {
  font-size: 13px;
  color: #374151;
}

.no-results-form__field input,
.no-results-form__field textarea {
  border-radius: 10px;
  border: 1px solid #d1d5db;
  padding: 8px 10px;
  font-size: 14px;
  background: #ffffff;
  width: 100%;
  min-width: 0;
}

.no-results-form__field textarea {
  resize: vertical;
  min-height: 96px;
}

.no-results-form__actions {
  margin-top: 16px;
}

.no-results-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 999px;
  border: none;
  background: #111827;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
}

.no-results-form__submit:hover {
  background: #020617;
  transform: translateY(-1px);
}

.no-results-form__submit:disabled {
  opacity: 0.7;
  cursor: default;
  transform: none;
}

.no-results-form__success {
  margin-top: 10px;
  font-size: 13px;
  color: #166534;
}

.no-results-form__errors {
  margin-top: 10px;
  font-size: 13px;
  color: #b91c1c;
}

.no-results-form__error {
  padding: 4px 0;
}

/* Мобилка: форма в одну колонку */

@media (max-width: 749px) {
  .no-results-form__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* FULL WIDTH container */
.beyo-no-results-full {
  width: 100%;
  margin-top: 24px;
}

.beyo-no-results {
  max-width: 960px; /* можно сделать 900/1000, если хочешь шире */
  margin: 0 auto;
}

/* Когда внутри грид-контейнера форма */
.beyo-products-grid.beyo-products-grid--no-results {
  grid-template-columns: 1fr !important;
}

.no-results-form__filters {
  margin-bottom: 16px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
}

.no-results-form__filters-title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #4b5563;
}

.no-results-form__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.no-results-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  background: #111827;
  color: #ffffff;
  white-space: nowrap;
}

.no-results-chip--empty {
  background: #e5e7eb;
  color: #6b7280;
}

.no-results-form__field select {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  padding: 8px 10px;
  font-size: 14px;
  background: #ffffff;
  background-image: none !important;
}

/* ===== Mobile tweaks: 2 cards per row + compact cards ===== */

/* На всех телефонах делаем по 2 карточки в ряд */
@media (max-width: 749px) {
  .beyo-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px; /* чуть плотнее */
  }

  .beyo-product-card__body {
    padding: 8px 8px 10px;
    gap: 4px;
  }

  .beyo-product-card__title {
    font-size: 13px;           /* компактный, но читабельный */
    line-height: 1.25;
  }

  .beyo-product-card__price-main {
    font-size: 13px;
  }

  .beyo-product-card__price-compare {
    font-size: 12px;
  }
}

/* На совсем узких экранах можно ещё чуть уменьшить отступы */
@media (max-width: 480px) {
  .beyo-products-grid {
    gap: 10px;
  }

  .beyo-product-card__body {
    padding: 6px 6px 8px;
  }
}

/* --- Smooth image reveal (almost invisible) --- */
.beyo-product-card__image-wrapper {
  position: relative;
  overflow: hidden;
}

/* Лёгкий (почти незаметный) shimmer на время загрузки */
.beyo-product-card__image-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.06;                 /* почти невидимый */
  background: linear-gradient(90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.9) 50%,
    rgba(255,255,255,0) 100%);
  transform: translateX(-60%);
  animation: beyoShimmer 1.2s ease-in-out infinite;
  pointer-events: none;
}

/* Как только в wrapper появляется загруженная картинка — shimmer убираем */
.beyo-product-card__image-wrapper.has-loaded::before {
  display: none;
}

@keyframes beyoShimmer {
  0%   { transform: translateX(-60%); }
  100% { transform: translateX(60%); }
}

/* Сама картинка: сначала чуть прозрачная/чуть размытая, потом плавно проявляется */
.beyo-product-card__image {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.0;                 /* полностью скрыта до загрузки */
  transform: translateZ(0);
  filter: blur(6px);
  transition: opacity 260ms ease, filter 320ms ease;
  will-change: opacity, filter;
}

/* Когда загрузилась */
.beyo-product-card__image.is-loaded {
  opacity: 1;
  filter: blur(0);
}

/* ===== BEYO Products Loader ===== */
.beyo-products-loader {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: opacity .25s ease;
}

.beyo-products-loader.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.beyo-products-loader__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.beyo-products-loader__spinner {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #e6e6e6;
  border-top-color: #111;
  animation: beyoSpin .8s linear infinite;
}

.beyo-products-loader__text {
  font-size: 13px;
  color: #777;
  letter-spacing: .2px;
}

@keyframes beyoSpin {
  to { transform: rotate(360deg); }
}

/* важно: грид должен быть relative */
.beyo-products-grid {
  position: relative;
  min-height: 240px;
}
