/* ================= # style.css ================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#fff5f7;
    color:#333;
}

/* HEADER */
header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 40px;
    background:#fff;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
    position:sticky;
    top:0;
    z-index:1000;
}

.logo{
    font-size:28px;
    font-weight:bold;
    color:#d63384;
}

nav ul{
    display:flex;
    list-style:none;
    gap:25px;
}

nav ul li a{
    text-decoration:none;
    color:#333;
    font-weight:bold;
    transition:0.3s;
}

nav ul li a:hover{
    color:#d63384;
}

.menu-toggle{
    display:none;
    font-size:30px;
    cursor:pointer;
}

/* HERO */
.hero{
    height:85vh;
    background:url('https://images.unsplash.com/photo-1523170335258-f5ed11844a49?q=80&w=1600&auto=format&fit=crop') center/cover;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    position:relative;
}

.hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.5);
}

.hero-content{
    position:relative;
    color:white;
    z-index:1;
    padding:20px;
}

.hero h1{
    font-size:60px;
    margin-bottom:20px;
}

.hero p{
    font-size:20px;
    margin-bottom:30px;
}

.btn{
    display:inline-block;
    background:#d63384;
    color:white;
    padding:15px 30px;
    border-radius:30px;
    text-decoration:none;
    transition:0.3s;
}

.btn:hover{
    background:#b0256e;
}

/* PRODUCTS */
.products{
    padding:80px 40px;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:40px;
    color:#d63384;
    margin-bottom:10px;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.card{
    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    transition:0.3s;
}

.card:hover{
    transform:translateY(-10px);
}

.card img{
    width:100%;
    height:300px;
    object-fit:cover;
}

.card-content{
    padding:20px;
    text-align:center;
}

.card-content h3{
    margin-bottom:10px;
}

.price{
    color:#d63384;
    font-size:22px;
    font-weight:bold;
    margin-bottom:15px;
}

.buy-btn{
    background:#d63384;
    color:white;
    border:none;
    padding:12px 20px;
    border-radius:25px;
    cursor:pointer;
    transition:0.3s;
}

.buy-btn:hover{
    background:#b0256e;
}

/* ABOUT */
.about{
    padding:80px 40px;
    background:white;
    text-align:center;
}

.about p{
    max-width:800px;
    margin:auto;
    line-height:1.8;
    font-size:18px;
}

/* CONTACT */
.contact{
    padding:80px 40px;
}

.contact form{
    max-width:600px;
    margin:auto;
    background:white;
    padding:40px;
    border-radius:20px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.contact input,
.contact textarea{
    width:100%;
    padding:15px;
    margin-bottom:20px;
    border:1px solid #ddd;
    border-radius:10px;
    outline:none;
}

.contact button{
    width:100%;
    padding:15px;
    border:none;
    background:#d63384;
    color:white;
    font-size:18px;
    border-radius:10px;
    cursor:pointer;
}

/* FOOTER */
footer{
    background:#d63384;
    color:white;
    text-align:center;
    padding:20px;
}

/* MOBILE */
@media(max-width:768px){

    .menu-toggle{
        display:block;
    }

    nav ul{
        flex-direction:column;
        position:fixed;
        top:0;
        right:-100%;
        width:250px;
        height:100%;
        background:#fff;
        padding-top:80px;
        transition:0.3s;
        box-shadow:-5px 0 15px rgba(0,0,0,0.1);
    }

    nav ul.active{
        right:0;
    }

    .hero h1{
        font-size:40px;
    }

    .product-grid{
        grid-template-columns:1fr;
    }
}
