:root {
  --primary: #cc33cc;
  --secondary: #fce6fc;
  --white: #ffffff;
  --text: #333;
}

body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background: var(--secondary);
  color: var(--text);
}

header {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 20px 0;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 0;
  padding: 10px 0;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  background: var(--white);
  text-align: center;
  padding: 60px 20px;
}

.products {
  background: var(--white);
  padding: 40px 20px;
}

.products h2 {
  text-align: center;
  margin-bottom: 30px;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.product-card {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}

.benefits,
.reviews,
.contact {
  padding: 40px 20px;
  background: #fff0f6;
}

.benefits ul {
  list-style: none;
  max-width: 600px;
  margin: auto;
  padding: 0;
}

.benefits li {
  margin-bottom: 10px;
  font-size: 18px;
}

.reviews .review {
  background: #fff;
  padding: 20px;
  margin: 15px auto;
  max-width: 600px;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.review span {
  display: block;
  text-align: right;
  font-weight: bold;
  margin-top: 10px;
}

.contact {
  text-align: center;
}

footer {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 15px 0;
}
