.custom-cart-box {
    border: 1px solid #ccc;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    max-width: 300px;
    font-family: sans-serif;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    margin-bottom: 10px;
}

.clear-cart {
    color: #aa0000;
    text-decoration: none;
    font-weight: bold;
}

.cart-item {
    margin-bottom: 8px;
}

.item-line {
    font-size: 15px;
    margin-bottom: 2px;
}

.remove-link {
    font-size: 13px;
    color: #0073aa;
    text-decoration: underline;
}

.cart-totals {
    margin-top: 15px;
    border-top: 1px dashed #ccc;
    padding-top: 10px;
    font-size: 15px;
}

.checkout-button {
    display: block;
    text-align: center;
    background: #8e44ad;
    color: #fff;
    font-weight: bold;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 10px;
}
