    .cart-popup {
    position: fixed;
    top: 0;
    right: -400px; /* Starts hidden */
    width: 400px;
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0px 5px rgba(0, 0, 0, 0.3);
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
    z-index: 999; /* Set a high z-index value to ensure it's above other content */
    }

    .cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    }

    .cart-items {
    max-height: 300px;
    overflow-y: auto;
    }

    .cart-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    }

    .cart-total {
    margin-top: 20px;
    text-align: right;
    }

    .cart-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    }