body {
  background-color: #f4f7f5;
  font-family: Arial, sans-serif;
  margin: 0;
}

.wishlist-container {
  max-width: 1100px;
  margin: 40px auto;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.wishlist-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
  color: #2e7d32;
}

.wishlist-items {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.wishlist-card {
  background-color: #f9fbe7;
  border: 1px solid #dce775;
  border-radius: 8px;
  width: 240px;
  overflow: hidden;
  transition: transform 0.3s;
}

.wishlist-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.1);
}

.wishlist-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.wishlist-card .info {
  padding: 15px;
  text-align: center;
}

.wishlist-card h3 {
  font-size: 18px;
  margin: 0 0 10px;
  color: #2c3e50;
}

.wishlist-card .remove-btn {
  display: inline-block;
  background-color: #c62828;
  color: white;
  border: none;
  padding: 8px 14px;
  font-size: 13px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 8px;
  transition: background-color 0.3s;
}

.wishlist-card .remove-btn:hover {
  background-color: #b71c1c;
}

.empty-wishlist {
  text-align: center;
  font-size: 16px;
  color: #607d8b;
  margin-top: 40px;
}

/* CSP-friendly: ganti inline style="display:none" */
.is-hidden {
  display: none !important;
}
