.easy-side-cart {
    position: fixed;
    top: 0;
    right: -100%;
    width: 350px;
    height: 100%;
    background: #fff;
    box-shadow: -3px 0 20px rgba(0,0,0,0.2);
    transition: right 0.3s ease;
    z-index: 99999;
    padding: 20px;
    overflow-y: auto;
}
.easy-side-cart.open {
    right: 0;
}
.easy-close-cart {
    background: none;
    border: none;
    font-size: 26px;
    position: absolute;
    top: 10px;
    left: 10px;
    cursor: pointer;
}
