body {
  font-family: Arial;
  background: #f6f7fb;
  margin: 0;
}

header {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background: white;
  border-radius: 0 0 20px 20px;
}

nav a {
  margin-left: 15px;
  text-decoration: none;
  color: black;
  font-weight: bold;
}

.section-title {
  padding: 20px;
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 20px;
}

.card {
  background: white;
  border-radius: 20px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  position: relative;
}

.card img {
  width: 100%;
  border-radius: 15px;
}

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

button:hover {
  background: #ff5c8a;
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(45deg, pink, lightblue);
  padding: 5px 10px;
  border-radius: 10px;
  font-size: 12px;
}

.bundle {
  border: 2px solid pink;
}

.bundle-price {
  font-size: 20px;
  font-weight: bold;
}

.save {
  color: green;
}
}