.side-cart-drawer {
    position: fixed;
    top: 0;
    right: -400px; /* Initially hidden off-screen */
    width: 350px;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 5px rgba(0,0,0,0.2);
    transition: right 0.3s ease;
    z-index: 9999;
    padding: 20px;
    overflow-y: auto;
}

.side-cart-drawer.open {
    right: 0; /* Slide in */
}

#side-cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 9998;
}

.side-cart-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
}
#close-side-cart {
    font-size: 36px;
    position: absolute;
    top: 0px;
    right: 0;
    font-weight: 400;
    display: inline;
    padding: 15px;
    line-height: normal;
}
.side-cart-drawer .woocommerce-mini-cart{
    list-style-type:none;
}
.side-cart-drawer ul li{
    display:flex;
    flex-wrap:wrap;
    flex-direction: column;
}
.side-cart-drawer ul li *{
    flex: 0 0 100%;
    max-width: 100%;
    overflow: hidden;
}
.side-cart-drawer ul li .remove_from_cart_button {
    position: absolute;
    right: 0;
    width: 25px !important;
    height: 23px;
    line-height: normal;
    display: inline-block !important;
    text-align: center;
    background: #000;
    color: #fff;
}
.side-cart-drawer ul li .variation dt, .side-cart-drawer ul li .variation dd{
    margin: 0px;
    line-height: 1.5;
}
.side-cart-drawer ul li .variation dt p, .side-cart-drawer ul li .variation dd p{
    margin: 0px;
    font-size:14px;
}
.side-cart-drawer ul li .quantity{
    display:block;
}
.side-cart-drawer ul li .qty, .side-cart-drawer ul li .more, .side-cart-drawer ul li .less{
    display:none;
}
.side-cart-drawer .woocommerce-mini-cart__buttons .button{
    padding: 12px 20px;
}
.side-cart-drawer .woocommerce-mini-cart__buttons .button:last-child{
    margin-left:10px;
}
.side-cart-drawer .woocommerce-mini-cart__buttons .button:hover{
    color: #fff;
}