#bce-mobile-popup-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    pointer-events: none;
    overflow: hidden;
}

.bce-mobile-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bce-mobile-popup-content {
    background: #fff;
    width: 100%;
    max-height: 85vh;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.15);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

body.bce-popup-open #bce-mobile-popup-wrapper {
    pointer-events: auto;
}
body.bce-popup-open .bce-mobile-popup-overlay {
    opacity: 1;
}
body.bce-popup-open .bce-mobile-popup-content {
    transform: translateY(0);
}

.bce-mobile-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #e0e0e0;
    flex-shrink: 0;
}
.bce-mobile-popup-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}
.bce-mobile-popup-close {
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: #555;
    cursor: pointer;
    padding: 0;
}

#bce-popup-inner-content {
    padding: 20px;
    overflow-y: auto;
    flex-grow: 1;
}

#bce-popup-inner-content .bce-filter-widget-title::after {
    display: inline-block;
}

.bce-mobile-popup-footer {
    display: flex;
    gap: 10px;
    padding: 15px 20px;
    border-top: 1px solid #e0e0e0;
    flex-shrink: 0;
    background-color: #fff;
}

/* ===== [NÂNG CẤP MÀU SẮC NÚT BẤM] BẮT ĐẦU ===== */
.bce-popup-clear-button,
.bce-popup-show-results-button {
    flex: 1;
    padding: 12px;
    border: 1px solid #222 !important;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    background-color: #fff !important;
    color: #222 !important;
}
/* ===== [NÂNG CẤP MÀU SẮC NÚT BẤM] KẾT THÚC ===== */