body {
  font-family: Arial, sans-serif;
  background-color: #f8f8f8;
  margin: 0;
  padding: 0;
}

.product-detail-container {
  max-width: 900px;
  margin: 40px auto;
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  border-radius: 12px;
  gap: 24px;
}

.product-image {
  flex: 1 1 300px;
  min-width: 280px;
}

.product-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 10px;
}

.product-info {
  flex: 2 1 400px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-info h1 {
  font-size: 24px;
  margin-bottom: 8px;
  color: #222;
}

.product-info .category,
.product-info .delivery-time {
  color: #666;
  font-size: 14px;
}

.product-info .description {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

.product-info .price {
  font-size: 20px;
  font-weight: bold;
  color: #1a7f37;
  margin: 12px 0;
}

.details-add-to-cart-btn {
  
  padding: 10px 14px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  justify-content: center;   /* horizontal */
  align-items: center; 
  text-decoration: none;
  transition: background-color 0.3s ease;
}




/* ADD TO CART Button - Consistent with product_detail.php */
.add-to-cart-wrapper {
  display: flex;
  justify-content: center;
}

.add-to-cart-btn {
  max-width: 200px;
  width: auto;
  padding: 10px 30px;
  font-size: 16px;
}




@media screen and (max-width: 768px) {
  .product-detail-container {
    flex-direction: column;
    padding: 16px;
  }

  .product-image img {
    height: auto;
  }

  .detials-add-to-cart-btn {
    width: 100%;
  }
}
