/* Base reset and font setup */
body {
  font-family: 'Lato', sans-serif;
  margin: 0;
  background: #fff8f3;
  color: #333;
}

/* Header */
header {
  background: #fff;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #e8dacc;
}

.logo {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.5rem;
}

/* Navigation */
nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: #444;
  font-weight: 600;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 3rem 1rem;
  background: linear-gradient(to right, #fce9e3, #fff);
}

.hero h1 {
  font-family: 'Quicksand', sans-serif;
  font-size: 2rem;
}

.cta-button {
  background: #f28e7d;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 1rem;
}

/* Product Card Section */
.product-cards {
  padding: 2rem;
  max-width: 1000px;
  margin: auto;
}

.product-cards h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.6rem;
  color: #44332d;
  text-align: center;
  margin-bottom: 1rem;
}

.cards {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 1rem;
  width: 200px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  border: 1px solid #e5d5c3;
}

.card img {
  width: 100%;
  border-radius: 8px;
}

/* Buy Button */
.buy-button {
  display: inline-block;
  margin-top: 0.5rem;
  background: #ffb199;
  padding: 0.4rem 0.8rem;
  color: white;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease;
}

.buy-button:hover {
  background: #ff977e;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 1rem;
  background: #faf6f1;
  font-size: 0.9rem;
}
