/* PRODUCT DETAIL */
.product-detail {
  padding: 20px 0;
}

.product-detail-card {
  background: #1c1c1c;
  border-radius: 12px;
  padding: 20px;

  max-width: 900px;     /* un poco más ancho si pondrás imagen y texto lado a lado */
  margin: 30px auto;

  display: flex;
  flex-direction: column;   /* luego lo cambiaremos en desktop */
  gap: 20px;
}
/* Desktop */
@media (min-width: 768px) {
  .product-detail-card {
    flex-direction: row;
    align-items: flex-start;
  }

  .product-detail-img {
    width: 50%;
    max-width: 400px;
  }

  .product-detail-info {
    width: 50%;
  }
}

.product-detail-img {
  width: 100%;
  border-radius: 10px;
}

.product-detail-name {
  font-size: 1.2rem;
  font-weight: bold;
}

.product-detail-price {
  font-size: 1.1rem;
  color: #39ff14;
  font-weight: bold;
}

.product-detail-description {
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.4;
}

.back-btn {
  display: inline-block;
  margin-bottom: 15px;
  color: #39ff14;
  text-decoration: none;
  font-size: 0.9rem;
}

.details-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 14px;
  font-size: 14px;
  text-align: center;
  border-radius: 6px;
  text-decoration: none;

  background: transparent;
  color: #7CFF00;
  border: 1px solid #7CFF00;

  transition: all 0.3s ease;
}

.details-btn:hover {
  background: #7CFF00;
  color: #000;
}


.product-detail-img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 10px;
}
.product-detail-layout {
  display: flex;
  gap: 30px;
  align-items: center;
}

.product-detail-info {
  flex: 1;
}

.product-detail-info a,
.product-detail-info button {
  width: 100%; /* que cada botón siempre ocupe toda la pantalla en móvil */
}.product-detail-info a,
.product-detail-info button {
  width: 100%; /* que cada botón siempre ocupe toda la pantalla en móvil */
}

@media (max-width: 768px) {
  .product-detail-layout {
    flex-direction: column;
  }
}




.share-btn {
  margin-top: 10px;
  background: transparent;
  border: 1px solid #39ff14;
  color: #39ff14;
  padding: 8px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
  display: block;
}

.share-btn:hover {
  background: #39ff14;
  color: #000;
}

/* 🟢 Más espacio entre descripción y botones en mobile */
@media (max-width: 768px) {
  .product-detail-description {
    margin-bottom: 18px;
    line-height: 1.5;
  }

  .product-detail-info a,
  .product-detail-info button {
    margin-top: 8px;
  }
}

/* CONTENEDOR BOTONES PRODUCTO */
.product-detail-info {
  display: flex;
  flex-direction: column;
  gap: 12px; /* separación real entre botones */
}

/* BOTONES MISMO TAMAÑO */
.product-detail-info .whatsapp-btn,
.product-detail-info .share-btn {
  width: 100%;
  text-align: center;
}
