/* ===================================
   Stay 검색 페이지 전용 스타일
   =================================== */

.stay-search-page {
    padding-top: 0;
    background: #fff;
    min-height: 100vh;
}

/* 히어로 영역 */
.search-hero {
    background: #0A0A0A;
    padding: 60px 0 100px;
    text-align: left;
}

.search-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.search-hero-title {
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 42px;
    color: #FFFFFF;
    margin-bottom: 24px;
}

/* 검색바 영역 */
.search-filter-section {
    position: relative;
    z-index: 100;
    width: 100%;
    transition: all 0.3s ease;
}

/* Sticky 상태일 때 */
.search-filter-section.sticky {
    position: fixed !important;
    top: 80px;
    /* Header 높이 */
    left: 0;
    right: 0;
    margin-top: 0 !important;
    padding: 16px 20px !important;
}

.search-filter-section.sticky .search-filter-container {
    box-shadow: none;
    border: 1px solid #eee;
}

/* 결과 목록 영역 */
.rooms-section {
    background: #fff !important;
    /* 검색 페이지는 흰색 배경 */
    padding: 34px 0;
}

.search-results-section {
    max-width: 1300px;
    margin: 60px auto 100px;
    padding: 0 20px;
}

/* 모바일 대응 */
@media (max-width: 768px) {
    .search-hero {
        display: none;
    }

    .search-filter-section {
        margin-top: 20px !important;
    }

    .search-filter-section.sticky {
        top: 56px;
        /* Mobile Header 높이 */
        margin-top: 0 !important;
        padding: 10px 16px !important;
    }

    .search-filter-section.sticky .search-filter-container {
        height: 50px;
    }
}

/* 상단 여백 보정 */
main.stay-search-page {
    margin-top: 80px;
}

@media (max-width: 768px) {
    main.stay-search-page {
        margin-top: 90px;
    }
}