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

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, sans-serif;
    background:#fdf7f8;
    color:#333;
}

/* HERO */

.hero{
    min-height:100vh;
    background: linear-gradient(135deg,#fff7fb,#ffe6f0,#fff);;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
}

.overlay{
    width:100%;
    max-width:1200px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.hero-text{
    flex:1;
}

.hero-text h1{
    font-size:48px;
    color:#d63384;
    margin-bottom:15px;
}

.hero-text p{
    font-size:22px;
    color:#666;
    margin-bottom:30px;
}

.btn{
    display:inline-block;
    padding:15px 35px;
    background:#d63384;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-size:18px;
    font-weight:bold;
    transition:.3s;
}

.btn:hover{
    background:#b82d73;
    transform:scale(1.05);
}

.hero-image{
    flex:1;
    text-align:center;
}

.hero-image img{
    width:100%;
    max-width:420px;
}

/* PRODUCTS */

.products{
    padding:70px 20px;
}

.products h2{
    text-align:center;
    font-size:36px;
    color:#d63384;
    margin-bottom:40px;
}

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

/* MOBILE */

@media(max-width:768px){

.overlay{
    flex-direction:column-reverse;
    text-align:center;
}

.hero-text h1{
    font-size:38px;
}

.hero-text p{
    font-size:18px;
}

.hero-image img{
    max-width:320px;
}

}
.card{
background:#fff;
border-radius:20px;
padding:15px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.card img{
width:100%;
border-radius:15px;
margin-bottom:15px;
}

.card h3{
margin-bottom:10px;
}

.card p{
font-size:20px;
color:#d63384;
font-weight:bold;
margin-bottom:15px;
}
.hero-image img{
    width:100%;
    max-width:300px;
    height:auto;
    object-fit:contain;
}

@media(max-width:768px){
    .hero{
        min-height:auto;
        padding:60px 20px;
    }

    .overlay{
        flex-direction:column;
        text-align:center;
    }

    .hero-image img{
        max-width:260px;
    }
}
