.banner {
  position:relative;
  width:100%;
  height: 600px;
  border-radius:40px;
  overflow:hidden;
  margin-bottom:30px;
  box-shadow:0 10px 30px rgba(0,0,0,0.15);
}
.banner img {
  width:100%;
  height: 600px;
  object-fit:cover;
}
.title {
  text-align:center;
  margin-bottom:30px;
  margin-top: 20px;
}
.title h2 {
  font-size:36px;
  color:#b58f87;
}
.products {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
  margin-bottom: 50px;
}
.card {
  background:white;
  border-radius:25px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,0.05);
  transition:0.3s;
}
.card:hover {
  transform:translateY(-8px);
}
.card img {
  width:100%;
  height: 900px;
  object-fit:cover;
}
.card-content {
  padding:20px;
  text-align:center;
}
.card-content h3 {
  font-size:20px;
  margin-bottom:10px;
  height: 48px;
  overflow: hidden;
}
.price {
  color:#b58f87;
  font-size:22px;
  font-weight:bold;
  margin-bottom:15px;
}
@media(max-width:768px){
  .banner{ height:200px; }
}