/* Michael Caffè – mobilní sticky nákupní lišta */

@media (max-width:768px){
.fixed-cart-line{display:none!important;}
body.type-detail{padding-bottom:78px;}

#kcSticky{
position:fixed;
left:0;
right:0;
bottom:0;
z-index:999999;
background:#fff;
border-top:1px solid #e5e5e5;
box-shadow:0 -4px 16px rgba(0,0,0,.08);
padding:10px 12px calc(env(safe-area-inset-bottom) + 10px);
}

#kcWrap{
display:grid;
grid-template-columns:auto 120px 120px;
align-items:center;
gap:10px;
max-width:100%;
}

#kcPrice{
font-size:24px;
font-weight:700;
line-height:1;
white-space:nowrap;
color:#111;
}

#kcQty{
display:flex;
align-items:center;
justify-content:space-between;
height:42px;
border:1px solid #ddd;
border-radius:10px;
background:#fff;
overflow:hidden;
}

#kcQty button{
width:36px;
height:42px;
border:0;
background:#fff;
font-size:22px;
cursor:pointer;
transition:.2s;
}

#kcQty button:hover{background:#f5f5f5;}

#kcInput{
width:48px;
border:0;
background:none;
text-align:center;
font-size:15px;
font-weight:600;
pointer-events:none;
}

#kcBuy{
background:#5cb85c;
color:#fff;
border:none;
border-radius:12px;
height:44px;
padding:0 20px;
font-size:16px;
font-weight:700;
cursor:pointer;
white-space:nowrap;
transition:.2s;
}

#kcBuy:hover{background:#4cae4c;}
}
