﻿/* ============================================================
   Helle Hollis Landing D Group — Vanilla CSS
   ============================================================ */

html, body { margin: 0; padding: 0; overflow-x: hidden; touch-action: auto; }
body {
  background: #fff;
  color: var(--hh-ink);
  font-family: var(--hh-font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, p { margin: 0; }
img { display: block; }
a { color: inherit; }

.app{
    max-width: 99999999px;
}
/* image-slot polish */
image-slot {
    --is-bg: #DCEAEF;
    --is-fg: #6E6E6E;
}

/* Datepicker overlay (same pattern as index.aspx) */
.datepickerbackground {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 900;
}
.hidden { display: none !important; }
body.body-background { overflow: hidden; }

#ui-datepicker-div {
  z-index: 1000 !important;
  box-sizing: border-box;
  border: 1px solid var(--hh-line) !important;
  border-radius: 14px !important;
  background: #FFFFFF !important;
  box-shadow: 0 18px 50px rgba(24, 31, 77, 0.18) !important;
  padding: 14px !important;
  font-family: var(--hh-font-sans) !important;
}

#ui-datepicker-div .ui-datepicker-header {
  border: 0 !important;
  background: transparent !important;
  color: var(--hh-ink) !important;
  padding: 0 34px 12px !important;
}

#ui-datepicker-div .ui-datepicker-title {
  font-size: 15px !important;
  font-weight: 800 !important;
  line-height: 28px !important;
}

#ui-datepicker-div .ui-datepicker-calendar {
  margin: 0 !important;
}

#ui-datepicker-div .ui-datepicker-calendar th {
  color: #57A7D2 !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  padding: 8px 4px !important;
}

#ui-datepicker-div .ui-datepicker-calendar td {
  padding: 3px !important;
}

#ui-datepicker-div .ui-datepicker-calendar td a,
#ui-datepicker-div .ui-datepicker-calendar td span {
  box-sizing: border-box;
  min-width: 34px;
  min-height: 34px;
  border: 0 !important;
  border-radius: 999px !important;
  background: transparent !important;
  color: var(--hh-ink) !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  text-align: center !important;
  font-size: 14px !important;
  font-weight: 700 !important;
}

#ui-datepicker-div .ui-datepicker-calendar td a:hover,
#ui-datepicker-div .ui-datepicker-calendar .ui-state-hover {
  background: #FFF4DF !important;
  color: var(--hh-ink) !important;
}

#ui-datepicker-div .ui-datepicker-current-day,
#ui-datepicker-div .ui-datepicker-current-day a,
#ui-datepicker-div .ui-state-active {
  background: #FDB23A !important;
  color: #1A1A1A !important;
}

#ui-datepicker-div .ui-datepicker-today a {
  box-shadow: inset 0 0 0 2px #57A7D2 !important;
}

#ui-datepicker-div .ui-datepicker-prev,
#ui-datepicker-div .ui-datepicker-next {
  top: 4px !important;
  width: 28px !important;
  height: 28px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: transparent !important;
  transform: none !important;
  cursor: pointer;
}

#ui-datepicker-div .ui-datepicker-prev { left: 6px !important; }
#ui-datepicker-div .ui-datepicker-next { right: 6px !important; }

#ui-datepicker-div .ui-datepicker-prev:hover,
#ui-datepicker-div .ui-datepicker-next:hover {
  background: #FDB23A !important;
  border: 0 !important;
}

#ui-datepicker-div .ui-datepicker-prev span,
#ui-datepicker-div .ui-datepicker-next span {
  display: none !important;
}

#ui-datepicker-div .ui-datepicker-prev::before,
#ui-datepicker-div .ui-datepicker-next::before {
  content: "";
  position: absolute;
  top: 9px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #1A1A1A;
  border-right: 2px solid #1A1A1A;
}

#ui-datepicker-div .ui-datepicker-prev::before {
  left: 11px;
  transform: rotate(-135deg);
}

#ui-datepicker-div .ui-datepicker-next::before {
  right: 11px;
  transform: rotate(45deg);
}

.TimePicker__group {
    width: 80%;
}

.TimePicker__group__select {
    max-width: 48px;
    scrollbar-color: #fdb23a #fff4df;
    scrollbar-width: thin;
}

    .TimePicker__group__select::-webkit-scrollbar {
        width: 8px;
    }

.TimePicker__group__select::-webkit-scrollbar-track {
    background: #fff4df;
}

.TimePicker__group__select::-webkit-scrollbar-thumb {
    background: #fdb23a;
    border-radius: 999px;
}

.TimePicker__group__select option:checked,
.TimePicker__group__select option:hover {
    background: #fdb23a;
    color: #1a1a1a;
}

.landing-time-dropdown .select2-results > .select2-results__options {
    max-height: 150px;
    overflow-y: auto;
    scrollbar-color: #fdb23a #fff4df;
    scrollbar-width: thin;
}

.landing-time-dropdown .select2-results > .select2-results__options::-webkit-scrollbar {
    width: 8px;
}

.landing-time-dropdown .select2-results > .select2-results__options::-webkit-scrollbar-track {
    background: #fff4df;
}

.landing-time-dropdown .select2-results > .select2-results__options::-webkit-scrollbar-thumb {
    background: #fdb23a;
    border-radius: 999px;
}

.landing-time-dropdown .select2-results__option--highlighted[aria-selected],
.landing-time-dropdown .select2-results__option[aria-selected=true] {
    background: #fdb23a !important;
    color: #1a1a1a !important;
}
.datepicker_mobile {
    width: 320px !important;
    min-width: 320px !important;
}

/* ─── Container ─────────────────────────────────────────── */
.hh-container { max-width: 1280px; margin: 0 auto; width: 100%; box-sizing: border-box; }

/* ─── Buttons ───────────────────────────────────────────── */
.hh-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border: none; cursor: pointer; font-family: var(--hh-font-sans); font-size: 16px;
  font-weight: 600; padding: 14px 28px; border-radius: var(--hh-radius-button);
  transition: background 120ms cubic-bezier(0.2,0,0,1), transform 120ms, box-shadow 120ms;
  white-space: nowrap; text-decoration: none;
}
.hh-btn--large { font-size: 18px; padding: 18px 36px; }
.hh-btn--amber {
  background: #FDB23A; color: #1A1A1A;
  box-shadow: 0 2px 6px rgba(253,178,58,0.25);
}
.hh-btn--amber:hover {
  box-shadow: 0 6px 18px rgba(253,178,58,0.35);
}

/* ─── Header ────────────────────────────────────────────── */
.hh-header { position: relative; background: transparent; padding: 0 48px; z-index: 50; }
.hh-header__logoBar { position: relative; background: transparent; margin: 0 -48px; padding: 0 48px; height: 0; }
.hh-header__logoWrap { max-width: 1280px; margin: 0 auto; position: relative; display: flex; justify-content: flex-end; }
.hh-header__logo { width: 168px; height: 168px; display: block; cursor: pointer; margin-top: 8px; filter: drop-shadow(0 6px 16px rgba(0,0,0,0.22)); }
.hh-langTopLeft {
  position: absolute;
  top: 18px;
  left: 48px;
  z-index: 100;
  min-width: 150px;
}
.hh-langTopLeft .wrapperContent--desktop {
  left: 0;
  right: auto;
}

@media only screen and (max-width: 640px) {
  .hh-langTopLeft {
    top: 12px;
    left: 14px;
    min-width: 128px;
  }
}

/* ─── Hero ──────────────────────────────────────────────── */
.hh-hero { position: relative; background: linear-gradient(180deg, #BEDDF1 0%, #DCEAEF 40%, #F4E2C0 100%); isolation: isolate; overflow: hidden; }
.hh-hero__photo { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hh-hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center center; display: block; }
.hh-hero__scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hh-hero__inner { position: relative; z-index: 2; max-width: 1280px; min-height: min(820px, 100vh); box-sizing: border-box; margin: 0 auto; padding: 48px 48px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 48px; align-items: center; pointer-events: none; }
.hh-hero__content { max-width: 600px; min-width: 0; width: 100%; box-sizing: border-box; pointer-events: auto; }
.hh-hero__headline { font-size: 56px; line-height: 1.05; font-weight: 800; margin: 0; color: var(--hh-ink); letter-spacing: -0.015em; }
.hh-hero__sub { margin-top: 18px; font-size: 18px; line-height: 1.5; color: var(--hh-fg-2); max-width: 540px; }

.hh-hero__bookingCard { margin-top: 28px; background: #fff; border: 1px solid var(--hh-line); border-radius: 12px; padding: 22px 24px 24px; box-shadow: var(--hh-shadow-2); position: relative; overflow: hidden; max-width: 540px; }
.hh-hero__bookingTopBar { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: #FDB23A; }

.hh-fieldLabel { font-size: 13px; font-weight: 700; color: var(--hh-ink); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; display: block; }

.hh-placeRow { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.hh-placeBtn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 14px; border-radius: 6px; font-size: 14.5px; font-weight: 700;
  font-family: inherit; cursor: pointer;
  transition: background 120ms cubic-bezier(0.2,0,0,1), color 120ms, border-color 120ms;
  border: 1.5px solid #FDB23A; background: #fff; color: #FDB23A;
}
.hh-placeBtn--active { background: #FDB23A; color: #1A1A1A; }

.hh-placeCheckRow { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; font-size: 14px; color: var(--hh-ink); font-weight: 500; cursor: pointer; user-select: none; }
.hh-placeCheckbox { width: 22px; height: 22px; border-radius: 4px; border: 1.5px solid var(--hh-line-strong); background: #fff; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; transition: border-color 120ms, background 120ms; }
.hh-placeCheckbox--on { border-color: #57A7D2; }



.hh-inputShell { display: flex; align-items: center; gap: 8px; padding: 12px 14px; border: 1px solid var(--hh-line-strong); border-radius: 6px; background: #fff; transition: border-color 120ms; position: relative; overflow: hidden; }
.hh-input { border: none; outline: none; font: inherit; flex: 1; color: var(--hh-ink); background: transparent; width: 100%; font-size: 15px; font-weight: 600; }
.hh-timeDigit { display: inline-block; font-weight: 700; color: var(--hh-ink); border: none; border-bottom: 2px solid #57A7D2; padding: 0 4px; min-width: 24px; text-align: center; font-size: 15px; background: transparent; outline: none; font-family: inherit; line-height: 1.2; }
.hh-iconCircle { width: 26px; height: 26px; border-radius: 50%; background: #57A7D2; color: #fff; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }

.hh-ctaRow { margin-top: 24px; display: flex; align-items: center; gap: 14px; }
.hh-trustRow { margin-top: 22px; display: flex; gap: 12px; align-items: center; }

.hh-trustBadge { display: inline-flex; align-items: center; gap: 10px; background: #fff; padding: 10px 16px; border-radius: 999px; border: 1px solid var(--hh-line); box-shadow: var(--hh-shadow-1); font-size: 14px; font-weight: 600; color: var(--hh-ink); white-space: nowrap; }
.hh-discountBadge { display: inline-flex; align-items: center; gap: 8px; background: #FFFFFF; padding: 8px 14px 8px 10px; border-radius: 999px; font-size: 12.5px; font-weight: 800; color: #1A1A1A; letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap; border: 1.5px solid rgba(26,26,26,0.08); box-shadow: 0 6px 18px rgba(0,0,0,0.10); }
.hh-discountBadgeDot { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 50%; background: #FDB23A; color: #1A1A1A; font-size: 11px; font-weight: 900; letter-spacing: 0; }

.hh-offerLine { margin-top: 12px; font-size: 13px; color: var(--hh-fg-3); font-weight: 700; font-style: italic; }

/* ─── Showcase ──────────────────────────────────────────── */
.hh-showcase { padding: 88px 48px; background: #fff; text-align: center;}
.hh-showcase__inner { max-width: 1280px; margin: 0 auto; text-align: center; }
.hh-showcase__eyebrow { display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 0.14em; color: #57A7D2; text-transform: uppercase; margin-bottom: 14px; text-align: center; margin-top:20px}
.hh-showcase__title { font-size: 44px; font-weight: 800; line-height: 1.1; margin: 0; color: var(--hh-ink); letter-spacing: -0.01em; text-align: center;}
.hh-showcase__sub { margin-top: 18px; font-size: 18px; line-height: 1.55; color: var(--hh-fg-2); max-width: 680px; margin-left: auto; margin-right: auto; text-align: center;}

.hh-showcase__discountBanner { margin: 36px auto 0; display: flex; align-items: center; justify-content: center; gap: 18px; width: 60%; max-width: 720px; box-sizing: border-box; background: linear-gradient(135deg, #EAF4FB 0%, #F4F9FC 100%); border-radius: 12px; padding: 18px 24px 18px 18px; border: 1.5px solid #57A7D2; box-shadow: 0 4px 16px rgba(87,167,210,0.12); text-align: center; }
.hh-showcase__discountBadge { flex-shrink: 0; background: #FDB23A; color: #FFFFFF; font-weight: 800; font-size: 15px; letter-spacing: 0.04em; padding: 8px 14px; border-radius: 999px; text-transform: uppercase; display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.hh-showcase__discountTitle { font-size: 16px; font-weight: 700; color: #000000; margin: 0; line-height: 1.3; }
.hh-showcase__discountSub { font-size: 14px; font-weight: 600; color: #000000; margin-top: 2px; line-height: 1.4; }
.hh-showcase__discountFine { font-size: 12px; color: #000000; margin-top: 6px; line-height: 1.4; }

.hh-showcase__grid { margin-top: 56px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.hh-showcase__grid .Card .DataCar__header,
.hh-showcase__grid .Card .DataCar__header__name,
.hh-showcase__grid .Card .DataCar__header__similar { text-align: left !important; }
.hh-showcase__fineprint { margin-top: 32px; font-size: 14px; color: var(--hh-fg-3); max-width: 680px; margin-left: auto; margin-right: auto; line-height: 1.55; }
.hh-showcase__ctaBlock { margin-top: 36px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.hh-showcase__reassure { font-size: 14px; color: var(--hh-fg-2); }

.cta {
    padding: 0 48px 88px 48px;
    background: #fff;
    text-align: center;
}


/* ─── Trust ─────────────────────────────────────────────── */
.hh-trust { background: #F7F7F7; padding: 48px 48px; border-top: 1px solid var(--hh-line); border-bottom: 1px solid var(--hh-line); box-shadow: 0 0 0 100vmax #F7F7F7; clip-path: inset(0 -100vmax); }
.hh-trust__inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.hh-trust__item { display: grid; grid-template-columns: 48px minmax(0, 1fr); align-items: center; gap: 14px; justify-content: center; }
.hh-trust__iconWrap { width: 48px; height: 48px; flex-shrink: 0; background: #fff; border-radius: 999px; border: 1px solid var(--hh-line); display: flex; align-items: center; justify-content: center; box-shadow: var(--hh-shadow-1); }
.hh-trust__label { font-size: 15px; font-weight: 700; color: var(--hh-ink); line-height: 1.3; }
.hh-trust__sub { font-size: 13px; color: var(--hh-fg-3); margin-top: 2px; }

/* ─── Reviews ───────────────────────────────────────────── */
.hh-reviews { padding: 88px 48px; background: #fff; }
.hh-reviews__inner { max-width: 1280px; margin: 0 auto; }
.hh-reviews__head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.hh-reviews__eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 0.14em; color: #57A7D2; text-transform: uppercase; margin-bottom: 14px; display: inline-block; }
.hh-reviews__title { font-size: 40px; font-weight: 800; margin: 0; color: var(--hh-ink); letter-spacing: -0.01em; }
.hh-reviews__ratingSummary { margin-top: 22px; display: inline-flex; align-items: center; gap: 16px; padding: 14px 24px; background: #fff; border-radius: 999px; border: 1px solid var(--hh-line); box-shadow: var(--hh-shadow-1); }
.hh-reviews__ratingBig { font-size: 28px; font-weight: 800; color: var(--hh-ink); }
.hh-reviews__ratingMeta { font-size: 14px; color: var(--hh-fg-2); }
.hh-reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.hh-reviewCard { background: #fff; padding: 32px 28px 26px; border-radius: 12px; border: 1px solid var(--hh-line); box-shadow: var(--hh-shadow-2); position: relative; overflow: hidden; }
.hh-reviewCard__topBar { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: #FDB23A; }
.hh-reviewCard__quoteMark { position: absolute; top: 18px; right: 22px; opacity: 0.18; }
.hh-reviewCard__name { font-size: 17px; font-weight: 700; color: var(--hh-ink); }
.hh-reviewCard__stars { margin-top: 6px; margin-bottom: 14px; display: inline-flex; gap: 2px; }
.hh-reviewCard__text { font-size: 15px; line-height: 1.55; color: var(--hh-fg-2); margin: 0; }
.hh-reviewCard__via { margin-top: 18px; display: inline-flex; align-items: center; gap: 8px; font-size: 12px; color: var(--hh-fg-3); font-weight: 600; }

/* ─── CTA Banner ────────────────────────────────────────── */
.hh-cta { padding: 48px 48px; background: #fff; color: #1A1A1A; }
.hh-cta__inner { max-width: 1280px; margin: 0 auto; text-align: center; }
.hh-cta__title { font-size: 48px; font-weight: 800; line-height: 1.1; margin: 0; color: var(--hh-ink); letter-spacing: -0.01em; max-width: 820px; margin-left: auto; margin-right: auto; }
.hh-cta__ctaWrap { margin-top: 36px; display: flex; justify-content: center; }
.hh-cta__reassure { margin-top: 20px; font-size: 15px; color: rgba(26,26,26,0.7); font-weight: 600; display: inline-flex; align-items: center; gap: 16px; }

/* ─── FAQ ───────────────────────────────────────────────── */
.hh-faq { padding: 88px 48px; background: #FFFFFF; }
.hh-faq__inner { max-width: 920px; margin: 0 auto; }
.hh-faq__eyebrow { font-size: 12px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: #57A7D2; margin-bottom: 12px; }
.hh-faq__h2 { font-size: clamp(28px, 3vw, 40px); font-weight: 700; color: var(--hh-ink); margin: 0 0 36px; line-height: 1.15; text-wrap: balance; }
.hh-faq__list { display: flex; flex-direction: column; gap: 0; }
.hh-faq__item { border-top: 1px solid #E5E0D2; }
.hh-faq__item--last { border-bottom: 1px solid #E5E0D2; }
.hh-faq__trigger { width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 4px; background: transparent; border: none; cursor: pointer; font-size: 18px; font-weight: 600; color: var(--hh-ink); font-family: inherit; }
.hh-faq__plus { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; background: #fff; border: 1.5px solid #E5E0D2; display: inline-flex; align-items: center; justify-content: center; transition: background 160ms cubic-bezier(0.2,0,0,1), border-color 160ms cubic-bezier(0.2,0,0,1), transform 200ms cubic-bezier(0.2,0,0,1); }
.hh-faq__plus--open { background: #57A7D2; border-color: #57A7D2; transform: rotate(45deg); }
.hh-faq__panel { overflow: hidden; transition: grid-template-rows 240ms cubic-bezier(0.2,0,0,1); display: grid; grid-template-rows: 0fr; }
.hh-faq__panel--open { grid-template-rows: 1fr; }
.hh-faq__panelInner { min-height: 0; padding-right: 48px; font-size: 15.5px; line-height: 1.7; color: var(--hh-fg-2); text-align: left; }
.hh-faq__panelBody { padding: 0 4px 24px; }

/* ─── Footer ────────────────────────────────────────────── */
.hh-footer { background: #F2F2F2; color: #1A1A1A; padding: 40px 48px 28px; border-top: 1px solid #E5E5E5; }
.hh-footer__inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.hh-footer__brand { display: flex; align-items: center; gap: 16px; }
.hh-footer__address { font-size: 13px; line-height: 1.55; color: #4A4A4A; }
.hh-footer__links { display: flex; gap: 28px; flex-wrap: wrap; }
.hh-footer__link { color: #1A1A1A; text-decoration: none; font-size: 13px; font-weight: 500; border-bottom: 1px solid transparent; transition: border-color 120ms cubic-bezier(0.2,0,0,1); }
.hh-footer__link:hover { border-bottom-color: #1A1A1A; }
.hh-footer__socials { display: flex; gap: 10px; }
.hh-footer__socialBtn { width: 36px; height: 36px; border-radius: 50%; background: #fff; color: #1A1A1A; border: 1px solid #E0E0E0; display: inline-flex; align-items: center; justify-content: center; transition: background 120ms cubic-bezier(0.2,0,0,1), color 120ms cubic-bezier(0.2,0,0,1); text-decoration: none; }
.hh-footer__socialBtn:hover { background: #1A1A1A; color: #fff; }
.hh-footer__meta { width: 100%; border-top: 1px solid #E0E0E0; padding-top: 18px; margin-top: 8px; font-size: 12px; color: #6E6E6E; display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hh-header { padding: 0 24px; }
  .hh-header__logoBar { margin-left: -24px; margin-right: -24px; padding-left: 24px; padding-right: 24px; }
  .hh-header__logo { width: 132px; height: 132px; }
  .hh-hero__photo img { object-position: center top; }
  .hh-hero__inner { grid-template-columns: 1fr; min-height: 0; padding: 140px 32px 48px; gap: 32px; }
  .hh-hero__content { max-width: 100%; }
  .hh-hero__headline { font-size: 44px; }
  .hh-hero__bookingCard { max-width: 100%; }
  .hh-showcase { padding: 64px 32px; }
  .hh-showcase__discountBanner { width: 80%; }
  .hh-showcase__grid { grid-template-columns: repeat(2, 1fr); }
  .hh-card__class { font-size: 18px; }
  .hh-card__price { font-size: 34px; }
  .hh-trust { padding: 36px 32px; }
  .hh-trust__inner { grid-template-columns: repeat(2, 1fr); }
  .hh-reviews { padding: 64px 32px; }
  .hh-reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .hh-cta { padding: 72px 32px; }
  .hh-cta__title { font-size: 36px; }
  .hh-faq { padding: 64px 32px; }
}

@media (max-width: 768px) {
  .hh-footer { padding: 32px 24px 24px; }
  .hh-footer__inner { flex-direction: column; align-items: flex-start; gap: 24px; }
}

@media (max-width: 640px) {
  .hh-header { padding: 0 20px; }
  .hh-header__logoBar { margin-left: -20px; margin-right: -20px; padding-left: 20px; padding-right: 20px; }
  .hh-header__logo { width: 96px; height: 96px; }
  .hh-hero__photo img { object-position: 58% top; }
  .hh-hero__inner { padding: 104px 16px 36px; }
  .hh-hero__content { max-width: 100%; overflow-wrap: break-word; }
  .hh-hero__headline { font-size: 32px; line-height: 1.1; overflow-wrap: break-word; hyphens: auto; }
  .hh-hero__sub { font-size: 16px; overflow-wrap: break-word; }
  .hh-hero__bookingCard { box-sizing: border-box; padding: 20px 16px 22px; width: 100%; }
  .hh-trustRow { align-items: flex-start; flex-direction: column; }
  .hh-trustBadge,
  .hh-discountBadge { white-space: normal; }
  .hh-placeRow { grid-template-columns: 1fr; }
  .hh-placeBtn { box-sizing: border-box; width: 100%; }
  .hh-hero .landing-index-picker .Actions__groups { flex-wrap: wrap; gap: 10px; }
  .hh-hero .landing-index-picker .DatePicker { box-sizing: border-box; margin: 0; flex: 1 1 150px; }
  .hh-hero .landing-index-picker .TimePicker { box-sizing: border-box; margin: 0; flex: 1 1 130px; }
  .hh-ctaRow { align-items: stretch; flex-direction: column; }
  .hh-btn { box-sizing: border-box; width: 100%; white-space: normal; text-align: center; }
  .hh-showcase { padding: 48px 20px; }
  .hh-showcase__title { font-size: 32px; }
  .hh-showcase__discountBanner { align-items: stretch; flex-direction: column; width: 100%; padding: 18px; }
  .hh-showcase__discountBadge { justify-content: center; white-space: normal; }
  .hh-showcase__grid { grid-template-columns: 1fr; }
  .hh-card__actions { flex-direction: column; align-items: stretch; }
  .hh-card__select { min-width: 100%; }
  .hh-reviews { padding: 48px 20px; }
  .hh-reviews__ratingSummary { display: inline-grid; grid-template-columns: auto auto; justify-content: center; justify-items: center; border-radius: 18px; gap: 8px 12px; }
  .hh-reviews__ratingSummary > svg { grid-column: 1; grid-row: 1; }
  .hh-reviews__stars { grid-column: 2; grid-row: 1; display: inline-flex; gap: 2px; }
  .hh-reviews__ratingBig { grid-column: 1; grid-row: 2; line-height: 1; }
  .hh-reviews__ratingMeta { grid-column: 2; grid-row: 2; text-align: left; }
  .hh-reviews__grid { grid-template-columns: 1fr; }
  .hh-cta { padding: 56px 20px; }
  .hh-cta__title { font-size: 28px; line-height: 1.15; }
  .hh-faq { padding: 48px 20px; }
  .hh-faq__panelInner { padding-right: 0; }
}

@media (max-width: 540px) {
  .hh-trust__inner { grid-template-columns: 1fr; }
  .hh-trust__item { max-width: 320px; margin: 0 auto; width: 100%; }
}

/* ─── Overrides for custom.css on this landing ──────────── */
.hh-header__logo {
  width: 168px !important;
  height: 168px !important;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .hh-header__logo {
    width: 132px !important;
    height: 132px !important;
  }
}

@media (max-width: 640px) {
  .hh-header__logo {
    width: 96px !important;
    height: 96px !important;
  }
}

.transmission_label_wrapper {
  position: absolute;
  right: 0;
  margin: 14px;
  display: flex;
  justify-content: right;
  flex-wrap: wrap;
  column-gap: 8px;
}

.transmission_icon {
  width: 20px !important;
  height: 20px !important;
}

.transmission_label {
  padding: 4px 8px;
  color: black;
  text-transform: uppercase;
  border-radius: 10px;
  font-size: 11px;
  font-weight: bold;
  display: flex;
}

.transmission_label.manual_transmission {
  background-color: #b9e7ff;
  border: 1px solid #6ba0b7;
  column-gap: 8px;
}

/* ─── Center showcase + CarsBooking sections ───────────── */
.hh-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  padding: 0 48px;
}

@media (max-width: 1024px) {
  .hh-container { padding: 0 32px; }
}

@media (max-width: 640px) {
  .hh-container { padding: 0 20px; }
}

/* Center all content inside hh-container sections */
.hh-container {
  text-align: center;
}

/* Reset text-align for elements that shouldn't inherit center */
.hh-container .DataCar__header,
.hh-container .DataCar__header__name,
.hh-container .DataCar__header__similar,
.hh-container .DataCar__features,
.hh-container .Card__footer,
.hh-container .Card__actions {
  text-align: left;
}

/* Ensure card image is centered */
.DataCar__img {
  display: flex;
  justify-content: center;
  align-items: center;
}
.DataCar__img img {
  display: block;
  margin: 0 auto;
  object-fit: contain;
  object-position: center center;
  max-width: 100%;
}

/* Override custom.css padding so CarsBooking centers inside hh-container */
.hh-container.CarsBooking,
.hh-container .CarsBooking {
  margin-left: auto;
  margin-right: auto;
}

.hh-container .CarsBooking__extras,
.hh-container .CarsBooking__grid {
  padding-left: 0;
  padding-right: 0;
}

/* CarsBooking grid: up to 3 cards per row */
.hh-container .CarsBooking__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  justify-items: center;
}

@media (max-width: 1024px) {
  .hh-container .CarsBooking__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .hh-container .CarsBooking__grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Group Features (static spec strip below discount banner) ─────────────────────────── */
.Group_features {
  margin-top: 32px;
  margin-bottom: 32px;
  text-align: center;
}

.Group_features__title {
  font-family: var(--hh-font-sans);
  font-size: 20px;
  font-weight: 700;
  color: var(--hh-ink);
  margin-bottom: 20px;
  text-align: center;
  color: #57A7D2;
}

.Group_features .DataCar__features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 48px;
  list-style: none;
  margin: 0;
  padding: 24px;
  background: #f7f9fb;
  border-radius: 12px;
}

@media (max-width: 640px) {
  .Group_features .DataCar__features {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
    padding: 20px 16px;
  }

  .Group_features .DataCar__features .Item {
    justify-content: center;
  }
}

.Group_features .DataCar__features .Item {
   display: flex;
   align-items: center;
   gap: 12px;
   padding: 0 8px;
   font-family: var(--hh-font-sans);
   font-size: 14px;
   color: var(--hh-ink);
}

.Group_features .DataCar__features .Item__icon img {
  width: 24px;
  height: 24px;
}

.Group_features .DataCar__features .Item__number {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.Group_features .DataCar__features .Item__number__number {
  font-weight: 700;
  font-size: 16px;
}

.Group_features .DataCar__features .Item__number__text {
  font-size: 13px;
  color: #6e6e6e;
}

.CardCarParent {
    width: 100%;
}
.Card {
    grid-template-columns: 1fr;
    background: #fff;
    border: 1px solid var(--hh-line);
    border-top: 3px solid #FDB23A;
    overflow: hidden;
    text-align: center;
    transition: box-shadow 0.2s ease;
}

.Card .DataCar__header__name {
    font-family: var(--hh-font-sans);
    font-size: 20px;
    font-weight: 700;
    color: var(--hh-ink);
    margin: 16px 16px 8px;
    text-align: center;
}
.hh-offerError {
  max-width: 520px;
  margin: 14px auto 0;
  padding: 12px 16px;
  border: 1px solid #d73a31;
  border-radius: 10px;
  background: #fff4f2;
  color: #9b1c13;
  font-weight: 600;
  text-align: center;
}
.hh-offerWarning {
  max-width: 520px;
  margin: 14px auto 0;
  padding: 12px 16px;
  border: 1px solid #f0a000;
  border-radius: 10px;
  background: #fff8e8;
  color: #6b4600;
  font-weight: 600;
  text-align: center;
}
.hh-header__logoBar {
  position: relative;
}

/*.hh-langSwitch {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  z-index: 20;
  min-width: 150px;
  color: var(--hh-ink);
}

.hh-langSwitch .hh-langSwitch__button {
  justify-content: space-between;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(26, 26, 26, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 20px rgba(24, 31, 77, 0.08);
  color: var(--hh-ink);
  font-size: 14px;
  font-weight: 800;
}

.hh-langSwitch .wrapperContent--desktop {
  z-index: 30;
  right: 0;
  min-width: 150px;
}

.hh-langSwitch .DropdownLang__content {
  padding: 4px 0;
  margin: 0;
  list-style: none;
  border-radius: 12px;
  overflow: hidden;
}

.hh-langSwitch .LangOption__link {
  box-sizing: border-box;
  color: var(--hh-ink);
  font-weight: 700;
}

.hh-langSwitch__caret {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

@media only screen and (max-width: 640px) {
  .hh-langSwitch {
    right: 12px;
    min-width: 118px;
  }

  .hh-langSwitch .hh-langSwitch__button {
    padding: 7px 9px;
    font-size: 12px;
  }
}*/
