/* Global */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: #fff;
  color: #333;
}

/* Header with centered logo */
.main-header {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(120deg, #ffe3f0, #e0d7ff);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo-container .logo {
  max-width: 300px;
  width: 60%;
  height: auto;
  transition: transform 0.3s ease;
}
.logo-container .logo:hover {
  transform: scale(1.05);
}

/* Navigation centered below logo */
.nav-center {
  margin-top: 20px;
}
.nav-center a {
  margin: 0 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  color: #333;
  transition: color 0.3s ease;
}
.nav-center a:hover {
  color: #ff3c78;
}

/* Hero / Story Section */
.hero-section {
  background: linear-gradient(135deg, #ff6ec4, #7873f5);
  color: white;
  text-align: center;
  padding: 50px 20px;
  border-radius: 50px 50px 0 0;
}
.hero-section h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
}
.hero-section p {
  font-size: 18px;
  max-width: 700px;
  margin: 10px auto 20px auto;
  line-height: 1.6;
}

/* Products Section */
.products-section {
  padding: 60px 24px;
  text-align: center;
  background: #fff0f5;
}
.products-section h2 {
  font-size: 32px;
  color: #ff3c78;
  margin-bottom: 30px;
}
.products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.product-card {
  width: 200px;
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  background: white;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}
.product-card .placeholder {
  width: 100%;
  height: 180px;
  background: #ddd;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
}

/* Chat with Seller */
.contact-seller {
  text-align: center;
  padding: 40px 20px;
}
.btn-whatsapp {
  display: inline-block;
  background: #25d366;
  color: white;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
}
.btn-whatsapp i {
  margin-right: 10px;
}
.btn-whatsapp:hover {
  background: #1ebe5d;
}

/* Footer */
footer {
  text-align: center;
  padding: 24px;
  background: #f8f8f8;
  margin-top: 20px;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section h1 { font-size: 36px; }
  .hero-section p { font-size: 16px; }
  .logo-container .logo { width: 70%; }
  .btn-whatsapp { font-size: 16px; padding: 12px 28px; }
  .nav-center a { margin: 0 12px; }
}