/* Stile per il popup del carrello */
#ccp-cart-popup {
    position: fixed;
    top: 10%;
    left: 50%;
    transform: translate(-50%, 0);
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 8px;
    z-index: 1000;
    width: 90%;
    max-width: 700px;
    font-family: Arial, sans-serif;
    color: #333;
    max-height: 80vh;
    overflow-y: scroll;
}

#ccp-cart-popup-inner {
    width: 100%;
}

h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

.cart-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.cart-item img {
    max-width: 50px;
    margin-right: 15px;
}

.cart-item .item-details {
    flex: 1;
}

.cart-item .item-details p {
    margin: 0;
    word-break: break-word;
}

.cart-item .item-price {
    margin-right: 10px;
    white-space: nowrap;
    color: #333;
}

.item-quantity {
    width: 40px;
    height: 25px;
}

#ccp-cart-total {
    font-weight: bold;
    margin-top: 20px;
    text-align: right;
    color: #333;
}

#ccp-cart-popup button,
.cart-item .remove-item {
    background-color: #DE5A3CD9 !important;
    color: white !important;
    border: none !important;
    padding: 10px 20px !important;
    margin-top: 10px !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    width: 100% !important;
    text-align: center !important;
}

#ccp-cart-popup button:hover,
.cart-item .remove-item:hover {
    background-color: #E67A5F !important;
}

#ccp-cart-popup-footer {
    position: sticky;
    bottom: 0;
    background-color: #fff;
    padding: 10px 0;
    text-align: center;
    border-top: 1px solid #eee;
}
