.product-detail-section {
  padding: 40px 20px;
  max-width: 1100px;
  margin: auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

.product-detail-section h1 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #333;
}

.product-category {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
  align-items: flex-start;
}

.product-category img {
  max-width: 300px;
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.product-info {
  flex: 1;
  min-width: 280px;
}

.product-info h3 {
  margin-top: 0;
  color: #006600;
}

.product-info ul {
  padding-left: 20px;
}

.future-plans {
  margin-top: 40px;
  background-color: #f4f4f4;
  padding: 20px;
  border-radius: 8px;
}

.future-plans h4 {
  margin-top: 0;
  color: #cc6600;
}

/* Oder button */

.order-button-container {
  text-align: center;
  margin: 40px 0;
}

.order-button {
  background-color: #006600;
  color: white;
  padding: 15px 30px;
  font-size: 16px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.order-button:hover {
  background-color: #009900;
}
