@font-face {
  font-family: "widock-trial";
  src: url("../fonts/widock-bold.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}


/* Контейнер: фильтр + товары */
#lana-filter-wrap {
  display: flex;
  gap: 30px;
}

/* Левая колонка — фильтр */
#lana-filter-form {
  width: 25%;
}

/* Правая колонка — товары */
#lana-products {
  width: 75%;
  transition: opacity 0.3s ease;
}

#lana-products.loading {
  opacity: 0.4;
  pointer-events: none;
}

/* Заголовки фильтров (Цена, Размер и т.д.) */
#lana-filter-form h3 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
}

#lana-filter-form h3::after {
  content: "›";
  position: absolute;
  right: 0;
  transition: 0.3s ease;
}

#lana-filter-form h3.open::after {
  transform: rotate(90deg);
}

/* Контент каждого фильтра */
.lana-filter-section {
  display: none;
  margin-bottom: 20px;
}

/* Метки и чекбоксы */
#lana-filter-form label {
  display: block;
  font-size: 14px;
  margin: 5px 0;
}

#lana-filter-form input[type="checkbox"],
#lana-filter-form input[type="radio"] {
  margin-right: 8px;
}

/* Кнопка "Показать" */
#lana-filter-form button[type="submit"] {
  width: 100%;
  background: white;
  border: 1px solid black;
  color: black;
  padding: 12px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 20px;
}

/* Кнопка "Сбросить" */
#lana-reset {
  display: block;
  width: 100%;
  background: none;
  border: none;
  color: #888;
  text-align: center;
  font-size: 13px;
  margin-top: 10px;
  cursor: pointer;
}

/* Поле ввода цены */
#lana-price-slider {
  margin: 15px 0;
}

#lana-filter-form input[type="number"] {
  width: 100%;
  padding: 6px 8px;
  margin-top: 5px;
  margin-bottom: 10px;
  box-sizing: border-box;
  border: 1px solid #ccc;
}

/* ===== СОРТИРОВКА ===== */

/* Секция сортировки — отделена от фильтров */
.lana-sort-section {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid #e0e0e0;
}

/* Заголовок сортировки */
.lana-sort-title {
  font-family: "widock-trial", sans-serif;
  font-size: 30px;
  margin-bottom: 20px;
}

/* Радиокнопки сортировки */
.lana-sort-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lana-sort-options label {
  font-size: 16px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.lana-sort-options input[type="radio"] {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid black;
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
  cursor: pointer;
}

.lana-sort-options input[type="radio"]:checked::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: black;
  border-radius: 50%;
  top: 3px;
  left: 3px;
}

/* ===== СЕТКА ТОВАРОВ (woocommerce) ===== */
ul.products {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)) !important;
  gap: 30px !important;
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
}

ul.products li.product {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  background: none;
  box-shadow: none;
  border: none;
  padding: 0;
  text-align: left;
  font-family: inherit;
}

ul.products li.product img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin-bottom: 10px;
  border-radius: 0;
}

ul.products li.product h2.woocommerce-loop-product__title {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  text-transform: uppercase;
}

ul.products li.product .woocommerce-loop-category__title {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 5px;
}

ul.products li.product .price {
  font-size: 14px;
  font-weight: 700;
  display: block;
  margin-top: 5px;
}