/* ===========================
   NENJA PRO
   =========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#f5f5f5;
    color:#222;
}

/* Header */

header{

    width:100%;
    background:#111;

    color:#fff;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 8%;

    position:sticky;

    top:0;

    z-index:999;
}

.logo{

    font-size:32px;

    font-weight:bold;

    letter-spacing:2px;
}

.logo span{

    color:#ff6600;
}

nav{

    display:flex;

    gap:30px;
}

nav a{

    color:#fff;

    text-decoration:none;

    transition:.3s;
}

nav a:hover{

    color:#ff6600;
}

/* Hero */

.hero{

    background:linear-gradient(135deg,#111,#222);

    color:#fff;

    text-align:center;

    padding:90px 20px;
}

.hero h1{

    font-size:50px;

    margin-bottom:20px;
}

.hero p{

    font-size:20px;

    margin-bottom:40px;

    color:#ddd;
}

.hero form{

    display:flex;

    justify-content:center;

    gap:10px;

    flex-wrap:wrap;
}

.hero input{

    width:600px;

    max-width:90%;

    padding:18px;

    border:none;

    border-radius:8px;

    font-size:18px;
}

.hero button{

    background:#ff6600;

    color:#fff;

    border:none;

    padding:18px 35px;

    border-radius:8px;

    cursor:pointer;

    font-size:18px;

    transition:.3s;
}

.hero button:hover{

    background:#ff4500;
}

/* Products */

.products{

    width:90%;

    margin:60px auto;
}

.products h2{

    font-size:34px;

    margin-bottom:30px;
}

.product-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:25px;
}

.card{

    background:#fff;

    border-radius:12px;

    overflow:hidden;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

    transition:.3s;
}

.card:hover{

    transform:translateY(-8px);
}

.card img{

    width:100%;

    height:220px;

    object-fit:cover;
}

.card-body{

    padding:20px;
}

.card-title{

    font-size:20px;

    font-weight:bold;

    margin-bottom:10px;
}

.price{

    color:#ff6600;

    font-size:24px;

    font-weight:bold;

    margin:15px 0;
}

.buy-btn{

    display:block;

    text-align:center;

    text-decoration:none;

    background:#ff6600;

    color:#fff;

    padding:14px;

    border-radius:8px;

    transition:.3s;
}

.buy-btn:hover{

    background:#ff4500;
}

/* Footer */

footer{

    background:#111;

    color:#fff;

    text-align:center;

    padding:40px;

    margin-top:80px;
}

/* Mobile */

@media(max-width:768px){

header{

flex-direction:column;

gap:20px;

}

nav{

flex-wrap:wrap;

justify-content:center;

}

.hero h1{

font-size:35px;

}

.hero input{

width:100%;

}

}
.card p{
    margin:15px 0;
    color:#666;
}