*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial;
}

body{
background:#f5f9ff;
}

/* TOP BAR */
.topbar{
background:black;
color:white;
text-align:center;
padding:6px;
}

/* NAVBAR */
.navbar{
display:flex;
justify-content:space-between;
align-items:center;
background:#001f4d;
padding:12px 30px;
color:white;

}

.logo img{
height:50px;
}

.menu a{
color:white;
margin:0 15px;
text-decoration:none;
font-weight:bold;
}

.menu a:hover{
color:#0d6efd;
}

.menu-btn{
display:none;
font-size:22px;
cursor:pointer;
}


.right{
display:flex;
align-items:center;
gap:10px;
}

.phone-btn{
background:#0d6efd;
padding:8px 12px;
border-radius:5px;
text-decoration: none;
color:white;
}

.phone-btn:hover{
background:#0b5ed7;
cursor: pointer;
}

.signup{
background:#0d6efd;
color:white;
border:none;
padding:8px 14px;
border-radius:5px;
}

.signup:hover{
background:#0b5ed7;
cursor: pointer;
}

/* SLIDER FULL WIDTH */
.slider{
position:relative;
width:100%;
height:380px;
overflow:hidden;
}

.slide{
position:absolute;
width:100%;
height:100%;
display:none;
}

.slide.active{
display:block;
}

.slide img{
width:100%;
height:100%;
object-fit:cover;
}

/* TEXT OVERLAY */
.caption{
position:absolute;
top:50%;
left:60px;
transform:translateY(-50%);
color:white;
}

.caption h1{
font-size:40px;
margin-bottom:10px;
}

.caption p{
font-size:18px;
margin-bottom:15px;
}

/* BUTTON */
.btn{
background:#ffcc00;
color:black;
padding:10px 18px;
text-decoration:none;
font-weight:bold;
border-radius:5px;
}

/* ARROWS */
.prev, .next{
position:absolute;
top:50%;
transform:translateY(-50%);
background:rgba(0,0,0,0.5);
color:white;
border:none;
padding:12px;
cursor:pointer;
font-size:22px;
}

.prev{ left:10px; }
.next{ right:10px; }

/* PRODUCTS */
.title{
margin:20px;
font-size:24px;
}

.product-section{
    padding:20px;


}

.card-wrapper{
position:relative;
display:flex;
align-items:center;
}

.card-container{
display:flex;
overflow-x:auto;
scroll-behavior:smooth;
gap:20px;
padding:20px;
z-index: 1;
}

.card-container::-webkit-scrollbar{
display:none;
}

.product-card{
min-width:190px;
background:white;
padding:12px;
border-radius:12px;
box-shadow:0 0 10px #ddd;
text-align:center;
transition:0.3s;
}

.product-card:hover{
transform:translateY(-5px);
}

.product-img{
width:100%;
height:130px;
object-fit:contain;
}

.product-name{
font-size:14px;
margin:8px 0;
}

.price{
color:#0d6efd;
font-weight:bold;
}

/* ICON BUTTONS */
.icon-row{
display:flex;
justify-content:center;
gap:15px;
margin:10px 0;
}

.icon-btn{
background:#0d6efd;
color:white;
padding:8px 10px;
border-radius:10%;
text-decoration:none;
font-size:16px;
}

/* DETAILS BUTTON */
.details-btn{
display:block;
background:#eee;
padding:6px;
border-radius:6px;
text-decoration:none;
color:black;
font-size:13px;
}


/* ABOUT */
.about{
display:flex;
justify-content:space-around;
align-items:center;
padding:40px;
background:#0d6efd;
color:white;
}

.about-img img{
width:350px;
border-radius:10px;
}

/* WHATSAPP */
.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:green;
color:white;
padding:10px;
border-radius:20%;
font-size:22px;
z-index: 1010;
}


.feedback-section{
padding:40px;
background:#f5f9ff;
}

.feedback-wrapper{
position:relative;
display:flex;
align-items:center;
}

.feedback-container{
display:flex;
overflow-x:auto;
scroll-behavior:smooth;
gap:20px;
padding:20px;
}

.feedback-container::-webkit-scrollbar{
display:none;
}

.feedback-card{
min-width:250px;
background:white;
padding:20px;
border-radius:12px;
box-shadow:0 0 10px #ddd;
text-align:center;
}

/* ICON (First Letter) */
.user-icon{
width:50px;
height:50px;
border-radius:50%;
background:#0d6efd;
color:white;
display:flex;
align-items:center;
justify-content:center;
font-size:20px;
font-weight:bold;
margin:0 auto 10px;
}

.message{
font-size:14px;
color:#555;
margin:10px 0;
}

.date{
font-size:12px;
color:#888;
}

/* ARROWS */
.left-btn, .right-btn{
position:absolute;
background:#0d6efd;
color:white;
border:none;
padding:10px;
font-size:18px;
cursor:pointer;
border-radius:50%;
}

.left-btn{ left:-10px; z-index: 1001; }
.right-btn{ right:-10px; z-index: 1001; }

/* PRICE + STOCK */
.price{margin:6px 0}
.offer{color:#0d6efd;font-weight:bold;margin-right:8px}
.cut{text-decoration:line-through;color:#888}
.stock{font-size:12px;margin-top:4px}

.badge{
    background:#e53935;color:#fff;padding:4px 8px;font-size:12px;border-radius:6px
}

.title{
    margin:20px;
    font-size:24px;
    text-align: center;
}


@media(max-width:768px){

.menu{
display:none;
flex-direction:column;
position:absolute;
top:70px;
left:0;
width:100%;
background:white;
padding:15px;
z-index: 1000;
text-align: center;
}

.menu a{
color:black;
margin:10px 0;
text-decoration:none;
font-weight:bold;
}

.menu a:hover{
    color:#0d6efd;

}    

.menu.show{
display:flex;
}

.menu-btn{
display:block;
}

.about {
flex-direction:column;
gap:20px;
}

.about-text{
text-align:center;
}

.about-img img{
width:100%;
border-radius:10px;
}

}