*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Poppins,sans-serif;
}

body{
    background:#fff;
    color:#222;
}

a{
    text-decoration:none;
}

.header{
    width:100%;
    padding:15px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#f8f1ef;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

.logo-area img{
    height:100px;
}

.navbar{
    display:flex;
    align-items:center;
    gap:35px;
}

.navbar a{
    color:#111;
    font-weight:700;
    font-size:18px;
    letter-spacing:0.5px;
    transition:0.3s;
}

.icons{
    display:flex;
    gap:15px;
    font-size:18px;
}

.menu{
    list-style:none;
}

.dropdown{
    position:relative;
}

.dropdown > a{
    font-size:18px;
    font-weight:800;
}

.dropdown-menu{
    position:absolute;
    top:40px;
    left:-200px;
    width:850px;
    background:#fff;
    padding:40px;
    display:flex;
    justify-content:space-between;
    border-radius:20px;
    box-shadow:0 10px 40px rgba(0,0,0,0.1);
    opacity:0;
    visibility:hidden;
    transition:0.3s;
}

.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
}

.dropdown-column{
    display:flex;
    flex-direction:column;
}

.dropdown-column h3{
    margin-bottom:15px;
    color:#ff4f8b;
}

.dropdown-column a{
    margin-bottom:10px;
    color:#444;
}

.hero{
    height:50vh;
    background:url('../images/hero1.jpg') center/cover no-repeat;
    display:flex;
    align-items:center;
    padding:0 8%;
}

.hero-content{
    max-width:500px;
}

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

.hero-content p{
    font-size:20px;
    margin-bottom:30px;
}

.btn{
    background:#ff4f8b;
    color:#fff;
    padding:15px 35px;
    border-radius:40px;
}

.products-section{
    padding:80px 8%;
}

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

.section-title h2{
    font-size:42px;
}

.filters{
    display:flex;
    gap:20px;
    justify-content:center;
    margin-bottom:40px;
}

.filters select{
    padding:12px;
    border-radius:10px;
    border:1px solid #ddd;
}

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

.product-card{
    border-radius:20px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.3s;
}

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

.product-image img{
    width:100%;
    height:420px;
    object-fit:cover;
}

.product-info{
    padding:20px;
    text-align:center;
}

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

.product-btn{
    display:inline-block;
    margin-top:15px;
    padding:10px 25px;
    background:#111;
    color:#fff;
    border-radius:30px;
}

.category-section{
    padding:60px 8%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.category-box{
    position:relative;
    overflow:hidden;
    border-radius:20px;
}

.category-box img{
    width:100%;
    height:500px;
    object-fit:cover;
}

.category-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.3);
    display:flex;
    justify-content:center;
    align-items:center;
}

.category-overlay h2{
    color:#fff;
    font-size:40px;
}

footer{
    background:#111;
    color:#fff;
    padding:60px 8%;
}

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

.footer-content a{
    color:#fff;
    display:block;
    margin-top:10px;
}

.menu-btn{
    display:none;
}

@media(max-width:768px){

    .navbar{
        display:none;
    }

    .menu-btn{
        display:block;
        font-size:24px;
    }

    .hero-content h1{
        font-size:45px;
    }

    .dropdown-menu{
        width:100%;
        left:0;
        flex-direction:column;
        gap:20px;
    }

    .category-section{
        grid-template-columns:1fr;
    }

}