/* ==============================
   PRODUCT DETAILS PAGE
============================== */

.product-details {
  margin-top: 50px;
}

.details-wrapper {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* Image Section */
.details-image {
  flex: 1;
  min-width: 320px;
}

.details-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* Info Section */
.details-info {
  flex: 1;
  min-width: 320px;
}

.details-info h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #111;
}

.details-info .price {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}

.details-info .description {
  margin: 20px 0;
  line-height: 1.6;
  color: #555;
}

/* Buttons */
.btn-cart {
  display: inline-block;
  padding: 12px 25px;
  background: #ff9900;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  margin-right: 12px;
  transition: 0.3s;
}

.btn-cart:hover {
  background: #e68a00;
}

.btn-whatsapp {
  display: inline-block;
  padding: 12px 25px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
}

/* Responsive */
@media (max-width: 768px) {
  .details-wrapper {
    flex-direction: column;
  }

  .details-image img {
    max-width: 100%;
  }
}