    .main-color {
        background-color: #<?= $block->getMainColor(); ?>!important;
    }
    button.main-color:hover,
    .bss-file-upload.main-color:hover {
        background-color: #fff!important;
        border: 2px solid #<?= $block->getMainColor(); ?>!important;
        color: #<?= $block->getMainColor(); ?>!important;
    }
    #cart-products-popup {
    padding: 20px;
    max-width: 800px;
    background: #fff;
    border-radius: 8px;
}

#cart-products-popup table {
    width: 100%;
    border-collapse: collapse;
}

#cart-products-popup table tr {
    border-bottom: 1px solid #ddd;
}

#cart-products-popup table td {
    padding: 12px;
    vertical-align: middle;
}

#cart-products-popup .product-name {
    font-weight: 600;
}

#cart-products-popup .product-sku {
    color: #555;
    font-size: 0.9em;
}

#cart-products-popup .qty-control {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f2f2f2;
    border-radius: 25px;
    padding: 4px 8px;
    width: fit-content;
}

#cart-products-popup .qty-control button {
    border: none;
    background: none;
    font-size: 18px;
    padding: 4px 8px;
    cursor: pointer;
}

#cart-products-popup .qty-control input {
    border: none;
    background: none;
    width: 30px;
    text-align: center;
    font-weight: bold;
}

#cart-products-popup .price {
    color: red;
    font-weight: bold;
}

#cart-products-popup .action-delete-item {
    border: none;
    background: none;
    cursor: pointer;
    font-size: 18px;
    color: #999;
}

#cart-products-popup .actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

#cart-products-popup .actions button {
    padding: 8px 16px;
    border: none;
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
}

#cart-products-popup .actions .action-primary {
    background-color: #417da1;
}

#cart-products-popup .actions .action-secondary {
    background-color: #999;
}
/* Modal header container */
#cart-products-popup .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid #ddd;
}

/* Modal title text */
#cart-products-popup .modal-title {
    font-size: 1.3em;
    font-weight: 600;
    color: #333;
}

/* Close (X) button */
#cart-products-popup .action-close {
    font-size: 20px;
    color: #888;
    cursor: pointer;
    transition: color 0.2s ease;
}

#cart-products-popup .action-close:hover {
    color: #e74c3c;
}
