body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #fff6f8;
  color: #333;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  padding: 15px 30px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ff6699;
}
.logo span {
  color: #66d9e8;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}
.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
.hero {
  padding: 50px 20px;
  text-align: center;
  background: #ffe6eb;
  position: relative;
}
.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.btn {
  background-color: #ff6699;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}
.hero-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: #ffd6d6;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}
.categories {
  padding: 20px;
  text-align: center;
}
.categories button {
  margin: 10px;
  padding: 10px 20px;
  background-color: #ffccdd;
  border: none;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
}
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 40px 20px;
}
.product-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  padding: 20px;
  text-align: center;
}
.product-card img {
  width: 100%;
  border-radius: 10px;
}
.product-card h3 {
  margin: 10px 0;
}
.buy-btn {
  display: inline-block;
  margin-top: 10px;
  background-color: #ff6699;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}
footer {
  background-color: #ffe6eb;
  padding: 15px;
  text-align: center;
  font-size: 0.9rem;
}
