/* =========================================================
   PRODUCTOS – Leita Creaciones
   ========================================================= */

.productos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 640px) {
  .productos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .productos-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.producto-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.producto-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.producto-img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f0ece8;
}

.producto-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.producto-card:hover .producto-img-wrap img {
  transform: scale(1.04);
}

.producto-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem;
  flex: 1;
}

.producto-body h3 {
  color: var(--color-heading, #1a1a2e);
}

.producto-body p {
  flex: 1;
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  align-self: flex-start;
  margin-top: 0.75rem;
}
