/* Reset dasar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #fdfaf6;
  color: #333;
  line-height: 1.6;
}

header {
  background-color: #ff7e67;
  color: #180e16c2;
  padding: 20px 0;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header h1 {
  font-size: 2em;
}

header p {
  margin-top: 8px;
  font-size: 1em;
}

main {
  max-width: 900px;
  margin: 30px auto;
  padding: 0 20px;
}

.product-list h2,
.order-form h2 {
  margin-bottom: 15px;
  color: #e17055;
}

.product-list ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 0;
}

.product-list li {
  background-color: #fff;
  border: 1px solid #eee;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.product-list li:hover {
  transform: translateY(-5px);
}

.product-list h3 {
  margin-bottom: 10px;
}

.product-list p {
  font-weight: bold;
  color: #555;
  margin-bottom: 15px;
}

button {
  background-color: #ff7e67;
  color: white;
  border: none;
  padding: 10px 18px;
  font-size: 1em;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #e65c4f;
}

.order-form {
  margin-top: 40px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

label {
  font-weight: bold;
  margin-top: 10px;
}

input[type="text"],
input[type="tel"],
textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
  width: 100%;
}

#cart {
  padding-left: 20px;
  list-style-type: disc;
}

#totalPrice {
  font-weight: bold;
  color: #d35400;
}

footer {
  text-align: center;
  background-color: #f2a365;
  color: #7c4343;
  padding: 15px 0;
  margin-top: 50px;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

footer a {
  color: #7c4343;
  text-decoration: underline;
}

.produk-img {
  width: 100px;    
  height: auto;      
  border-radius: 10px;
  margin-bottom: 10px;
}
