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

body{
background:#fff8fa;
color:#111;
}

/* TOP BAR */

.top-bar{
background:#f5efe6;
padding:12px;
text-align:center;
font-weight:600;
font-size:14px;
}

/* HEADER */

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 6%;
background:#fff;
position:sticky;
top:0;
z-index:1000;
box-shadow:0 2px 10px rgba(0,0,0,.05);
}

.logo img{
height:90px;
}

nav{
display:flex;
gap:25px;
}

nav a{
text-decoration:none;
color:#111;
font-weight:600;
font-size:14px;
transition:.3s;
}

nav a:hover{
color:#ff4f87;
}

.icons{
display:flex;
gap:20px;
font-size:20px;
cursor:pointer;
}

/* HERO */

.hero{
display:flex;
justify-content:space-between;
align-items:center;
padding:60px 6%;
background:linear-gradient(
135deg,
#fff8fa,
#ffeef5,
#ffdce8
);
}

.hero-left{
width:45%;
}

.hero-left h1{
font-size:80px;
line-height:1;
font-weight:900;
margin-bottom:20px;
}

.hero-left span{
color:#ff4f87;
}

.hero-left p{
font-size:22px;
line-height:1.6;
margin-bottom:30px;
color:#555;
}

.btn{
display:inline-block;
background:#ff4f87;
color:white;
padding:15px 35px;
border-radius:50px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.btn:hover{
transform:translateY(-3px);
}

.hero-right{
width:55%;
text-align:right;
}

.hero-right img{
width:100%;
max-width:850px;
}

/* FEATURES */

.features{
display:flex;
gap:50px;
margin-top:40px;
}

.feature{
text-align:center;
}

.feature i{
font-size:35px;
color:#ff4f87;
margin-bottom:10px;
}

.feature p{
font-size:15px;
font-weight:600;
}

/* STATS */

.stats{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
padding:40px 6%;
}

.stat-box{
background:white;
padding:25px;
border-radius:15px;
text-align:center;
box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.stat-box h2{
color:#ff4f87;
font-size:34px;
}

.stat-box p{
margin-top:10px;
color:#666;
}

/* CATEGORY */

.categories{
padding:60px 6%;
}

.categories h2{
text-align:center;
font-size:40px;
margin-bottom:40px;
}

.category-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.card{
background:white;
height:220px;
display:flex;
align-items:center;
justify-content:center;
text-decoration:none;
border-radius:20px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
transition:.3s;
}

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

.card h3{
color:#111;
font-size:24px;
}

/* FOOTER */

footer{
background:#111;
color:white;
text-align:center;
padding:60px 20px;
margin-top:50px;
}

footer h2{
font-size:40px;
margin-bottom:15px;
}

footer p{
margin-bottom:15px;
}

.social{
display:flex;
justify-content:center;
gap:20px;
margin:20px 0;
}

.social a{
width:50px;
height:50px;
background:#ff4f87;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
text-decoration:none;
color:white;
font-size:22px;
}

/* MOBILE */

@media(max-width:991px){

header{
flex-direction:column;
gap:20px;
}

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

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

.hero-left,
.hero-right{
width:100%;
}

.hero-left h1{
font-size:50px;
}

.features{
justify-content:center;
flex-wrap:wrap;
}

.stats{
grid-template-columns:repeat(2,1fr);
}

.category-grid{
grid-template-columns:1fr;
}
}
/* CATEGORY PAGES */

.page-title{
    text-align:center;
    padding:60px 20px 20px;
}

.page-title h1{
    font-size:50px;
    color:#111;
}

.page-title p{
    color:#666;
    margin-top:10px;
}

/* PRODUCTS */

.products{
    padding:50px 6%;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.product-card{
    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
}

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

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

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

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

.price{
    color:#ff4f87;
    font-size:22px;
    font-weight:700;
}

.back-home{
    display:inline-block;
    margin:40px auto;
    padding:15px 35px;
    background:#ff4f87;
    color:white;
    text-decoration:none;
    border-radius:50px;
}

.center-btn{
    text-align:center;
    margin-bottom:50px;
}
.product-grid{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(250px,1fr));
gap:25px;
padding:40px;
}

.product-card{
background:white;
padding:20px;
border-radius:20px;
box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.product-card img{
width:100%;
border-radius:10px;
}

.view-btn{
display:block;
background:#ff4f87;
color:white;
padding:12px;
text-align:center;
text-decoration:none;
border-radius:10px;
margin-top:10px;
}

.product-page{
display:flex;
gap:50px;
padding:50px;
}

.product-page img{
width:400px;
}
.whatsapp-btn{
    display:inline-block;
    background:#25D366;
    color:white;
    padding:12px 25px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
}

.whatsapp-btn:hover{
    background:#1ebe5d;
}
.social-buttons{
    display:flex;
    gap:15px;
    margin-top:20px;
}

.whatsapp-btn{
    display:inline-block;
    background:#25D366;
    color:white;
    padding:12px 25px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
}

.instagram-btn{
    display:inline-block;
    background:#E1306C;
    color:white;
    padding:12px 25px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
}

.whatsapp-btn:hover,
.instagram-btn:hover{
    opacity:0.9;
}
Font Awesome (required)

Add this inside <head> if not already added:

<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">