/**
 * Estilos para los shortcodes de productos
 */

.producto-shortcode {
  margin: 2rem 0;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  background-color: #fff;
}

.producto-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-color: #f3f4f6;
  border-bottom: 1px solid #e5e7eb;
}

.producto-titulo {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
}

.producto-descuento {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background-color: #ef4444;
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 0.25rem;
}

.producto-contenido {
  display: flex;
  flex-direction: column;
  padding: 1rem;
}

@media (min-width: 768px) {
  .producto-contenido {
    flex-direction: row;
  }
}

.producto-imagen {
  width: 100%;
  margin-bottom: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .producto-imagen {
    width: 40%;
    margin-bottom: 0;
    padding-right: 1rem;
  }
}

.producto-imagen img {
  max-width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: contain;
}

.producto-info {
  width: 100%;
}

@media (min-width: 768px) {
  .producto-info {
    width: 60%;
  }
}

.producto-rating {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.producto-rating .estrellas {
  color: #f59e0b;
  margin-right: 0.5rem;
}

.producto-rating .rating-count {
  font-size: 0.875rem;
  color: #6b7280;
}

.producto-descripcion {
  margin-bottom: 1rem;
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.5;
}

.producto-caracteristicas,
.producto-usos {
  margin-bottom: 1rem;
}

.producto-caracteristicas h4,
.producto-usos h4 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
}

.producto-caracteristicas ul,
.producto-usos ul {
  margin: 0;
  padding-left: 1.5rem;
  list-style-type: none;
}

.producto-caracteristicas li,
.producto-usos li {
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  color: #4b5563;
  display: flex;
  align-items: center;
}

.producto-caracteristicas li i,
.producto-usos li i {
  margin-right: 0.5rem;
  color: #3b82f6;
  width: 1rem;
  text-align: center;
}

.producto-imagenes-adicionales {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.producto-imagenes-adicionales .imagen-adicional {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 1px solid #e5e7eb;
  border-radius: 0.25rem;
}

.producto-precios {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.precio {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
}

.precio-original {
  font-size: 1rem;
  color: #9ca3af;
  text-decoration: line-through;
  margin-right: 0.5rem;
}

.precio-descuento {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ef4444;
}

.producto-accion {
  margin-top: 1rem;
}

.boton-amazon {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #ff9900;
  color: white;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.25rem;
  transition: background-color 0.2s;
}

.boton-amazon:hover {
  background-color: #e88a00;
}

.producto-error {
  padding: 1rem;
  background-color: #fee2e2;
  border: 1px solid #fecaca;
  border-radius: 0.25rem;
  color: #b91c1c;
  font-size: 0.875rem;
  margin: 1rem 0;
}

/* Estilos para el elemento de carga */
.producto-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background-color: #f9f9f9;
  border-radius: 0.5rem;
  margin: 1rem 0;
  border: 1px solid #e5e7eb;
}

.producto-loading-spinner {
  font-size: 2rem;
  color: #3B82F6;
  margin-bottom: 1rem;
}

.producto-loading-text {
  font-size: 1rem;
  color: #4B5563;
}

/* Estilos adicionales para el elemento de error */
.producto-error-icon {
  font-size: 2rem;
  color: #EF4444;
  margin-bottom: 1rem;
}

.producto-error-text {
  font-size: 1rem;
  color: #B91C1C;
}
