.checkout-item-active{
   -webkit-box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.50) !important; 
box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.50) !important;
}

 .dropdown-hidden {
            display: none;
        }
        .dropdown-visible {
            display: block;
        }

        .klui-form-group label {
            display: block;
            margin-bottom: 8px;
            color: #555;
            font-weight: 500;
            font-size: 14px;
        }

        /* Select Button */
        .klui-select-trigger {

            transition: all 0.2s;
        }

        .klui-select-trigger img {
            width: 32px;
            height: 32px;
            object-fit: cover;
            border-radius: 4px;
        }

        .klui-select-trigger-icon {
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
        }

        /* Fancy Box Overlay */
        .klui-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .klui-overlay.klui-active {
            display: flex;
            opacity: 1;
        }

        /* Fancy Box Modal */
        .klui-modal {
            background: white;
            border-radius: 16px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            width: 90%;
            max-width: 450px;
            max-height: 80vh;
            display: flex;
            flex-direction: column;
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }

        .klui-overlay.klui-active .klui-modal {
            transform: scale(1);
        }

        .klui-modal-header {
            padding: 24px 24px 16px;
            border-bottom: 1px solid #eee;
        }

        .klui-modal-title {
            font-size: 20px;
            font-weight: 600;
            color: #333;
        }

        .klui-modal-body {
            padding: 8px 0;
            overflow-y: auto;
            max-height: calc(80vh - 100px);
        }

        /* Options List */
        .klui-option {
            padding: 16px 24px;
            display: flex;
            align-items: center;
            gap: 16px;
            cursor: pointer;
            transition: background 0.15s;
            border: none;
            width: 100%;
            background: white;
            text-align: left;
            border-bottom:1px solid #CCC;
        }

        .klui-option:hover {
            background: #f8f9fa;
        }

        .klui-option.klui-selected {
            background: #e8f4ff;
        }

        .klui-option img {
            width: 40px;
            height: 40px;
            object-fit: cover;
            border-radius: 6px;
        }

        .klui-option-text {
            flex: 1;
            color: #333;
            font-size: 15px;
        }

        .klui-option-check {
            color: #4a90e2;
            font-size: 20px;
            opacity: 0;
            transition: opacity 0.2s;
        }

        .klui-option.klui-selected .klui-option-check {
            opacity: 1;
        }

        /* Scrollbar styling */
        .klui-modal-body::-webkit-scrollbar {
            width: 8px;
        }

        .klui-modal-body::-webkit-scrollbar-track {
            background: transparent;
        }

        .klui-modal-body::-webkit-scrollbar-thumb {
            background: #ddd;
            border-radius: 8px;
        }

        .klui-modal-body::-webkit-scrollbar-thumb:hover {
            background: #bbb;
        }

        /* Animations */
        @keyframes klui-fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes klui-scaleIn {
            from {
                transform: scale(0.9);
            }
            to {
                transform: scale(1);
            }
        }