/* Geolocation Header */
.geolocation-header {
    background: var(--gradient-promo);
    padding: 120px 0 140px;
}

.geolocation-header .header-content {
    text-align: center;
    margin-bottom: 2rem;
}

.geolocation-header .page-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.geolocation-header .page-description {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.geolocation-header .search-form-wrapper {
    background: var(--white);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin: 0 auto;
}

/* Hotel List Section - Cards overlap header */
.hotel-list-section {
    margin-top: -80px;
    position: relative;
    z-index: 10;
    padding-bottom: 2rem;
}

.hotel-list-section .hotel-cards {
    max-width: 900px;
    margin: 0 auto;
}

/* Not Found Section */
.not-found-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.not-found-section .not-found-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.not-found-section .not-found-icon i {
    font-size: 32px;
    color: var(--text-placeholder);
}

.not-found-section h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 8px;
}

.not-found-section p {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-muted);
    margin: 0;
    max-width: 400px;
    line-height: 1.5;
}

/* SEO Text Section */
.seo-text {
    margin-top: 40px;
    padding-bottom: 60px;
}

.seo-text .title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.seo-text .text {
    max-height: 80px;
    overflow-y: auto;
}

.seo-text .text p {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Mobile Search Summary */
.mobile-search-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.mobile-search-summary .left .badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.mobile-search-summary .left .badges .badge-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--primary);
    border-radius: 100px;
    font-size: 12px;
    color: var(--white);
}

.mobile-search-summary .left .badges .badge-item i {
    font-size: 12px;
    color: var(--white);
}

.mobile-search-summary .right .search-btn {
    display: flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    border-radius: 100%;
    cursor: pointer;
    text-decoration: none;
}

.mobile-search-summary .right .search-btn i {
    font-size: 20px;
    color: var(--white);
}

/* Mobile Search Bottom Sheet */
.mobile-search {
    max-height: 90vh;
}

.mobile-search .heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.mobile-search .heading span {
    font-size: 22px;
    font-weight: 500;
    color: var(--text-dark);
}

.mobile-search .heading .close {
    cursor: pointer;
}

.mobile-search .heading .close i {
    font-size: 22px;
    color: var(--text-placeholder);
}

/* Hotel Cards */
.hotel-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
}

.hotel-cards .item {
    display: flex;
    flex-direction: column;
}

.hotel-cards .item .first {
    padding: 12px;
    border-radius: 12px 12px 0 0;
    border: 1px solid var(--border-color);
    border-bottom: none;
    display: flex;
    gap: 16px;
    background: var(--white);
}

.hotel-cards .item .first .image {
    width: 200px;
    min-width: 200px;
}

.hotel-cards .item .first .image img {
    border-radius: 8px;
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.hotel-cards .item .first .text {
    flex: 1;
}

.hotel-cards .item .first .text .title {
    margin-bottom: 8px;
}

.hotel-cards .item .first .text .title > a {
    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
    color: var(--secondary);
    margin-bottom: 8px;
    display: block;
    text-decoration: none;
}

.hotel-cards .item .first .text .title > a:hover {
    color: var(--primary);
}

.hotel-cards .item .first .text .title .location {
    display: flex;
    align-items: center;
    gap: 4px;
}

.hotel-cards .item .first .text .title .location .icon {
    color: var(--divider);
    font-size: 12px;
}

.hotel-cards .item .first .text .title .location .cities {
    color: var(--text-light);
    font-size: 11px;
    font-weight: 400;
    line-height: 21px;
    display: flex;
    gap: 4px;
    align-items: center;
}

.hotel-cards .item .first .text .extras .mobile-image {
    display: none;
}

.hotel-cards .item .first .text .center-box {
    display: flex;
    justify-content: space-between;
}

.hotel-cards .item .first .text .center-box .left .extras-badges .payment {
    display: flex;
    justify-content: start;
    gap: 4px;
    margin-bottom: 12px;
}

.hotel-cards .item .first .text .center-box .left .extras-badges .payment span {
    font-size: 12px;
    font-weight: 400;
    color: var(--accent-purple);
}

.hotel-cards .item .first .text .center-box .left .extras-badges .labels {
    display: flex;
    gap: 4px;
}

.hotel-cards .item .first .text .center-box .left .extras-badges .labels span {
    padding: 4px 12px;
    background: var(--bg-light);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: 8px;
    border: 1px solid var(--btn-border-color);
}

/* Hotel Card Last Section */
.hotel-cards .item .last {
    display: flex;
    border-radius: 0 0 12px 12px;
    border: 1px solid var(--border-color);
    background: var(--bg-light);
    padding: 12px;
    align-items: center;
    justify-content: space-between;
}

.hotel-cards .item .last .left {
    flex: 0 0 60%;
}

.hotel-cards .item .last .left .mobile-payment {
    display: none;
}

.hotel-cards .item .last .benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.hotel-cards .item .last .benefits .benefit-item {
    padding: 9px 14px;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 4px;
}

.hotel-cards .item .last .benefits .benefit-item.more {
    font-size: 12px;
    font-weight: 700;
    color: var(--success-text-dark);
    background: none;
    border: none;
}

.hotel-cards .item .last .benefits .benefit-item .icon {
    color: var(--accent-purple);
}

.hotel-cards .item .last .benefits .benefit-item .benefit-text {
    font-size: 12px;
    font-weight: 700;
    color: var(--secondary);
}

.hotel-cards .item .last .right {
    display: flex;
    justify-content: end;
}

/* Halal Compatibility Badge */
.hotel-cards .item .last .compatibility {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hotel-cards .item .last .compatibility .icon {
    width: 44px;
    height: 44px;
    border: 2px solid var(--divider);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background: var(--btn-border-color);
    position: relative;
    z-index: 0;
}

.hotel-cards .item .last .compatibility.level-1 .icon {
    background: conic-gradient(from 0deg, var(--success-ring) 30%, var(--btn-border-color) 30%);
}

.hotel-cards .item .last .compatibility.level-2 .icon {
    background: conic-gradient(from 0deg, var(--success-ring-dark) 60%, var(--btn-border-color) 60%);
}

.hotel-cards .item .last .compatibility.level-3 .icon {
    background: conic-gradient(from 0deg, var(--success-dark) 100%, var(--btn-border-color) 100%);
}

.hotel-cards .item .last .compatibility .icon .inner {
    width: 36px;
    height: 36px;
    border: 2px solid var(--divider);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    padding: 4px;
    background: var(--white);
}

.hotel-cards .item .last .compatibility .texting {
    border-radius: 8px;
    border: 1px solid var(--divider);
    background: var(--white);
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: start;
    width: 178px;
    margin-left: -20px;
    padding-left: 20px;
    gap: 4px;
}

.hotel-cards .item .last .compatibility .texting strong {
    color: var(--success-dark);
    font-size: 11px;
    font-weight: 700;
}

.hotel-cards .item .last .compatibility .texting span {
    color: var(--success-dark);
    font-size: 11px;
    font-weight: 400;
    line-height: 21px;
}

/* Searchbar Geolocation */
.searchbar-geolocation .input-wrapper {
    background: var(--bg-light);
    border: 1px solid var(--btn-border-color);
    border-radius: 8px;
    min-height: 60px;
    position: relative;
}

.searchbar-geolocation .input-wrapper:focus-within {
    border-color: var(--secondary);
    background: var(--white);
}

.searchbar-geolocation .search-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    display: block;
    margin-bottom: 2px;
}

.searchbar-geolocation .search-input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    width: 100%;
    padding: 0;
}

.searchbar-geolocation .search-input::placeholder {
    color: var(--text-placeholder);
    font-weight: 400;
}

.searchbar-geolocation .search-value {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.searchbar-geolocation .search-icon {
    color: var(--text-placeholder);
    font-size: 18px;
}

.searchbar-geolocation .search-btn {
    font-size: 14px;
    font-weight: 700;
    min-height: 64px;
    min-width: 120px;
    border-radius: 8px;
}

/* Date Icon Circle */
.searchbar-geolocation .date-icon-circle {
    position: absolute;
    left: 48%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 34px;
    height: 34px;
    background: var(--white);
    border: 1px solid var(--btn-border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-placeholder);
    font-size: 14px;
    z-index: 2;
}

/* Guest Dropdown */
.searchbar-geolocation .guest-dropdown {
    border-radius: 12px;
    min-width: 380px !important;
    margin-top: 20px !important;
}

.searchbar-geolocation .room-card {
    border-bottom: 1px solid var(--bg-light);
}

.searchbar-geolocation .room-card:last-child {
    border-bottom: none;
}

.searchbar-geolocation .room-header {
    background: transparent;
    border-bottom: none !important;
    padding: 12px 16px !important;
}

.searchbar-geolocation .room-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
}

.searchbar-geolocation .remove-room-btn {
    font-size: 14px;
    font-weight: 400;
    color: var(--primary);
    text-decoration: none;
}

.searchbar-geolocation .remove-room-btn:hover {
    text-decoration: underline;
}

.searchbar-geolocation .room-body {
    padding: 0 18px 16px !important;
}

.searchbar-geolocation .room-row {
    padding: 12px 0;
    border-bottom: 1px solid var(--bg-light);
}

.searchbar-geolocation .room-row:last-of-type {
    border-bottom: none;
}

.searchbar-geolocation .room-row .label-text {
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
}

.searchbar-geolocation .room-row .label-sub {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-light);
    line-height: 18px;
}

.searchbar-geolocation .counter-btn:hover {
    background: var(--primary-hover);
}

.searchbar-geolocation .add-room-btn {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 12px 16px;
}

.searchbar-geolocation .add-room-btn:hover {
    text-decoration: underline;
}

.searchbar-geolocation .add-room-btn i {
    color: var(--primary);
    font-weight: 700;
}

/* Mobile elements - hidden on desktop */
.searchbar-geolocation .guest-dropdown .mobile-heading {
    display: none;
}

.searchbar-geolocation .guest-dropdown .submit-button {
    display: none;
}

.searchbar-geolocation .date-picker-container .mobile-date-header {
    display: none;
}

.searchbar-geolocation .date-picker-container .mobile-date-display {
    display: none;
}

.searchbar-geolocation .date-picker-container .mobile-date-apply {
    display: none;
}

/* Child Ages */
.searchbar-geolocation .child-ages-container {
    padding-top: 12px;
    border-top: 1px solid var(--bg-light);
    margin-top: 12px;
}

.searchbar-geolocation .child-ages-container:empty {
    display: none;
}

.searchbar-geolocation .child-ages-header {
    margin-bottom: 12px;
}

.searchbar-geolocation .child-ages-header .label-text {
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
}

.searchbar-geolocation .child-ages-header .label-sub {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-light);
    line-height: 18px;
}

.searchbar-geolocation .child-ages-selects {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.searchbar-geolocation .child-age-select {
    flex: 0 0 calc(50% - 5px);
    border-radius: 8px;
    background: var(--bg-light);
    border: 1px solid var(--btn-border-color);
    padding: 9px 14px;
    min-height: 56px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
}

.searchbar-geolocation .child-age-select label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    display: block;
    cursor: pointer;
    margin-bottom: 2px;
}

.searchbar-geolocation .child-age-value {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
}

.searchbar-geolocation .child-dropdown {
    display: none;
    position: absolute;
    border-radius: 8px;
    border: 1px solid var(--btn-border-color);
    background: var(--white);
    left: 0;
    width: 100%;
    bottom: 60px;
    max-height: 265px;
    overflow-y: auto;
    z-index: 10;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.searchbar-geolocation .child-dropdown.active {
    display: flex;
}

.searchbar-geolocation .child-dropdown a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 13px 16px;
    border-bottom: 1px solid var(--bg-light);
    cursor: pointer;
    text-decoration: none;
}

.searchbar-geolocation .child-dropdown a:last-child {
    border-bottom: none;
}

.searchbar-geolocation .child-dropdown a:hover {
    background: var(--bg-light);
}

.searchbar-geolocation .child-age-select.novalid {
    border-color: var(--error);
    background: var(--error-light);
}

.searchbar-geolocation .child-age-select.novalid label,
.searchbar-geolocation .child-age-select.novalid .child-age-value {
    color: var(--error);
}

/* Guest Input Validation */
.searchbar-geolocation .input-wrapper.novalid {
    border-color: var(--error);
    background: var(--error-light);
}

.searchbar-geolocation .input-wrapper.novalid .search-label,
.searchbar-geolocation .input-wrapper.novalid .search-value {
    color: var(--error);
}

/* Date Picker Container */
.searchbar-geolocation .date-picker-container {
    position: relative;
}

.searchbar-geolocation .date-wrapper.focus {
    border-color: var(--secondary);
    background: var(--white);
}

.searchbar-geolocation .date-input {
    position: relative;
}

.searchbar-geolocation .date-input.has-value::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: var(--success-bg);
    border-radius: 6px;
    z-index: 0;
}

.searchbar-geolocation .date-input.has-value .search-label,
.searchbar-geolocation .date-input.has-value .search-input {
    position: relative;
    z-index: 1;
}

/* Lightpick Custom Styling */
.searchbar-geolocation .lightpick {
    position: absolute !important;
    top: 20px !important;
    left: 0 !important;
    border-radius: 12px !important;
    background: var(--white);
    box-shadow: 0 30px 74px 0 rgba(67, 12, 12, 0.14) !important;
    min-width: 370px;
    font-family: 'Inter', sans-serif !important;
    z-index: 1050;
    padding: 0;
}

.searchbar-geolocation .lightpick .lightpick__inner {
    padding: 16px;
}

.searchbar-geolocation .lightpick .lightpick__close-action {
    display: none;
}

.searchbar-geolocation .lightpick .lightpick__months {
    background-color: var(--white) !important;
    grid-gap: 0;
}

.searchbar-geolocation .lightpick .lightpick__month {
    width: 100% !important;
    padding: 4px;
}

.searchbar-geolocation .lightpick .lightpick__month:last-child {
    display: none;
}

.searchbar-geolocation .lightpick .lightpick__month-title-bar {
    margin-bottom: 12px;
    justify-content: center !important;
}

.searchbar-geolocation .lightpick .lightpick__month-title {
    position: initial;
    z-index: 9 !important;
}

.searchbar-geolocation .lightpick .lightpick__month-title select {
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    color: var(--primary);
    cursor: pointer;
}

.searchbar-geolocation .lightpick .lightpick__toolbar {
    position: absolute;
    width: 100%;
    left: 0;
    top: 16px;
    justify-content: space-between;
    padding: 0 16px;
}

.searchbar-geolocation .lightpick .lightpick__toolbar button {
    background: none;
    font-size: 18px;
    color: var(--text-muted);
    cursor: pointer;
}

.searchbar-geolocation .lightpick .lightpick__toolbar button:hover {
    color: var(--primary);
}

.searchbar-geolocation .lightpick .lightpick__day-of-the-week {
    font-size: 12px !important;
    font-style: normal;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    color: var(--text-muted);
    height: 32px;
}

.searchbar-geolocation .lightpick .lightpick__day {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    color: var(--text-dark);
    width: 54px;
    height: 43px;
    background-image: none !important;
}

.searchbar-geolocation .lightpick .lightpick__day.is-today {
    color: var(--text-dark);
    background: none !important;
    font-weight: 700;
}

.searchbar-geolocation .lightpick .lightpick__day.is-in-range {
    background: var(--error-bg) !important;
    color: var(--primary);
    border-radius: 0;
}

.searchbar-geolocation .lightpick .lightpick__day:not(.is-disabled):not(.is-start-date):not(.is-end-date):hover {
    background: var(--error-bg) !important;
    color: var(--primary);
    border-radius: 0;
}

.searchbar-geolocation .lightpick .lightpick__day.is-start-date {
    border-radius: 8px 0 0 8px !important;
    background: var(--primary) !important;
    color: var(--white) !important;
}

.searchbar-geolocation .lightpick .lightpick__day.is-end-date {
    border-radius: 0 8px 8px 0 !important;
    background: var(--primary) !important;
    color: var(--white) !important;
}

.searchbar-geolocation .lightpick .lightpick__day.is-start-date.is-end-date {
    border-radius: 8px !important;
}

.searchbar-geolocation .lightpick .lightpick__tooltip {
    display: none !important;
}

/* Result Button */
.searchbar-geolocation .lightpick .result-button {
    padding: 16px;
    border-top: 1px solid var(--btn-border-color);
}

.searchbar-geolocation .lightpick .result-button a {
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: var(--secondary);
    color: var(--white);
    gap: 4px;
    padding: 12px 8px;
    text-decoration: none;
}

.searchbar-geolocation .lightpick .result-button a:hover {
    opacity: 0.9;
}

.searchbar-geolocation .lightpick .result-button a span {
    color: var(--primary);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
}

/* Breadcrumb */
.breadcrumb-nav {
    background: var(--bg-light);
    padding: 0.75rem 0;
}

.breadcrumb-nav .breadcrumb-item a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
}

.breadcrumb-nav .breadcrumb-item a:hover {
    color: var(--primary);
}

.breadcrumb-nav .breadcrumb-item.active {
    color: var(--text-dark);
    font-size: 0.875rem;
}

/* Results Header */
.results-header {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.result-count {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Mobile Actions */
.mobile-actions {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    background: var(--white);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.mobile-actions .btn-action {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: none;
    border: none;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.mobile-actions .btn-action i {
    color: var(--primary);
}

/* Offcanvas */
.offcanvas-bottom {
    height: auto;
    max-height: 50vh;
    border-radius: 1rem 1rem 0 0;
}

/* Select Date Button in Hotel Cards */
.hotel-cards .item .first .text .center-box .right .select-date-btn {
    display: flex;
    align-items: center;
}

.hotel-cards .item .first .text .center-box .right .select-date-btn .btn-select-date {
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    color: var(--success);
    background: var(--white);
    border: 1px solid var(--btn-border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hotel-cards .item .first .text .center-box .right .select-date-btn .btn-select-date:hover {
    border-color: var(--success);
}

.hotel-cards .item .first .text .center-box .right .select-date-btn .btn-select-date i {
    font-size: 18px;
}


/* Mobile Responsive */
@media (max-width: 991px) {
    .searchbar-geolocation .search-btn {
        min-height: 56px;
    }
}

@media (max-width: 991.98px) {
    .geolocation-header {
        padding: 60px 0 100px;
    }

    .geolocation-header .page-title {
        font-size: 1.5rem;
    }

    .geolocation-header .page-description {
        font-size: 0.875rem;
    }

    .hotel-list-section {
        padding-bottom: 5rem;
        margin-top: -60px;
    }
}

/* Mobile responsive for hotel cards */
@media screen and (max-width: 768px) {
    .hotel-cards .item .first .image {
        display: none;
    }

    .hotel-cards .item .first .text .title > a {
        font-size: 18px;
        line-height: 27px;
    }

    .hotel-cards .item .first .text .extras {
        display: flex;
        gap: 14px;
    }

    .hotel-cards .item .first .text .extras .mobile-image {
        display: block;
        width: 150px;
        min-width: 150px;
    }

    .hotel-cards .item .first .text .extras .mobile-image img {
        border-radius: 8px;
        width: 100%;
        height: 140px;
        object-fit: cover;
    }

    .hotel-cards .item .first .text .center-box {
        flex-direction: column;
        justify-content: start;
        gap: 8px;
        flex: 1;
    }

    .hotel-cards .item .first .text .center-box .left {
        order: 2;
    }

    .hotel-cards .item .first .text .center-box .left .extras-badges .payment {
        display: none;
    }

    .hotel-cards .item .first .text .center-box .left .extras-badges .labels {
        flex-direction: column;
    }

    .hotel-cards .item .first .text .center-box .left .extras-badges .labels span {
        width: fit-content;
    }

    .hotel-cards .item .first .text .center-box .right .select-date-btn {
        display: flex;
    }

    .hotel-cards .item .first .text .center-box .right .select-date-btn .btn-select-date {
        padding: 8px 16px;
        font-size: 12px;
    }

    .hotel-cards .item .first .text .center-box .right .select-date-btn .btn-select-date i {
        font-size: 14px;
    }

    .hotel-cards .item .last {
        flex-direction: column;
        justify-content: start;
        align-items: start;
        gap: 12px;
    }

    .hotel-cards .item .last .left {
        order: 2;
    }

    .hotel-cards .item .last .right {
        justify-content: start;
    }

    .hotel-cards .item .last .left .mobile-payment {
        display: block;
        margin-top: 8px;
    }

    .hotel-cards .item .last .left .mobile-payment span {
        font-size: 11px;
        font-weight: 400;
        color: var(--accent-purple);
    }

    .hotel-cards .item .last .compatibility .texting {
        width: auto;
        min-width: 140px;
    }
}

@media (max-width: 767px) {
    /* Guest Dropdown - Bottom Sheet */
    .searchbar-geolocation .guest-dropdown {
        width: 100% !important;
        position: fixed !important;
        left: 0 !important;
        top: auto !important;
        bottom: 0 !important;
        z-index: 999999 !important;
        height: auto !important;
        max-height: calc(100vh - 10px) !important;
        min-width: 100% !important;
        max-width: 100% !important;
        margin-top: 0 !important;
        overflow-y: auto;
        border-radius: 20px 20px 0 0 !important;
        transform: none !important;
    }

    .searchbar-geolocation .guest-dropdown .mobile-heading {
        display: flex;
        align-items: center;
        padding: 16px;
        justify-content: space-between;
        border-bottom: 1px solid var(--bg-light);
    }

    .searchbar-geolocation .guest-dropdown .mobile-heading span {
        font-size: 22px;
        font-weight: 500;
    }

    .searchbar-geolocation .guest-dropdown .mobile-heading .close-btn {
        font-size: 22px;
        color: var(--text-placeholder);
        cursor: pointer;
        background: none;
        border: none;
        padding: 0;
    }

    .searchbar-geolocation .guest-dropdown .submit-button {
        display: block;
        margin-top: 20px;
        padding: 16px;
        padding-bottom: 33px;
    }

    .searchbar-geolocation .guest-dropdown .submit-button span {
        font-size: 14px;
        font-weight: 700;
        color: var(--white);
        background: var(--secondary);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        min-height: 44px;
    }

    /* Date Picker Container - Full Screen on Mobile */
    .searchbar-geolocation .date-picker-container {
        position: fixed !important;
        left: 0 !important;
        top: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background: var(--white);
        z-index: 999999 !important;
        display: none;
        flex-direction: column;
    }

    .searchbar-geolocation .date-picker-container.active {
        display: flex;
    }

    /* Mobile Date Header */
    .searchbar-geolocation .date-picker-container .mobile-date-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px;
        border-bottom: 1px solid var(--bg-light);
    }

    .searchbar-geolocation .date-picker-container .mobile-date-header .reset-btn {
        display: flex;
        align-items: center;
        gap: 6px;
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
        color: var(--error-hover);
        font-size: 14px;
    }

    .searchbar-geolocation .date-picker-container .mobile-date-header .reset-btn span {
        font-size: 14px;
        font-weight: 500;
    }

    .searchbar-geolocation .date-picker-container .mobile-date-header .close-btn {
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
        color: var(--text-placeholder);
        font-size: 22px;
    }

    /* Mobile Date Display */
    .searchbar-geolocation .date-picker-container .mobile-date-display {
        display: flex;
        align-items: center;
        padding: 0;
        gap: 0;
        background: var(--white);
        border: 1px solid var(--text-dark);
        border-radius: 8px;
        margin: 16px;
        position: relative;
    }

    .searchbar-geolocation .date-picker-container .mobile-date-display .date-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        padding: 10px 12px;
    }

    .searchbar-geolocation .date-picker-container .mobile-date-display .date-item.checkin-display {
        padding-right: 20px;
        border-right: 1px solid var(--text-dark);
    }

    .searchbar-geolocation .date-picker-container .mobile-date-display .date-item.checkout-display {
        padding-left: 20px;
    }

    .searchbar-geolocation .date-picker-container .mobile-date-display .date-item label {
        font-size: 10px;
        font-weight: 700;
        color: var(--text-muted);
        margin-bottom: 2px;
    }

    .searchbar-geolocation .date-picker-container .mobile-date-display .date-item .date-value {
        font-size: 12px;
        font-weight: 500;
        color: var(--text-dark);
    }

    .searchbar-geolocation .date-picker-container .mobile-date-display .date-item .date-value.placeholder {
        color: var(--text-placeholder);
    }

    .searchbar-geolocation .date-picker-container .mobile-date-display .date-separator {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 30px;
        height: 30px;
        background: var(--white);
        border: 1px solid var(--text-dark);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-dark);
        font-size: 12px;
        z-index: 2;
    }

    /* Lightpick inside container */
    .searchbar-geolocation .date-picker-container .lightpick {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        width: 100% !important;
        min-width: 100% !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        margin: 0 !important;
        flex: 1;
        overflow-y: auto;
    }

    .searchbar-geolocation .date-picker-container .lightpick .lightpick__months {
        grid-template-columns: 1fr;
    }

    .searchbar-geolocation .date-picker-container .lightpick .lightpick__month {
        width: 100% !important;
    }

    .searchbar-geolocation .date-picker-container .lightpick .lightpick__month:last-child {
        display: block;
    }

    .searchbar-geolocation .date-picker-container .lightpick .lightpick__days {
        grid-gap: 2px;
    }

    .searchbar-geolocation .date-picker-container .lightpick .lightpick__month-title select {
        font-size: 14px;
    }

    .searchbar-geolocation .date-picker-container .lightpick .lightpick__day-of-the-week {
        font-size: 10px !important;
        height: 28px;
    }

    .searchbar-geolocation .date-picker-container .lightpick .lightpick__day {
        font-size: 12px;
        height: 38px;
        width: 44px;
    }

    .searchbar-geolocation .date-picker-container .lightpick .result-button {
        display: none;
    }

    /* Mobile Apply Button */
    .searchbar-geolocation .date-picker-container .mobile-date-apply {
        display: block;
        padding: 16px;
        background: var(--white);
        border-top: 1px solid var(--btn-border-color);
        order: 99;
        flex-shrink: 0;
    }

    .searchbar-geolocation .date-picker-container .mobile-date-apply button {
        width: 100%;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 500;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: var(--secondary);
        color: var(--white);
        gap: 4px;
        padding: 12px 8px;
        border: none;
    }

    .searchbar-geolocation .date-picker-container .mobile-date-apply button span {
        color: var(--primary);
        font-size: 11px;
        font-weight: 700;
    }

    /* Date item with value - green background */
    .searchbar-geolocation .date-picker-container .mobile-date-display .date-item.has-value {
        background: var(--success-bg);
        border-radius: 8px;
    }

    /* Child Age Selects */
    .searchbar-geolocation .child-age-select {
        flex-direction: column;
    }

    .searchbar-geolocation .child-age-select label {
        font-size: 11px;
        font-weight: 700;
        color: var(--text-muted);
    }

    /* Show Mobile Elements */
    .searchbar-geolocation .guest-dropdown .mobile-heading {
        display: flex !important;
    }

    .searchbar-geolocation .guest-dropdown .submit-button {
        display: block !important;
    }

    /* Fix body scroll when overlay is open */
    body.mobile-overlay-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
    }

    /* Dark backdrop for guest bottom sheet */
    body.guest-overlay-open::after {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--overlay);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        z-index: 999998;
    }

    body.body-fixed.guest-overlay-open::after {
        display: none;
    }
}
