/* ================= FONT (vendoset në PHP, jo këtu) ================= */
.liorDashLogo{
    text-align:center;
    margin:0 auto 20px auto; /* sipër 0, poshtë 20px */
}
#multiPreviewWrapper{
    margin-top:20px;
}

.previewBox{
    height:140px;
    border-radius:12px;
    margin-bottom:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:600;
    color:#fff;
    position:relative;
    overflow:hidden;
}
.liorDashLogo img{
    display:block;
    margin:0 auto;
}

/* ===== WRAPPER ===== */

.lior-settings{
    max-width:1000px;
    margin:40px auto;
    font-family:'Inter', sans-serif;
}

.liorTitle{
    font-size:28px;
    font-weight:700;
    margin-bottom:25px;
    color:#111;
}


/* ===== CARD ===== */

.liorCard{
    background:#ffffff;
    padding:25px;
    border-radius:16px;
    margin-bottom:25px;
    box-shadow:0 10px 25px rgba(0,0,0,0.06);
    border:1px solid #eee;
}


/* ===== ROWS ===== */

.liorRow{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:15px;
}

.liorInputRow{
    display:flex;
    gap:10px;
    margin:15px 0;
}


/* ===== INPUTS ===== */

.lior-settings input[type="text"],
.lior-settings input[type="color"],
.lior-settings select{
    width:100%;
    padding:12px 14px;
    border-radius:10px;
    border:1px solid #ddd;
    font-size:14px;
    transition:.2s ease;
    background:#fafafa;
}

.lior-settings input:focus,
.lior-settings select:focus{
    border-color:#667eea;
    outline:none;
    background:#fff;
    box-shadow:0 0 0 3px rgba(102,126,234,0.15);
}


/* ===== BUTTON ===== */

.liorBtn{
    background:linear-gradient(135deg,#667eea,#764ba2);
    color:#fff;
    border:none;
    padding:12px 20px;
    border-radius:10px;
    font-weight:600;
    cursor:pointer;
    transition:.3s ease;
    white-space:nowrap;
}

.liorBtn:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 20px rgba(102,126,234,0.35);
}


/* ===== SAVE BUTTON ===== */

.liorSave{
    position:fixed;
    bottom:30px;
    right:30px;
    background:linear-gradient(135deg,#25d366,#128c7e);
    color:#fff;
    padding:14px 26px;
    border:none;
    border-radius:50px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
    transition:.3s ease;
}

.liorSave:hover{
    transform:scale(1.05);
}


/* ===== SUCCESS MESSAGE ===== */

.liorSaved{
    position:fixed;
    bottom:95px;
    right:30px;
    background:#111;
    color:#fff;
    padding:10px 18px;
    border-radius:8px;
    font-size:14px;
    display:none;
}


/* ===== TOGGLE SWITCH ===== */

.switch{
    position:relative;
    display:inline-block;
    width:52px;
    height:28px;
}

.switch input{
    opacity:0;
    width:0;
    height:0;
}

.switch span{
    position:absolute;
    inset:0;
    background:#ddd;
    border-radius:50px;
    transition:.3s;
}

.switch span:before{
    content:"";
    position:absolute;
    height:22px;
    width:22px;
    left:3px;
    bottom:3px;
    background:white;
    border-radius:50%;
    transition:.3s;
}

.switch input:checked + span{
    background:#667eea;
}

.switch input:checked + span:before{
    transform:translateX(24px);
}


/* ===== SLIDER PREVIEW GRID ===== */

#sliderPreview{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:15px;
}

.liorSlideItem{
    position:relative;
    width:110px;
    height:110px;
    overflow:hidden;
    border-radius:12px;
    box-shadow:0 4px 12px rgba(0,0,0,0.15);
}

.liorSlideItem img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.removeSlide{
    position:absolute;
    top:6px;
    right:6px;
    background:#ff0000;
    color:#fff;
    font-size:12px;
    padding:4px 7px;
    cursor:pointer;
    border-radius:50%;
    line-height:1;
}


/* ===== REMOVE MOBILE TAP HIGHLIGHT ===== */

*{
    -webkit-tap-highlight-color: transparent;
}

.rmHead,
.rmItem,
a,
button{
    -webkit-tap-highlight-color: transparent;
}

.rmHead:focus,
.rmItem:focus{
    outline:none;
}

.rmHead:active,
.rmItem:active{
    background:transparent !important;
}

.rmHead:after{
    pointer-events:none;
}



/* ===== SLIDER WRAPPER ===== */
.liorSlider{
    width:100%;
    height:380px;
    overflow:hidden;
    position:relative;
}

/* ===== SWIPER STRUCTURE ===== */
.liorSlider .swiper{
    height:100%;
}

.liorSlider .swiper-wrapper{
    height:100%;
}

.liorSlider .swiper-slide{
    height:100%;
}

/* ===== IMAGE ===== */
.liorSlider img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* ===== DESKTOP 3 COL ===== */
@media(min-width:1024px){

    .liorSlider.three-col .swiper-slide{
        width:33.333% !important;
    }

}

/* ===== MOBILE ===== */
@media(max-width:768px){
    .liorSlider{
        height:220px;
    }
}

