.info-backdrop-cart {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1020;
}

.info-modal-cart {
    display: none;
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 500px;
    background-color: white;
    z-index: 1030;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    box-sizing: border-box;
    overflow: hidden;
}

.info-modal-header-cart, .info-modal-body-cart, .info-modal-footer-cart {
    padding: 20px;
}

.info-modal-header-cart {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background-color: #f1f1f1;
}

.info-modal-body-cart {
    text-align: center;
    padding: 20px;
}

.info-modal-footer-cart {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    background-color: #f1f1f1;
}

.info-close-icon-cart {
    width: 28px;
    height: 28px;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.info-close-icon-cart:hover {
    opacity: 1;
}
