:root {
    --biji-header-height: 50px;
    --biji-footer-height: 60px;
    --biji-button-padding: 6px 18px;
}

body{
    padding-bottom:80px;
}

.biji-cart{
    max-width:700px;
    margin:auto;
}

.biji-cart-card{
    display:flex;
    gap:12px;
    align-items:center;
    padding:15px;
    margin-bottom:12px;
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:12px;
}

.biji-cart-image img{
    width:70px;
    height:70px;
    object-fit:cover;
}

.biji-cart-info{
    flex:1;
}

.biji-cart-name{
    font-weight:600;
    margin-bottom:4px;
}

.biji-cart-price{
    color:#666;
    margin-bottom:8px;
}

.biji-cart-qty{
    display:flex;
    align-items:center;
    gap:8px;
}

.biji-cart-qty button{
    width:30px;
    height:30px;
}

.qty-input{
    width:50px;
    text-align:center;
}

.biji-cart-footer{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    background:#fff;
    padding:12px 16px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    box-shadow:0 -2px 10px rgba(0,0,0,.1);
    z-index:9999;
}

.biji-cart-summary{
    display:flex;
    justify-content:space-between;
}

.biji-cart-checkout{
    width:140px;
    height:48px;
    border:none;
    border-radius:8px;
    cursor:pointer;
}

.biji-cart-checkout:disabled{
    opacity:.5 
}

.biji-remove-item{
    border:none;
    background:none;
    cursor:pointer;
    font-size:13px;
    padding:0;
    margin-top:6px;
}


@media (max-width: 767px){

    body.page-id-1683 header,
    body.page-id-1683 footer{
        display:none;
    }
    
    .biji-cart-header{
        position:fixed;
        top:0;
        left:0;
        width:100%;
        height:var(--biji-header-height);
        background:var(--theme-palette-color-1);
        border-bottom:1px solid #eee;
        display:flex;
        align-items:center;
        z-index:9999;
        box-shadow: 0 2px 10px rgba(0,0,0,.1);
    }
    
    .biji-back-btn{
        position:absolute;
        left:16px;
        top:50%;
        transform:translateY(-50%);
        
        border: none;
        background: none;
        font-size: 24px;
        padding: 0;
        margin-right: 12px;
        cursor: pointer;
        color:var(--theme-palette-color-8);
    }
    
    .biji-cart-title{
        position:absolute;
        left:50%;
        top:50%;
        transform:translate(-50%,-50%);
    
        font-size: 18px;
        font-weight: 600;
        color: var(--theme-palette-color-8);
    }
    
    .biji-cart{
        padding-top:var(--biji-header-height);
        padding-bottom: var(--biji-footer-height);
    }
    
    .biji-cart-footer{
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height:var(--biji-footer-height);
        background:var(--theme-palette-color-8);
        padding: 12px 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        box-shadow: 0 -2px 10px rgba(0,0,0,.1);
        z-index: 9999;
        box-sizing: border-box;
    }
    
    .biji-select-all{
        display:flex;
        align-items:center;
        gap:6px;
        font-size:13px;
        white-space:nowrap;
        cursor:pointer;
    }

    .biji-cart-summary{
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    #biji-cart-subtotal{
        font-weight:600;
    }

    .biji-cart-checkout{
        width:auto;
        height:auto;
        flex-shrink: 0;
        color: var(--theme-palette-color-8);
        background:var(--theme-palette-color-1);
        padding: var(--biji-button-padding);
    }


}
