@charset "UTF-8";
/*!
 * BiomTeam – egyedi stílusok (SCSS forrás)
 * --------------------------------------------------------------------------
 * EZT a fájlt szerkeszd, NE a style.css-t és NE a theme gyökér style.scss-t.
 * A WP-SCSS plugin fordítja -> ugyanebbe a mappába (custom.css), és automatikusan
 * betölti a fő stíluslap UTÁN, így ezek a szabályok felülírják a Storefront stílusait.
 *
 * A fő style.css a Storefront kész (szállított) stíluslapja – azt nem fordítjuk.
 * Gyors, egyszeri felülírásokhoz a theme gyökér custom.css is használható.
 * --------------------------------------------------------------------------
 */
/* ===================== Termékek nézet ===================== */
.biom-products-app {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.biom-filters {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0.75rem 0;
  margin-bottom: 1.25rem;
  background: #fff;
  border-bottom: 1px solid #ececec;
}
.biom-filters__group {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.biom-pill {
  flex: 0 0 auto;
  padding: 0.5rem 0.9rem;
  border: 1px solid #cfd6d4;
  border-radius: 999px;
  background: #fff;
  color: #37433f;
  font: inherit;
  font-size: 0.9rem;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
}
.biom-pill.is-active {
  background: #536663;
  color: #fff;
  border-color: #536663;
}
.biom-pill--ship {
  border-style: dashed;
}
.biom-products {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}
.biom-product {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.15s ease;
}
.biom-product:hover {
  border-color: #000;
}
.biom-product__image {
  position: relative;
}
.biom-product__image img {
  display: block;
  width: 100%;
  aspect-ratio: 1.5;
  object-fit: cover;
}
.biom-product__placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 1.5;
  background: #f0f0f0;
}
.biom-badge {
  position: absolute;
  top: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 5px;
}
.biom-badge--intl {
  right: 8px;
  background: #fff;
  color: #7a6f57;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}
.biom-badge--sale {
  left: 8px;
  background: #c0392b;
  color: #fff;
}
.biom-product__body {
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.biom-product__name {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
  line-height: 1.25;
}
.biom-product__excerpt {
  color: #8a948f;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.biom-product__price {
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.biom-product__price del {
  color: #b6b6b6;
  font-weight: 400;
  margin-right: 0.4rem;
}
.biom-product__price ins {
  text-decoration: none;
}
.biom-product__more {
  display: block;
  margin-top: auto;
  text-align: center;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  background: #536663;
  border-radius: 6px;
  padding: 0.7rem;
}
.biom-product:hover .biom-product__more {
  background: #000;
}
.biom-product__link {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.biom-product[hidden] {
  display: none !important;
}
/* Üres szűrés: ugyanolyan SZÉLES (és reális magasságú) terület, mint a feltöltött rács,
   hogy a tartalom ne "ugorjon össze" egy rövid szövegsorrá. */
.biom-products__empty {
  width: 100%;
  min-height: 240px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #8a948f;
  padding: 2rem 1rem;
}
@media (max-width: 1023px) {
  .biom-products {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 639px) {
  .biom-products {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* mobil: 2 oszlop */
