
/* BODY */
body{
margin:0;
font-family:Arial;
color:white;
background:#020617;
}

/* HERO (Landing Page) */
.hero{
height:100vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
}

.hero h1{
font-size:50px;
margin-bottom:10px;
}

.hero p{
opacity:0.7;
}

/* BUTTON */
.start-btn{
padding:15px 30px;
border:none;
border-radius:12px;
background:#22c55e;
color:white;
cursor:pointer;
margin-top:20px;
transition:0.3s;
}

.start-btn:hover{
transform:scale(1.1);
box-shadow:0 0 20px #22c55e;
}

/* HERO IMAGES */
.hero-images{
margin-top:40px;
display:flex;
gap:20px;
justify-content:center;
flex-wrap:wrap;
}

.hero-images img{
width:200px;
border-radius:15px;
transition:0.3s;
}

.hero-images img:hover{
transform:scale(1.1);
box-shadow:0 0 25px rgba(34,197,94,0.7);
}

/* NAVBAR */
.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 20px;
background:#0f172a;
}

.navbar a{
color:white;
text-decoration:none;
}

/* SEARCH TITLE */
h1{
text-align:center;
margin-top:60px;
}

/* SEARCH BOX */
.search-box{
text-align:center;
margin-top:20px;
}

input{
padding:15px;
width:300px;
border:none;
border-radius:10px;
outline:none;
}

/* BUTTON */
button{
padding:15px 25px;
margin-left:10px;
border:none;
border-radius:10px;
background:#22c55e;
color:white;
cursor:pointer;
transition:0.3s;
}

button:hover{
transform:scale(1.1);
box-shadow:0 0 20px #22c55e;
}

/* QUICK SEARCH */
.top-search{
text-align:center;
margin-top:20px;
}

.top-search span{
background:#22c55e;
padding:8px 12px;
margin:5px;
border-radius:8px;
cursor:pointer;
display:inline-block;
transition:0.3s;
}

.top-search span:hover{
background:#16a34a;
transform:scale(1.1);
}

/* CARDS */
.cards{
display:flex;
justify-content:center;
gap:20px;
margin-top:40px;
flex-wrap:wrap;
}

/* CARD */
.card{
background:#0f172a;
padding:20px;
border-radius:15px;
width:250px;
text-align:center;
transition:0.3s;
overflow:hidden;
}

.card:hover{
transform:translateY(-10px);
box-shadow:0 10px 25px rgba(0,0,0,0.5);
}

/* IMAGE (FINAL FIX) */
.card img{
width:100%;
height:180px;
object-fit:cover;
border-radius:12px;
margin-bottom:10px;
transition:0.3s;
}

.card:hover img{
transform:scale(1.05);
}

/* TEXT */
.price{
color:#22c55e;
font-weight:bold;
}

.rating{
color:gold;
}

/* LOADER */
.loader{
text-align:center;
margin-top:20px;
display:none;
}

/* FEATURES */
.features{
margin-top:80px;
text-align:center;
}

.feature-box{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
}

.feature{
background:#0f172a;
padding:20px;
border-radius:15px;
width:200px;
transition:0.3s;
}

.feature:hover{
transform:scale(1.1);
box-shadow:0 0 20px rgba(34,197,94,0.6);
}