/* Estilos generales */
.producto-detalle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 3rem 0;
  align-items: start;
  background: #fff8f0; /* Fondo claro con tono tierra */
  padding: 2rem;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  font-family: "Segoe UI", sans-serif;
}

/* Sección de imagen */
.producto-imagen {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f9f4ef;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
}

.imagen-producto {
  width: 100%;
  height: auto;
  max-width: 500px;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.imagen-producto:hover {
  transform: scale(1.02);
}

/* Información del producto */
.producto-info {
  padding: 1.5rem;
}

.producto-info h1 {
  font-size: 2.4rem;
  color: #8b4513;
  margin-bottom: 1.2rem;
  line-height: 1.3;
}

/* Precio */
.precio {
  font-size: 2rem;
  color: #a0522d;
  font-weight: bold;
  margin: 1.8rem 0;
}

/* Descripción del producto */
.descripcion-producto {
  margin: 2.5rem 0;
  padding: 2rem;
  background: #fff3e6;
  border-radius: 10px;
  border-left: 6px solid #c05621;
}

.descripcion-producto h2 {
  font-size: 1.6rem;
  color: #6d3610;
  margin-bottom: 1.2rem;
}

.descripcion-producto p {
  line-height: 1.7;
  color: #4d392e;
  font-size: 1.05rem;
}

/* Botón de compra con WhatsApp */
.comprar-control {
  margin: 2.5rem 0;
}

.comprar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: white;
  font-size: 1.4rem;
  font-weight: 600;
  border: none;
  padding: 1.3rem 3rem;
  border-radius: 10px;
  cursor: pointer;
  gap: 1.5rem;
  transition: all 0.3s;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.comprar-btn:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.whatsapp2-icon {
  width: 52px;
  height: 52px;
  transition: transform 0.3s;
}

.comprar-btn:hover .whatsapp2-icon {
  transform: scale(1.1);
}

/* Meta información */
.producto-meta {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 2px solid #e2dcd6;
}

.producto-meta p {
  margin-bottom: 1rem;
  color: #4e3b2f;
  font-size: 1.05rem;
}

.producto-meta strong {
  color: #2f1f13;
  font-weight: 600;
}

/* Estilos responsivos */
@media (max-width: 768px) {
  .producto-detalle {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem;
  }

  .producto-info {
    text-align: center;
    padding: 0;
  }

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

  .comprar-btn {
    margin: 0 auto;
    font-size: 1.3rem;
    padding: 1.2rem 2.5rem;
    max-width: 100%;
  }

  .descripcion-producto {
    text-align: left;
    padding: 1.5rem;
  }
}

/* Botón de regresar */
.back-button {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: #8b4513;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 10;
}

.back-button:hover {
  background-color: #6d3610;
  transform: translateY(-2px);
}
