.produk-content {
  padding: 60px 100px;
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 80vh;
}

.produk-header {
  width: 100%;
  text-align: left;
  margin-bottom: 20px;
}

.produk-header h1 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: #e22326;
  font-size: 38px;
  line-height: 1.2;
}

.produk-cards {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 120px;
  margin-top: 20px;
}

.produk-card {
  flex: 1;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.img-minuman {
  display: block;
  width: 100%;
  height: 370px;
  background-image: url("../produk/Minuman Before.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.img-minuman:hover {
  background-image: url("../produk/Minuman After.png");
}

.img-makanan {
  display: block;
  width: 100%;
  height: 320px;
  background-image: url("../produk/Makanan Before.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 30px;
  margin-top: 50px; /* Offset the food image lower */
}

.img-makanan:hover {
  background-image: url("../produk/Makanan After.png");
}

.produk-card h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: #e22326;
  font-size: 40px;
  margin-bottom: 15px;
}

.produk-card p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: #000000;
  font-size: 16px;
  line-height: 1.6;
}
