/* WRAP */
#rmWrap{
width:100%;
max-width:700px;
margin:auto;
}

/* CATEGORY */
.rmCat{
background:#2b1f1a;
border-radius:18px;
margin-bottom:16px;
box-shadow:0 10px 30px rgba(0,0,0,.35);
overflow:hidden;
border:1px solid rgba(212,175,55,.12);
}

.rmHead{position:relative;cursor:pointer;}

.rmCover{
width:100%;
height:180px;
object-fit:cover;
filter:brightness(.8);
}

.rmTitle{
position:absolute;
bottom:12px;
left:18px;
color:#f5efe8;
font-size:22px;
font-weight:600;
font-family:'Playfair Display',serif;
letter-spacing:.4px;
}

.rmBody{
max-height:0;
overflow:hidden;
transition:.4s;
}

/* ITEM */
.rmItem{
display:flex;
justify-content:space-between;
align-items:center;
padding:12px 16px;
border-bottom:1px solid rgba(255,255,255,.05);
}

.rmLeft{display:flex;gap:12px;align-items:center;}

.rmLeft img{
width:64px;
height:64px;
border-radius:14px;
object-fit:cover;
}

.rmName{
font-weight:600;
color:#fff;
font-family:'Playfair Display',serif;
}

.rmDesc{
font-size:13px;
color:#c8b8a9;
}

/* PRICE FIX GLOBAL */
.rmPrice,
.liorProductPrice{
white-space:nowrap;
flex-shrink:0;

background:none !important;
padding:0 !important;
border-radius:0 !important;
box-shadow:none !important;

font-family:'Playfair Display',serif;
font-size:15px;
font-weight:700;
color:#d4af37;
letter-spacing:.4px;
}

/* APP */
.liorApp{
width:100%;
max-width:900px;
margin:auto;
padding:10px 10px 120px;
font-family:Inter,sans-serif;
}

/* HERO */
.liorCategoryHero{
display:none;
position:relative;
height:220px;
width:100vw;
margin-left:50%;
transform:translateX(-50%);
overflow:hidden;
margin-bottom:12px;
margin-top:-20px;
}

.liorCategoryHero img{
width:100%;
height:100%;
object-fit:cover;
filter:brightness(.65) blur(1px);
transform:scale(1.05);
}

.liorHeroOverlay{
position:absolute;
inset:0;
background:linear-gradient(to top,rgba(0,0,0,.75),rgba(0,0,0,0));
}

.liorHeroTitle{
position:absolute;
bottom:18px;
left:20px;
color:#d4af37;
font-size:28px;
font-weight:700;
font-family:'Playfair Display',serif;
}

/* CATEGORY LIST */
.liorCategoryList{
margin-top:20px;
display:grid;
gap:30px;
width:100%;
}

.liorCategoryCard{
position:relative;
height:135px;
border-radius:20px;
overflow:hidden;
cursor:pointer;
opacity:0;
box-shadow:0 12px 30px rgba(0,0,0,.25);
transition:.6s cubic-bezier(.22,.61,.36,1);
}

.liorCategoryCard.left{transform:translateX(-60px)}
.liorCategoryCard.right{transform:translateX(60px)}

.liorCategoryCard.show{
transform:translateX(0);
opacity:1;
}

.liorCategoryCard img{
width:100%;
height:100%;
object-fit:cover;
filter:brightness(.75);
}

.liorCategoryTitle{
position:absolute;
bottom:14px;
left:18px;
font-size:20px;
font-weight:600;
color:#fff;
font-family:'Playfair Display',serif;
}

/* PRODUCTS */
.liorProducts{
display:none;
width:100vw;
margin-left:50%;
transform:translateX(-50%);
padding:22px 16px 120px;
min-height:100vh;
}

/* PRODUCT CARD */
.liorProductCard{
display:flex;
gap:14px;
background:#2b1f1a;
border-radius:18px;
padding:14px;
box-shadow:0 10px 25px rgba(0,0,0,.3);
margin-bottom:18px;
align-items:flex-start;
opacity:0;
transition:.6s;
border:1px solid rgba(212,175,55,.12);
}

.liorProductCard.left{transform:translateX(-60px)}
.liorProductCard.right{transform:translateX(60px)}

.liorProductCard.show{
transform:translateX(0);
opacity:1;
}

/* IMAGE */
.liorProductImage{
width:90px;
height:90px;
flex-shrink:0;
border-radius:14px;
overflow:hidden;
}

.liorProductImage img{
width:100%;
height:100%;
object-fit:cover;
}

/* CONTENT */
.liorProductContent{
flex:1;
min-width:0;
}

/* TITLE + PRICE FIX (KRYESORE) */
.liorProductTop{
display:flex;
justify-content:space-between;
align-items:flex-start;
gap:10px;
}

/* TITULLI - FIX */
.liorProductTitle{
font-family:'Playfair Display',serif;
font-size:18px;
font-weight:600;
color:#fff;

flex:1;
min-width:0;

white-space:normal;
word-break:break-word;
overflow-wrap:break-word;

/* opsional max 2 rreshta */
display:-webkit-box;
-webkit-line-clamp:2;
-webkit-box-orient:vertical;
overflow:hidden;
}

/* INGREDIENTS */
.liorProductIngredients{
font-size:13px;
color:#c8b8a9;
margin-top:4px;
}

/* BACK BUTTON */
.liorBackFixed{
position:fixed;
bottom:25px;
left:15px;
margin-bottom:50px;
padding:12px 22px;
border-radius:20px;
background:linear-gradient(135deg,#d4af37,#b9932f);
color:#1b1410;
font-weight:700;
cursor:pointer;
display:none;
z-index:999;
}

/* MOBILE FIX */
@media(max-width:768px){

.liorProductTitle{
font-size:16px;
line-height:1.3;
}

.liorProductPrice{
font-size:14px;
}

.rmCat{
height:190px;
}

}