.form-group-1 select {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
}

.form-group-1 .group-select {
    position: relative;
}


.form-group-1 .group-select::after {
    content: '';
    display: block;
    height: 8px;
    width: 8px;
    margin-top: -5px;
    pointer-events: none;
    position: absolute;
    right: 20px;
    top: 50%;

    border-bottom: 2px solid #999;
    border-right: 2px solid #999;

    transform: rotate(45deg);
}


/* ==========================
   Amenities Responsive Grid
   ========================== */

.group-checkbox .box-amenities{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 20px;
    width: 100%;
}

/* Tablet */
@media (min-width: 768px){
    .group-checkbox .box-amenities{
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Laptop */
@media (min-width: 1200px){
    .group-checkbox .box-amenities{
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* Mỗi tiện ích */
.group-checkbox .amenities-item{
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.group-checkbox .text-cb-amenities{
    margin: 0;
    cursor: pointer;
    line-height: 1.4;
    user-select: none;
}

.wd-find-select .inner-group .form-style .nice-select {
    padding-left: 16px;
}



/* CSS FILTER FOMR FOR TABLET & MOBILE */
.mobile-filter-trigger,
.mobile-filter-header,
.mobile-filter-backdrop {
    display: none;
}

/* Tablet + Mobile */
@media only screen and (max-width: 1199px) {
    .mobile-filter-trigger {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin: 16px 15px;
        padding: 10px 16px;
        border: 1px solid #e4e4e4;
        border-radius: 999px;
        background: #fff;
        color: #161e2d;
        font-weight: 700;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    }

    .mobile-filter-trigger svg {
        color: #2F6E4F;
    }

    .mobile-filter-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 99990;
        background: rgba(0, 0, 0, 0.45);
    }

    .mobile-filter-panel {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 99999;
        max-height: 88dvh;
        overflow-y: auto;
        background: #fff;
        border-radius: 22px 22px 0 0;
        padding: 18px 15px 24px;
        transform: translateY(105%);
        transition: transform 0.25s ease;
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.18);
    }

    .mobile-filter-panel.is-open {
        transform: translateY(0);
    }

    .mobile-filter-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 16px;
        padding-bottom: 12px;
        border-bottom: 1px solid #e4e4e4;
    }

    .mobile-filter-header strong {
        font-size: 18px;
        font-weight: 800;
    }

    .mobile-filter-close {
        width: 36px;
        height: 36px;
        border: 0;
        border-radius: 50%;
        background: #f2f2f2;
        color: #161e2d;
        font-size: 24px;
        line-height: 1;
    }
}

/* Laptop trở lên: giữ nguyên filter hiện tại */
@media only screen and (min-width: 1200px) {
    .mobile-filter-panel {
        position: static;
        transform: none;
        max-height: none;
        overflow: visible;
        padding: 0;
        box-shadow: none;
        border-radius: 0;
        background: transparent;
    }
}

@media only screen and (min-width: 1200px) {
    .wd-find-select .filter-advanced {
        padding: 0px 0px !important;
    }
}

@media (max-width: 320px) {
    .wd-find-select .box-btn-advanced {
        display: flex;
        gap: 0px !important;
    }
}

