.productos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.producto-card {
  background-color: var(--bg-white);
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  border: 1px solid var(--color-border);
}

.producto-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background-color: var(--bg-sage);
  border-radius: 8px;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.producto-card:hover img {
  transform: scale(1.05);
}

.product-title {
  font-family: 'Roboto', sans-serif;
  margin-top: 15px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text);
}

.product-variety {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  font-weight: normal;
  margin-bottom: 0.5rem;
}

.product-format {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.producto-card .precio {
  font-weight: 700;
  margin: 1rem 0;
  color: var(--color-primary);
  font-size: 1.2rem;
}

.no-image-placeholder {
  height: 240px;
  background: var(--bg-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--color-primary);
  font-size: 2.5rem;
}

/* ================================
   ESCRIPTORI
   ================================ */
@media (min-width: 768px) {
  .productos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}