:root {
  --primary: #ff4da6;
  --secondary: #ffe6f0;
  --white: #ffffff;
  --text: #333333;
}

body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background: var(--secondary);
  color: var(--text);
}

header {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 20px 0;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 10px 0;
  margin: 0;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  background: var(--white);
  text-align: center;
  padding: 60px 20px;
}

.products {
  padding: 40px 20px;
  background: var(--white);
}

.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: white;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.product-card img {
  width: 100%;
  border-radius: 10px;
  height: 180px;
  object-fit: cover;
}

.reviews {
  padding: 40px 20px;
  background: var(--secondary);
}

.reviews h2 {
  text-align: center;
  margin-bottom: 30px;
}

.review {
  background: var(--white);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.review span {
  display: block;
  text-align: right;
  margin-top: 10px;
  font-weight: bold;
}

.contact {
  padding: 40px 20px;
  background: #ffe6f0;
  text-align: center;
}

.contact h2 {
  margin-bottom: 20px;
}

footer {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 15px 0;
}
