/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,
body{
    background:#0f1115;
    color:#ffffff;
    font-family:Arial,sans-serif;
    min-height:100vh;
}

/* HEADER */

header{
    background:#181c23;
    border-bottom:1px solid #2a2f38;
}

.container{
    max-width:1400px;
    margin:auto;
    padding:20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-size:30px;
    font-weight:bold;
    color:#ffffff;
}

.menu{
    display:flex;
    gap:25px;
}

.menu a{
    color:#cbd5e1;
    text-decoration:none;
    transition:0.2s;
}

.menu a:hover{
    color:#3b82f6;
}

/* HERO */

.hero{
    background:#131720;
    padding:120px 20px;
    text-align:center;
}

.hero-content h1{
    font-size:60px;
    margin-bottom:15px;
}

.hero-content p{
    color:#94a3b8;
    font-size:20px;
}

/* PRODUCTS */

.products{
    max-width:1400px;
    margin:auto;
    padding:60px 20px;
}

.products h2{
    margin-bottom:30px;
    color:#ffffff;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
    gap:25px;
}

.product-card{
    background:#181c23;
    border:1px solid #2a2f38;
    border-radius:12px;
    overflow:hidden;
    transition:.2s;
}

.product-card:hover{
    transform:translateY(-5px);
    border-color:#3b82f6;
}

.product-card img{
    width:100%;
    height:250px;
    object-fit:cover;
    display:block;
}

.product-card h3{
    padding:15px;
    color:#ffffff;
}

.prices{
    padding:0 15px;
}

.old-price{
    color:#6b7280;
    text-decoration:line-through;
    display:block;
}

.price{
    color:#3b82f6;
    font-size:24px;
    font-weight:bold;
}

.stock{
    padding:15px;
    color:#22c55e;
}

.product-card button{
    width:calc(100% - 30px);
    margin:0 15px 15px;
    padding:12px;
    background:#2563eb;
    color:white;
    border:none;
    border-radius:8px;
    cursor:pointer;
    font-size:15px;
}

.product-card button:hover{
    background:#1d4ed8;
}

/* FOOTER */

footer{
    margin-top:50px;
    background:#181c23;
    border-top:1px solid #2a2f38;
    text-align:center;
    padding:25px;
    color:#94a3b8;
}

/* SCROLLBAR */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#111827;
}

::-webkit-scrollbar-thumb{
    background:#2563eb;
    border-radius:20px;
}