
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
margin:0;
padding:0;
box-sizing:border-box;
}

:root{
--primary:#2563eb;
--secondary:#0f172a;
--light:#ffffff;
--gray:#64748b;
--bg:#f8fafc;
--shadow:0 10px 30px rgba(0,0,0,.08);
}

body{
font-family:'Poppins',sans-serif;
background:var(--bg);
color:#333;
line-height:1.7;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

header{
position:sticky;
top:0;
background:#fff;
box-shadow:0 2px 15px rgba(0,0,0,.08);
z-index:999;
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 0;
}

.logo{
font-size:2rem;
font-weight:800;
color:var(--primary);
text-decoration:none;
}

.logo span{
color:var(--secondary);
}

.nav-links{
display:flex;
gap:24px;
list-style:none;
}

.nav-links a{
text-decoration:none;
color:var(--secondary);
font-weight:500;
}

.hero{
min-height:80vh;
display:flex;
align-items:center;
background:linear-gradient(rgba(15,23,42,.75),rgba(15,23,42,.75)),
url('https://images.unsplash.com/photo-1555529669-e69e7aa0ba9a?auto=format&fit=crop&w=1600&q=80');
background-size:cover;
background-position:center;
color:white;
}

.hero-content h1{
font-size:4rem;
margin-bottom:20px;
}

.hero-content p{
max-width:700px;
margin-bottom:25px;
}

.btn{
display:inline-block;
padding:14px 28px;
background:var(--primary);
color:white;
text-decoration:none;
border-radius:8px;
}

/* =========================
   PRODUCTS
========================= */

.products{
    padding:80px 0;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:2.5rem;
    margin-bottom:10px;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

/* Product Card */

.product-card{
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:0.3s ease;
}

.product-card:hover{
    transform:translateY(-8px);
}

/* Product Image */

.product-image{
    overflow:hidden;
}

.product-image img{
    width:100%;
    height:250px;
    object-fit:cover;
    display:block;
    transition:0.5s ease;
}

.product-card:hover .product-image img{
    transform:scale(1.08);
}

/* Product Content */

.product-info{
    padding:20px;
}

.product-info h3{
    margin-bottom:10px;
    font-size:1.2rem;
    color:var(--secondary);
}

.product-info p{
    color:var(--gray);
    margin-bottom:15px;
    font-size:0.95rem;
}

.price{
    font-size:1.4rem;
    font-weight:700;
    color:var(--primary);
    margin-bottom:15px;
}

/* Product Button */

.product-info .btn{
    display:inline-block;
    padding:12px 20px;
    font-size:14px;
}

.section-title{
text-align:center;
margin-bottom:50px;
}

.section-title h2{
font-size:2.5rem;
margin-bottom:10px;
}

.product-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.product-card{
background:white;
border-radius:14px;
padding:25px;
box-shadow:var(--shadow);
transition:.3s;
}

.product-card:hover{
transform:translateY(-8px);
}

.product-info h3{
margin-bottom:10px;
}

.price{
font-size:1.3rem;
font-weight:700;
color:var(--primary);
margin-top:10px;
}

.content-section{
padding:80px 0;
background:white;
}

.content-section h2{
margin-bottom:20px;
}

footer{
background:#0f172a;
color:white;
padding:30px 0;
margin-top:50px;
}

.footer-bottom{
text-align:center;
}

.legal-container{
max-width:1000px;
margin:40px auto;
padding:40px;
background:white;
box-shadow:var(--shadow);
border-radius:14px;
}

@media(max-width:768px){
.navbar{
flex-direction:column;
gap:15px;
}

.nav-links{
flex-wrap:wrap;
justify-content:center;
}

.hero-content h1{
font-size:2.5rem;
}

.section-title h2{
font-size:2rem;
}
}
