body {
  font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
  background: #f8f6f9;
  color: #333;
  margin: 0;
  padding: 0;
}

header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 24px 0 16px 0;
  text-align: center;
}

h1 {
  color: #b48fc2;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

nav {
  margin: 24px 0 0 0;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 32px;
}

nav ul li {
  display: inline;
}

nav a {
  text-decoration: none;
  color: #b48fc2;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 10px 24px;
  border-radius: 24px;
  transition: background 0.2s, color 0.2s;
}

nav a:hover, nav a.active {
  background: #f3e6fa;
  color: #7c4d99;
}

.main-content {
  max-width: 900px;
  margin: 40px auto;
  padding: 32px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(180,143,194,0.08);
}

.product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.product-card {
  background: #f3e6fa;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(180,143,194,0.08);
  padding: 24px;
  width: 240px;
  text-align: center;
  transition: box-shadow 0.2s;
}

.product-card:hover {
  box-shadow: 0 8px 32px rgba(180,143,194,0.16);
}

.product-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 16px;
}

.button {
  background: #b48fc2;
  color: #fff;
  border: none;
  border-radius: 18px;
  padding: 10px 24px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 12px;
  text-decoration: none;
  display: inline-block;
}

.button:hover {
  background: #7c4d99;
}

@media (max-width: 700px) {
  .main-content {
    padding: 12px;
  }
  .product-list {
    flex-direction: column;
    gap: 20px;
  }
  nav ul {
    flex-direction: column;
    gap: 12px;
  }
} 