
*{box-sizing:border-box;margin:0;padding:0;font-family:Arial,Helvetica,sans-serif}
body{background:#f7fbff;color:#333}
header{display:flex;align-items:center;justify-content:space-between;padding:12px 40px;background:#ffffff;position:sticky;top:0;z-index:10;box-shadow:0 2px 8px rgba(0,0,0,.08)}
header img{height:48px}
.whatsapp-btn{background:#25D366;color:#fff;padding:10px 16px;border-radius:6px;text-decoration:none;font-weight:bold}
.slider{max-width:1100px;margin:30px auto;position:relative}
.slide{display:none}
.slide img{width:100%;border-radius:12px}
.about{max-width:900px;margin:40px auto;text-align:center}
.products{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:24px;max-width:1100px;margin:40px auto}
.card{background:#fff;padding:20px;border-radius:12px;box-shadow:0 4px 12px rgba(0,0,0,.1);text-align:center}
.card img{width:100%;border-radius:8px}
.card ul{text-align:left;margin:10px 0}
.order-btn{display:inline-block;margin-top:10px;padding:10px 18px;background:#0d6efd;color:#fff;border-radius:6px;text-decoration:none}
footer{background:#0b2545;color:#fff;padding:20px;text-align:center;margin-top:40px}
.social a{color:#fff;margin:0 8px;text-decoration:none;font-size:18px}

/* Slider controls */
.slider{position:relative}
.arrow{
 position:absolute;top:50%;transform:translateY(-50%);
 background:rgba(0,0,0,.5);color:#fff;border:none;
 font-size:22px;padding:8px 12px;cursor:pointer;border-radius:50%
}
.arrow.left{left:10px}
.arrow.right{right:10px}
.dots{text-align:center;margin-top:10px}
.dot{
 display:inline-block;width:10px;height:10px;border-radius:50%;
 background:#ccc;margin:0 4px;cursor:pointer
}
.dot.active{background:#0d6efd}

/* Mobile spacing */
@media(max-width:768px){
 header{padding:12px 16px}
 header img{height:40px}
 .about{padding:0 16px}
 .products{padding:0 16px}
 .card img{height:auto}
}

/* Floating WhatsApp Bubble */
.whatsapp-float{
 position:fixed;bottom:20px;right:20px;
 background:#25D366;color:#fff;
 width:56px;height:56px;border-radius:50%;
 display:flex;align-items:center;justify-content:center;
 font-size:28px;text-decoration:none;
 box-shadow:0 4px 12px rgba(0,0,0,.25);
 z-index:999;
}

/* Touch friendly dots */
.dot{width:12px;height:12px}

/* Header center logo */
header{
 justify-content:center;
}
header img{
 height:64px;
}

/* Full width slider */
.slider{
 max-width:100%;
 margin:0;
}
.slide img{
 width:100%;
 border-radius:0;
}

/* Responsive tweaks */
@media(max-width:768px){
 header img{height:52px}
 .whatsapp-btn{display:none}
 .about h2{font-size:22px}
 .about p{font-size:15px}
 .products{grid-template-columns:1fr}
 .card{margin-bottom:20px}
}

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body{
 font-family:'Poppins', sans-serif;
 line-height:1.6;
}

/* Header layout: WhatsApp left, logo center */
header{
 justify-content:space-between;
}
.header-left{
 flex:1;
 display:flex;
 justify-content:flex-start;
}
.header-center{
 flex:1;
 display:flex;
 justify-content:center;
}

/* Text spacing improvements */
.about p{
 line-height:1.8;
 margin-top:12px;
}
.card ul li{
 margin-bottom:6px;
 line-height:1.6;
}
