/* ==== PRODUCT DETAILS SECTION ==== */
.product-section {
  max-width: 1100px;
  margin: 100px auto;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  align-items: center;
  padding: 40px 30px;
}

/* Product Image */
.product-section .product-image {
  flex: 1;
  min-width: 320px;
  background: #f8f9ff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  border-radius: 10px;
}
.product-section .product-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
}

/* Product Content */
.product-section .product-content {
  flex: 1;
  min-width: 320px;
  padding: 20px 40px;
}
.product-section .product-content h2 {
  font-size: 30px;
  color: #0d6efd;
  font-weight: 600;
  margin-bottom: 15px;
}
.product-section .product-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}
.product-section .product-content ul {
  margin-bottom: 25px;
  padding-left: 20px;
}
.product-section .product-content ul li {
  margin-bottom: 8px;
  list-style: disc;
  color: #333;
}

/* Price */
.product-section .price {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  margin-bottom: 25px;
}

/* Buttons */
.product-section .product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
}
.product-section .btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.product-section .btn-primary {
  background: #0d6efd;
  color: #fff;
}
.product-section .btn-primary:hover {
  background: #0b5ed7;
}
.product-section .btn-whatsapp {
  background: #25d366;
  color: #fff;
}
.product-section .btn-whatsapp:hover {
  background: #1ea756;
}

/* QR Area */
.product-section .qr-area {
  text-align: center;
  margin-top: 30px;
}
.product-section .qr-area p {
  color: #333;
  font-weight: 500;
  margin-bottom: 10px;
}
.product-section .qr-area img {
  width: 140px;
  height: auto;
}

/* Responsive */
@media (max-width: 992px) {
  .product-section {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  .product-section .product-content {
    padding: 20px;
  }
  .product-section .product-actions {
    justify-content: center;
  }
}
