/* NoodiBaby – Pastel Baby Theme */

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fdfcfa;
  color: #333;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #ffeef4;
  border-bottom: 1px solid #f8dce6;
}

header h1 {
  margin: 0;
  font-size: 28px;
  color: #ff7ba5;
  font-weight: bold;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #ff91b8;
  font-weight: bold;
}

.hero {
  text-align: center;
  padding: 80px 20px;
  background: #fff6fa;
}

.hero h2 {
  font-size: 40px;
  color: #ff7ba5;
  margin-bottom: 10px;
}

.cta {
  background: #ff7ba5;
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 18px;
}

.products {
  padding: 40px 20px;
  text-align: center;
}

.products h2 {
  color: #ff7ba5;
  font-size: 32px;
  margin-bottom: 30px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

.product {
  background: #fff;
  border: 1px solid #f2d8e6;
  padding: 20px;
  border-radius: 15px;
}

.product img {
  width: 100%;
  border-radius: 10px;
}

.buy-button {
  display: inline-block;
  margin-top: 10px;
  background: #ff7ba5;
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
}

.about, .contact {
  padding: 40px 20px;
  text-align: center;
}

.about h2, .contact h2 {
  font-size: 32px;
  color: #ff7ba5;
}

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