body{
    margin:0;
    font-family:'Poppins', sans-serif;
    background:#fafafa;
}

.hero{
    height:70vh;
    background:url('https://images.unsplash.com/photo-1610186593971-9bdbb36a1d06') center/cover no-repeat;
    position:relative;
}

.overlay{
    background:rgba(0,0,0,0.55);
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    color:white;
    text-align:center;
}

.overlay h1{
    font-size:48px;
    margin:0;
}

.overlay p{
    font-size:18px;
    margin-top:10px;
}

.product-section{
    padding:60px 20px;
    text-align:center;
}

.products{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(250px,1fr));
    gap:25px;
    max-width:1200px;
    margin:auto;
}

.card{
    background:white;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:0.3s;
}

.card:hover{
    transform:translateY(-5px);
}

.card img{
    width:100%;
    height:320px;
    object-fit:cover;
}

.card-content{
    padding:20px;
}

.price{
    color:#c0392b;
    font-weight:600;
}

.code{
    font-size:13px;
    color:#777;
}

.btn{
    display:inline-block;
    margin-top:10px;
    padding:10px 18px;
    background:#25D366;
    color:white;
    text-decoration:none;
    border-radius:25px;
    font-size:14px;
}

.btn:hover{
    background:#1ebd5a;
}

footer{
    background:#111;
    color:#bbb;
    text-align:center;
    padding:18px;
}
