.qobrix-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.qobrix-card {
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.qobrix-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(0,0,0,0.08);
}

.qobrix-card img {
  width: 100%;
  aspect-ratio: 1280 / 853;
  object-fit: cover;
  display: block;
}

.qobrix-card h3 {
  font-size: var(--fs-h5);
  line-height: var(--lh-tight);
  margin: 1rem 1rem 0.5rem;
  color: var(--text-main);
  padding-top: 0;
}

.qobrix-card .price {
  margin: 0 1rem 0.5rem;
  font-size: var(--fs-h6);
  font-weight: 700;
  color: var(--color-secondary);
}

.qobrix-card .meta {
  margin: 0 1rem 1rem;
  font-size: var(--fs-p);
  line-height: var(--lh-base);
  color: var(--text-muted);
}

/* Tablet */
@media (min-width: 601px) {

  .qobrix-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop */
@media (min-width: 1025px) {

  .qobrix-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Fredetco – Qobrix – Live Filter CSS */

.qobrix-filter-form {
  margin-bottom: 2rem;
}

.qobrix-filter-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.qobrix-filter-grid select,
.qobrix-filter-grid button {
  width: 100%;
  height: 52px;
  border: 1px solid #d8d8d8;
  border-radius: 12px;
  background: #ffffff;
  padding: 0 1rem;
  font-size: 15px;
  font-family: inherit;
  color: #222;
  box-shadow: none;
}

.qobrix-filter-grid select:focus {
  outline: none;
  border-color: #c7a46a;
}

.qobrix-filter-grid button {
  background: #0A5F55;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: 0.25s ease;
}

.qobrix-filter-grid button:hover {
  background: #0c7567;
}

@media (max-width: 1200px) {

  .qobrix-filter-grid {
    grid-template-columns: repeat(3, 1fr);
  }

}

@media (max-width: 767px) {

  .qobrix-filter-grid {
    grid-template-columns: 1fr;
  }

}