body {
  margin: 0;
  font-family: 'Poppins';
  background: linear-gradient(135deg,#f5f3ee,#eef2f7);
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
}

/* HERO */
.hero {
  text-align: center;
  padding: 100px 20px;
}

.hero h2 {
  font-size: 42px;
  font-family: 'Playfair Display';
}

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

/* CARD */
.card {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  transition: 0.4s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  position: relative;
}

.card:hover {
  transform: translateY(-10px);
}

/* BADGES */
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: black;
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
}

.discount {
  background: #e63946;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
}

.price span {
  text-decoration: line-through;
  color: #999;
}

/* BUTTON */
button {
  background: black;
  color: white;
  padding: 10px;
  border-radius: 20px;
  border: none;
}

/* CART */
.cart {
  position: fixed;
  right: -350px;
  top: 0;
  width: 320px;
  height: 100%;
  background: white;
  padding: 20px;
  transition: 0.3s;
}

.cart.active {
  right: 0;
}

input, textarea {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border-radius: 8px;
  border: 1px solid #ddd;
}