/* Layout */
#search-page {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: #f7f7f7;
  font-family: sans-serif;
}

/* Filterpanel */
#filters {
  width: 260px;
  background: #fafafa;
  padding: 20px;
  border-right: 1px solid #e0e0e0;
  border-radius: 0 10px 10px 0;
}

#filters h2 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.filter-block {
  margin-bottom: 20px;
}

.filter-block h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
  border-bottom: 1px solid #ddd;
  padding-bottom: 4px;
}

/* Checkboxar */
.ais-RefinementList-item {
  margin: 6px 0;
}

.ais-RefinementList-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.95rem;
  color: #444;
  transition: color .15s ease;
}

.ais-RefinementList-label:hover {
  color: #000;
}

.ais-RefinementList-checkbox {
  width: 16px;
  height: 16px;
  border: 1px solid #bbb;
  border-radius: 4px;
  transition: background .2s ease, border-color .2s ease;
}

.ais-RefinementList-item--selected .ais-RefinementList-checkbox {
  background: #333;
  border-color: #333;
}

/* Clear filters */
.ais-ClearRefinements-button {
  margin-top: 15px;
  padding: 10px 14px;
  background: #e8e8e8;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background .2s ease;
}

.ais-ClearRefinements-button:hover {
  background: #d5d5d5;
}

/* Produktkort */
.sc-card {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  border: 1px solid #ddd;
  transition: transform .2s ease, box-shadow .2s ease;
}

.sc-card:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.sc-image {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}

.sc-title {
  font-size: 1.1rem;
  font-weight: 600;
}

.sc-price {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 8px 0;
}

.sc-material,
.sc-dim,
.sc-type,
.sc-shape,
.sc-stock {
  font-size: .9rem;
  color: #666;
}

/* Pagination */
#pagination {
  margin-top: 20px;
}