/* ==================================
   Estilos para Single Producto
   ================================== */

.single-producto {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 1rem;
}

/* Contenedor principal de 2 columnas */
.product-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem; /* Aumentamos el espacio entre columnas */
  align-items: start; /* Alinea la parte superior de ambas columnas */
}

/* Columna Izquierda: Imágenes */
.product-images .main-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid #eee;
}

.thumbs-wrapper {
  margin-top: 1rem;
}
/* (Tus estilos para .thumbs-container, .thumb, etc. no necesitan cambios) */


/* Columna Derecha: Información */
.product-summary {
  display: flex;
  flex-direction: column;
  height: 100%; /* Ocupa toda la altura de la celda del grid */
}

.product-title {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.product-snippet {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.price-unitario,
.price-paquete {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  margin-bottom: 0.75rem;
  border-left: 4px solid var(--color-terciario);
  background: rgba(0, 0, 0, 0.02);
}

/* Área de compra (Cantidad + Botón) */
.add-to-cart-area {
  margin-top: auto; /* EMPUJA ESTE BLOQUE HACIA ABAJO */
  padding-top: 1.5rem;
  border-top: 1px solid #f0f0f0;
}

.quantity-wrap {
  margin-bottom: 1rem;
}

.quantity-wrap label {
  margin-right: 0.5rem;
  font-weight: 600;
}

.quantity-wrap select {
  padding: 0.5rem;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.btn.add-to-cart {
  display: block; /* Para que ocupe todo el ancho */
  width: 100%;
  text-align: center;
  padding: 0.8rem 1.5rem;
  background: var(--color-terciario);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color .2s;
}

.btn.add-to-cart:hover {
    background-color: var(--color-cuaternario);
}


/* Responsive para móvil */
@media (max-width: 768px) {
  .product-hero {
    grid-template-columns: 1fr; /* Una sola columna en móvil */
  }
  .product-summary {
      height: auto; /* Reseteamos la altura en móvil */
  }
  .add-to-cart-area {
      margin-top: 1.5rem; /* Reseteamos el margen en móvil */
  }
}