/* Contenedor principal */
.producto-detalle {
  display: flex;
  flex-direction: row-reverse;
  gap: 2rem;
  margin: 2rem auto;
  max-width: 1200px;
  padding: 2rem;
  background: #fff8f0;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-family: "Segoe UI", sans-serif;
}

/* Imagen del producto */
.producto-imagen {
  flex: 0 0 40%;
  min-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.producto-imagen img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Información del producto */
.producto-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.producto-info h1 {
  color: #8b4513;
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
}

.producto-info .cita {
  font-style: italic;
  color: #a0522d;
  background: #fff3e0;
  padding: 1rem;
  border-left: 4px solid orange;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  border-radius: 6px;
}

.producto-info h2 {
  color: #8b4513;
  font-size: 1.6rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.producto-info p {
  color: #444;
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

/* Enlace de volver */
.volver-link {
  color: orange;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  margin-top: 1.5rem;
  display: inline-block;
  transition: color 0.3s ease;
}

.volver-link:hover {
  color: darkorange;
  text-decoration: underline;
}

/* Responsive para móviles */
@media (max-width: 768px) {
  .producto-detalle {
    flex-direction: column;
    padding: 1.5rem;
  }

  .producto-imagen {
    min-width: 100%;
  }

  .producto-info h1 {
    font-size: 2rem;
  }

  .producto-info .cita {
    font-size: 1rem;
  }
}
