
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #fff7fb;
  color: #333;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: linear-gradient(90deg, #ff69b4, gold);
}

.logo {
  font-size: 22px;
  font-weight: bold;
  color: white;
}

.cta {
  background: white;
  color: #ff69b4;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
}

.products {
  padding: 40px 20px;
}

h2 {
  margin-top: 50px;
  color: #ff69b4;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.product {
  background: white;
  border-radius: 14px;
  padding: 15px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  text-align: center;
}

.product img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.price {
  font-weight: bold;
  margin: 8px 0;
}

.product a {
  display: inline-block;
  margin-top: 8px;
  text-decoration: none;
  color: #ff69b4;
  font-weight: bold;
}

footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  font-size: 28px;
  padding: 14px;
  border-radius: 50%;
  text-decoration: none;
}
