/* Layout umum */
body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
}

header {
  background-color: #3C6E71;
  color: #fff;
  padding: 20px;
  text-align: center;
}


/* Tampilan Produk */
.product-card {
  display: flex;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  max-width: 100%;
  margin: 20px 50px 25px 50px;
 
}



.product-image img {
  height: 425px;
  object-fit: cover;
  margin: 30px 0px 30px 30px;
}

.product-info {
  padding: 20px;
  width: 60%;
  margin-left: 40px;
}

.product-info h1 {
  color: black;
  font-size: 20px;
  padding-top: 30px;
  font-weight: bold;
}

.product-title {
  font-size: 29px;
  margin-bottom: 10px;
  color: #E2C275;
  font-weight: bold;
}

.product-description {
  font-size: 16px;
  color: #555;
}

.product-description p {
  color: black;
}

.product-description li{
  color: black;
}

.product-price {
  margin-top: 15px;
  font-size: 18px;
  color: #3C6E71;
  font-weight: bold;
}

/* Footer */
footer {
  background-color: #eee;
  text-align: center;
  padding: 15px;
  font-size: 14px;
  color: #666;
}

/* Responsif */
@media (max-width: 768px) {
  .product-card {
    flex-direction: column;
  }
  .product-image,
  .product-info {
    width: 100%;
    margin: 0px;
  }
}


.order-btn {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #3C6E71;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

.order-btn:hover {
  background-color: #2a4f52;
}


.modal {
  display: none;
  position: fixed;
  z-index: 99;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  position: relative;
}

.modal-content h2 {
  margin-top: 0;
}

.modal-content input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.modal-content button {
  width: 100%;
  padding: 10px;
  background-color: #3C6E71;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.modal-content button:hover {
  background-color: #2a4f52;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}
