/*
 * Reservaline Home 1
 * Isolated desktop homepage styles for the manually selected RH1 template.
 */

.rh1-page,
.rh1-page * {
    box-sizing: border-box;
}

body.rh1-template {
    margin: 0;
    background: #ffffff;
    color: #0b2c6b;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    overflow-x: hidden;
}

body.rh1-template .rh1-page a {
    text-decoration: none;
}

.rh1-page {
    --rh1-navy: #071b40;
    --rh1-deep: #073b8f;
    --rh1-royal: #0b5cf6;
    --rh1-blue: #0b5cf6;
    --rh1-blue-soft: #eaf1ff;
    --rh1-gold: #eab72f;
    --rh1-text: #102143;
    --rh1-muted: #66738f;
    --rh1-line: #dfe6f1;
    --rh1-white: #ffffff;
    width: 100%;
    min-height: 100vh;
    background: #ffffff;
    color: var(--rh1-text);
}

.rh1-container {
    width: min(1500px, calc(100% - 80px));
    margin: 0 auto;
}

.rh1-hero {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    background-color: #073b8f;
    background-image: var(--rh1-hero-image);
    background-position: center center;
    background-size: cover;
}

.rh1-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 24, 62, .82) 0%, rgba(3, 33, 77, .52) 42%, rgba(3, 25, 60, .16) 71%, rgba(3, 24, 59, .24) 100%),
        linear-gradient(180deg, rgba(1, 20, 50, .38) 0, rgba(1, 20, 50, .02) 54%, rgba(1, 20, 50, .28) 100%);
}

.rh1-header {
    position: relative;
    z-index: 5;
    height: 106px;
}

.rh1-header__inner {
    display: grid;
    grid-template-columns: 250px minmax(560px, 1fr) auto;
    align-items: center;
    height: 100%;
    gap: 34px;
}

.rh1-logo {
    display: inline-flex;
    align-items: center;
    width: max-content;
}

.rh1-logo__image {
    display: block;
    width: auto;
    max-width: 205px;
    max-height: 62px;
    object-fit: contain;
}

.rh1-logo__wordmark {
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rh1-main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 48px;
}

.rh1-main-nav__item {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    min-height: 58px;
    color: rgba(255, 255, 255, 0.94);
    font-size: 16px;
    font-weight: 650;
    white-space: nowrap;
}

.rh1-main-nav__item::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    border-radius: 2px;
    background: transparent;
}

.rh1-main-nav__item:hover,
.rh1-main-nav__item:focus,
.rh1-main-nav__item.is-active {
    color: #ffffff;
}

.rh1-main-nav__item.is-active::after {
    background: var(--rh1-gold);
}

.rh1-main-nav__icon {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
}

.rh1-header-tools {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    min-width: 330px;
    color: #ffffff;
}

.rh1-language {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    overflow: hidden;
    border: 0;
    border-radius: 50%;
    background: transparent;
}

.rh1-language svg {
    display: block;
    width: 36px;
    height: 24px;
    max-width: none;
    flex: 0 0 36px;
}

.rh1-footer__language svg {
    display: block;
    width: 100%;
    height: 100%;
}

.rh1-header-tools__divider {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.35);
}

.rh1-currency {
    position: relative;
}

.rh1-currency__trigger {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 0;
    border: 0;
    background: transparent;
    color: #ffffff;
    font: inherit;
    font-size: 15px;
    font-weight: 650;
    cursor: pointer;
}

.rh1-currency__trigger svg {
    width: 12px;
    height: 8px;
}

.rh1-currency__menu {
    position: absolute;
    z-index: 30;
    top: calc(100% + 12px);
    right: 0;
    display: none;
    min-width: 110px;
    padding: 8px;
    border: 1px solid #dce5f2;
    border-radius: 8px;
    background: #ffffff;
}

.rh1-currency.is-open .rh1-currency__menu {
    display: grid;
}

.rh1-currency__menu a {
    padding: 9px 11px;
    border-radius: 6px;
    color: var(--rh1-text);
    font-size: 14px;
    font-weight: 650;
}

.rh1-currency__menu a:hover,
.rh1-currency__menu a:focus {
    background: var(--rh1-blue-soft);
    color: var(--rh1-royal);
}

.rh1-login-link {
    color: #ffffff;
    font-size: 15px;
    font-weight: 650;
    white-space: nowrap;
}

.rh1-hero__content {
    position: relative;
    z-index: 2;
    padding-top: 86px;
}

.rh1-eyebrow {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 0 0 28px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 650;
}

.rh1-eyebrow span {
    width: 42px;
    height: 3px;
    border-radius: 3px;
    background: var(--rh1-gold);
}

.rh1-hero h1 {
    max-width: 690px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(58px, 5vw, 82px);
    font-weight: 760;
    letter-spacing: -0.04em;
    line-height: 0.98;
}

.rh1-hero__description {
    max-width: 640px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.95);
    font-size: 19px;
    line-height: 1.6;
}

.rh1-main {
    position: relative;
    z-index: 4;
    background: #ffffff;
}

.rh1-search-shell {
    position: relative;
    z-index: 20;
    margin-top: -70px;
    min-height: 140px;
    border: 2px solid var(--rh1-gold);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(17, 63, 131, 0.08);
}

.rh1-native-search,
.rh1-native-search .search-form,
.rh1-native-search form,
.rh1-native-search .row {
    width: 100%;
    height: 100%;
}

.rh1-native-search .search-form {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.rh1-native-search form > .row {
    display: grid !important;
    grid-template-columns: minmax(280px, 1.22fr) minmax(310px, 1.04fr) minmax(300px, 1.05fr) 235px;
    align-items: stretch;
    margin: 0 !important;
}

.rh1-native-search form > .row > [class*="col-"] {
    position: relative;
    display: flex;
    align-items: center;
    width: auto !important;
    max-width: none !important;
    min-height: 136px;
    padding: 0 30px !important;
    border: 0 !important;
    float: none !important;
}

.rh1-native-search form > .row > [class*="col-"]:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 31px;
    right: 0;
    width: 1px;
    height: 74px;
    background: #dce5f1;
}

.rh1-native-search form > .row > [class*="col-"]:last-child {
    padding: 22px 22px !important;
}

.rh1-native-search .destination-search,
.rh1-native-search .field-detination,
.rh1-native-search .form-date-field,
.rh1-native-search .field-guest,
.rh1-native-search .form-button {
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.rh1-native-search .destination-search > .form-group,
.rh1-native-search .field-detination,
.rh1-native-search .form-date-field,
.rh1-native-search .field-guest > .form-extra-field,
.rh1-native-search .field-guest {
    position: relative;
    display: flex !important;
    align-items: center !important;
    min-height: 84px;
    cursor: pointer;
}

.rh1-native-search .destination-search > .form-group > svg,
.rh1-native-search .field-detination > svg,
.rh1-native-search .form-date-field > svg,
.rh1-native-search .field-guest > svg,
.rh1-native-search .field-guest > .form-extra-field > svg,
.rh1-native-search .reservaline-field-svg,
.rh1-native-search .input-icon svg {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px;
    margin: 0 22px 0 0 !important;
    color: var(--rh1-royal);
    stroke: currentColor;
}

.rh1-native-search .st-form-dropdown-icon,
.rh1-native-search .date-wrapper,
.rh1-native-search .field-guest .st-form-dropdown-icon,
.rh1-native-search .field-guest .dropdown {
    min-width: 0;
    flex: 1 1 auto;
}

.rh1-native-search label {
    display: block !important;
    margin: 0 0 9px !important;
    color: var(--rh1-text) !important;
    font-size: 15px !important;
    font-weight: 760 !important;
    line-height: 1.2 !important;
}

.rh1-native-search .render,
.rh1-native-search .render input,
.rh1-native-search .check-in-wrapper {
    color: #5b6d8b !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.35 !important;
}

.rh1-native-search .render input {
    display: block;
    width: 100%;
    height: auto !important;
    padding: 0 !important;
    border: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.rh1-native-search .render input::placeholder {
    color: #6d7c98;
    opacity: 1;
}

.rh1-native-search .form-date-field {
    overflow: visible !important;
}

.rh1-native-search .date-wrapper {
    width: 100%;
}

.rh1-native-search .check-in-wrapper {
    display: flex !important;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 0 7px;
}

.rh1-native-search .check-in-wrapper label {
    flex: 0 0 100%;
}

.rh1-native-search .check-in-render,
.rh1-native-search .check-out-render,
.rh1-native-search .check-in-wrapper > span {
    display: inline-block;
    white-space: nowrap;
}

.rh1-native-search .form-date-field.rh1-date-empty .check-in-render,
.rh1-native-search .form-date-field.rh1-date-empty .check-out-render,
.rh1-native-search .form-date-field.rh1-date-empty .check-in-wrapper > span {
    font-size: 0 !important;
}

.rh1-native-search .form-date-field.rh1-date-empty .check-in-render::after {
    content: "Date d’arrivée";
    color: #6d7c98;
    font-size: 14px;
}

.rh1-native-search .form-date-field.rh1-date-empty .check-out-render::after {
    content: "Date de départ";
    color: #6d7c98;
    font-size: 14px;
}

.rh1-native-search .form-date-field.rh1-date-empty .check-in-wrapper > span::after {
    content: "·";
    color: #6d7c98;
    font-size: 14px;
}

.rh1-native-search input.check-in-out {
    position: absolute !important;
    z-index: 5;
    inset: 0;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    opacity: 0 !important;
    cursor: pointer;
}

.rh1-native-search .field-guest .render {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 7px;
}

.rh1-native-search .field-guest .render > span {
    color: #273d68;
    font-weight: 650;
}

.rh1-native-search .field-guest .arrow {
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -8px;
    color: var(--rh1-text);
    font-size: 16px;
}

.rh1-native-search .advance {
    display: none !important;
}

.rh1-native-search .form-button {
    display: flex !important;
    align-items: stretch !important;
    justify-content: stretch !important;
    height: 100%;
}

.rh1-native-search .btn-search,
.rh1-native-search button[type="submit"] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 13px;
    width: 100% !important;
    min-height: 88px;
    margin: 0 !important;
    padding: 20px 24px !important;
    border: 0 !important;
    border-radius: 10px !important;
    background: #4169e1 !important;
    color: #ffffff !important;
    font-size: 17px !important;
    font-weight: 760 !important;
    line-height: 1 !important;
    cursor: pointer;
    box-shadow: none !important;
}

.rh1-native-search .btn-search:hover,
.rh1-native-search .btn-search:focus,
.rh1-native-search button[type="submit"]:hover,
.rh1-native-search button[type="submit"]:focus {
    background: #3154b8 !important;
    color: #ffffff !important;
}

.rh1-search-button__icon {
    width: 23px;
    height: 23px;
}

.rh1-native-search .dropdown-menu {
    z-index: 1000 !important;
    min-width: 310px !important;
    max-height: 330px;
    overflow-y: auto;
    padding: 10px !important;
    border: 1px solid #dce5f2 !important;
    border-radius: 10px !important;
    background: #ffffff !important;
    box-shadow: 0 8px 20px rgba(13, 47, 102, 0.10) !important;
}

.rh1-native-search .dropdown-menu .item,
.rh1-native-search .dropdown-menu .dropdown-item {
    padding: 11px 12px !important;
    border-radius: 7px;
    color: var(--rh1-text) !important;
    cursor: pointer;
}

.rh1-native-search .dropdown-menu .item:hover,
.rh1-native-search .dropdown-menu .dropdown-item:hover {
    background: var(--rh1-blue-soft) !important;
}

.rh1-native-search .field-guest > .dropdown-menu {
    right: 0;
    left: auto;
    width: 310px;
}

.rh1-native-search .field-guest .dropdown-menu .item {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: 58px;
}

.rh1-native-search .field-guest .dropdown-menu label {
    margin: 0 !important;
}

.rh1-native-search .st-number-wrapper {
    display: flex !important;
    align-items: center !important;
    gap: 8px;
}

.rh1-native-search .st-number-wrapper .st-input-number,
.rh1-native-search .st-number-wrapper input {
    width: 44px !important;
    height: 34px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: var(--rh1-text) !important;
    text-align: center;
    font-weight: 760;
    box-shadow: none !important;
}

.rh1-native-search .st-number-wrapper .prev,
.rh1-native-search .st-number-wrapper .next,
.rh1-native-search .st-number-wrapper .minus,
.rh1-native-search .st-number-wrapper .plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid #cfdaeb;
    border-radius: 50%;
    color: var(--rh1-royal);
    cursor: pointer;
}

.rh1-benefits {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
    padding: 44px 48px 54px;
}

.rh1-benefit {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
}

.rh1-benefit__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 68px;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #edf4ff;
    color: #1753d5;
}

.rh1-benefit__icon svg {
    width: 36px;
    height: 36px;
}

.rh1-benefit__copy {
    display: grid;
    gap: 7px;
    min-width: 0;
}

.rh1-benefit strong {
    color: var(--rh1-text);
    font-size: 16px;
    font-weight: 760;
}

.rh1-benefit small {
    color: #667692;
    font-size: 13px;
    line-height: 1.45;
}

.rh1-section {
    padding: 32px 0 0;
}

.rh1-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 24px;
}

.rh1-section-head--single {
    justify-content: flex-start;
}

.rh1-section-head h2,
.rh1-promo h2,
.rh1-newsletter h2 {
    margin: 0;
    color: var(--rh1-text);
    font-size: 31px;
    font-weight: 790;
    letter-spacing: -0.025em;
    line-height: 1.15;
}

.rh1-section-head p,
.rh1-newsletter p {
    margin: 7px 0 0;
    color: #6b7891;
    font-size: 14px;
}

.rh1-view-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: #0b49c9;
    font-size: 15px;
    font-weight: 760;
}

.rh1-view-all svg {
    width: 20px;
    height: 20px;
}

.rh1-listing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.rh1-listing-card {
    overflow: hidden;
    border: 1px solid #dce4ef;
    border-radius: 13px;
    background: #ffffff;
}

.rh1-listing-card__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1.48 / 1;
    background: #eaf0f8;
}

.rh1-listing-card__media > a:first-child {
    display: block;
    width: 100%;
    height: 100%;
}

.rh1-listing-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 240ms ease;
}

.rh1-listing-card:hover .rh1-listing-card__media img {
    transform: scale(1.025);
}

.rh1-listing-card__badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 3;
    padding: 7px 12px;
    border-radius: 5px;
    background: #0b49c9;
    color: #ffffff;
    font-size: 12px;
    font-style: normal;
    font-weight: 760;
}

.rh1-listing-card__badge--green {
    background: #12a95b;
}

.rh1-wishlist {
    position: absolute !important;
    z-index: 5;
    top: 13px;
    right: 13px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 40px !important;
    height: 40px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 50% !important;
    background: rgba(15, 42, 83, 0.28) !important;
    color: #ffffff !important;
    cursor: pointer;
    box-shadow: none !important;
}

.rh1-wishlist svg {
    width: 24px;
    height: 24px;
}

.rh1-wishlist.added svg {
    fill: currentColor;
}

.rh1-listing-card__body {
    padding: 18px 18px 17px;
}

.rh1-listing-card__title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.rh1-listing-card h3 {
    min-width: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 780;
    line-height: 1.3;
}

.rh1-listing-card h3 a {
    color: var(--rh1-text);
}

.rh1-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex: 0 0 auto;
    color: var(--rh1-text);
    font-size: 13px;
    font-weight: 750;
    white-space: nowrap;
}

.rh1-rating > span {
    color: #f2a51a;
    font-size: 16px;
}

.rh1-rating small {
    color: #62718c;
    font-size: 11px;
    font-weight: 500;
}

.rh1-listing-card__location {
    min-height: 20px;
    margin: 8px 0 15px;
    overflow: hidden;
    color: #66758f;
    font-size: 13px;
    line-height: 1.45;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rh1-listing-card__facts {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 11px 18px;
    min-height: 24px;
    padding-bottom: 17px;
    color: #536683;
    font-size: 12px;
}

.rh1-listing-card__facts span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.rh1-listing-card__facts svg {
    width: 17px;
    height: 17px;
    color: #234c9e;
}

.rh1-listing-card__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    min-height: 35px;
    border-top: 1px solid #edf1f6;
    padding-top: 14px;
    color: #314869;
    font-size: 12px;
}

.rh1-listing-card__price strong {
    color: var(--rh1-text);
    font-size: 19px;
    font-weight: 810;
}

.rh1-listing-card__price em {
    margin-left: auto;
    padding: 5px 8px;
    border-radius: 6px;
    background: #e2f7e9;
    color: #138e4c;
    font-size: 13px;
    font-style: normal;
    font-weight: 760;
}

.rh1-empty-state {
    margin: 0;
    padding: 32px;
    border: 1px dashed #cdd8e9;
    border-radius: 12px;
    color: #62728e;
    text-align: center;
}

.rh1-destinations {
    padding-top: 38px;
}

.rh1-destination-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px;
}

.rh1-destination-card {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 1.02 / 1;
    border-radius: 12px;
    background: #e9eef5;
}

.rh1-destination-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 240ms ease;
}

.rh1-destination-card:hover img {
    transform: scale(1.035);
}

.rh1-destination-card__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 20, 45, 0.02) 42%, rgba(2, 19, 45, 0.84) 100%);
}

.rh1-destination-card__copy {
    position: absolute;
    z-index: 2;
    right: 15px;
    bottom: 15px;
    left: 15px;
    display: grid;
    gap: 3px;
    color: #ffffff;
}

.rh1-destination-card__copy strong {
    font-size: 18px;
    font-weight: 790;
}

.rh1-destination-card__copy small {
    color: rgba(255, 255, 255, 0.92);
    font-size: 12px;
}

.rh1-promo {
    position: relative;
    display: grid;
    grid-template-columns: 0.9fr 1.25fr;
    align-items: center;
    min-height: 300px;
    margin-top: 36px;
    overflow: hidden;
    border-radius: 12px;
    background: #073b8f;
}

.rh1-promo__copy {
    position: relative;
    z-index: 3;
    max-width: 540px;
    padding: 43px 0 43px 65px;
}

.rh1-promo h2 {
    max-width: 440px;
    color: #ffffff;
    font-size: 36px;
    line-height: 1.12;
}

.rh1-promo p {
    max-width: 470px;
    margin: 17px 0 25px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    line-height: 1.55;
}

.rh1-promo__copy > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 7px;
    background: #ffffff;
    color: #0b3b95;
    font-size: 14px;
    font-weight: 790;
}

.rh1-promo__collage {
    position: relative;
    height: 300px;
}

.rh1-promo__image {
    position: absolute;
    display: block;
    width: 235px;
    height: 182px;
    border: 4px solid #ffffff;
    border-radius: 16px;
    object-fit: cover;
}

.rh1-promo__image--1 {
    top: 73px;
    left: 15px;
    transform: rotate(-5deg);
}

.rh1-promo__image--2 {
    top: 28px;
    left: 245px;
    z-index: 2;
    transform: rotate(4deg);
}

.rh1-promo__image--3 {
    top: 78px;
    right: 38px;
    transform: rotate(8deg);
}

.rh1-promo__discount {
    position: absolute;
    z-index: 5;
    top: 145px;
    left: 52%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 118px;
    height: 118px;
    border-radius: 50%;
    background: #ffffff;
    color: #0a3f9f;
    font-size: 13px;
    font-weight: 760;
    transform: translateX(-50%);
}

.rh1-promo__discount strong {
    margin-top: 1px;
    font-size: 29px;
    line-height: 1;
}

.rh1-why {
    padding-top: 33px;
}

.rh1-why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.rh1-why-card {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 116px;
    padding: 20px 23px;
    border: 1px solid #dce4ef;
    border-radius: 12px;
    background: #ffffff;
}

.rh1-why-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #edf4ff;
    color: #1a56d5;
}

.rh1-why-card__icon svg {
    width: 31px;
    height: 31px;
}

.rh1-why-card--green .rh1-why-card__icon {
    background: #e9f8ef;
    color: #18a259;
}

.rh1-why-card--gold .rh1-why-card__icon {
    background: #fff4e5;
    color: #e69010;
}

.rh1-why-card > span:last-child {
    display: grid;
    gap: 7px;
}

.rh1-why-card strong {
    color: var(--rh1-text);
    font-size: 14px;
    font-weight: 780;
}

.rh1-why-card small {
    color: #687792;
    font-size: 12px;
    line-height: 1.45;
}

.rh1-newsletter {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    min-height: 220px;
    padding: 32px 0 35px;
}

.rh1-newsletter__copy {
    max-width: 650px;
}

.rh1-newsletter__form {
    margin-top: 20px;
}

.rh1-newsletter__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 160px;
    gap: 14px;
}

.rh1-newsletter__row input[type="email"] {
    width: 100%;
    height: 50px;
    padding: 0 17px;
    border: 1px solid #d7e0ec;
    border-radius: 7px;
    background: #ffffff;
    color: var(--rh1-text);
    outline: 0;
    box-shadow: none;
}

.rh1-newsletter__row input[type="email"]:focus {
    border-color: #0e4fcb;
}

.rh1-newsletter__row button {
    height: 50px;
    border: 0;
    border-radius: 7px;
    background: #073b8f;
    color: #ffffff;
    font-size: 14px;
    font-weight: 770;
    cursor: pointer;
}

.rh1-newsletter__consent {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    color: #60708c;
    font-size: 11px;
}

.rh1-newsletter__consent input {
    accent-color: #0c4bc7;
}

.rh1-newsletter__art {
    position: relative;
    min-height: 185px;
}

.rh1-newsletter__mail {
    position: absolute;
    right: 155px;
    bottom: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 115px;
    height: 92px;
    border-radius: 8px 8px 18px 18px;
    background: #2365ee;
    color: #ffffff;
}

.rh1-newsletter__mail svg {
    width: 68px;
    height: 68px;
}

.rh1-newsletter__plane {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #073b8f;
    transform: rotate(-12deg);
}

.rh1-newsletter__plane svg {
    width: 84px;
    height: 84px;
}

.rh1-newsletter__trail {
    position: absolute;
    top: 72px;
    right: 100px;
    width: 115px;
    height: 65px;
    border-top: 2px dashed #77a5ff;
    border-radius: 50%;
    transform: rotate(-20deg);
}

.rh1-newsletter__spark {
    position: absolute;
    color: #6f9cff;
    font-size: 24px;
}

.rh1-newsletter__spark--1 {
    top: 85px;
    left: 70px;
}

.rh1-newsletter__spark--2 {
    top: 118px;
    left: 135px;
}

.rh1-footer {
    background: #061a3a;
    color: rgba(255, 255, 255, 0.86);
}

.rh1-footer__grid {
    display: grid;
    grid-template-columns: 1.35fr repeat(3, 0.8fr) 1.05fr;
    gap: 48px;
    padding: 48px 0 34px;
}

.rh1-footer__logo .rh1-logo__image {
    max-width: 190px;
    max-height: 58px;
}

.rh1-footer__brand p {
    max-width: 245px;
    margin: 19px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 12px;
    line-height: 1.55;
}

.rh1-footer__socials {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.rh1-footer__socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 31px;
    height: 31px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 50%;
    color: #ffffff;
    font-size: 12px;
    font-weight: 750;
}

.rh1-footer__column {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
}

.rh1-footer__column h3 {
    margin: 0 0 7px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 780;
}

.rh1-footer__column a,
.rh1-footer__column > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    line-height: 1.4;
}

.rh1-footer__column a:hover,
.rh1-footer__column a:focus {
    color: #ffffff;
}

.rh1-footer__support svg {
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
}

.rh1-footer__language {
    min-width: 88px;
    min-height: 36px;
    margin-top: 4px;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 5px;
}

.rh1-footer__language svg {
    width: 25px;
    height: 17px;
}

.rh1-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    min-height: 72px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.rh1-footer__bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
}

.rh1-payment-marks {
    display: flex;
    align-items: center;
    gap: 20px;
}

.rh1-payment-mark {
    color: #ffffff;
    font-size: 14px;
    font-weight: 780;
    font-style: italic;
}

.rh1-payment-mark--visa {
    font-size: 18px;
    letter-spacing: 0.03em;
}

.rh1-payment-mark--mastercard {
    display: inline-flex;
    position: relative;
    width: 37px;
    height: 22px;
}

.rh1-payment-mark--mastercard i {
    position: absolute;
    top: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #f33a2f;
}

.rh1-payment-mark--mastercard i:last-child {
    right: 0;
    background: #f2a20d;
    opacity: 0.92;
}

.rh1-payment-mark--mastercard i:first-child {
    left: 0;
}

@media (max-width: 1440px) {
    .rh1-container {
        width: min(1320px, calc(100% - 64px));
    }

    .rh1-header__inner {
        grid-template-columns: 210px minmax(500px, 1fr) auto;
        gap: 22px;
    }

    .rh1-main-nav {
        gap: 32px;
    }

    .rh1-header-tools {
        min-width: 300px;
        gap: 14px;
    }

    .rh1-native-search form > .row {
        grid-template-columns: minmax(250px, 1.2fr) minmax(265px, 1fr) minmax(270px, 1fr) 205px;
    }

    .rh1-native-search form > .row > [class*="col-"] {
        padding: 0 22px !important;
    }

    .rh1-native-search .destination-search > .form-group > svg,
    .rh1-native-search .field-detination > svg,
    .rh1-native-search .form-date-field > svg,
    .rh1-native-search .field-guest > svg,
    .rh1-native-search .field-guest > .form-extra-field > svg,
    .rh1-native-search .reservaline-field-svg {
        margin-right: 16px !important;
    }

    .rh1-promo__image {
        width: 205px;
        height: 162px;
    }
}

@media (max-width: 1180px) {
    .rh1-container {
        width: min(1040px, calc(100% - 48px));
    }

    .rh1-header {
        height: auto;
        padding: 22px 0;
    }

    .rh1-header__inner {
        grid-template-columns: auto 1fr auto;
    }

    .rh1-main-nav {
        gap: 22px;
    }

    .rh1-main-nav__item {
        gap: 7px;
        font-size: 14px;
    }

    .rh1-main-nav__icon {
        width: 23px;
        height: 23px;
        flex-basis: 23px;
    }

    .rh1-header-tools {
        min-width: auto;
    }

    .rh1-login-link {
        display: none;
    }

    .rh1-hero {
        min-height: 610px;
    }

    .rh1-hero__content {
        padding-top: 75px;
    }

    .rh1-hero h1 {
        max-width: 600px;
        font-size: 64px;
    }

    .rh1-search-shell {
        min-height: auto;
    }

    .rh1-native-search form > .row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .rh1-native-search form > .row > [class*="col-"] {
        min-height: 120px;
    }

    .rh1-native-search form > .row > [class*="col-"]:last-child {
        grid-column: 1 / -1;
        min-height: auto;
        padding: 0 18px 18px !important;
    }

    .rh1-native-search form > .row > [class*="col-"]:nth-child(3)::after {
        display: none;
    }

    .rh1-native-search .btn-search,
    .rh1-native-search button[type="submit"] {
        min-height: 58px;
    }

    .rh1-benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 40px;
        padding-right: 25px;
        padding-left: 25px;
    }

    .rh1-listing-grid,
    .rh1-why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rh1-destination-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .rh1-promo {
        grid-template-columns: 1fr 1fr;
    }

    .rh1-promo__copy {
        padding-left: 42px;
    }

    .rh1-promo__image--1 {
        left: 0;
    }

    .rh1-promo__image--2 {
        left: 150px;
    }

    .rh1-promo__image--3 {
        display: none;
    }

    .rh1-promo__discount {
        left: 58%;
    }

    .rh1-footer__grid {
        grid-template-columns: 1.2fr repeat(2, 0.8fr);
    }

    .rh1-footer__support {
        grid-column: 2 / 4;
    }
}

@media (max-width: 900px) {
    .rh1-container {
        width: calc(100% - 36px);
    }

    .rh1-header__inner {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .rh1-main-nav {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
    }

    .rh1-hero {
        min-height: 660px;
    }

    .rh1-hero__content {
        padding-top: 55px;
    }

    .rh1-hero h1 {
        font-size: 56px;
    }

    .rh1-native-search form > .row {
        grid-template-columns: 1fr 1fr;
    }

    .rh1-native-search form > .row > [class*="col-"]:nth-child(2)::after {
        display: none;
    }

    .rh1-native-search form > .row > [class*="col-"]:nth-child(3) {
        grid-column: 1 / -1;
        border-top: 1px solid #e3e9f2 !important;
    }

    .rh1-native-search form > .row > [class*="col-"]:nth-child(3)::after {
        display: none;
    }

    .rh1-promo {
        grid-template-columns: 1fr;
    }

    .rh1-promo__copy {
        padding: 40px;
    }

    .rh1-promo__collage {
        display: none;
    }

    .rh1-newsletter {
        grid-template-columns: 1fr;
    }

    .rh1-newsletter__art {
        display: none;
    }
}

@media (max-width: 680px) {
    .rh1-container {
        width: calc(100% - 28px);
    }

    .rh1-header-tools {
        gap: 10px;
    }

    .rh1-header-tools__divider:last-of-type {
        display: none;
    }

    .rh1-main-nav {
        gap: 20px;
    }

    .rh1-hero {
        min-height: 610px;
    }

    .rh1-hero__content {
        padding-top: 40px;
    }

    .rh1-eyebrow {
        font-size: 14px;
    }

    .rh1-hero h1 {
        font-size: 45px;
    }

    .rh1-hero__description {
        font-size: 16px;
    }

    .rh1-search-shell {
        margin-top: -45px;
    }

    .rh1-native-search form > .row {
        display: block !important;
    }

    .rh1-native-search form > .row > [class*="col-"] {
        min-height: 104px;
        padding: 0 20px !important;
        border-top: 1px solid #e4eaf3 !important;
    }

    .rh1-native-search form > .row > [class*="col-"]:first-child {
        border-top: 0 !important;
    }

    .rh1-native-search form > .row > [class*="col-"]::after {
        display: none !important;
    }

    .rh1-native-search form > .row > [class*="col-"]:last-child {
        padding: 0 14px 14px !important;
    }

    .rh1-benefits,
    .rh1-listing-grid,
    .rh1-destination-grid,
    .rh1-why-grid {
        grid-template-columns: 1fr;
    }

    .rh1-benefits {
        padding: 36px 10px 24px;
    }

    .rh1-section-head {
        align-items: flex-start;
    }

    .rh1-section-head h2,
    .rh1-newsletter h2 {
        font-size: 26px;
    }

    .rh1-view-all {
        font-size: 13px;
    }

    .rh1-destination-card {
        aspect-ratio: 1.45 / 1;
    }

    .rh1-promo h2 {
        font-size: 29px;
    }

    .rh1-newsletter__row {
        grid-template-columns: 1fr;
    }

    .rh1-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 34px 28px;
    }

    .rh1-footer__brand,
    .rh1-footer__support {
        grid-column: 1 / -1;
    }

    .rh1-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        padding: 22px 0;
    }
}


/* ========================================================================== 
   RH1 authoritative compact desktop correction
   - 1180px maximum content width
   - compact hero/header
   - search exactly half on blue / half on white
   - visible 5-star rating
   - simplified footer copyright
   ========================================================================== */

.rh1-container {
    width: min(1180px, calc(100% - 48px)) !important;
    max-width: 1180px !important;
    margin-right: auto !important;
    margin-left: auto !important;
}

.rh1-hero {
    position: relative !important;
    min-height: 470px !important;
    overflow: hidden !important;
    background: #073b8f !important;
    background-image: none !important;
}

.rh1-hero::before {
    position: absolute !important;
    z-index: 0 !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 62% !important;
    background-image: var(--rh1-hero-image) !important;
    background-position: center center !important;
    background-size: cover !important;
    content: "" !important;
}

.rh1-hero__overlay {
    position: absolute !important;
    z-index: 1 !important;
    inset: 0 !important;
    background: linear-gradient(
        90deg,
        #073b8f 0%,
        #073b8f 58%,
        rgba(7, 59, 143, .99) 68%,
        rgba(7, 59, 143, .84) 80%,
        rgba(7, 59, 143, .38) 100%
    ) !important;
}

.rh1-header {
    position: relative !important;
    z-index: 5 !important;
    height: 74px !important;
    background: transparent !important;
    border: 0 !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
}

.rh1-header::before,
.rh1-header::after,
.rh1-header__inner::before,
.rh1-header__inner::after {
    display: none !important;
    content: none !important;
}

.rh1-header__inner {
    position: relative !important;
    z-index: 5 !important;
    height: 74px !important;
    grid-template-columns: 170px minmax(430px, 1fr) auto !important;
    gap: 22px !important;
    border: 0 !important;
}

.rh1-logo__image {
    max-width: 166px !important;
    max-height: 46px !important;
}

.rh1-main-nav {
    justify-content: flex-start !important;
    gap: 26px !important;
}

.rh1-main-nav__item {
    min-height: 38px !important;
    gap: 8px !important;
    padding: 0 0 8px !important;
    font-size: 13px !important;
}

.rh1-main-nav__icon {
    width: 21px !important;
    height: 21px !important;
}

.rh1-header-tools {
    min-width: 0 !important;
    gap: 13px !important;
}

.rh1-hero__content {
    position: relative !important;
    z-index: 3 !important;
    padding-top: 53px !important;
    padding-bottom: 64px !important;
}

.rh1-eyebrow {
    margin-bottom: 20px !important;
    font-size: 12px !important;
}

.rh1-hero h1 {
    max-width: 610px !important;
    margin: 0 !important;
    font-size: clamp(48px, 4.2vw, 60px) !important;
    line-height: 1.01 !important;
}

.rh1-hero__description {
    max-width: 590px !important;
    margin-top: 16px !important;
    font-size: 16px !important;
    line-height: 1.48 !important;
}

/* The wrapper has zero layout height. The search is translated upward by
   exactly half its own 76px height: 38px blue / 38px white. */
.rh1-search-overlap {
    position: relative !important;
    z-index: 30 !important;
    height: 0 !important;
    background: transparent !important;
}

.rh1-search-overlap > .rh1-container {
    position: relative !important;
    z-index: 30 !important;
}

.rh1-search-shell {
    position: relative !important;
    z-index: 30 !important;
    width: 100% !important;
    min-height: 76px !important;
    height: 76px !important;
    margin: 0 !important;
    transform: translateY(-38px) !important;
    overflow: visible !important;
    background: #ffffff !important;
    border: 2px solid #e6ad18 !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 18px rgba(7, 42, 101, .08) !important;
}

.rh1-main {
    position: relative !important;
    z-index: 4 !important;
    padding-top: 52px !important;
    background: #ffffff !important;
}

.rh1-native-search,
.rh1-native-search .search-form,
.rh1-native-search form,
.rh1-native-search form > .row {
    height: 100% !important;
    min-height: 72px !important;
}

.rh1-native-search form > .row {
    grid-template-columns: minmax(250px, 1.22fr) minmax(235px, 1.03fr) minmax(255px, 1.08fr) 162px !important;
    align-items: stretch !important;
}

.rh1-native-search form > .row > [class*="col-"] {
    min-height: 72px !important;
    padding: 0 16px !important;
}

.rh1-native-search form > .row > [class*="col-"]:not(:last-child)::after {
    top: 14px !important;
    height: 44px !important;
}

.rh1-native-search form > .row > [class*="col-"]:last-child {
    padding: 8px !important;
}

.rh1-native-search .destination-search > .form-group,
.rh1-native-search .field-detination,
.rh1-native-search .form-date-field,
.rh1-native-search .field-guest > .form-extra-field,
.rh1-native-search .field-guest {
    min-height: 56px !important;
}

.rh1-native-search .destination-search > .form-group > svg,
.rh1-native-search .field-detination > svg,
.rh1-native-search .form-date-field > svg,
.rh1-native-search .field-guest > svg,
.rh1-native-search .field-guest > .form-extra-field > svg,
.rh1-native-search .reservaline-field-svg,
.rh1-native-search .input-icon svg {
    width: 23px !important;
    height: 23px !important;
    min-width: 23px !important;
    margin-right: 11px !important;
}

.rh1-native-search label {
    margin-bottom: 1px !important;
    font-size: 10px !important;
    line-height: 1.1 !important;
}

.rh1-native-search .render,
.rh1-native-search .render input,
.rh1-native-search .check-in-wrapper,
.rh1-native-search .field-guest .render,
.rh1-native-search .form-date-field.rh1-date-empty .check-in-render::after,
.rh1-native-search .form-date-field.rh1-date-empty .check-out-render::after,
.rh1-native-search .form-date-field.rh1-date-empty .check-in-wrapper > span::after {
    font-size: 12px !important;
    line-height: 1.2 !important;
}

.rh1-native-search .btn-search,
.rh1-native-search button[type="submit"] {
    min-height: 54px !important;
    height: 54px !important;
    padding: 10px 12px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
}

.rh1-search-button__icon,
.rh1-native-search .btn-search svg,
.rh1-native-search button[type="submit"] svg {
    width: 18px !important;
    height: 18px !important;
}

.rh1-benefits {
    padding-top: 18px !important;
}

/* Ratings are always visible under every accommodation title. */
.rh1-rating-row {
    display: block !important;
    visibility: visible !important;
    width: 100% !important;
    min-height: 20px !important;
    height: auto !important;
    margin: 7px 0 0 !important;
    overflow: visible !important;
    opacity: 1 !important;
}

.rh1-rating {
    display: flex !important;
    visibility: visible !important;
    width: 100% !important;
    min-height: 18px !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 6px !important;
    overflow: visible !important;
    opacity: 1 !important;
}

.rh1-rating__stars {
    display: inline-flex !important;
    visibility: visible !important;
    align-items: center !important;
    gap: 2px !important;
    overflow: visible !important;
    opacity: 1 !important;
}

.rh1-rating__star {
    display: inline-flex !important;
    visibility: visible !important;
    width: 14px !important;
    height: 14px !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: visible !important;
    opacity: 1 !important;
}

.rh1-rating__star svg {
    display: block !important;
    width: 14px !important;
    height: 14px !important;
    fill: #ffffff !important;
    stroke: #e7a20e !important;
    stroke-width: 1.8 !important;
}

.rh1-rating__star.is-filled svg {
    fill: #f4aa0b !important;
    stroke: #f4aa0b !important;
}

.rh1-rating strong {
    color: #1b2b49 !important;
    font-size: 10px !important;
    font-weight: 800 !important;
}

.rh1-rating small {
    color: #77839a !important;
    font-size: 9px !important;
    font-weight: 600 !important;
}

/* Footer: no marketing paragraph, only exact copyright plus payment methods. */
.rh1-footer {
    background: #061a3a !important;
}

.rh1-footer__brand > p,
.rh1-footer__brand .rh1-footer-description,
.rh1-footer__brand [class*="description"] {
    display: none !important;
}

.rh1-footer__bottom p {
    margin: 0 !important;
    color: rgba(255,255,255,.86) !important;
    font-size: 11px !important;
    font-weight: 500 !important;
}

.rh1-payment-marks {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.rh1-payment-icon {
    display: inline-flex !important;
    width: 54px !important;
    height: 23px !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    background: #ffffff !important;
    border: 0 !important;
    border-radius: 4px !important;
}

.rh1-payment-icon svg {
    display: block !important;
    width: 54px !important;
    height: 21px !important;
}

@media (max-width: 1200px) {
    .rh1-container {
        width: min(1080px, calc(100% - 40px)) !important;
    }

    .rh1-header__inner {
        grid-template-columns: 155px minmax(390px, 1fr) auto !important;
        gap: 16px !important;
    }

    .rh1-main-nav {
        gap: 19px !important;
    }

    .rh1-native-search form > .row {
        grid-template-columns: minmax(225px, 1.18fr) minmax(215px, 1fr) minmax(230px, 1.04fr) 150px !important;
    }
}

@media (max-width: 1024px) {
    .rh1-hero::before {
        width: 68% !important;
    }

    .rh1-hero__overlay {
        background: linear-gradient(90deg, #073b8f 0%, #073b8f 62%, rgba(7,59,143,.9) 80%, rgba(7,59,143,.5) 100%) !important;
    }

    .rh1-search-overlap {
        height: auto !important;
        padding: 0 20px !important;
        background: #ffffff !important;
    }

    .rh1-search-overlap > .rh1-container {
        width: 100% !important;
    }

    .rh1-search-shell {
        height: auto !important;
        min-height: 0 !important;
        transform: translateY(-28px) !important;
    }

    .rh1-main {
        padding-top: 0 !important;
    }

    .rh1-native-search form > .row {
        grid-template-columns: 1fr !important;
        min-height: 0 !important;
    }

    .rh1-native-search form > .row > [class*="col-"] {
        min-height: 62px !important;
    }

    .rh1-native-search form > .row > [class*="col-"]:not(:last-child)::after {
        top: auto !important;
        right: 14px !important;
        bottom: 0 !important;
        left: 14px !important;
        width: auto !important;
        height: 1px !important;
    }
}


/* =============================================================
   RH1 FINAL PIXEL CORRECTION — 2026-07-17
   Reference: supplied “Hébergements populaires” mockup.
   ============================================================= */

/* Overall width: compact, centered and consistent with the earlier desktop versions. */
.rh1-page .rh1-container {
    width: min(1120px, calc(100% - 48px)) !important;
    max-width: 1120px !important;
    margin-inline: auto !important;
}

/* Header: larger and vertically lowered without adding a separator. */
.rh1-page .rh1-header {
    height: 90px !important;
    padding-top: 9px !important;
    background: transparent !important;
    border: 0 !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
}

.rh1-page .rh1-header::before,
.rh1-page .rh1-header::after,
.rh1-page .rh1-header__inner::before,
.rh1-page .rh1-header__inner::after {
    display: none !important;
    border: 0 !important;
    content: none !important;
}

.rh1-page .rh1-header__inner {
    height: 78px !important;
    grid-template-columns: 188px minmax(470px, 1fr) auto !important;
    align-items: center !important;
    gap: 26px !important;
}

.rh1-page .rh1-header__logo,
.rh1-page .rh1-header__logo .rh1-logo__image {
    width: auto !important;
    max-width: 184px !important;
    max-height: 53px !important;
}

.rh1-page .rh1-main-nav {
    justify-content: flex-start !important;
    gap: 30px !important;
}

.rh1-page .rh1-main-nav__item {
    min-height: 44px !important;
    gap: 9px !important;
    padding: 2px 0 10px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
}

.rh1-page .rh1-main-nav__icon {
    width: 24px !important;
    height: 24px !important;
    flex-basis: 24px !important;
}

.rh1-page .rh1-header-tools {
    gap: 15px !important;
    min-width: 0 !important;
    font-size: 14px !important;
}

/* Hero: compact; solid blue extends farther right before the image appears. */
.rh1-page .rh1-hero {
    min-height: 478px !important;
    background: #073b8f !important;
}

.rh1-page .rh1-hero::before {
    right: 0 !important;
    width: 58% !important;
    background-position: center center !important;
    background-size: cover !important;
}

.rh1-page .rh1-hero__overlay {
    background: linear-gradient(
        90deg,
        #073b8f 0%,
        #073b8f 63%,
        rgba(7, 59, 143, .98) 71%,
        rgba(7, 59, 143, .82) 83%,
        rgba(7, 59, 143, .30) 100%
    ) !important;
}

.rh1-page .rh1-hero__content {
    padding-top: 49px !important;
    padding-bottom: 66px !important;
}

.rh1-page .rh1-eyebrow {
    margin-bottom: 18px !important;
    font-size: 12px !important;
}

.rh1-page .rh1-hero h1 {
    max-width: 600px !important;
    font-size: clamp(48px, 4.1vw, 58px) !important;
    line-height: 1.01 !important;
}

.rh1-page .rh1-hero__description {
    max-width: 575px !important;
    margin-top: 14px !important;
    font-size: 15px !important;
    line-height: 1.45 !important;
}

/* Search: 68px tall and exactly centred on the blue/white boundary. */
.rh1-page .rh1-search-overlap {
    position: relative !important;
    z-index: 40 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
}

.rh1-page .rh1-search-overlap > .rh1-container {
    position: relative !important;
    z-index: 40 !important;
}

.rh1-page .rh1-search-shell {
    width: min(1060px, 100%) !important;
    height: 68px !important;
    min-height: 68px !important;
    margin: 0 auto !important;
    transform: translateY(-50%) !important;
    overflow: visible !important;
    background: #ffffff !important;
    border: 1.5px solid #e8ad17 !important;
    border-radius: 11px !important;
    box-shadow: 0 7px 16px rgba(7, 42, 101, .08) !important;
}

.rh1-page .rh1-main {
    padding-top: 45px !important;
    background: #ffffff !important;
}

.rh1-page .rh1-native-search,
.rh1-page .rh1-native-search .search-form,
.rh1-page .rh1-native-search form,
.rh1-page .rh1-native-search form > .row {
    height: 100% !important;
    min-height: 64px !important;
}

.rh1-page .rh1-native-search form > .row {
    grid-template-columns: minmax(235px, 1.2fr) minmax(220px, 1fr) minmax(240px, 1.08fr) 146px !important;
    align-items: stretch !important;
}

.rh1-page .rh1-native-search form > .row > [class*="col-"] {
    min-height: 64px !important;
    padding: 0 13px !important;
}

.rh1-page .rh1-native-search form > .row > [class*="col-"]:not(:last-child)::after {
    top: 13px !important;
    height: 38px !important;
}

.rh1-page .rh1-native-search form > .row > [class*="col-"]:last-child {
    padding: 7px !important;
}

.rh1-page .rh1-native-search .destination-search > .form-group,
.rh1-page .rh1-native-search .field-detination,
.rh1-page .rh1-native-search .form-date-field,
.rh1-page .rh1-native-search .field-guest > .form-extra-field,
.rh1-page .rh1-native-search .field-guest {
    min-height: 50px !important;
}

.rh1-page .rh1-native-search .destination-search > .form-group > svg,
.rh1-page .rh1-native-search .field-detination > svg,
.rh1-page .rh1-native-search .form-date-field > svg,
.rh1-page .rh1-native-search .field-guest > svg,
.rh1-page .rh1-native-search .field-guest > .form-extra-field > svg,
.rh1-page .rh1-native-search .reservaline-field-svg,
.rh1-page .rh1-native-search .input-icon svg {
    width: 21px !important;
    height: 21px !important;
    min-width: 21px !important;
    margin-right: 9px !important;
}

.rh1-page .rh1-native-search label {
    margin-bottom: 0 !important;
    font-size: 9px !important;
    line-height: 1.05 !important;
}

.rh1-page .rh1-native-search .render,
.rh1-page .rh1-native-search .render input,
.rh1-page .rh1-native-search .check-in-wrapper,
.rh1-page .rh1-native-search .field-guest .render,
.rh1-page .rh1-native-search .form-date-field.rh1-date-empty .check-in-render::after,
.rh1-page .rh1-native-search .form-date-field.rh1-date-empty .check-out-render::after,
.rh1-page .rh1-native-search .form-date-field.rh1-date-empty .check-in-wrapper > span::after {
    font-size: 11.5px !important;
    line-height: 1.15 !important;
}

.rh1-page .rh1-native-search .btn-search,
.rh1-page .rh1-native-search button[type="submit"] {
    min-height: 48px !important;
    height: 48px !important;
    padding: 8px 11px !important;
    border-radius: 8px !important;
    font-size: 13px !important;
}

.rh1-page .rh1-search-button__icon,
.rh1-page .rh1-native-search .btn-search svg,
.rh1-page .rh1-native-search button[type="submit"] svg {
    width: 16px !important;
    height: 16px !important;
}

.rh1-page .rh1-benefits {
    padding-top: 15px !important;
}

/* “Hébergements populaires”: exact compact card language from the supplied mockup. */
.rh1-page .rh1-section-head {
    margin-bottom: 15px !important;
}

.rh1-page .rh1-section-head h2 {
    margin: 0 0 3px !important;
    color: #082d72 !important;
    font-size: 21px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
}

.rh1-page .rh1-section-head p {
    margin: 0 !important;
    color: #65728b !important;
    font-size: 11px !important;
}

.rh1-page .rh1-view-all {
    color: #0754d6 !important;
    font-size: 12px !important;
    font-weight: 750 !important;
}

.rh1-page .rh1-listing-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 14px !important;
}

.rh1-page .rh1-listing-card {
    overflow: hidden !important;
    border: 1px solid #dce3ee !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    box-shadow: none !important;
}

.rh1-page .rh1-listing-card__media {
    height: 184px !important;
    aspect-ratio: auto !important;
    background: #eaf0f8 !important;
}

.rh1-page .rh1-listing-card__badge {
    top: 10px !important;
    left: 10px !important;
    padding: 5px 9px !important;
    border-radius: 4px !important;
    background: #0a48b8 !important;
    font-size: 10px !important;
    font-weight: 800 !important;
}

.rh1-page .rh1-listing-card__badge--green {
    background: #10b862 !important;
}

.rh1-page .rh1-listing-card__badge--purple {
    background: #5035c8 !important;
}

.rh1-page .rh1-wishlist {
    top: 9px !important;
    right: 9px !important;
    width: 31px !important;
    height: 31px !important;
    background: transparent !important;
}

.rh1-page .rh1-wishlist svg {
    width: 21px !important;
    height: 21px !important;
    stroke-width: 1.8 !important;
}

.rh1-page .rh1-listing-card__body {
    padding: 12px 12px 13px !important;
}

.rh1-page .rh1-listing-card__title-row {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: start !important;
    gap: 8px !important;
}

.rh1-page .rh1-listing-card h3 {
    min-width: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

.rh1-page .rh1-rating-row,
.rh1-page .rh1-rating,
.rh1-page .rh1-rating__stars {
    display: none !important;
}

.rh1-page .rh1-rating-summary {
    display: inline-flex !important;
    align-items: center !important;
    gap: 2px !important;
    color: #1c2b49 !important;
    font-size: 10px !important;
    font-weight: 750 !important;
    white-space: nowrap !important;
}

.rh1-page .rh1-rating-summary__star {
    color: #f3a607 !important;
    font-size: 14px !important;
    line-height: 1 !important;
}

.rh1-page .rh1-rating-summary strong {
    font-size: 10px !important;
    font-weight: 800 !important;
}

.rh1-page .rh1-rating-summary small {
    color: #6f7b91 !important;
    font-size: 9px !important;
    font-weight: 500 !important;
}

.rh1-page .rh1-listing-card__location {
    min-height: 16px !important;
    margin: 5px 0 12px !important;
    color: #65728b !important;
    font-size: 10px !important;
    line-height: 1.35 !important;
}

.rh1-page .rh1-listing-card__facts {
    gap: 8px 13px !important;
    min-height: 20px !important;
    padding-bottom: 13px !important;
    color: #53647f !important;
    font-size: 9.5px !important;
}

.rh1-page .rh1-listing-card__facts span {
    gap: 4px !important;
}

.rh1-page .rh1-listing-card__facts svg {
    width: 13px !important;
    height: 13px !important;
    color: #274f98 !important;
}

.rh1-page .rh1-listing-card__price {
    min-height: 27px !important;
    gap: 3px !important;
    padding-top: 10px !important;
    color: #314869 !important;
    border-top: 0 !important;
    font-size: 10px !important;
}

.rh1-page .rh1-listing-card__price strong {
    color: #0b234f !important;
    font-size: 15px !important;
    font-weight: 850 !important;
}

.rh1-page .rh1-listing-card__price em {
    padding: 4px 7px !important;
    border-radius: 6px !important;
    background: #dff8e8 !important;
    color: #0b9c50 !important;
    font-size: 11px !important;
}

/* Five destinations fill the full available width — no empty right column. */
.rh1-page .rh1-destinations {
    padding-top: 28px !important;
}

.rh1-page .rh1-destination-grid {
    width: 100% !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 14px !important;
}

.rh1-page .rh1-destination-card {
    width: 100% !important;
    height: 174px !important;
    aspect-ratio: auto !important;
    border-radius: 8px !important;
}

.rh1-page .rh1-destination-card__copy {
    right: 11px !important;
    bottom: 11px !important;
    left: 11px !important;
    gap: 1px !important;
}

.rh1-page .rh1-destination-card__copy strong {
    font-size: 14px !important;
    font-weight: 800 !important;
}

.rh1-page .rh1-destination-card__copy small {
    font-size: 10px !important;
}

/* Footer: the legacy marketing sentence/menu is forcibly absent. */
.rh1-page .rh1-footer__brand > p,
.rh1-page .rh1-footer__description,
.rh1-page .rh1-footer-description,
.rh1-page .rh1-footer__legacy-copy,
.rh1-page .rh1-footer [data-legacy-footer-copy] {
    display: none !important;
}

.rh1-page .rh1-footer__bottom[data-rh1-clean-footer] > p {
    display: block !important;
    margin: 0 !important;
    color: rgba(255, 255, 255, .88) !important;
    font-size: 11px !important;
    font-weight: 500 !important;
}

@media (max-width: 1180px) {
    .rh1-page .rh1-container {
        width: min(1040px, calc(100% - 36px)) !important;
    }

    .rh1-page .rh1-header__inner {
        grid-template-columns: 170px minmax(410px, 1fr) auto !important;
        gap: 18px !important;
    }

    .rh1-page .rh1-main-nav {
        gap: 21px !important;
    }

    .rh1-page .rh1-native-search form > .row {
        grid-template-columns: minmax(215px, 1.16fr) minmax(200px, 1fr) minmax(215px, 1.03fr) 136px !important;
    }
}

@media (max-width: 1024px) {
    .rh1-page .rh1-listing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .rh1-page .rh1-destination-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    .rh1-page .rh1-search-shell {
        height: auto !important;
        min-height: 0 !important;
        transform: translateY(-28px) !important;
    }
}

@media (max-width: 700px) {
    .rh1-page .rh1-destination-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}


/* =============================================================
   RH1 final precision fix: search position + listing rating colours
   ============================================================= */

/* Keep the compact 68px search, but lift it slightly so the visual
   centre sits on the blue/white boundary instead of below it. */
.rh1-page .rh1-search-shell {
    transform: translateY(-60%) !important;
}

/* Slightly larger search typography without increasing the bar height. */
.rh1-page .rh1-native-search label {
    font-size: 10.5px !important;
    line-height: 1.1 !important;
}

.rh1-page .rh1-native-search .render,
.rh1-page .rh1-native-search .render input,
.rh1-page .rh1-native-search .check-in-wrapper,
.rh1-page .rh1-native-search .field-guest .render,
.rh1-page .rh1-native-search .form-date-field.rh1-date-empty .check-in-render::after,
.rh1-page .rh1-native-search .form-date-field.rh1-date-empty .check-out-render::after,
.rh1-page .rh1-native-search .form-date-field.rh1-date-empty .check-in-wrapper > span::after {
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
}

/* Accommodation card colours exactly follow the supplied mockup. */
.rh1-page .rh1-listing-card h3,
.rh1-page .rh1-listing-card h3 a,
.rh1-page .rh1-listing-card h3 a:visited {
    color: #082d72 !important;
}

.rh1-page .rh1-listing-card h3 a:hover,
.rh1-page .rh1-listing-card h3 a:focus {
    color: #0754d6 !important;
}

.rh1-page .rh1-listing-card__price,
.rh1-page .rh1-listing-card__price > span,
.rh1-page .rh1-listing-card__price strong {
    color: #082d72 !important;
}

/* A real SVG star avoids font/glyph conflicts from Traveler styles. */
.rh1-page .rh1-rating-summary {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    align-items: center !important;
    gap: 3px !important;
    color: #082d72 !important;
}

.rh1-page .rh1-rating-summary__star {
    display: inline-flex !important;
    width: 14px !important;
    height: 14px !important;
    flex: 0 0 14px !important;
    align-items: center !important;
    justify-content: center !important;
    color: #f3a607 !important;
}

.rh1-page .rh1-rating-summary__star svg {
    display: block !important;
    width: 14px !important;
    height: 14px !important;
    fill: currentColor !important;
    stroke: none !important;
}

.rh1-page .rh1-rating-summary strong {
    color: #082d72 !important;
    font-size: 10.5px !important;
}

.rh1-page .rh1-rating-summary small {
    color: #65728b !important;
    font-size: 9.5px !important;
}

@media (max-width: 1024px) {
    .rh1-page .rh1-search-shell {
        transform: translateY(-34px) !important;
    }
}


/* =============================================================
   RH1 exact boundary placement + rating always visible
   ============================================================= */
@media (min-width: 1025px) {
    /* The blue/white boundary is the bottom edge of .rh1-hero.
       The wrapper reserves exactly half the 68px search height in white,
       while the other half sits inside the blue hero. */
    .rh1-page .rh1-search-overlap {
        position: relative !important;
        z-index: 60 !important;
        height: 34px !important;
        margin: 0 !important;
        padding: 0 !important;
        background: #ffffff !important;
        overflow: visible !important;
    }

    .rh1-page .rh1-search-overlap > .rh1-container {
        position: relative !important;
        height: 34px !important;
        overflow: visible !important;
    }

    .rh1-page .rh1-search-shell {
        position: absolute !important;
        top: -34px !important;
        left: 50% !important;
        width: min(1060px, 100%) !important;
        height: 68px !important;
        min-height: 68px !important;
        margin: 0 !important;
        transform: translateX(-50%) !important;
    }

    .rh1-page .rh1-main {
        padding-top: 34px !important;
    }
}

/* The rating icon is never conditional: every accommodation card gets
   a visible gold star, including cards whose current rating is 0.0. */
.rh1-page .rh1-rating-summary {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-width: 54px !important;
    flex: 0 0 auto !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 3px !important;
    color: #082d72 !important;
    white-space: nowrap !important;
}

.rh1-page .rh1-rating-summary__star {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: auto !important;
    height: auto !important;
    flex: 0 0 auto !important;
    color: #f3a607 !important;
    font-family: Arial, "Segoe UI Symbol", sans-serif !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    text-indent: 0 !important;
}

.rh1-page .rh1-rating-summary__star::before,
.rh1-page .rh1-rating-summary__star::after {
    display: none !important;
    content: none !important;
}

.rh1-page .rh1-rating-summary strong {
    display: inline !important;
    visibility: visible !important;
    color: #082d72 !important;
}

.rh1-page .rh1-rating-summary small {
    display: inline !important;
    visibility: visible !important;
}


/* =============================================================
   RH1 authoritative rating + footer correction
   Uses the exact inline-SVG approach from the previous working cards.
   ============================================================= */
.rh1-page .rh1-listing-card__title-row {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 8px !important;
    overflow: visible !important;
}

.rh1-page .rh1-rating-summary {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-width: 58px !important;
    flex: 0 0 auto !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 3px !important;
    overflow: visible !important;
    color: #082d72 !important;
    white-space: nowrap !important;
}

.rh1-page .rh1-rating-summary__star {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 14px !important;
    height: 14px !important;
    min-width: 14px !important;
    flex: 0 0 14px !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: visible !important;
    color: #ffad0a !important;
    font-size: 0 !important;
    line-height: 0 !important;
}

.rh1-page .rh1-rating-summary__star .rh1-rating-summary__icon,
.rh1-page .rh1-rating-summary__star svg {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 14px !important;
    height: 14px !important;
    min-width: 14px !important;
    overflow: visible !important;
    color: #ffad0a !important;
    fill: #ffad0a !important;
    stroke: #ffad0a !important;
}

.rh1-page .rh1-rating-summary strong,
.rh1-page .rh1-rating-summary small {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Only this line is allowed as footer copyright. */
.rh1-page .rh1-footer__bottom > p:not(.rh1-footer__copyright),
.rh1-page .rh1-footer__brand > p,
.rh1-page .rh1-footer__description,
.rh1-page .rh1-footer-description,
.rh1-page .rh1-footer__legacy-copy,
.rh1-page .rh1-footer [data-legacy-footer-copy] {
    display: none !important;
}

.rh1-page .rh1-footer__copyright {
    display: block !important;
    margin: 0 !important;
    color: rgba(255,255,255,.9) !important;
    font-size: 11px !important;
    font-weight: 500 !important;
}



/* =============================================================
   RH1 footer restoration — keep the complete custom footer visible.
   Only the former marketing paragraph is omitted in the PHP markup.
   ============================================================= */
body.rh1-template .rh1-page .rh1-footer {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    width: 100% !important;
    min-height: 0 !important;
    overflow: visible !important;
    background: #061a3a !important;
}

body.rh1-template .rh1-page .rh1-footer > .rh1-container,
body.rh1-template .rh1-page .rh1-footer__grid,
body.rh1-template .rh1-page .rh1-footer__brand,
body.rh1-template .rh1-page .rh1-footer__column,
body.rh1-template .rh1-page .rh1-footer__bottom,
body.rh1-template .rh1-page .rh1-payment-marks {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

body.rh1-template .rh1-page .rh1-footer > .rh1-container {
    flex-direction: column !important;
}

body.rh1-template .rh1-page .rh1-footer__grid {
    display: grid !important;
}

body.rh1-template .rh1-page .rh1-footer__brand,
body.rh1-template .rh1-page .rh1-footer__column {
    flex-direction: column !important;
}

body.rh1-template .rh1-page .rh1-footer__bottom {
    align-items: center !important;
    justify-content: space-between !important;
}

body.rh1-template .rh1-page .rh1-footer__copyright,
body.rh1-template .rh1-page .rh1-payment-icon,
body.rh1-template .rh1-page .rh1-footer__logo,
body.rh1-template .rh1-page .rh1-footer__socials,
body.rh1-template .rh1-page .rh1-footer__column h3,
body.rh1-template .rh1-page .rh1-footer__column a,
body.rh1-template .rh1-page .rh1-footer__column > span {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

body.rh1-template .rh1-page .rh1-footer__copyright {
    display: block !important;
}

/* The removed marketing paragraph stays absent; do not hide the footer itself. */
body.rh1-template .rh1-page .rh1-footer__brand > p,
body.rh1-template .rh1-page .rh1-footer__description,
body.rh1-template .rh1-page .rh1-footer-description,
body.rh1-template .rh1-page .rh1-footer__legacy-copy,
body.rh1-template .rh1-page .rh1-footer [data-legacy-footer-copy] {
    display: none !important;
}

@media (max-width: 767px) {
    body.rh1-template .rh1-page .rh1-footer__bottom {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
}


/* =============================================================
   RH1 footer bottom alignment — copyright left, payments right
   ============================================================= */
body.rh1-template .rh1-page .rh1-footer__bottom[data-rh1-clean-footer] {
    display: flex !important;
    width: 100% !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 24px !important;
}

body.rh1-template .rh1-page .rh1-footer__bottom[data-rh1-clean-footer] .rh1-footer__copyright {
    flex: 0 1 auto !important;
    margin: 0 !important;
    text-align: left !important;
}

body.rh1-template .rh1-page .rh1-footer__bottom[data-rh1-clean-footer] .rh1-payment-marks {
    display: flex !important;
    flex: 0 0 auto !important;
    align-items: center !important;
    justify-content: flex-end !important;
    margin-left: auto !important;
}

@media (max-width: 767px) {
    body.rh1-template .rh1-page .rh1-footer__bottom[data-rh1-clean-footer] {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    body.rh1-template .rh1-page .rh1-footer__bottom[data-rh1-clean-footer] .rh1-payment-marks {
        justify-content: flex-start !important;
        margin-left: 0 !important;
    }
}


/* =============================================================
   RH1 FINAL HEADER / SEARCH BOUNDARY / FOOTER FIX
   This block intentionally comes last and overrides older attempts.
   ============================================================= */
@media (min-width: 1025px) {
    body.rh1-template .rh1-page .rh1-hero {
        min-height: 492px !important;
        background-color: #073b8f !important;
    }

    /* Lower and enlarge the header slightly without reintroducing a divider. */
    body.rh1-template .rh1-page .rh1-header {
        height: 88px !important;
        padding-top: 8px !important;
        border: 0 !important;
        border-bottom: 0 !important;
        box-shadow: none !important;
    }

    body.rh1-template .rh1-page .rh1-header__inner {
        height: 80px !important;
        grid-template-columns: 190px minmax(450px, 1fr) auto !important;
        gap: 26px !important;
        border: 0 !important;
    }

    body.rh1-template .rh1-page .rh1-logo__image {
        max-width: 184px !important;
        max-height: 52px !important;
    }

    body.rh1-template .rh1-page .rh1-main-nav {
        gap: 30px !important;
    }

    body.rh1-template .rh1-page .rh1-main-nav__item {
        min-height: 44px !important;
        gap: 9px !important;
        padding-bottom: 9px !important;
        font-size: 14px !important;
        font-weight: 650 !important;
    }

    body.rh1-template .rh1-page .rh1-main-nav__icon {
        width: 23px !important;
        height: 23px !important;
        flex: 0 0 23px !important;
        stroke-width: 1.35 !important;
    }

    body.rh1-template .rh1-page .rh1-main-nav__icon *,
    body.rh1-template .rh1-page .rh1-main-nav__item svg * {
        stroke-width: 1.35 !important;
        vector-effect: non-scaling-stroke !important;
    }

    body.rh1-template .rh1-page .rh1-header-tools__divider {
        display: none !important;
    }

    body.rh1-template .rh1-page .rh1-hero__content {
        padding-top: 48px !important;
        padding-bottom: 56px !important;
    }

    /*
     * The search is contained in a 68px transition strip.
     * The first 40px are blue and the remaining 28px are white, so the
     * search visibly rests on the blue/white boundary with slightly more
     * blue behind it, as requested.
     */
    body.rh1-template .rh1-page .rh1-search-overlap {
        position: relative !important;
        z-index: 60 !important;
        height: 68px !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: visible !important;
        background: linear-gradient(
            to bottom,
            #073b8f 0,
            #073b8f 40px,
            #ffffff 40px,
            #ffffff 100%
        ) !important;
    }

    body.rh1-template .rh1-page .rh1-search-overlap > .rh1-container {
        position: relative !important;
        height: 68px !important;
        overflow: visible !important;
    }

    body.rh1-template .rh1-page .rh1-search-shell {
        position: absolute !important;
        z-index: 65 !important;
        top: 0 !important;
        left: 50% !important;
        width: min(1040px, calc(100% - 24px)) !important;
        height: 68px !important;
        min-height: 68px !important;
        margin: 0 !important;
        transform: translateX(-50%) !important;
        border-width: 2px !important;
    }

    body.rh1-template .rh1-page .rh1-main {
        padding-top: 14px !important;
    }
}

/* Footer bottom: copyright fixed left, payment methods fixed right. */
body.rh1-template .rh1-page .rh1-footer__bottom[data-rh1-clean-footer] {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    width: 100% !important;
    align-items: center !important;
    justify-content: stretch !important;
    gap: 28px !important;
}

body.rh1-template .rh1-page .rh1-footer__bottom[data-rh1-clean-footer] .rh1-footer__copyright {
    display: block !important;
    justify-self: start !important;
    margin: 0 !important;
    color: rgba(255, 255, 255, .92) !important;
    text-align: left !important;
    white-space: nowrap !important;
}

body.rh1-template .rh1-page .rh1-footer__bottom[data-rh1-clean-footer] .rh1-payment-marks {
    display: flex !important;
    justify-self: end !important;
    align-items: center !important;
    justify-content: flex-end !important;
    margin: 0 !important;
}

@media (max-width: 767px) {
    body.rh1-template .rh1-page .rh1-footer__bottom[data-rh1-clean-footer] {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    body.rh1-template .rh1-page .rh1-footer__bottom[data-rh1-clean-footer] .rh1-footer__copyright {
        white-space: normal !important;
    }

    body.rh1-template .rh1-page .rh1-footer__bottom[data-rh1-clean-footer] .rh1-payment-marks {
        justify-content: flex-start !important;
    }
}

/* =============================================================
   RH1 final hero title and Booking-style search overlap
   ============================================================= */
.rh1-page .rh1-hero__title {
    max-width: 720px !important;
}

.rh1-page .rh1-hero__title-line {
    display: block;
}

.rh1-page .rh1-hero__title-line--first {
    white-space: nowrap;
}

@media (min-width: 1025px) {
    /* Half of the search remains on the blue hero and half on white. */
    body.rh1-template .rh1-page .rh1-search-overlap {
        position: relative !important;
        z-index: 60 !important;
        height: 34px !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: visible !important;
        background: #ffffff !important;
    }

    body.rh1-template .rh1-page .rh1-search-overlap > .rh1-container {
        position: relative !important;
        height: 34px !important;
        overflow: visible !important;
    }

    body.rh1-template .rh1-page .rh1-search-shell {
        position: absolute !important;
        z-index: 65 !important;
        top: -34px !important;
        left: 50% !important;
        width: min(1040px, calc(100% - 24px)) !important;
        height: 68px !important;
        min-height: 68px !important;
        margin: 0 !important;
        transform: translateX(-50%) !important;
        border-width: 2px !important;
    }

    body.rh1-template .rh1-page .rh1-main {
        padding-top: 32px !important;
    }
}

@media (max-width: 1024px) {
    .rh1-page .rh1-hero__title-line--first {
        white-space: normal;
    }

    body.rh1-template .rh1-page .rh1-search-overlap {
        height: auto !important;
        padding: 0 0 22px !important;
        background: #ffffff !important;
    }

    body.rh1-template .rh1-page .rh1-search-overlap > .rh1-container {
        height: auto !important;
    }

    body.rh1-template .rh1-page .rh1-search-shell {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: 100% !important;
        margin: 0 auto !important;
        transform: translateY(-28px) !important;
    }
}

/* =============================================================
   RH1 final adjustment — blue lower cover and raised search
   ============================================================= */
@media (min-width: 1025px) {
    /* Raise the blue/white boundary without compressing the hero content. */
    body.rh1-template .rh1-page .rh1-hero {
        min-height: 472px !important;
    }

    /* Solid blue lower band: the hotel/house image can no longer show
       through behind the search area. */
    body.rh1-template .rh1-page .rh1-hero::after {
        position: absolute !important;
        z-index: 2 !important;
        right: 0 !important;
        bottom: 0 !important;
        left: 0 !important;
        height: 96px !important;
        background: #073b8f !important;
        content: "" !important;
        pointer-events: none !important;
    }

    body.rh1-template .rh1-page .rh1-hero__content {
        position: relative !important;
        z-index: 3 !important;
    }

    /* Place 44px of the 68px search bar on blue and 24px on white. */
    body.rh1-template .rh1-page .rh1-search-overlap {
        height: 24px !important;
    }

    body.rh1-template .rh1-page .rh1-search-overlap > .rh1-container {
        height: 24px !important;
    }

    body.rh1-template .rh1-page .rh1-search-shell {
        top: -44px !important;
    }

    body.rh1-template .rh1-page .rh1-main {
        padding-top: 28px !important;
    }
}

/* =============================================================
   RH1 final correction — solid blue hero, no background image
   The hero/header area must remain entirely blue.
   ============================================================= */
body.rh1-template .rh1-page .rh1-hero {
    background-color: #073b8f !important;
    background-image: none !important;
}

body.rh1-template .rh1-page .rh1-hero::before {
    display: none !important;
    background-image: none !important;
    content: none !important;
}

body.rh1-template .rh1-page .rh1-hero__overlay {
    background: #073b8f !important;
}

/* =============================================================
   RH1 search field icons, native calendar trigger and benefit cards
   ============================================================= */
body.rh1-template .rh1-page .rh1-native-search .rh1-search-field-icon {
    display: block !important;
    flex: 0 0 auto !important;
    color: #0754d6 !important;
    stroke: currentColor !important;
}

body.rh1-template .rh1-page .rh1-native-search .rh1-search-field-icon--bed,
body.rh1-template .rh1-page .rh1-native-search .rh1-search-field-icon--calendar,
body.rh1-template .rh1-page .rh1-native-search .rh1-search-field-icon--person {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    margin: 0 10px 0 0 !important;
}

body.rh1-template .rh1-page .rh1-native-search .form-date-field[data-rh1-native-calendar="1"] {
    cursor: pointer !important;
    outline: none !important;
}

body.rh1-template .rh1-page .rh1-native-search .form-date-field[data-rh1-native-calendar="1"]:focus-visible {
    border-radius: 10px !important;
    box-shadow: 0 0 0 3px rgba(7, 84, 214, .16) !important;
}

body.rh1-template .daterangepicker {
    z-index: 99999 !important;
}

body.rh1-template .rh1-page .rh1-benefits {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 14px !important;
    margin: 20px 0 38px !important;
    padding: 0 !important;
}

body.rh1-template .rh1-page .rh1-benefit {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 46px minmax(0, 1fr) !important;
    align-items: start !important;
    gap: 14px !important;
    min-height: 118px !important;
    padding: 18px 17px !important;
    overflow: hidden !important;
    border: 1px solid #dbe5f2 !important;
    border-radius: 14px !important;
    background: #ffffff !important;
    box-shadow: 0 8px 22px rgba(9, 44, 105, .055) !important;
}

body.rh1-template .rh1-page .rh1-benefit::before {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;
    height: 3px !important;
    background: #0754d6 !important;
    content: "" !important;
}

body.rh1-template .rh1-page .rh1-benefit__icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    border: 1px solid #dbe8fb !important;
    border-radius: 12px !important;
    background: #eef5ff !important;
    color: #0754d6 !important;
}

body.rh1-template .rh1-page .rh1-benefit__icon svg {
    width: 23px !important;
    height: 23px !important;
}

body.rh1-template .rh1-page .rh1-benefit__copy {
    display: grid !important;
    gap: 6px !important;
    min-width: 0 !important;
    padding-top: 1px !important;
}

body.rh1-template .rh1-page .rh1-benefit strong {
    color: #082d72 !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
}

body.rh1-template .rh1-page .rh1-benefit small {
    color: #65738c !important;
    font-size: 11.5px !important;
    font-weight: 500 !important;
    line-height: 1.45 !important;
}

@media (max-width: 1180px) {
    body.rh1-template .rh1-page .rh1-benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 680px) {
    body.rh1-template .rh1-page .rh1-benefits {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        margin-top: 8px !important;
    }

    body.rh1-template .rh1-page .rh1-benefit {
        min-height: 0 !important;
    }
}


/* =============================================================
   RH1 correction — force requested SVG field icons and remove glow
   ============================================================= */
body.rh1-template .rh1-page .rh1-native-search .field-detination > .stt-icon,
body.rh1-template .rh1-page .rh1-native-search .destination-search .field-detination > .stt-icon,
body.rh1-template .rh1-page .rh1-native-search .form-date-field .date-item-wrapper > .stt-icon,
body.rh1-template .rh1-page .rh1-native-search .form-date-field > .date-item-arrow,
body.rh1-template .rh1-page .rh1-native-search .field-guest > .form-extra-field > .stt-icon {
    display: none !important;
}

body.rh1-template .rh1-page .rh1-native-search .field-detination > .rh1-search-field-icon--bed,
body.rh1-template .rh1-page .rh1-native-search .form-date-field > .rh1-search-field-icon--calendar,
body.rh1-template .rh1-page .rh1-native-search .field-guest > .form-extra-field > .rh1-search-field-icon--person {
    display: block !important;
    flex: 0 0 24px !important;
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    margin: 0 14px 0 0 !important;
    color: #0754d6 !important;
    stroke: currentColor !important;
}

body.rh1-template .rh1-page .rh1-search-shell,
body.rh1-template .rh1-page .rh1-search-shell:hover,
body.rh1-template .rh1-page .rh1-search-shell:focus-within,
body.rh1-template .rh1-page .rh1-benefit,
body.rh1-template .rh1-page .rh1-benefit:hover,
body.rh1-template .rh1-page .rh1-benefit:focus-within {
    box-shadow: none !important;
    filter: none !important;
    text-shadow: none !important;
}

body.rh1-template .rh1-page .rh1-native-search .form-date-field[data-rh1-native-calendar="1"]:focus-visible {
    box-shadow: none !important;
    outline: 2px solid #0754d6 !important;
    outline-offset: 3px !important;
}

/* =============================================================
   RH1 definitive cleanup — remove every legacy Traveler field icon
   ============================================================= */
body.rh1-template .rh1-page .rh1-native-search .reservaline-field-svg,
body.rh1-template .rh1-page .rh1-native-search .field-detination > .stt-icon,
body.rh1-template .rh1-page .rh1-native-search .form-date-field .stt-icon,
body.rh1-template .rh1-page .rh1-native-search .field-guest > .form-extra-field > .stt-icon,
body.rh1-template .rh1-page .rh1-native-search .field-detination > .input-icon,
body.rh1-template .rh1-page .rh1-native-search .form-date-field > .input-icon,
body.rh1-template .rh1-page .rh1-native-search .field-guest > .form-extra-field > .input-icon,
body.rh1-template .rh1-page .rh1-native-search .field-detination > .field-icon,
body.rh1-template .rh1-page .rh1-native-search .form-date-field > .field-icon,
body.rh1-template .rh1-page .rh1-native-search .field-guest > .form-extra-field > .field-icon {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

body.rh1-template .rh1-page .rh1-native-search .rh1-search-field-icon--bed,
body.rh1-template .rh1-page .rh1-native-search .rh1-search-field-icon--calendar,
body.rh1-template .rh1-page .rh1-native-search .rh1-search-field-icon--person {
    display: block !important;
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    overflow: visible !important;
}

/* =============================================================
   RH1 correction — align search and benefit accents with header blue
   ============================================================= */
body.rh1-template .rh1-page .rh1-search-shell,
body.rh1-template .rh1-page .rh1-search-shell:hover,
body.rh1-template .rh1-page .rh1-search-shell:focus-within {
    border-color: #073b8f !important;
}

body.rh1-template .rh1-page .rh1-native-search .rh1-search-field-icon--bed,
body.rh1-template .rh1-page .rh1-native-search .rh1-search-field-icon--calendar,
body.rh1-template .rh1-page .rh1-native-search .rh1-search-field-icon--person,
body.rh1-template .rh1-page .rh1-native-search .destination-search > .form-group > svg,
body.rh1-template .rh1-page .rh1-native-search .field-detination > svg,
body.rh1-template .rh1-page .rh1-native-search .form-date-field > svg,
body.rh1-template .rh1-page .rh1-native-search .field-guest > svg,
body.rh1-template .rh1-page .rh1-native-search .field-guest > .form-extra-field > svg {
    color: #073b8f !important;
    stroke: currentColor !important;
}

body.rh1-template .rh1-page .rh1-benefit::before {
    background: #073b8f !important;
}

body.rh1-template .rh1-page .rh1-benefit__icon {
    color: #073b8f !important;
}

body.rh1-template .rh1-page .rh1-native-search .form-date-field[data-rh1-native-calendar="1"]:focus-visible {
    outline-color: #073b8f !important;
}

/* =============================================================
   RH1 final colour alignment — calendar, guest and destination text
   ============================================================= */
body.rh1-template .rh1-page .rh1-native-search .form-date-field svg,
body.rh1-template .rh1-page .rh1-native-search .form-date-field svg *,
body.rh1-template .rh1-page .rh1-native-search .field-guest svg,
body.rh1-template .rh1-page .rh1-native-search .field-guest svg *,
body.rh1-template .rh1-page .rh1-native-search .rh1-search-field-icon--calendar,
body.rh1-template .rh1-page .rh1-native-search .rh1-search-field-icon--calendar *,
body.rh1-template .rh1-page .rh1-native-search .rh1-search-field-icon--person,
body.rh1-template .rh1-page .rh1-native-search .rh1-search-field-icon--person * {
    color: #073b8f !important;
    stroke: #073b8f !important;
}

body.rh1-template .rh1-page .rh1-native-search .form-date-field [class*="stt-icon"],
body.rh1-template .rh1-page .rh1-native-search .field-guest [class*="stt-icon"],
body.rh1-template .rh1-page .rh1-native-search .form-date-field [class*="stt-icon"]::before,
body.rh1-template .rh1-page .rh1-native-search .field-guest [class*="stt-icon"]::before {
    color: #073b8f !important;
    border-color: #073b8f !important;
}

body.rh1-template .rh1-page .rh1-native-search input[name="location_name"],
body.rh1-template .rh1-page .rh1-native-search .destination-search .render,
body.rh1-template .rh1-page .rh1-native-search .field-detination .render {
    color: #073b8f !important;
    -webkit-text-fill-color: #073b8f !important;
}

body.rh1-template .rh1-page .rh1-native-search input[name="location_name"]::placeholder,
body.rh1-template .rh1-page .rh1-native-search .destination-search input::placeholder,
body.rh1-template .rh1-page .rh1-native-search .field-detination input::placeholder {
    color: #073b8f !important;
    -webkit-text-fill-color: #073b8f !important;
    opacity: 1 !important;
}

/* =============================================================
   RH1 correction — gold icons, matching the former search border
   ============================================================= */
body.rh1-template .rh1-page .rh1-native-search .rh1-search-field-icon--bed,
body.rh1-template .rh1-page .rh1-native-search .rh1-search-field-icon--bed *,
body.rh1-template .rh1-page .rh1-native-search .rh1-search-field-icon--calendar,
body.rh1-template .rh1-page .rh1-native-search .rh1-search-field-icon--calendar *,
body.rh1-template .rh1-page .rh1-native-search .rh1-search-field-icon--person,
body.rh1-template .rh1-page .rh1-native-search .rh1-search-field-icon--person *,
body.rh1-template .rh1-page .rh1-native-search .destination-search > .form-group > svg,
body.rh1-template .rh1-page .rh1-native-search .destination-search > .form-group > svg *,
body.rh1-template .rh1-page .rh1-native-search .field-detination > svg,
body.rh1-template .rh1-page .rh1-native-search .field-detination > svg *,
body.rh1-template .rh1-page .rh1-native-search .form-date-field > svg,
body.rh1-template .rh1-page .rh1-native-search .form-date-field > svg *,
body.rh1-template .rh1-page .rh1-native-search .field-guest > svg,
body.rh1-template .rh1-page .rh1-native-search .field-guest > svg *,
body.rh1-template .rh1-page .rh1-native-search .field-guest > .form-extra-field > svg,
body.rh1-template .rh1-page .rh1-native-search .field-guest > .form-extra-field > svg * {
    color: #e6ad18 !important;
    stroke: #e6ad18 !important;
}

body.rh1-template .rh1-page .rh1-native-search .form-date-field [class*="stt-icon"],
body.rh1-template .rh1-page .rh1-native-search .field-guest [class*="stt-icon"],
body.rh1-template .rh1-page .rh1-native-search .form-date-field [class*="stt-icon"]::before,
body.rh1-template .rh1-page .rh1-native-search .field-guest [class*="stt-icon"]::before {
    color: #e6ad18 !important;
    border-color: #e6ad18 !important;
}



/* =============================================================
   Reservaline desktop home - gold search-bar border
   Match the search shell border to the gold used by the field icons.
   ============================================================= */
@media (min-width: 1025px) {
    body.rh1-template .rh1-page .rh1-search-shell,
    body.rh1-template .rh1-page .rh1-search-shell:hover,
    body.rh1-template .rh1-page .rh1-search-shell:focus-within {
        border: 1.5px solid #e6ad18 !important;
        border-color: #e6ad18 !important;
    }
}


/* =============================================================
   Reservaline home — lighter primary search-field labels
   Keep the three instructional labels readable without bold weight.
   ============================================================= */
body.rh1-template .rh1-page .rh1-native-search .destination-search > .form-group > label,
body.rh1-template .rh1-page .rh1-native-search .field-detination > label,
body.rh1-template .rh1-page .rh1-native-search .form-date-field > label,
body.rh1-template .rh1-page .rh1-native-search .form-date-field .check-in-wrapper > label,
body.rh1-template .rh1-page .rh1-native-search .field-guest > label,
body.rh1-template .rh1-page .rh1-native-search .field-guest > .form-extra-field > label {
    font-weight: 400 !important;
}

/* RH1 search labels — all three summaries use normal weight, including nested Traveler wrappers. */
body.rh1-template .rh1-page .rh1-native-search .destination-search .st-form-dropdown-icon > label,
body.rh1-template .rh1-page .rh1-native-search .field-detination .st-form-dropdown-icon > label,
body.rh1-template .rh1-page .rh1-native-search .form-date-field .st-form-dropdown-icon > label,
body.rh1-template .rh1-page .rh1-native-search .field-guest .st-form-dropdown-icon > label,
body.rh1-template .rh1-page .rh1-native-search .field-guest .form-extra-field .st-form-dropdown-icon > label {
    font-weight: 400 !important;
}

/* RH1 destination hierarchy — countries are primary rows, cities/children are visibly nested. */
body.rh1-template .rh1-page .rh1-native-search .destination-search .rh1-location-tree .rh1-location-item {
    display: flex;
    min-height: 40px;
    padding-left: calc(14px + (var(--rh1-location-depth, 0) * 24px)) !important;
    padding-right: 14px !important;
    align-items: center;
    gap: 9px;
    border-radius: 7px;
    white-space: normal;
}

body.rh1-template .rh1-page .rh1-native-search .destination-search .rh1-location-tree .rh1-location-country {
    margin-top: 4px;
    background: #f5f8fd;
    color: #0b3475;
    font-weight: 700;
}

body.rh1-template .rh1-page .rh1-native-search .destination-search .rh1-location-tree .rh1-location-city {
    background: transparent;
    color: #40536f;
    font-weight: 400;
}

body.rh1-template .rh1-page .rh1-native-search .destination-search .rh1-location-tree .rh1-location-city .rh1-location-item__icon {
    opacity: .62;
    transform: scale(.88);
}

body.rh1-template .rh1-page .rh1-native-search .destination-search .rh1-location-tree .rh1-location-item:hover,
body.rh1-template .rh1-page .rh1-native-search .destination-search .rh1-location-tree .rh1-location-item:focus {
    background: #edf3fc;
}


/* =============================================================
   Reservaline home — Booking-style active destinations
   City is primary; country is secondary text underneath.
   ============================================================= */
body.rh1-template .rh1-page .rh1-native-search .destination-search .rh1-booking-location {
    display: flex !important;
    align-items: center !important;
    gap: 11px !important;
    min-height: 54px !important;
    padding: 8px 14px !important;
    background: #fff !important;
    color: #1f2f46 !important;
    font-weight: 400 !important;
    border-radius: 8px !important;
    white-space: normal !important;
}
body.rh1-template .rh1-page .rh1-native-search .destination-search .rh1-booking-location + .rh1-booking-location {
    margin-top: 2px !important;
}
body.rh1-template .rh1-page .rh1-native-search .destination-search .rh1-booking-location__copy {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    min-width: 0 !important;
    line-height: 1.2 !important;
}
body.rh1-template .rh1-page .rh1-native-search .destination-search .rh1-booking-location__city {
    display: block !important;
    color: #17243a !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
}
body.rh1-template .rh1-page .rh1-native-search .destination-search .rh1-booking-location__country {
    display: block !important;
    margin-top: 3px !important;
    color: #708096 !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    line-height: 1.25 !important;
}
body.rh1-template .rh1-page .rh1-native-search .destination-search .rh1-booking-location .rh1-location-item__icon {
    flex: 0 0 auto !important;
    opacity: .72 !important;
    transform: none !important;
}
body.rh1-template .rh1-page .rh1-native-search .destination-search .rh1-booking-location:hover,
body.rh1-template .rh1-page .rh1-native-search .destination-search .rh1-booking-location:focus {
    background: #f3f7fd !important;
}

/* =============================================================
   RH1 destination dropdown — stable Booking-style rows
   Reset Traveler icon-font positioning so city/country suggestions never
   overlap and keep the marker close to the copy.
   ============================================================= */
body.rh1-template .rh1-page .rh1-native-search .destination-search .dropdown-menu.rh1-location-open,
body.rh1-template .rh1-page .rh1-native-search .destination-search .dropdown-menu.show {
    display: block !important;
}

body.rh1-template .rh1-page .rh1-native-search .destination-search ul.rh1-booking-location-list {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

body.rh1-template .rh1-page .rh1-native-search .destination-search ul.rh1-booking-location-list > .rh1-booking-location {
    position: relative !important;
    inset: auto !important;
    float: none !important;
    clear: both !important;
    display: grid !important;
    grid-template-columns: 22px minmax(0, 1fr) !important;
    column-gap: 9px !important;
    align-items: center !important;
    width: 100% !important;
    min-height: 58px !important;
    margin: 0 !important;
    padding: 8px 10px !important;
    line-height: normal !important;
    transform: none !important;
    overflow: visible !important;
}

body.rh1-template .rh1-page .rh1-native-search .destination-search ul.rh1-booking-location-list > .rh1-booking-location + .rh1-booking-location {
    margin-top: 2px !important;
}

body.rh1-template .rh1-page .rh1-native-search .destination-search .rh1-booking-location .rh1-location-item__icon {
    position: static !important;
    inset: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    align-self: center !important;
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #e6ad18 !important;
    opacity: 1 !important;
    transform: none !important;
}

body.rh1-template .rh1-page .rh1-native-search .destination-search .rh1-booking-location .rh1-location-item__svg {
    position: static !important;
    inset: auto !important;
    display: block !important;
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    margin: 0 !important;
    padding: 0 !important;
    color: inherit !important;
    stroke: currentColor !important;
    transform: none !important;
}

body.rh1-template .rh1-page .rh1-native-search .destination-search .rh1-booking-location__copy {
    position: static !important;
    inset: auto !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: normal !important;
    transform: none !important;
}

body.rh1-template .rh1-page .rh1-native-search .destination-search .rh1-booking-location__city,
body.rh1-template .rh1-page .rh1-native-search .destination-search .rh1-booking-location__country {
    position: static !important;
    inset: auto !important;
    float: none !important;
    width: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 0 !important;
    transform: none !important;
}

body.rh1-template .rh1-page .rh1-native-search .destination-search .rh1-booking-location__city {
    margin-top: 0 !important;
    margin-bottom: 1px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
}

body.rh1-template .rh1-page .rh1-native-search .destination-search .rh1-booking-location__country {
    margin-top: 1px !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    line-height: 1.2 !important;
}

body.rh1-template .rh1-page .rh1-native-search .destination-search .rh1-location-empty {
    display: block !important;
    padding: 14px 12px !important;
    color: #718096 !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    list-style: none !important;
}


/* RH1 instant destination autocomplete — keyboard/mouse active suggestion. */
body.rh1-template .rh1-page .rh1-native-search .destination-search .rh1-booking-location.rh1-location-active,
body.rh1-template .rh1-page .rh1-native-search .destination-search .rh1-booking-location[aria-selected="true"] {
    background: #edf3fc !important;
    outline: none !important;
}
