*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  background:#0d0d0d;
  color:white;
  font-family:Arial, sans-serif;
}

.hero{
  position:relative;
  height:300px;
  background:url('https://images.unsplash.com/photo-1550547660-d9450f859349?q=80&w=1600&auto=format&fit=crop');
  background-size:cover;
  background-position:center;
}

.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.6);
}

.hero-content{
  position:relative;
  z-index:2;
  padding:40px 20px;
  top:120px;
}

.hero-content h1{
  font-size:42px;
  color:#ff003c;
  font-weight:900;
}

.hero-content p{
  color:#ffcc00;
  margin-top:10px;
  font-size:18px;
}

.container{
  padding:20px;
}

.card{
  background:#1b1b1b;
  border-radius:20px;
  overflow:hidden;
  margin-bottom:25px;
  border:1px solid #2d2d2d;
}

.card img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.card-content{
  padding:20px;
}

.card-content h2{
  font-size:30px;
  margin-bottom:10px;
}

.card-content p{
  color:#bdbdbd;
}

.price{
  color:#ff003c;
  font-size:28px;
  font-weight:900;
  margin-top:15px;
}

.controls{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;
  margin-top:20px;
}

.controls button{
  width:55px;
  height:55px;
  border:none;
  border-radius:15px;
  background:#ff003c;
  color:white;
  font-size:30px;
  font-weight:900;
}

.controls span{
  font-size:30px;
  font-weight:900;
}

.checkout{
  background:#1b1b1b;
  padding:20px;
  border-radius:20px;
  margin-bottom:80px;
}

.checkout h3{
  color:#ffcc00;
  margin-bottom:20px;
  font-size:28px;
}

.checkout input{
  width:100%;
  padding:15px;
  margin-bottom:15px;
  border:none;
  border-radius:12px;
  background:#2a2a2a;
  color:white;
}

.total{
  font-size:30px;
  font-weight:900;
  margin-top:20px;
}

.whatsapp{
  width:100%;
  padding:18px;
  margin-top:20px;
  border:none;
  border-radius:15px;
  background:#ff003c;
  color:white;
  font-size:20px;
  font-weight:900;
}