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

/* BANNER */
.hero {
  padding: 20px;
  background-color: #fff;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: center;
}

.banner-container {
  width: 100%;
  max-width: 1200px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.banner-img {
  width: 100%;
  height: auto;
  display: block;
}

/* SEARCH */
.search-section {
  padding: 30px;
  text-align: center;
}

#searchInput {
  width: 60%;
  max-width: 500px;
  padding: 14px;
  border-radius: 30px;
  border: 1px solid #cfded9;
  outline: none;
  font-size: 16px;
}

/* PRODUCTS */
.products {
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.product-card {
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-info {
  padding: 15px;
}

.product-info h3 {
  margin: 0 0 10px 0;
  font-size: 18px;
}

.product-info a {
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  background-color: #a8d5ba;
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
}

.product-info a:hover {
  background-color: #8bc3a8;
}
