body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff;
  color: #333;
}
header {
  background: #ff69b4;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .logo {
  font-weight: bold;
  font-size: 22px;
}
header nav a {
  margin: 0 12px;
  color: white;
  text-decoration: none;
  font-weight: 500;
}
.hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(to bottom, #ffe6f0, #fff);
}
.hero h1 {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #d63384;
}
.hero p {
  font-size: 1.2em;
  margin-bottom: 20px;
}
.btn {
  display: inline-block;
  background: #ff69b4;
  color: white;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: 0.3s;
}
.btn:hover {
  background: #e0559e;
}
.collections, .whyus, .reviews {
  padding: 60px 20px;
  text-align: center;
}
h2 {
  font-size: 2.2em;
  margin-bottom: 30px;
  color: #d63384;
}
.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}
.card, .review-card {
  background: white;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 20px;
  width: 240px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s;
}
.card:hover, .review-card:hover {
  transform: translateY(-5px);
}
.review-card {
  background: #fff0f7;
  border-left: 5px solid #ff69b4;
  text-align: left;
}
footer {
  background: #ff69b4;
  color: white;
  text-align: center;
  padding: 25px;
  margin-top: 30px;
}
footer a {
  color: yellow;
  text-decoration: none;
}
