.mobile-sticky-cart{
    position: fixed;
    bottom: 60px;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 10px;
}

.mobile-cart-form{
    display:flex;
    align-items:center;
}

.mobile-qty-box{
    display:flex;
    align-items:center;
    border:1px solid #ddd;
    border-radius:6px;
    overflow:hidden;
    margin-right:10px;
}

.qty-btn{
    width:40px;
    height:46px;
    border:none;
    background:#f5f5f5;
    font-size:22px;
    font-weight:bold;
}

.mobile-qty-input{
    width:50px;
    height:46px;
    border:none;
    text-align:center;
    font-size:16px;
}

.mobile-add-cart-btn{
    height:46px;
    width: 100%;
    border:none;
    background:#ff3860;
    color:#fff;
    font-weight:700;
    font-size:15px;
    border-radius:6px;
}

.mobile-add-cart-btn:active{
    transform:scale(0.98);
}

@media (max-width: 340px) {
    .mobile-sticky-cart{
        bottom: 52px !important;
    }
}

@media (max-width: 767px) {
    main {
        padding-bottom: 90px;
    }
}
