
body {
  font-family: 'Playfair Display', serif;
  margin: 0;
  background-color: #fff0f5;
  color: #5c3d3d;
}
header {
  background: #fff;
  padding: 1.2rem;
  text-align: center;
  font-size: 2rem;
  font-family: 'Great Vibes', cursive;
  color: #d4a5a5;
  border-bottom: 1px solid #e8cfcf;
}
nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1rem;
  background: #ffeef8;
}
nav a {
  text-decoration: none;
  color: #c08080;
  font-weight: bold;
}
.banner {
  background: url('https://images.unsplash.com/photo-1542060748-10c28b62716f?fit=crop&w=1200&q=80') no-repeat center/cover;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.5rem;
  font-family: 'Great Vibes', cursive;
  text-shadow: 2px 2px 5px #c08080;
}
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 2rem;
}
.product {
  background: #fff;
  padding: 1rem;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s;
}
.product:hover {
  transform: scale(1.05);
}
.product img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 20px;
}
.product h3 {
  margin: 1rem 0 0.5rem;
}
.product button {
  background: #f7c3d9;
  color: #5c3d3d;
  border: none;
  padding: 0.6rem 1.2rem;
  margin-top: 0.5rem;
  cursor: pointer;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s;
}
.product button:hover {
  background: #f0a6c1;
}
footer {
  text-align: center;
  padding: 1rem;
  background: #ffeef8;
  font-size: 0.9rem;
  margin-top: 2rem;
}
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  cursor: pointer;
  text-decoration: none;
}
