/* ==== GRID DE PRODUCTOS ==== */
.contenedor-productos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  justify-items: center;
  padding: 25px 10px 10px;
  max-width: 1100px;
  margin: 0 auto;
}

/* ==== TARJETA DE PRODUCTO ==== */
.producto {
  background: linear-gradient(145deg, #0f172a, #020617);
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.55);
  overflow: hidden;
  width: 240px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 520px;        /* altura mínima mayor para dar espacio */
  border: 1px solid rgba(148, 163, 184, 0.35);
  position: relative;
  padding-bottom: 60px;     /* reserva espacio para botón/mensaje al fondo */
}

.producto::before {
  content: "Granizado";
  position: absolute;
  top: 10px;
  left: -32px;
  background: #f97316;
  color: #111827;
  padding: 4px 40px;
  font-size: 0.7em;
  font-weight: 700;
  text-transform: uppercase;
  transform: rotate(-35deg);
  box-shadow: 0 4px 8px rgba(0,0,0,0.4);
  z-index: 1;
}

.producto:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 18px 40px rgba(0,0,0,0.7);
  border-color: #f97316;
}

/* Contenido interno (título, descripción, precio, controles) */
.producto-contenido {
  padding: 10px 12px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
}

/* Imagen del producto */
.producto img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-bottom: 2px solid rgba(15, 23, 42, 0.9);
  background: radial-gradient(circle at center, #f97316 0, #0f172a 50%, #020617 100%);
}

/* Título */
.producto h3 {
  font-size: 1.05em;
  color: #f9fafb;
  margin: 12px 0 4px;
  font-weight: 700;
  min-height: 48px;    /* misma altura para títulos más largos */
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
}

/* Descripción corta */
.producto .descripcion {
  font-size: 0.85em;
  color: #cbd5f5;
  margin: 0 0 8px;
  min-height: 50px;    /* misma altura para descripciones más largas */
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
}

/* Precio */
.precio {
  font-size: 1.2em;
  font-weight: 800;
  color: #fff;
  margin: 10px 0 8px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
}

/* Controles de compra (texto + input) */
.controles-compra {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.controles-compra span {
  font-size: 0.9em;
  color: #e5e7eb;
}

/* Input de cantidad */
.cantidad-input {
  width: 65px;
  padding: 6px;
  margin: 0;
  border: 1px solid rgba(148, 163, 184, 0.7);
  border-radius: 999px;
  text-align: center;
  font-size: 0.85em;
  background: rgba(15, 23, 42, 0.8);
  color: #e5e7eb;
}

.cantidad-input:focus {
  outline: none;
  border-color: #f97316;
  box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.5);
}

/* Botón de agregar al carrito (fijo abajo) */
.btn-agregar {
  background: linear-gradient(135deg, #f97316, #ea580c);
  border: none;
  color: #111827;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
  font-size: 0.9em;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 8px 18px rgba(249, 115, 22, 0.45);

  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 30px);
  max-width: 200px;
}

.btn-agregar:hover {
  transform: translateX(-50%) translateY(-2px) scale(1.03);
  box-shadow: 0 12px 26px rgba(249, 115, 22, 0.7);
}

.btn-agregar:active {
  transform: translateX(-50%) translateY(0);
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.9);
}

/* Mensaje de producto agotado (fijo abajo también) */
.producto-agotado {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 30px);
  max-width: 200px;
  background: #dc2626;
  color: white;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9em;
  text-align: center;
  box-shadow: 0 8px 18px rgba(220, 38, 38, 0.45);
}

/* ==== RESPONSIVE ==== */
@media (max-width: 1000px) {
  .contenedor-productos {
    max-width: 850px;
  }
}

@media (max-width: 768px) {
  .contenedor-productos {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    max-width: 600px;
  }

  .producto {
    min-height: 500px;
  }
}

@media (max-width: 480px) {
  .contenedor-productos {
    grid-template-columns: 1fr;
    max-width: 300px;
  }

  .producto {
    width: 100%;
    max-width: 280px;
    min-height: 480px;
  }

  .producto h3 {
    min-height: 44px;
    font-size: 1em;
  }

  .producto .descripcion {
    min-height: 46px;
    font-size: 0.82em;
  }
}