/*
Theme Name: Astra Child
Template: astra
Version: 1.0
*/

.felicia-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.felicia-filters button {
  padding: 10px 16px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.felicia-filters button.is-active {
  font-weight: 700;
  background: #111;
  color: #fff;
}

.products-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.products-row li.product {
  flex: 0 0 280px;
  scroll-snap-align: start;
}