#ccp-cart-icon {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    cursor: pointer;
    z-index: 9999;
    font-size: 24px;
}

#ccp-cart-popup {
    position: fixed;
    top: 0;
    right: -400px;
    width: 350px;
    height: 100%;
    background: #fff;
    box-shadow: -3px 0 5px rgba(0,0,0,0.2);
    z-index: 9998;
    overflow-y: auto;
    transition: right 0.3s ease-in-out;
    padding: 20px;
}

#ccp-cart-popup.open {
    right: 0;
}
