    /* Conteneur principal */
.vel-search-container {
    padding: 5px 8px;
    font-family: 'Poppins', sans-serif;
}

/* Barre de recherche */
.vel-search-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2px;
    margin-top: 3px;
}

.vel-search-bar input {
    flex-grow: 1;
    padding: 5px 10px !important;
    border: 1px solid #ccc;
    border-radius: 15px;
    font-size: 16px;
    outline: none;
}

#vel_save_btn {
    background: #fff;
    color: #7f38ec;
    border: none;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 21px;
    cursor: pointer;
}

/* Résultats */
#vel_search_results {
    margin-top: 75px !important;
}

.vel-results-inner {
    max-height: 480px; /* ou 400px selon ton design */
    overflow-y: auto;
    padding-right: 5px;
    argin-top: 10px;
}

.vel-results-inner::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}



.vel-result-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    margin-bottom: 10px;
    transition: all 0.2s;
}

.vel-result-item:hover {
    transform: scale(1.01);
}

.vel-result-item img {
    width: 70px;
    height: 70px;
    border-radius: 10px !important;
    object-fit: cover;
    margin-right: 15px;
}

.vel-result-text h4 {
    margin: 0;
    font-weight: 600;
    color: #2d2d2d;
    font-size: 16px;
}

.vel-price {
    color: orangered;
    margin: 4px 0;
    font-weight: 500;
}

.vel-loc {
    color: #777;
    font-size: 14px;
    margin-bottom: 0;
}

/* Message aucun résultat */
.vel-empty {
    padding: 20px;
    text-align: center;
    font-style: italic;
    color: #888;
}

.vel-results-wrapper {
    position: relative;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px;
    background: #f9f9f9;
    margin-top: 10px;
}

.vel-close-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    background: #ff3b3b;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    cursor: pointer;
    display: none;
    z-index: 10;
}

.vel-video-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vel-video-badge i {
    color: white;
    font-size: 16px;
}


/* score badge */
.vel-match-label {
    background: #eee;
    border-radius: 30px;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #fff;
    margin-top: 4px;
}

.vel-excellent {
    background: #4caf50 !important;
}

.vel-bon {
    background: #2196f3;
}

.vel-acceptable {
    background: #ff9800;
}

.vel-badge-text {
    text-transform: capitalize;
}

.vel-percent {
    background: rgba(255, 255, 255, 0.2);
    padding: 1px 5px;
    border-radius: 15px;
    font-size: 10px;
}



/* Modal filtre */


.vel-filter-modal {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease-in-out;
    z-index: 9999;
}

.vel-filter-modal.open {
    bottom: 0;
}

.vel-filter-drag {
    width: 40px;
    height: 5px;
    background: #ccc;
    border-radius: 5px;
    margin: 0 auto 15px auto;
}

.vel-filter-modal input,
.vel-filter-modal select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 12px;
    margin-bottom: 10px;
    font-size: 15px;
}

.vel-filter-actions {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.vel-btn {
    flex: 1;
    padding: 12px;
    font-weight: bold;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-size: 15px;
}

.vel-btn.purple {
    background: #7f38ec;
    color: #fff;
}

.vel-btn.black {
    background: #000;
    color: #fff;
}

/* Message d'erreur */
.vel-error-message {
    color: red;
    font-size: 12px;
    margin-bottom: 10px;
  
    margin-top: -5px;
}

/* Popup WhatsApp */
.vel-whatsapp-popup {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

.vel-whatsapp-popup.active {
    display: flex;
}

.vel-whatsapp-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.vel-whatsapp-box p {
    font-size: 15px;
    margin-bottom: 15px;
    color: #333;
}

#vel_whatsapp_input {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
    font-size: 15px;
}



