*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}


body {
  background: #fff5f7;
  color: #333;
}


header {
  width: 100%;
  background: white;
  padding: 20px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: #d46a8c;
}

nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #555;
  transition: 0.3s;
}

nav a:hover {
  color: #d46a8c;
}

.hero {
  width: 100%;
  height: 90vh;
  background:
    linear-gradient(rgba(233,168,181,0.4), rgba(233,168,181,0.4)),
    url('https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?q=80&w=1400') center/cover;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}


.hero-text {
  background: rgba(255,255,255,0.2);
  padding: 50px;
  border-radius: 20px;
  backdrop-filter: blur(5px);
}

.hero h1 {
  font-size: 50px;
  color: white;
  max-width: 700px;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 14px 35px;
  background: #d46a8c;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  transition: 0.3s;
}

.btn:hover {
  background: #bf5578;
}

.products-section,
.products-page {
  padding: 80px 8%;
  text-align: center;
}

.products-section h2,
.products-page h1 {
  font-size: 40px;
  color: #d46a8c;
  margin-bottom: 10px;
}

.products-section p {
  margin-bottom: 40px;
  color: #777;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}


.product-card {
  background: white;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 15px;
}

.product-card h3 {
  margin: 20px 0 10px;
}

.product-card span {
  color: #d46a8c;
  font-weight: bold;
  display: block;
  margin-bottom: 15px;
}

.product-card button {
  padding: 12px 25px;
  border: none;
  background: #d46a8c;
  color: white;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.product-card button:hover {
  background: #bf5578;
}

footer {
  background: white;
  text-align: center;
  padding: 30px;
  margin-top: 50px;
  color: #777;
}

@media(max-width: 768px) {

  header {
    flex-direction: column;
    gap: 15px;
  }

  .hero h1 {
    font-size: 35px;
  }

  nav a {
    margin: 0 10px;
  }

}



