* {
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.card {
  width: 320px;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.image-container {
  position: relative;
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: orange;
  color: white;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
}

.card-content {
  padding: 16px;
}

h2 {
  margin: 0;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stars {
  color: #f4c430;
  font-size: 1rem;
}

p {
  margin: 8px 0;
  font-size: 0.9rem;
  color: #333;
}

.icon {
  margin-right: 8px;
}

.tags {
  margin: 10px 0;
}

.tag {
  display: inline-block;
  background: #333;
  color: white;
  padding: 6px 12px;
  margin-right: 8px;
  border-radius: 20px;
  font-size: 0.75rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}

.explore-btn {
  background: #28a745;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
}

.price {
  font-weight: bold;
}
