body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #faf5ee;
  color: #3a1f1f;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

.navbar {
  display: flex;
  justify-content: space-between;
  padding: 16px 20px;
  background: #fff;
}

.logo { height: 40px; }

nav a {
  margin-left: 16px;
  text-decoration: none;
  font-weight: 600;
}

.hero {
  text-align: center;
  padding: 80px 20px;
  background: #f2e6d8;
}

.btn {
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.primary {
  background: #7a1f1f;
  color: white;
}

.secondary {
  border: 2px solid #7a1f1f;
  color: #7a1f1f;
}

.collections, .products, .why, .reviews, .contact {
  padding: 60px 20px;
  text-align: center;
}

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

.collection-card, .product-card, .review-card {
  background: white;
  padding: 20px;
  border-radius: 14px;
}

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

.price {
  font-weight: bold;
  color: #7a1f1f;
}

.stars {
  color: gold;
  font-size: 18px;
}

footer {
  text-align: center;
  padding: 20px;
  background: #f2e6d8;
}