body {
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  margin: 0;
  padding: 0;
}

header {
  text-align: center;
  padding: 25px;
  background: #111;
  color: #fff;
}

.container {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  padding: 20px;
}

.product {
  background: white;
  padding: 20px;
  width: 280px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  text-align: center;
  position: relative;
}

.product img {
  width: 100%;
  border-radius: 10px;
}

.price {
  font-size: 22px;
  font-weight: bold;
  color: #222;
}

.discount {
  display: none;
  background: #d40000;
  color: white;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: bold;
  margin-left: 10px;
}

input {
  margin-top: 10px;
  padding: 8px;
  width: 80%;
}

button {
  margin-top: 10px;
  padding: 8px 15px;
  cursor: pointer;
  background: #111;
  color: white;
  border: none;
  border-radius: 6px;
}

.promo {
  margin-top: 10px;
  font-style: italic;
  color: #c41e3a;
  font-weight: bold;
}

#hidden-vibe {
  display: none;
}

#summer-secret::after {
  content: "****";
}
