/* assets/css/pages/user/productos.css */

/* --- Layout del Contenedor del Catálogo --- */
.container-fluid.product-catalog {
  margin: 0;
}
.row.product-grid {
  margin: 0 !important;
  padding: 0 !important;
}

/* --- Estilos de la Tarjeta de Producto --- */
.product-card {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.product-card .card-img-top {
  display: block;
  width: 100%;
  height: 680px;
  object-fit: cover;
  border-radius: 0;
}

/* --- Video de Producto --- */
.video-cover {
  position: relative;
  width: 100%;
  height: 680px;
  overflow: hidden;
  background-color: #000;
}
/* Las reglas de video-cover iframe están en components/video-covers.css */

/* --- Cuerpo de la Tarjeta --- */
.product-card .card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px;
  min-height: 200px;
}
.card-body-content {
  flex: 0 0 auto;
}
.card-body-footer {
  margin-top: auto;
}

/* --- Clases para Precios y Texto (reemplazan estilos en línea) --- */
.product-price-final {
  font-size: 1.4rem;
}
.product-price-original {
  font-size: 0.9rem;
  text-decoration: line-through;
  margin-bottom: 4px;
}
.product-name {
  font-size: 0.9rem;
  margin-bottom: 8px;
}

/* --- Botón "Ver más" --- */
.btn-vermas {
  width: 100%;
  background-color: #fff;
  border: 1px solid #000;
  color: #000;
  text-align: center;
  padding: 6px 12px;
  transition: background-color 0.3s, color 0.3s;
  font-size: 0.9rem;
  text-decoration: none;
  display: block;
}
.btn-vermas:hover {
  background-color: #000;
  color: #fff;
  text-decoration: none;
}

/* --- Etiquetas de Promoción --- */
.promo-tag {
  background: linear-gradient(45deg, #ff6b6b, #ff4757);
  color: #fff;
  border-radius: 4px;
  padding: 2px 4px 2px 2px;
  margin-left: 6px;
  font-size: 1rem;
  font-weight: 700;
  vertical-align: middle;
}
.free-shipping {
  font-size: 0.9rem;
  color: #28a745;
  display: inline-flex;
  align-items: center;
}
.free-shipping i {
  margin-right: 4px;
}
.cuotas-subtle {
  display: inline-block;
  font-size: 1rem;
  font-weight: bold;
  color: #777;
  margin-top: 6px;
}