/* style.css */
body {
  font-family: "Segoe UI", sans-serif;
  background-color: #fff;
  color: #333;
}

.hero {
  background-image: url("img/seblak-bg.jpg");
  background-size: cover;
  background-position: center;
  padding: 40px 0;
  color: white;
  text-align: center;
}

.hero h2 {
  font-weight: 700;
  font-size: 2.5rem;
}

.hero span.text-warning {
  color: #ffc107;
}

.btn-kategori {
  border-radius: 999px;
  padding: 8px 24px;
  margin: 5px;
}

.card img {
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
}

.btn-tambah {
  background-color: #dc3545;
  color: white;
  border-radius: 999px;
}

.btn-tambah:hover {
  background-color: #c82333;
}

.sold-out-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  color: red;
  font-weight: bold;
  font-size: 1.5rem;
  z-index: 10;
  background: rgba(255, 255, 255, 0.8);
  padding: 4px 10px;
  border-radius: 6px;
}
