*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}

body{
background:#fff7fa;
padding-bottom:80px;
}

.announcement{
background:#c2185b;
color:white;
text-align:center;
padding:8px;
font-size:13px;
font-weight:600;
}

.header{
background:white;
padding:12px 15px;
display:flex;
justify-content:space-between;
align-items:center;
position:sticky;
top:0;
z-index:100;
box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.logo-section{
display:flex;
align-items:center;
gap:10px;
}

.logo{
width:55px;
height:55px;
border-radius:50%;
object-fit:cover;
}

.logo-section h1{
font-size:20px;
color:#c2185b;
}

.logo-section p{
font-size:12px;
color:#666;
}

.header-order-btn{
background:#25D366;
color:white;
padding:10px 15px;
border-radius:10px;
text-decoration:none;
font-size:14px;
font-weight:bold;
}

.hero img{
width:100%;
height:220px;
object-fit:cover;
display:block;
}

.search-box{
padding:12px;
}

.search-box input{
width:100%;
padding:14px;
border:1px solid #ddd;
border-radius:30px;
outline:none;
}

.social-bar{
display:flex;
gap:10px;
padding:12px;
}

.social-bar a{
flex:1;
background:white;
padding:12px;
text-align:center;
text-decoration:none;
color:#333;
border-radius:12px;
box-shadow:0 2px 8px rgba(0,0,0,.08);
font-weight:600;
}

.categories{
display:flex;
overflow-x:auto;
gap:10px;
padding:12px;
scrollbar-width:none;
}

.categories::-webkit-scrollbar{
display:none;
}

.cat{
background:#c2185b;
color:white;
padding:10px 16px;
border-radius:20px;
white-space:nowrap;
font-size:13px;
cursor:pointer;
}

.banner-section img,
.sale-banner img{
width:100%;
display:block;
}

.section-title{
padding:15px;
font-size:22px;
color:#c2185b;
font-weight:bold;
}

.products,
.grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:12px;
padding:12px;
}

.product-card,
.card{
background:white;
border-radius:15px;
overflow:hidden;
position:relative;
box-shadow:0 3px 12px rgba(0,0,0,.08);
}

.product-card img,
.card img{
width:100%;
aspect-ratio:1/1;
object-fit:cover;
display:block;
}

.product-card h3,
.card h3{
font-size:13px;
padding:8px;
}

.product-card p,
.card p{
padding:0 8px;
font-weight:bold;
color:#c2185b;
}

.product-card a,
.card a{
display:block;
margin:8px;
padding:10px;
background:#c2185b;
color:white;
text-align:center;
border-radius:8px;
text-decoration:none;
font-size:13px;
}

.badge{
position:absolute;
top:8px;
left:8px;
background:#ff4081;
color:white;
padding:4px 8px;
font-size:10px;
border-radius:20px;
}

.view-all-btn{
display:block;
width:220px;
margin:20px auto;
text-align:center;
background:#c2185b;
color:white;
padding:12px;
border-radius:10px;
text-decoration:none;
font-weight:bold;
}

.trust-section{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:10px;
padding:12px;
}

.trust-section div{
background:white;
padding:15px;
border-radius:12px;
text-align:center;
box-shadow:0 2px 8px rgba(0,0,0,.08);
font-size:13px;
}

.contact{
padding:20px;
text-align:center;
}

.contact h2{
margin-bottom:15px;
color:#c2185b;
}

.contact a{
display:block;
margin:10px 0;
text-decoration:none;
color:#333;
font-weight:600;
}

footer{
background:#222;
color:white;
text-align:center;
padding:15px;
font-size:13px;
}

.page-title{
text-align:center;
padding:15px;
color:#c2185b;
font-size:24px;
font-weight:bold;
}

.product-page{
padding:15px;
max-width:700px;
margin:auto;
}

.product-image{
width:100%;
border-radius:15px;
}

.price{
color:#c2185b;
font-size:22px;
font-weight:bold;
margin:10px 0;
}

.size-select{
width:100%;
padding:12px;
border:1px solid #ddd;
border-radius:10px;
margin-top:10px;
}

.order-btn{
display:block;
width:100%;
background:#25D366;
color:white;
padding:15px;
text-align:center;
border-radius:10px;
text-decoration:none;
margin-top:15px;
font-weight:bold;
}

.whatsapp-float{
position:fixed;
right:15px;
bottom:85px;
width:55px;
height:55px;
background:#25D366;
color:white;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
text-decoration:none;
z-index:999;
box-shadow:0 4px 12px rgba(0,0,0,.2);
}

.bottom-nav{
position:fixed;
bottom:0;
left:0;
right:0;
height:65px;
background:white;
display:flex;
justify-content:space-around;
align-items:center;
box-shadow:0 -2px 10px rgba(0,0,0,.1);
z-index:1000;
}

.bottom-nav a{
display:flex;
flex-direction:column;
align-items:center;
text-decoration:none;
color:#333;
font-size:11px;
font-weight:600;
}

@media(min-width:768px){

.products,
.grid{
grid-template-columns:repeat(4,1fr);
}

.hero img{
height:350px;
}

}
.return-policy{
background:white;
padding:15px;
margin-top:15px;
border-radius:12px;
box-shadow:0 3px 12px rgba(0,0,0,.08);
}

.return-policy h3{
color:#c2185b;
margin-bottom:10px;
font-size:18px;
}

.return-policy p{
font-size:14px;
line-height:1.8;
color:#444;
}
.product-info,
.delivery-info,
.return-policy{
background:#fff;
padding:15px;
margin-top:15px;
border-radius:12px;
box-shadow:0 3px 12px rgba(0,0,0,.08);
}

.product-info h3,
.delivery-info h3,
.return-policy h3{
color:#c2185b;
margin-bottom:10px;
}

.product-info p,
.delivery-info p,
.return-policy p{
margin:8px 0;
font-size:14px;
line-height:1.7;
}

.sticky-order-btn{
position:fixed;
left:0;
right:0;
bottom:65px;
background:#25D366;
color:white;
padding:15px;
text-align:center;
font-weight:bold;
text-decoration:none;
z-index:999;
}