/* ================= SETTINGS WRAP ================= */

.lior-settings{
max-width:720px;
margin:auto;
padding:20px;
border-radius:18px;
background:#0f0f0f;
}

/* ================= CARDS ================= */

.liorCard{
background:#1b1b1b;
color:#fff;
padding:20px;
border-radius:16px;
box-shadow:0 10px 30px rgba(0,0,0,.25);
margin-bottom:18px;
}

.liorRow{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:14px;
gap:10px;
flex-wrap:wrap;
}

/* ================= BUTTONS ================= */

.liorBtn{
background:#111;
color:#fff;
border:none;
padding:10px 14px;
border-radius:10px;
font-weight:600;
cursor:pointer;
transition:.2s;
}
.liorBtn:hover{transform:scale(.97)}

.liorSave{
background:#111;
color:#fff;
border:none;
padding:14px;
border-radius:12px;
font-weight:700;
cursor:pointer;
width:100%;
transition:.2s;
}
.liorSave:hover{transform:scale(.98)}

.liorSaved{
display:none;
color:#4ade80;
margin-top:10px;
font-weight:600;
}

/* ================= INPUTS ================= */

.liorCard input,
.liorCard select{
background:#111;
color:#fff;
border:1px solid #333;
border-radius:10px;
padding:8px 10px;
}

/* ================= SWITCH ================= */

.switch{position:relative;width:48px;height:26px}
.switch input{display:none}
.switch span{position:absolute;inset:0;background:#333;border-radius:30px}
.switch span:before{
content:'';
position:absolute;
width:20px;
height:20px;
left:3px;
top:3px;
background:#fff;
border-radius:50%;
transition:.25s;
}
.switch input:checked+span{background:#fff}
.switch input:checked+span:before{
transform:translateX(22px);
background:#000;
}

/* ================= BRAND / LOGO ================= */

.restBrandWrap{
text-align:center;
margin:10px auto 18px;
}

.restLogoCenter{
display:block;
margin:auto;
max-width:220px;
max-height:95px;
width:auto;
height:auto;
object-fit:contain;
filter:drop-shadow(0 6px 14px rgba(0,0,0,.25));
}

/* ================= TYPING ================= */

.restMsgWrap{
display:flex;
justify-content:center;
margin:20px auto;
max-width:900px;
}

.typingBox{
display:inline-flex;
align-items:center;
justify-content:center;
padding:10px 18px;
border-radius:22px;
font-weight:600;
text-align:center;
min-height:40px;
background:#000;
color:#fff;
}

/* ================= SLIDER PREVIEW ================= */

#sliderPreview{
display:flex;
flex-wrap:wrap;
gap:8px;
margin-top:10px;
}

.liorPrevImg{position:relative}

.liorPrevImg img{
width:72px;
height:72px;
object-fit:cover;
border-radius:12px;
box-shadow:0 4px 10px rgba(0,0,0,.4);
}

.liorPrevImg span{
position:absolute;
top:-6px;
right:-6px;
background:#000;
color:#fff;
width:18px;
height:18px;
border-radius:50%;
font-size:12px;
display:flex;
align-items:center;
justify-content:center;
cursor:pointer;
}

/* ================= DESKTOP GRID ================= */

.restSlider{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:12px;
max-width:1000px;
margin:auto;
}

.restSlider img{
width:100%;
height:210px;
object-fit:cover;
border-radius:16px;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

.restLogoCenter{
max-width:180px;
max-height:80px;
}

.restSlider{
display:flex;
overflow-x:auto;
scroll-snap-type:x mandatory;
-webkit-overflow-scrolling:touch;
scroll-behavior:smooth;
gap:0;
scrollbar-width:none;
}

.restSlider::-webkit-scrollbar{display:none}

.restSlider img{
flex:0 0 100%;
width:100%;
height:210px;
object-fit:cover;
scroll-snap-align:start;
border-radius:16px;
}

/* slider dots */

.sliderDots{
display:flex;
justify-content:center;
gap:6px;
margin-top:8px;
}

.sliderDots span{
width:7px;
height:7px;
border-radius:50%;
background:#777;
}

.restMsg.slide{
white-space:nowrap;
animation:slide 12s linear infinite;
}

@keyframes slide{
0%{transform:translateX(100%)}
100%{transform:translateX(-100%)}
}

}
/* ===== HEADER COMPACT ===== */

.restBrandWrap{
margin:6px auto 8px;
}

/* logo më e dukshme */

.restLogoCenter{
display:block;
margin:auto;
max-width:1000px;
max-height:400px;
width:auto;
height:auto;
object-fit:contain;
filter:drop-shadow(0 8px 18px rgba(0,0,0,.28));
}


/* message spacing më i vogël */

.restMsgWrap{
margin:8px auto;
}

/* social icons më afër logos */

.restSocialCenter{
margin-top:6px;
}

/* ===== MOBILE ===== */

@media(max-width:768px){
.restLogoCenter{
max-width:400px;
max-height:200px;
}
}


.restBrandWrap{
margin:4px auto 6px;
}

.restMsgWrap{
margin:6px auto;
}

}
