body {
    background-color: #F9F9F9;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.navbar {
    position: fixed;
    top: 8px;
    width: 94.8%;
    left: 50%;
    transform: translateX(-50%);
    height: 65px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    border-radius: 16px;
    background-color: #5E4A3C !important;
    z-index: 9999;
    
    background-color: transparent; 
}

.lang-dropdown {
    right: -29px !important;
    top: 44px !important;
}

.lang-dropdown {
    background-color: rgba(94, 74, 60, 0.95); 
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-container {
    flex-grow: 1;
    height: auto;
    width: 94.8%;
    margin: 0 auto;
    padding: 100px 0 0 0;   
    
    display: flex;
    flex-direction: column;
    overflow: hidden; 
}

.top-search-section {
    flex-shrink: 0;
    margin-bottom: 20px;
    position: relative;
    z-index: 50;
}

.search-block.static-search {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    width: 100%;
}

.search-block.static-search .search-bar {
    border-radius: 0 16px 16px 16px;
    box-shadow: none;
    height: 67px;
    padding: 0 25px;
}

.search-block.static-search .tab {
    padding: 10px 35px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    border: 1px solid transparent;
}

.search-block.static-search .tab.active {
    background-color: #e6e0dbdc;
    color: var(--brown);
    border: 1px solid #d0c9c3ef;
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-thickness: 1.5px;
}

.search-block.static-search .tab:not(.active){
    background-color: var(--beige); 
    color: var(--brown);
}

.search-block.static-search .tab:not(.active):hover {
    background-color: #e6e0dbdc;
    color: var(--brown);
}

.search-block.static-search .search-field {
    margin-right: 20px;
    padding-right: 20px;
}

.search-block.static-search .search-field span {
    font-size: 15px;
}

.search-block.static-search .search-field i {
    font-size: 14px;
}

.search-block.static-search .search-btn {
    height: 48px; 
    padding: 0 40px;
    font-size: 16px;
    border-radius: 10px;
}

.search-block.static-search .search-dropdown {
    /* Это отступ сверху, который у вас уже был */
    margin-top: 24px; 
    
    /* ИЗМЕНЕНИЕ: Делаем ширину на 10px меньше, чем родительский блок */
    width: calc(100% + 21px);
    margin-left: 10px;
}

/* --- ОСНОВНОЙ КОНТЕНТ (Сайдбар + Сетка) --- */
.content-wrapper {
    display: flex;
    gap: 42px;
    flex-grow: 1;
    overflow: hidden;
    padding-bottom: 20px;
}

/* САЙДБАР (Фильтры) */
.sidebar-filters {
    width: 280px;
    min-width: 280px;
    background-color: #EEE8E3;
    border-radius: 16px;
    padding: 20px;
    height: 435px;
    flex-shrink: 0;
    overflow-y: auto;
}

.sidebar-filters h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--brown);
    white-space: nowrap;
}

.filter-group {
    margin-bottom: 12px;
}

.filter-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    color: #666;
}

.inputs-row {
    display: flex;
    gap: 10px;
}

.inputs-row input, .std-select {
    width: 100%;
    padding: 8px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    outline: none;
    font-family: var(--font-body);
}

.inputs-row input:focus, .std-select:focus {
    border-color: var(--orange);
}

.apply-btn {
    width: 100%;
    background-color: var(--orange);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 10px;
    transition: 0.3s;
}

.apply-btn:hover { background-color: #e07e10; }

.reset-btn {
    width: 100%;
    background-color: transparent;
    border: 1px solid #ccc;
    color: #666;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.reset-btn:hover { border-color: #999; color: #333; }


/* ПРАВАЯ ЧАСТЬ (Сетка карточек) */
.listings-grid-wrapper {
    flex-grow: 1;
    overflow-y: auto;
    padding-right: 0;
    padding-top: 3px;
}

.listings-grid {
    display: flex;
    flex-wrap: wrap;
    /* Было 20px. Ставим 58px, чтобы компенсировать уменьшение карточек */
    gap: 40px; 
}

.listings-grid-wrapper::-webkit-scrollbar { width: 6px; }
.listings-grid-wrapper::-webkit-scrollbar-track { background: transparent; }
.listings-grid-wrapper::-webkit-scrollbar-thumb { background-color: rgba(0,0,0,0.1); border-radius: 4px; }


/* --- КАРТОЧКА ОБЪЕКТА --- */
.property-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    
    /* Формула: (100% / 3 колонки) - ((gap * 2) / 3) 
       (58 * 2) / 3 = 38.6px. Округляем до 39px.
       Это сделает карточки визуально уже.
    */
    width: calc(33.333% - 39px); 
    
    box-shadow: 4px 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
}

.property-card:hover {
    transform: translateY(-3px);
    box-shadow: 6px 6px 8px rgba(0,0,0,0.08);
}

.card-image {
    /* Было 180px. Увеличили на 15px */
    height: 235px; 
    
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--orange);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.active-business-badge {
    left: auto;
    right: 15px;
    background-color: #FF931C;
    color: white;
}

.card-content {
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-grow: 1;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4px;
}

.card-title {
    font-weight: 700;
    font-size: 15px;
    color: var(--brown);
}

.card-price {
    font-weight: 700;
    font-size: 17px;
    color: var(--brown);
    white-space: nowrap;
}

.card-details {
    font-size: 13px;
    color: var(--brown);
    margin-bottom: 0;
    line-height: 1.1;
    margin-top: auto;
}

.card-location {
    font-size: 13px;
    color: #685446;
}

.contact-footer {
    flex-shrink: 0;
    margin: 10px auto !important; /* Убираем отступ снизу, если он есть */
    
    /* ИЗМЕНЕНИЕ: Жестко фиксируем маленькую высоту */
    height: 63px !important; /* Попробуйте 35px или 40px */
    min-height: 0 !important; /* Сбрасываем ограничения */
    
    /* Убираем внутренние отступы, чтобы высота работала четко */
    padding: 0 !important;
    
    /* Центрируем содержимое (логотип и иконки) ровно по середине этой полоски */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.contact-footer img {
    height: 34px !important; /* Подберите значение (было, скорее всего, 24-25px) */
}

.contact-footer .socials i {
    font-size: 19px !important; /* Чуть меньше иконок */
}

.contact-footer .socials a:hover{
    transform: translateY(-2px);
}


footer {
    width: 94.8%;           /* Ширина как у Navbar и App Container */
    
    margin-top: 15px;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
    flex-shrink: 0;
    z-index: 10;
}



@media (max-width: 1200px) {
    .property-card { 
        /* Для 2 колонок формула: (100% / 2) - (gap / 2)
           58 / 2 = 29px 
        */
        width: calc(50% - 29px); 
    } 
}

/* =======================================
   ДЕСКТОП: Скрываем мобильные элементы
   ======================================= */
.mobile-filter-buttons,
.mobile-sort-panel,
.mobile-overlay {
    display: none;
}

.close-filters-btn {
    display: none;
}

/* =======================================
   МОБИЛЬНАЯ АДАПТИВНОСТЬ (до 768px)
   ======================================= */
@media (max-width: 768px) {

    /* --- BODY --- */
    .properties-page {
        overflow-x: hidden !important;
        overflow-y: auto !important;
        height: auto !important;
        max-width: 100vw;
    }

    .properties-page .lang-dropdown {
        background-color: rgba(94, 74, 60, 0.95) !important;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        
        /* ИЗМЕНЕНИЯ ЗДЕСЬ */
        top: 30px;        /* Подняли выше (было 42px) */
        right: -10px;     /* Сдвинули левее (было -30px или авто) */
        
        /* Опционально: можно сделать меню чуть уже, если оно слишком широкое */
        width: 160px; 
    }

    /* --- НАВБАР (всегда коричневая "пилюля") --- */
    .properties-page .navbar {
        top: 12px !important;
        width: 94.8% !important;
        height: 50px !important;
        padding: 0 20px !important;
        border-radius: 16px !important;
        background-color: #5E4A3C !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    }

    /* Отключаем scrolled-состояние на properties */
    .properties-page .navbar.scrolled {
        top: 12px !important;
        width: 94.8% !important;
        height: 50px !important;
        padding: 0 20px !important;
    }

    /* Мобильное меню - коричневый стиль */
    .properties-page .mobile-menu {
        top: 51px;
        left: 0;
        background-color: #5E4A3C !important;
        border: none;
        backdrop-filter: none;
    }

    /* Lang dropdown - коричневый стиль */
    .properties-page .lang-dropdown {
        background-color: rgba(94, 74, 60, 0.95) !important;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        top: 37px;
        right: -20px;
    }

    /* Лого */
    .properties-page .logo {
        top: 12%;
    }

    .properties-page .logo img {
        height: 36px;
    }

    /* --- APP CONTAINER --- */
    .properties-page .app-container {
        height: auto !important;
        width: 100% !important;
        max-width: 100vw !important;
        padding: 90px 0 0 0 !important;
        overflow-x: hidden !important;
        overflow-y: visible !important;
    }

    /* --- СКРЫВАЕМ ДЕСКТОПНЫЙ ПОИСК --- */
    .properties-page .search-desktop {
        display: none !important;
    }

    /* --- ПОКАЗЫВАЕМ МОБИЛЬНЫЙ ПОИСК --- */
    .properties-page .search-mobile {
        display: block !important;
    }

    /* --- МОБИЛЬНЫЙ ПОИСК (Оранжевая карточка) --- */
    .mobile-search-section {
        padding: 0 10px;
        margin-bottom: 25px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .mobile-search-section .search-block {
        background-color: var(--orange);
        border-radius: 30px;
        padding: 16px;
        box-shadow: 0 10px 30px rgba(255, 147, 28, 0.3);
        width: 100%;
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
    }

    /* Табы (Купить / Арендовать) */
    .mobile-search-section .search-tabs {
        display: flex;
        justify-content: space-between;
        gap: 0;
        margin-bottom: 20px;
        background: rgba(255, 255, 255, 0.25);
        padding: 4px;
        border-radius: 30px;
    }

    .mobile-search-section .tab {
        flex: 1;
        padding: 8px 0;
        font-size: 16px;
        font-weight: 600;
        text-align: center;
        background-color: transparent;
        color: var(--white);
        border: none;
        border-radius: 25px;
        transition: all 0.3s ease;
        margin: 0;
    }

    .mobile-search-section .tab.active {
        background-color: var(--white);
        color: var(--orange);
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        text-decoration: none;
        border: none;
    }

    .mobile-search-section .tab:not(.active):hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    /* Поисковая панель */
    .mobile-search-section .search-bar {
        display: flex;
        flex-direction: column;
        gap: 10px;
        background: transparent;
        box-shadow: none;
        padding: 0;
        height: auto !important;
    }

    /* Поля поиска */
    .mobile-search-section .search-field {
        width: 100%;
        min-height: 52px;
        background-color: rgba(255, 255, 255, 0.25);
        border: 1px solid transparent;
        border-radius: 12px !important;
        padding: 0 15px;
        margin: 0;
        display: flex !important;
        flex-direction: column !important;
        cursor: pointer;
        position: relative;
    }

    .mobile-search-section .search-field .field-label {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        height: 52px;
        min-height: 52px;
    }

    .mobile-search-section .search-field:first-of-type,
    .mobile-search-section .search-field:nth-last-child(2) {
        border-radius: 12px !important;
        margin: 0;
    }

    .mobile-search-section .search-field > .field-label .field-text,
    .mobile-search-section .search-field > .field-label span {
        color: var(--white) !important;
        font-weight: 500;
        font-size: 13px;
    }

    .mobile-search-section .chevron-icon {
        margin-left: auto;
        flex-shrink: 0;
        transition: transform 0.3s ease;
    }

    .mobile-search-section .search-field.active .chevron-icon {
        transform: rotate(180deg);
    }

    .mobile-search-section .search-field:active {
        background-color: rgba(255, 255, 255, 0.35);
    }

    .mobile-search-section .search-field.active {
        background-color: rgba(255, 255, 255, 0.35);
        padding-bottom: 10px;
    }

    /* Скрываем крестики по умолчанию */
    .mobile-search-section .clear-btn {
        display: none !important;
    }

    /* Кнопка "Искать" */
    .mobile-search-section .search-btn {
        width: 100%;
        margin-top: 12px;
        height: 52px;
        background-color: #F9F9F9;
        color: var(--orange);
        font-size: 17px;
        font-weight: 700;
        border-radius: 10px;
        border: none;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .mobile-search-section .search-btn:hover {
        background-color: #f0f0f0;
    }

    /* Выпадающий список (под полем, внутри оранжевого блока) */
    .mobile-search-section .search-field .search-dropdown {
        display: none !important;
        position: relative !important;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        width: 100% !important;
        max-height: 280px !important;
        overflow-y: auto !important;
        background-color: #fff !important;
        border-radius: 12px !important;
        margin-top: 8px !important;
        margin-left: 0 !important;
        padding: 8px !important;
        box-shadow: 0 6px 20px rgba(0,0,0,0.15) !important;
        z-index: 100 !important;
    }

    .mobile-search-section .search-field.active .search-dropdown {
        display: flex !important;
        flex-direction: column !important;
        gap: 2px !important;
    }

    /* Скроллбар */
    .mobile-search-section .search-dropdown::-webkit-scrollbar {
        width: 5px;
    }
    .mobile-search-section .search-dropdown::-webkit-scrollbar-track {
        background: transparent;
        margin: 6px 0;
    }
    .mobile-search-section .search-dropdown::-webkit-scrollbar-thumb {
        background-color: rgba(0, 0, 0, 0.15);
        border-radius: 10px;
    }

    .mobile-search-section .dropdown-item .item-text { color: #333 !important; }
    .mobile-search-section .dropdown-item .checkmark { background-color: #E8E4E1; }
    .mobile-search-section .dropdown-item input:checked ~ .checkmark { background-color: var(--orange); }
    .mobile-search-section .dropdown-search { border: 1px solid #ddd; background: #f5f5f5; }
    .mobile-search-section .dropdown-search:focus { border-color: var(--orange); background: #fff; }
    .mobile-search-section .dropdown-search-wrapper i { color: #999; }

    /* Контейнер с пунктами */
    .mobile-search-section .dynamic-items-container {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    /* Статичные пункты (Все) */
    .mobile-search-section .dropdown-item.static-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 12px;
    }

    /* --- КНОПКИ ФИЛЬТРОВ И СОРТИРОВКИ --- */
    .mobile-filter-buttons {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding: 0 15px;
        margin-bottom: 12px;
    }

    .filter-toggle-btn {
        display: flex;
        align-items: center;
        gap: 8px;
        background: var(--white);
        border: 1px solid #d5cfc9;
        border-radius: 25px;
        padding: 10px 18px;
        font-size: 14px;
        font-weight: 500;
        color: var(--brown);
        cursor: pointer;
        font-family: var(--font-body);
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        transition: all 0.2s ease;
    }

    .filter-toggle-btn:active {
        background-color: #f0ebe6;
    }

    .filter-toggle-btn svg {
        flex-shrink: 0;
    }

    .sort-toggle-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        background: var(--white);
        border: 1px solid #d5cfc9;
        border-radius: 50%;
        cursor: pointer;
        color: var(--brown);
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        transition: all 0.2s ease;
    }

    .sort-toggle-btn:active {
        background-color: #f0ebe6;
    }

    /* --- КОНТЕНТ-ОБЁРТКА --- */
    .content-wrapper {
        flex-direction: column;
        overflow: visible;
        gap: 0;
        padding: 0 10px;
        padding-bottom: 20px;
    }

    /* --- САЙДБАР (Модальное окно по центру экрана) --- */
    .sidebar-filters {
        display: none;
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: calc(100% - 40px) !important;
        max-width: 360px !important;
        min-width: unset !important;
        height: auto !important;
        max-height: 80vh;
        overflow-y: auto;
        border-radius: 24px;
        padding: 24px 20px;
        z-index: 10001;
        box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        background-color: #EEE8E3;
    }

    .sidebar-filters.mobile-active {
        display: block;
        animation: modalFadeIn 0.3s ease;
    }

    .close-filters-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 21px;
        right: 16px;
        width: 32px;
        height: 32px;
        background: none;
        border: none;
        font-size: 20px;
        cursor: pointer;
        color: #999;
        border-radius: 50%;
        transition: all 0.2s;
    }

    .close-filters-btn:hover {
        color: #333;
        background-color: rgba(0,0,0,0.05);
    }

    @keyframes modalFadeIn {
        from { opacity: 0; transform: translate(-50%, -50%) scale(0.95); }
        to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    }

    /* Скрываем сортировку из сайдбара на мобильном */
    .desktop-only {
        display: none !important;
    }

    /* Блокировка прокрутки когда модалка открыта */
    .properties-page.modal-open {
        overflow: hidden !important;
    }

    /* --- СЕТКА ОБЪЕКТОВ --- */
    .listings-grid-wrapper {
        overflow: visible;
        height: auto;
    }

    .listings-grid {
        gap: 15px;
    }

    .property-card {
        width: 100% !important;
    }

    .card-image {
        height: 260px;
    }

    .badge {
        top: 12px;
        right: 12px;
        left: auto;
    }

    /* --- МОБИЛЬНАЯ ПАНЕЛЬ СОРТИРОВКИ (Модальное окно по центру) --- */
    .mobile-sort-panel {
        display: block;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.95);
        width: calc(100% - 40px);
        max-width: 360px;
        background: white;
        border-radius: 24px;
        padding: 24px 20px 28px;
        z-index: 10001;
        box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .mobile-sort-panel.active {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, -50%) scale(1);
    }

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

    .mobile-panel-header h3 {
        font-size: 18px;
        color: var(--brown);
        margin: 0;
    }

    .close-panel-btn {
        background: none;
        border: none;
        font-size: 22px;
        cursor: pointer;
        color: #999;
        padding: 5px;
        transition: color 0.2s;
    }

    .close-panel-btn:hover {
        color: #333;
    }

    .sort-options {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .sort-option {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 12px;
        cursor: pointer;
        font-size: 15px;
        color: var(--brown);
        border-radius: 12px;
        transition: background 0.2s;
    }

    .sort-option:active {
        background-color: #f5f0eb;
    }

    .sort-option input[type="radio"] {
        -webkit-appearance: none;
        appearance: none;
        accent-color: var(--orange);
        width: 18px;
        height: 18px;
        cursor: pointer;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        margin: 0;
        cursor: pointer;
        
        /* 3. Стиль "не выбран" (серый ободок) */
        border: 2px solid #ddd; 
        background-color: transparent;
        outline: none; /* Убираем черную обводку фокуса */
        transition: all 0.2s ease;
    }

    .sort-option input[type="radio"]:checked {
        /* Оранжевый фон и рамка */
        background-color: var(--orange);
        border-color: var(--orange);
        
        /* 5. Белая точка внутри (делаем через внутреннюю тень) */
        /* Если хотите просто сплошной оранжевый круг — удалите эту строку */
        box-shadow: inset 0 0 0 4px #fff; 
    }

    .sort-option span {
        font-family: var(--font-body);
    }

    /* --- ОВЕРЛЕЙ (Затемнённый фон) --- */
    .mobile-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.45);
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
        z-index: 10000;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .mobile-overlay.active {
        display: block;
        opacity: 1;
    }

    /* --- ФУТЕР --- */
    .contact-footer {
        margin: 0 auto !important;
    }


}

/* ============================================================
   МОБИЛЬНЫЕ ДРОПДАУНЫ - ВНЕ МЕДИА-ЗАПРОСА (максимальная специфичность)
   ============================================================ */
body.properties-page .mobile-search-section .search-field .search-dropdown {
    display: none !important;
    position: relative !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    max-height: 280px !important;
    overflow-y: auto !important;
    background: #fff !important;
    border-radius: 12px !important;
    margin-top: 8px !important;
    margin-left: 0 !important;
    padding: 8px !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15) !important;
    z-index: 100 !important;
}

body.properties-page .mobile-search-section .search-field.active .search-dropdown {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
}

body.properties-page .mobile-search-section .search-field {
    flex-direction: column !important;
    height: auto !important;
    overflow: visible !important;
}

body.properties-page .mobile-search-section .search-field.active {
    padding-bottom: 10px !important;
}