#lora-cart-bar{
position:fixed;
left:12px;
right:12px;
bottom:12px;
z-index:999999;
display:none;
}

#lora-cart-bar.show{
display:block;
animation:loraCartUp .25s ease;
}

.lora-cart-bar-content{
height:64px;
background:#6E8062;
border-radius:18px;
display:flex;
align-items:center;
justify-content:space-between;
padding:0 16px;
box-shadow:0 12px 35px rgba(0,0,0,.15);
color:#fff;
gap:12px;
}

.lora-cart-info{
display:flex;
flex-direction:column;
justify-content:center;
flex:1;
min-width:0;
}

.lora-cart-count{
font-size:14px;
font-weight:700;
white-space:nowrap;
overflow:hidden;
text-overflow:ellipsis;
}

.lora-cart-total{
font-size:15px;
font-weight:600;
margin-top:4px;
white-space:nowrap;
overflow:hidden;
text-overflow:ellipsis;
}

#lora-open-cart{
height:42px;
padding:0 18px;
border:none;
border-radius:12px;
background:#fff;
color:#6E8062;
font-weight:700;
font-size:14px;
white-space:nowrap;
flex-shrink:0;
cursor:pointer;
}

@keyframes loraCartUp{
from{
opacity:0;
transform:translateY(20px);
}
to{
opacity:1;
transform:translateY(0);
}
}

@media(min-width:768px){

#lora-cart-bar{
left:50%;
right:auto;
width:440px;
transform:translateX(-50%);
}

}