*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}

body{
background:#f8f8f8;
color:#222;
}

header{
position:fixed;
top:0;
left:0;
width:100%;
background:#fff;
box-shadow:0 2px 10px rgba(0,0,0,.08);
z-index:1000;
}

nav{
max-width:1200px;
margin:auto;
padding:18px 25px;
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
font-size:28px;
font-weight:700;
color:#ff4081;
}

nav ul{
display:flex;
list-style:none;
gap:30px;
}

nav ul li a{
text-decoration:none;
color:#222;
font-weight:500;
transition:.3s;
}

nav ul li a:hover{
color:#ff4081;
}

.shopbtn{
background:#ff4081;
padding:12px 24px;
border-radius:30px;
color:#fff;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.shopbtn:hover{
background:#e91e63;
}

.hero{
height:90vh;
background:linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),url("/BAGS/1.jpg");
background-size:cover;
background-position:center;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
margin-top:75px;
}

.overlay h1{
font-size:60px;
color:#fff;
margin-bottom:15px;
}

.overlay p{
font-size:22px;
color:#fff;
margin-bottom:30px;
}

.overlay a{
background:#ff4081;
padding:15px 35px;
color:#fff;
text-decoration:none;
border-radius:40px;
font-weight:600;
}

.products{
padding:80px 6%;
}

.products h2{
text-align:center;
font-size:40px;
margin-bottom:50px;
}

#product-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.card{
background:#fff;
border-radius:15px;
overflow:hidden;
box-shadow:0 10px 20px rgba(0,0,0,.08);
transition:.3s;
}

.card:hover{
transform:translateY(-8px);
}

.card img{
width:100%;
height:280px;
object-fit:cover;
}

.card-content{
padding:20px;
}

.card-content h3{
font-size:20px;
margin-bottom:10px;
}

.price{
font-size:22px;
font-weight:700;
color:#ff4081;
margin-bottom:15px;
}

.buy{
display:inline-block;
background:#ff4081;
color:#fff;
padding:10px 20px;
text-decoration:none;
border-radius:30px;
transition:.3s;
}

.buy:hover{
background:#e91e63;
}

.about,
.contact{
padding:80px 10%;
text-align:center;
background:#fff;
margin-top:20px;
}

.about h2,
.contact h2{
font-size:36px;
margin-bottom:20px;
}

.about p{
max-width:850px;
margin:auto;
line-height:1.8;
font-size:17px;
}

.flipkart{
display:inline-block;
margin-top:20px;
background:#2874f0;
padding:14px 30px;
color:#fff;
text-decoration:none;
border-radius:30px;
font-weight:600;
}

footer{
background:#111;
color:#fff;
text-align:center;
padding:25px;
margin-top:30px;
}

@media(max-width:768px){

nav{
flex-direction:column;
gap:15px;
}

nav ul{
flex-wrap:wrap;
justify-content:center;
gap:15px;
}

.overlay h1{
font-size:36px;
}

.overlay p{
font-size:17px;
}

.products h2{
font-size:30px;
}

.card img{
height:230px;
}

}