/* ==========================================================================
   StayinWifi UI — Faz 5 design system (approved mockups 2026-09-13)
   Loaded after style.css / blog.css. Everything new is written with logical
   properties (inline-start/end) so it mirrors under [dir="rtl"] for free.
   ========================================================================== */

:root {
  --ui-brand: #0FB5C1;
  --ui-brand-600: #0B8F99;
  --ui-brand-50: #E8F8F9;
  --ui-navy: #0B1B3A;
  --ui-navy-700: #123A63;
  --ui-ink: #334155;
  --ui-muted: #64748B;
  --ui-line: #E2E8F0;
  --ui-surface: #F6FAFB;
  --ui-card: #FFFFFF;
  --ui-page: #FFFFFF;
  --ui-wa: #25D366;
  --ui-ok: #16A34A;
  --ui-ok-50: #DCFCE7;
  --ui-err: #DC2626;
  --ui-err-50: #FEF2F2;
  --ui-sun: #F2B705;
  --ui-tr: #E30A17;

  --ui-r-in: 10px;
  --ui-r-btn: 14px;
  --ui-r-card: 20px;
  --ui-sh-1: 0 8px 24px rgba(11, 27, 58, .08);
  --ui-sh-2: 0 14px 34px rgba(11, 27, 58, .18);

  --ui-font: Satoshi, "Segoe UI", system-ui, -apple-system, sans-serif;
  --ui-h1: clamp(26px, 5.2vw, 40px);
  --ui-h2: clamp(20px, 3.4vw, 30px);
  --ui-h3: clamp(15px, 2vw, 18px);

  --ui-header-h: 64px;
  --ui-sticky-h: 76px;
  --ui-gutter: 16px;
  --ui-max: 1200px;
}

html[data-theme="dark"] {
  --ui-navy: #E6EDF7;
  --ui-ink: #CBD5E1;
  --ui-muted: #94A3B8;
  --ui-line: #334155;
  --ui-surface: #111C2E;
  --ui-card: #0F172A;
  --ui-page: #0B1220;
  --ui-brand-50: rgba(15, 181, 193, .14);
  --ui-err-50: rgba(220, 38, 38, .12);
  --ui-ok-50: rgba(22, 163, 74, .14);
}

/* --------------------------------------------------------------------------
   Base type (scoped: only the new Faz 5 blocks opt in via .ui)
   -------------------------------------------------------------------------- */
.ui, .ui * { box-sizing: border-box; }
.ui [hidden], .ui[hidden], .ui-dock[hidden], .ui-bubble[hidden] { display: none !important; }
.ui { font-family: var(--ui-font); color: var(--ui-ink); }
.ui-wrap { width: 100%; max-width: var(--ui-max); margin-inline: auto; padding-inline: var(--ui-gutter); }
.ui-section { padding-block: 44px 8px; }
@media (min-width: 992px) { .ui-section { padding-block: 80px 16px; } }

.ui-eyebrow { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--ui-brand-600); }
.ui-h2, .ui .ui-h2 { font-size: var(--ui-h2); line-height: 1.15; font-weight: 800; color: var(--ui-navy); margin: 0 0 6px; letter-spacing: -.01em; text-wrap: balance; }
.ui-h2 em { font-style: normal; color: var(--ui-brand); }
.ui-sub { margin: 0 0 18px; font-size: 14px; line-height: 1.5; color: var(--ui-muted); max-width: 62ch; }
.ui-section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.ui-link { font-size: 14px; font-weight: 700; color: var(--ui-brand-600); text-decoration: none; white-space: nowrap; }
.ui-num { font-variant-numeric: tabular-nums; }
.ui-ltr { direction: ltr; unicode-bidi: isolate; }

.ui-icon { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; flex: none; }
[dir="rtl"] .ui-icon--dir { transform: scaleX(-1); }

/* --------------------------------------------------------------------------
   Buttons & fields
   -------------------------------------------------------------------------- */
.ui-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 50px; padding-inline: 20px; border-radius: var(--ui-r-btn); border: 0;
  background: var(--ui-brand-600); color: #fff !important; font: 800 15px/1 var(--ui-font);
  letter-spacing: .01em; text-decoration: none; cursor: pointer;
  transition: background-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.ui-btn:hover { background: #087780; }
.ui-btn:active { transform: translateY(1px); }
.ui-btn:focus-visible { outline: 3px solid rgba(15, 181, 193, .45); outline-offset: 2px; }
.ui-btn[disabled], .ui-btn.is-disabled { background: #B8C4CF; cursor: not-allowed; }
.ui-btn--block { width: 100%; }
.ui-btn--ghost { background: var(--ui-card); color: var(--ui-navy) !important; border: 1px solid var(--ui-line); }
.ui-btn--ghost:hover { background: var(--ui-surface); }
.ui-btn--white { background: #fff; color: #0B1B3A !important; }
.ui-btn--wa { background: var(--ui-wa); }
.ui-btn--wa:hover { background: #1DA851; }
.ui-btn.is-loading { position: relative; color: transparent !important; pointer-events: none; }
.ui-btn.is-loading::after {
  content: ""; position: absolute; inset: 0; margin: auto; width: 20px; height: 20px;
  border-radius: 50%; border: 2.5px solid rgba(255, 255, 255, .45); border-top-color: #fff;
  animation: ui-spin .7s linear infinite;
}
@keyframes ui-spin { to { transform: rotate(360deg); } }

.ui-field {
  position: relative; display: flex; align-items: center; gap: 10px; min-width: 0;
  border: 1px solid var(--ui-line); border-radius: var(--ui-r-in); background: var(--ui-card);
  padding-block: 8px; padding-inline: 12px; min-height: 54px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.ui-field:focus-within { border-color: var(--ui-brand); box-shadow: 0 0 0 4px rgba(15, 181, 193, .14); }
.ui-field > .ui-icon { color: var(--ui-brand-600); width: 18px; height: 18px; }
.ui-field__body { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.ui-field__label { font-size: 11px; font-weight: 600; color: var(--ui-muted); line-height: 1.2; }
.ui-field input, .ui-field select, .ui-field textarea {
  all: unset; box-sizing: border-box; width: 100%; min-width: 0;
  font: 700 14px/1.35 var(--ui-font); color: var(--ui-navy);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; cursor: pointer;
}
.ui-field select { appearance: none; -webkit-appearance: none; padding-inline-end: 18px; }
.ui-field input::placeholder { color: #64748B; font-weight: 600; }
/* Empty field: show only the placeholder; the small label appears once a value is chosen. */
.ui-field__body:has(input:placeholder-shown) .ui-field__label,
.ui-field__body:has(select:invalid) .ui-field__label { display: none; }
.ui-field select:invalid { color: #64748B; font-weight: 600; }
.ui-field--select::after {
  content: ""; position: absolute; inset-inline-end: 12px; top: 50%; width: 8px; height: 8px;
  border-right: 2px solid var(--ui-muted); border-bottom: 2px solid var(--ui-muted);
  transform: translateY(-70%) rotate(45deg); pointer-events: none;
}

/* Stacked label + input (booking / checkout forms) */
.ui-group { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.ui-group > label, .ui-label { font-size: 13px; font-weight: 700; color: var(--ui-navy); }
.ui-label small { font-weight: 500; color: var(--ui-muted); }
.ui-input, .ui .ui-input {
  width: 100%; min-height: 48px; border: 1px solid var(--ui-line); border-radius: var(--ui-r-in);
  background: var(--ui-card); color: var(--ui-navy); font: 600 15px/1.3 var(--ui-font);
  padding-inline: 14px; outline: none; transition: border-color .15s ease, box-shadow .15s ease;
}
.ui-input::placeholder { color: #94A3B8; font-weight: 500; }
.ui-input:focus { border-color: var(--ui-brand); box-shadow: 0 0 0 4px rgba(15, 181, 193, .14); }
.ui-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 360px) { .ui-row2 { grid-template-columns: 1fr; } }

/* Validation (UI.fieldErrors) */
.is-invalid.ui-field, .ui-input.is-invalid, .is-invalid > .ui-input, .ui-tel.is-invalid {
  border-color: var(--ui-err) !important; box-shadow: 0 0 0 4px rgba(220, 38, 38, .12) !important;
}
.ui-error {
  display: flex; align-items: flex-start; gap: 6px; margin-top: 6px;
  font: 600 12.5px/1.35 var(--ui-font); color: var(--ui-err);
}
.ui-error::before {
  content: "!"; flex: none; width: 16px; height: 16px; border-radius: 50%; background: var(--ui-err);
  color: #fff; font-size: 11px; font-weight: 900; display: grid; place-items: center; line-height: 16px; text-align: center;
}
.ui-shake { animation: ui-shake .42s ease; }
@keyframes ui-shake { 0%, 100% { transform: translateX(0); } 20% { transform: translateX(-6px); } 40% { transform: translateX(6px); } 60% { transform: translateX(-4px); } 80% { transform: translateX(4px); } }

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */
.ui-card { background: var(--ui-card); border: 1px solid rgba(226, 232, 240, .7); border-radius: var(--ui-r-card); box-shadow: var(--ui-sh-1); }
.ui-box { border: 1px solid var(--ui-line); border-radius: 16px; padding: 14px; display: flex; flex-direction: column; gap: 12px; background: var(--ui-card); }
.ui-box__title { margin: 0; font-size: 15px; font-weight: 800; color: var(--ui-navy); display: flex; align-items: center; gap: 8px; }
.ui-box__desc { margin: -6px 0 0; font-size: 12.5px; color: var(--ui-muted); }
.ui-chip { display: inline-flex; align-items: center; gap: 6px; border-radius: 999px; padding: 4px 10px; font-size: 12px; font-weight: 700; background: var(--ui-surface); color: var(--ui-navy); }
.ui-chip--ok { background: var(--ui-ok-50); color: #166534; }
.ui-pill { display: inline-flex; align-items: center; gap: 6px; background: #0B1B3A; color: #fff; border-radius: 999px; padding: 4px 12px 4px 4px; font-size: 12px; font-weight: 700; }
.ui-pill b { background: var(--ui-brand); border-radius: 999px; padding: 3px 8px; font-weight: 900; }

/* --------------------------------------------------------------------------
   Modem (vector render of the Superbox 5G; swap to <img> when the photo lands)
   -------------------------------------------------------------------------- */
.ui-sbx { position: relative; aspect-ratio: 1.36; width: 100%; border-radius: 24% / 34%;
  background: radial-gradient(120% 90% at 30% 15%, #fff 0%, #F4F6F8 55%, #E3E8ED 100%);
  box-shadow: inset 0 -5px 9px rgba(11, 27, 58, .08), inset 0 3px 4px #fff, 0 14px 24px rgba(11, 27, 58, .22); direction: ltr; container-type: inline-size; }
.ui-sbx__led { position: absolute; left: 34%; top: 4%; bottom: 18%; width: 4.6%; border-radius: 40px; background: linear-gradient(90deg, #000, #26292D 45%, #000); display: flex; flex-direction: column; justify-content: space-evenly; align-items: center; padding-block: 14%; }
.ui-sbx__led i { width: 34%; aspect-ratio: 1; border-radius: 50%; background: #35E36A; box-shadow: 0 0 6px #35E36A; }
.ui-sbx__brand { position: absolute; left: 46%; right: 7%; top: 26%; }
.ui-sbx__brand img { width: 100%; height: auto; display: block; }
.ui-sbx__model { position: absolute; right: 8%; bottom: 17%; text-align: right; line-height: .9; font-family: var(--ui-font); }
.ui-sbx__model b { display: block; color: #6B7280; font-weight: 600 !important; font-size: 5.5cqw !important; line-height: 1 !important; margin: 0; }
.ui-sbx__model strong { display: block; color: var(--ui-sun); font-weight: 900 !important; font-size: 11cqw !important; line-height: 1 !important; }

/* --------------------------------------------------------------------------
   Hero + slider
   -------------------------------------------------------------------------- */
.ui-hero { position: relative; overflow: hidden; background: #0B1B3A; color: #fff; isolation: isolate; }
.ui-hero__slides { position: absolute; inset: 0; z-index: -2; }
.ui-hero__slide { position: absolute; inset: 0; opacity: 0; transition: opacity .9s ease; }
.ui-hero__slide.is-active { opacity: 1; }
.ui-hero__slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ui-hero::before { content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(11, 27, 58, .30) 0%, rgba(11, 27, 58, 0) 26%, rgba(11, 27, 58, .15) 44%, rgba(11, 27, 58, .90) 86%); }
@media (min-width: 992px) {
  .ui-hero::before { background: linear-gradient(90deg, rgba(11, 27, 58, .88) 0%, rgba(11, 27, 58, .55) 45%, rgba(11, 27, 58, .05) 75%); }
}
.ui-hero__inner { position: relative; min-height: 440px; display: flex; flex-direction: column; justify-content: flex-end; padding-block: 72px 64px; }
@media (min-width: 992px) { .ui-hero__inner { min-height: 560px; justify-content: center; padding-block: 64px 120px; } }
.ui-hero__top { position: absolute; inset-block-start: 14px; inset-inline: var(--ui-gutter); display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; }
.ui-flag { display: inline-flex; align-items: center; gap: 6px; background: #fff; color: #0B1B3A; border-radius: 999px; padding: 4px 11px 4px 4px; font-size: 12px; font-weight: 800; }
.ui-flag img { width: 22px; height: 15px; border-radius: 3px; object-fit: cover; }
/* hero price: round navy badge with cyan ring (owner reference, 2026-09-13) */
.ui-price-badge { --pb: 104px; width: var(--pb); height: var(--pb); flex: none; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; line-height: 1; color: #fff;
  background: radial-gradient(circle at 50% 35%, #123A63 0%, #0B1B3A 70%); border: 3px solid #0FB5C1; box-shadow: 0 0 0 4px rgba(15, 181, 193, .25), 0 12px 30px rgba(0, 0, 0, .4); font-family: var(--ui-font); }
.ui-price-badge small { display: block; font-size: calc(var(--pb) * .14); font-weight: 700; margin-block-end: 2px; }
.ui-price-badge b { display: block; font-size: calc(var(--pb) * .27); font-weight: 900; letter-spacing: -.02em; color: #5FE0E8; }
.ui-price-badge > span { display: block; font-size: calc(var(--pb) * .15); font-weight: 600; margin-block-start: 2px; }
.ui-price-badge { animation: ui-pb-pulse 1.8s ease-in-out infinite; }
.ui-price-badge b { animation: ui-pb-glow 1.8s ease-in-out infinite; }
@keyframes ui-pb-pulse {
  0%, 100% { transform: scale(1); border-color: #0FB5C1; box-shadow: 0 0 0 4px rgba(15, 181, 193, .25), 0 12px 30px rgba(0, 0, 0, .4); }
  50% { transform: scale(1.06); border-color: #5FE0E8; box-shadow: 0 0 0 14px rgba(15, 181, 193, 0), 0 0 34px rgba(95, 224, 232, .75), 0 12px 30px rgba(0, 0, 0, .4); }
}
@keyframes ui-pb-glow { 0%, 100% { text-shadow: none; opacity: 1; } 50% { text-shadow: 0 0 14px rgba(95, 224, 232, .9); opacity: .85; } }
@media (min-width: 992px) {
  .ui-hero__top { inset-block: auto 150px; justify-content: flex-end; }
  .ui-price-badge { --pb: 168px; border-width: 4px; }
}

.ui-hero__copy { max-width: 560px; }
.ui-hero__heading { margin: 0; padding: 0; font-family: var(--ui-font); color: #fff; }
.ui-hero__heading span { display: block; }
.ui-hero__eyebrow { display: inline-flex !important; width: max-content; margin-block-end: 10px; font-size: 12px !important; }
.ui-hero__main { font-size: var(--ui-h1); line-height: 1.04; font-weight: 900; letter-spacing: -.02em; }
.ui-hero__main + .ui-hero__main { color: #5FE0E8; }
.ui-hero__sub { font-size: clamp(18px, 3vw, 26px); line-height: 1.15; font-weight: 800; margin-block-start: 2px; }
.ui-hero__price-inline { display: none !important; }
.ui-hero__best { display: inline-block; margin-block-start: 10px; background: var(--ui-tr); color: #fff; padding: 4px 9px; border-radius: 6px; font-size: 12px; font-weight: 800; }

.ui-rotator { position: relative; height: 34px; margin-block-start: 12px; }
.ui-rotator .rotating-text {
  position: absolute; inset-inline-start: 0; top: 0; opacity: 0; margin: 0;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, .14); border: 1px solid rgba(255, 255, 255, .25); backdrop-filter: blur(6px);
  border-radius: 999px; padding: 5px 12px; font: 700 13px/1.2 var(--ui-font) !important; color: #fff;
  white-space: nowrap; transition: opacity .6s ease;
}
.ui-rotator .rotating-text br { display: none; }
.ui-rotator .rotating-text.active { opacity: 1; }

.ui-hero__dots { position: absolute; inset-block-end: 40px; inset-inline-start: var(--ui-gutter); display: flex; gap: 6px; }
@media (min-width: 992px) { .ui-hero__dots { inset-block-end: 100px; } }
.ui-hero__dot { width: 7px; height: 7px; border-radius: 9px; border: 0; padding: 0; background: rgba(255, 255, 255, .45); cursor: pointer; transition: width .3s ease, background-color .3s ease; }
.ui-hero__dot.is-active { width: 20px; background: #fff; }
.ui-hero__slide-tag { position: absolute; inset-block-end: 12px; inset-inline-end: var(--ui-gutter); font-size: 11px; font-weight: 700; color: rgba(255, 255, 255, .8); }

/* Rental form card */
.ui-rent { position: relative; z-index: 3; margin-block-start: -34px; }
@media (min-width: 992px) { .ui-rent { margin-block-start: -86px; } }
.ui-rent__card { padding: 12px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
@media (min-width: 992px) {
  .ui-rent__card { grid-template-columns: repeat(4, minmax(0, 1fr)) auto auto; align-items: center; padding: 14px; gap: 10px; }
  .ui-rent__card .ui-rent__qty { border: 1px solid var(--ui-line); border-radius: var(--ui-r-in); min-height: 54px; padding-inline: 12px; }
}
.ui-rent__full { grid-column: 1 / -1; }
@media (min-width: 992px) { .ui-rent__full { grid-column: auto; } .ui-rent__note { grid-column: 1 / -1 !important; } }
.ui-rent__qty { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding-inline: 4px; }
.ui-rent__qty label { font-size: 13px; font-weight: 700; color: var(--ui-navy); }
.ui-stepper { display: inline-flex; align-items: center; gap: 10px; }
.ui-stepper button { width: 34px; height: 34px; border-radius: 50%; border: 0; background: var(--ui-brand-50); color: var(--ui-brand-600); font: 700 20px/1 var(--ui-font); cursor: pointer; display: grid; place-items: center; }
.ui-stepper button:focus-visible { outline: 3px solid rgba(15, 181, 193, .45); }
.ui-stepper input { all: unset; width: 28px; text-align: center; font: 800 16px/1 var(--ui-font); color: var(--ui-navy); }
.ui-rent__note { display: flex; justify-content: center; align-items: center; gap: 6px; font-size: 12px; color: var(--ui-muted); }
.ui-rent__note .ui-icon { width: 15px; height: 15px; color: var(--ui-ok); }
.ui-rent.is-pinned { position: fixed; inset-block-start: 0; inset-inline: 0; margin: 0; z-index: 900; padding-block: 8px; background: rgba(255, 255, 255, .96); box-shadow: 0 6px 18px rgba(11, 27, 58, .12); backdrop-filter: blur(6px); }
.ui-rent.is-pinned .ui-rent__card { box-shadow: none; border: 0; padding: 0; }
.ui-rent.is-pinned .ui-rent__note { display: none; }
/* Faz 5.1 — price right above Rent Now on desktop; the hero badge hides there */
.ui-rent__cta { display: flex; flex-direction: column; }
.ui-rent__cta .ui-btn { width: 100%; }
.ui-rent__price { display: none; }
@media (min-width: 992px) {
  .ui-rent__card { align-items: end; }
  .ui-rent__cta { align-self: end; gap: 6px; min-width: 170px; }
  .ui-rent__price { display: flex; justify-content: center; align-items: baseline; gap: 6px; line-height: 1; color: var(--ui-navy); white-space: nowrap; }
  .ui-rent__price small { font-size: 12px; font-weight: 600; color: var(--ui-muted); }
  .ui-rent__price b { font-size: 22px; font-weight: 900; letter-spacing: -.02em; color: var(--ui-brand-600); }
  .ui-rent__price b span { font-size: 12px; font-weight: 700; color: var(--ui-muted); }
  .ui-rent.is-pinned .ui-rent__cta { gap: 2px; }
  .ui-rent.is-pinned .ui-rent__price b { font-size: 16px; }
  .ui-rent.is-pinned .ui-rent__price small, .ui-rent.is-pinned .ui-rent__price b span { font-size: 11px; }
}
.ui-rent-spacer { display: none; }
.ui-rent-spacer.is-on { display: block; }

/* --------------------------------------------------------------------------
   Why rent
   -------------------------------------------------------------------------- */
.ui-why { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (min-width: 992px) { .ui-why { grid-template-columns: 1.6fr repeat(4, 1fr); } }
.ui-why__item { padding: 14px; border-radius: 16px; background: var(--ui-surface); display: flex; flex-direction: column; gap: 6px; }
.ui-why__icon { width: 36px; height: 36px; border-radius: 10px; background: var(--ui-card); color: var(--ui-brand-600); display: grid; place-items: center; }
.ui-why__item b { font-size: 14px; color: var(--ui-navy); }
.ui-why__item span { font-size: 12.5px; color: var(--ui-muted); line-height: 1.4; }
.ui-why__item--hi { grid-column: 1 / -1; background: #0B1B3A; flex-direction: row; align-items: center; gap: 14px; }
@media (min-width: 992px) { .ui-why__item--hi { grid-column: auto; } }
.ui-why__item--hi .ui-why__n { font-size: 46px; font-weight: 900; color: var(--ui-brand); line-height: .9; }
.ui-why__item--hi b { color: #fff; font-size: 16px; display: block; }
.ui-why__item--hi span { color: #B7C4D6; }
.ui-why__item--hi .ui-sbx { width: 96px; margin-inline-start: auto; flex: none; }

/* --------------------------------------------------------------------------
   Existing home sections — restyle only (markup/links untouched)
   -------------------------------------------------------------------------- */
.homepage .how-booking-esim { font-family: var(--ui-font); }

/* Faz 5.1 — How it works: numbered vertical steps (mockup 1); tab JS and markup unchanged */
.homepage .how-booking-esim { max-width: var(--ui-max); margin-inline: auto !important; padding: 32px var(--ui-gutter) 0 !important; display: grid !important; grid-template-columns: 1fr; gap: 24px; align-items: center; }
.homepage .how-booking-esim-left, .homepage .how-booking-esim-right { width: auto !important; max-width: none !important; padding: 0 !important; margin: 0 !important; }
.homepage .how-booking-esim-right { display: none !important; }
.homepage .how-booking-esim .tabs-nav { counter-reset: uistep; display: flex !important; flex-direction: column; gap: 0 !important; margin: 16px 0 0 !important; padding: 0 !important; }
.homepage .how-booking-esim-tab-item { counter-increment: uistep; position: relative; display: flex !important; align-items: flex-start; gap: 14px; padding: 0 0 22px !important; margin: 0 !important; background: transparent !important; border: 0 !important; box-shadow: none !important; border-radius: 0 !important; color: inherit !important; cursor: pointer; }
.homepage .how-booking-esim-tab-item::before { content: counter(uistep); flex: none; position: relative; z-index: 1; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: var(--ui-brand-50); color: var(--ui-brand-600); font: 800 15px/1 var(--ui-font); }
.homepage .how-booking-esim-tab-item::after { content: ""; position: absolute; inset-inline-start: 16px; inset-block: 38px 2px; border-inline-start: 2px dashed var(--ui-line); }
.homepage .how-booking-esim-tab-item:last-child { padding-block-end: 0 !important; }
.homepage .how-booking-esim-tab-item:last-child::after { display: none; }
.homepage .how-booking-esim-tab-item.tab-active::before { background: var(--ui-brand); color: #fff; }
.homepage .how-booking-esim-tab-item > i { display: none !important; }
.homepage .how-booking-esim-item-title { padding: 0 !important; margin: 0 !important; }
.homepage .how-booking-esim-item-title h3 { margin: 6px 0 2px !important; font: 800 16px/1.3 var(--ui-font) !important; color: var(--ui-navy) !important; }
.homepage .how-booking-esim-item-title p { margin: 0 !important; font: 400 13.5px/1.45 var(--ui-font) !important; color: var(--ui-muted) !important; }
@media (min-width: 992px) {
  .homepage .how-booking-esim { grid-template-columns: 1fr 1fr; gap: 56px; padding-block-start: 64px !important; }
  .homepage .how-booking-esim-right { display: block !important; }
  .homepage .how-booking-esim .how-booking-img { width: 100%; height: auto; border-radius: 20px; display: block; }
  .homepage .how-booking-esim-tab-item { padding-block-end: 30px !important; }
  .homepage .how-booking-esim-item-title h3 { font-size: 18px !important; }
  .homepage .how-booking-esim-item-title p { font-size: 15px !important; }
}

.homepage .how-booking-esim h2, .homepage .title-location, .homepage .faq-left-top h2, .homepage .testimonials-title {
  font-family: var(--ui-font) !important; font-size: var(--ui-h2) !important; line-height: 1.15 !important;
  font-weight: 800 !important; color: var(--ui-navy) !important; letter-spacing: -.01em; text-wrap: balance;
}
.homepage .title-location, .homepage .how-booking-esim h2 { text-align: start !important; }
.homepage .page-wrapper { max-width: var(--ui-max); padding-inline: var(--ui-gutter) !important; }
/* 2026-09-13 (owner): locations = equal full-photo cards (3:2, live images), title overlaid on a bottom gradient */
.homepage .location-grid { display: grid !important; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px !important; margin-top: 16px !important; overflow: visible; }
.homepage .location-grid .grid-item { position: relative; padding: 0 !important; border: 0 !important; border-radius: 18px !important; overflow: hidden; box-shadow: var(--ui-sh-1) !important; background: var(--ui-surface) !important; aspect-ratio: 3 / 2; max-width: 100%; }
.homepage .location-grid .grid-item > a { display: block; height: 100%; color: inherit; text-decoration: none; }
.homepage .location-grid .grid-image { position: absolute; inset: 0; width: 100% !important; height: 100% !important; object-fit: cover; border-radius: 0 !important; transition: transform .5s ease; }
.homepage .location-grid .grid-item:hover .grid-image { transform: scale(1.05); }
.homepage .location-grid .grid-item::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(180deg, rgba(11, 27, 58, 0) 45%, rgba(11, 27, 58, .85)); }
.homepage .location-grid .grid-title { position: absolute; z-index: 2; inset-inline: 16px; inset-block-end: 14px; margin: 0 !important; padding: 0 !important; color: #fff !important; font-size: 18px !important; font-weight: 800 !important; line-height: 1.25 !important; text-shadow: 0 1px 3px rgba(11, 27, 58, .5); }
.homepage .location-grid .grid-description { display: none; }
@media (max-width: 991.98px) { .homepage .location-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px !important; } }
@media (max-width: 575.98px) { .homepage .location-grid { grid-template-columns: minmax(0, 1fr); } .homepage .location-grid .grid-title { font-size: 16px !important; } }

/* Faz 5.1 — Our Package */
.homepage .comparison-card .ui-pkg__eyebrow { display: block; align-self: stretch; text-align: start; color: var(--ui-brand-600) !important; font: 800 13px/1 var(--ui-font) !important; letter-spacing: .02em; margin-block-end: 6px; }
.ui-pkg__chip { display: none; }
.ui-pkg__cta { margin-block-start: 18px; }
@media (min-width: 992px) {
  .homepage .section-whyus { background: var(--ui-surface); padding-block: 72px; margin-block: 56px 0; }
  .homepage .wrapper-why-us, .homepage .card-whyus { max-width: var(--ui-max); margin-inline: auto; padding: 0 var(--ui-gutter) !important; background: transparent !important; border: 0 !important; box-shadow: none !important; }
  .homepage .items-container-whyus { display: grid !important; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: center; }
  .homepage .section-whyus { display: block !important; border-radius: 24px; margin-block-end: 56px !important; }
  .homepage .comparison-card .title-text { text-align: start !important; margin-block-start: 4px !important; }
  .homepage .comparison-card .ui-pkg__eyebrow { display: block; color: var(--ui-brand-600) !important; font: 800 13px/1 var(--ui-font) !important; letter-spacing: .02em; }
  .homepage .items-container-why { width: auto !important; padding: 0 !important; margin: 0 !important; background: transparent !important; border-radius: 0 !important; display: block !important; }
  .homepage .section-whyus .image-container { margin: 0 !important; }
  .homepage .comparison-card { display: block !important; margin: 0 !important; text-align: start !important; }
  .ui-pkg__cta { width: auto !important; display: inline-flex !important; padding-inline: 26px !important; }
  .homepage .section-whyus .image-container { position: relative; background: var(--ui-card); border-radius: 24px; padding: 22px; box-shadow: 0 20px 50px rgba(11, 27, 58, .08); }
  .homepage .section-whyus .whyus-image { width: 100% !important; height: auto !important; border-radius: 16px; display: block; }
  .ui-pkg__chip { display: block; position: absolute; inset-inline-end: -14px; inset-block-start: 30px; background: #0B1B3A; color: #fff; border-radius: 14px; padding: 10px 14px; font: 600 12px/1.2 var(--ui-font); }
  .ui-pkg__chip b { display: block; font-size: 20px; font-weight: 800; color: #5FE0E8; }
  .homepage .comparison-card { width: auto !important; padding: 0 !important; background: transparent !important; border: 0 !important; box-shadow: none !important; }
  .homepage .comparison-card .title-text { font: 800 var(--ui-h2)/1.15 var(--ui-font) !important; color: var(--ui-navy) !important; margin: 0 !important; }
  .homepage .comparison-card .unordered-list { display: grid !important; grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0 0 !important; padding: 0 !important; }
  .homepage .comparison-card .list-item { display: flex !important; align-items: center; gap: 12px; margin: 0 !important; background: var(--ui-card); border: 1px solid var(--ui-line); border-radius: 14px; padding: 14px 16px !important; }
  .homepage .comparison-card .list-item:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .homepage .comparison-card .list-item .icon { flex: none; width: 30px !important; height: 30px !important; padding: 7px; border-radius: 9px; background: var(--ui-ok-50); color: var(--ui-ok) !important; }
  .homepage .comparison-card .item-text { font: 700 15px/1.3 var(--ui-font) !important; color: var(--ui-navy) !important; }
  .ui-pkg__cta { margin-block-start: 24px; }
}

.homepage .accordion__item { border: 1px solid var(--ui-line) !important; border-radius: 14px !important; margin-block-end: 8px; background: var(--ui-card); overflow: hidden; }
.homepage .accordion__title-text { font-family: var(--ui-font); font-weight: 700; color: var(--ui-navy); }
.homepage .more-questions { background: var(--ui-surface); border-radius: 14px; }

.homepage .testimonial-card { border-radius: 16px !important; background: var(--ui-surface) !important; border: 0 !important; box-shadow: none !important; }
.ui-review-head { display: flex; align-items: center; gap: 10px; }
.ui-review-avatar { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; flex: none; background: var(--ui-brand-50); }
.ui-review-src { margin-inline-start: auto; font-size: 11px; font-weight: 700; color: var(--ui-muted); }

/* --------------------------------------------------------------------------
   Contact dock: sticky bar (mobile) / chat pill (desktop)
   -------------------------------------------------------------------------- */
.ui-dock { position: fixed; z-index: 1000; font-family: var(--ui-font); }
.ui-dock a { text-decoration: none; }
.ui-dock__bar {
  inset-inline: 10px; inset-block-end: calc(10px + env(safe-area-inset-bottom));
  background: #0B1B3A; border-radius: 18px; padding: 8px; padding-inline-start: 14px;
  display: flex; align-items: center; gap: 8px; box-shadow: 0 12px 28px rgba(11, 27, 58, .35);
  transition: transform .3s ease, opacity .3s ease;
}
.ui-dock__bar.is-hidden { transform: translateY(140%); opacity: 0; pointer-events: none; }
.ui-dock__price { color: #fff; line-height: 1.1; }
.ui-dock__price small { display: block; font-size: 11px; color: #9FB0C6; }
.ui-dock__price b { font-size: 18px; font-weight: 900; }
.ui-dock__price b span { font-size: 11px; font-weight: 600; }
.ui-dock__sp { flex: 1; }
.ui-dock__ib { position: relative; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; flex: none; color: #fff; background: rgba(255, 255, 255, .1); }
.ui-dock__ib svg { width: 22px; height: 22px; }
.ui-dock__ib--wa { background: var(--ui-wa); }
.ui-dock__ib--wa::before, .ui-dock__ib--wa::after { content: ""; position: absolute; inset: 0; border-radius: 12px; border: 2px solid var(--ui-wa); animation: ui-ring 2.4s ease-out infinite; }
.ui-dock__ib--wa::after { animation-delay: 1.2s; }
.ui-dock__ib--wa svg { animation: ui-wiggle 4s ease-in-out infinite; }
.ui-dock__badge { position: absolute; top: -5px; inset-inline-end: -5px; min-width: 18px; height: 18px; border-radius: 9px; background: var(--ui-tr); color: #fff; font-size: 10px; font-weight: 900; display: grid; place-items: center; border: 2px solid #0B1B3A; animation: ui-pop 4s ease-in-out infinite; }
.ui-dock__cta { height: 44px; padding-inline: 14px; border-radius: 12px; background: #fff; color: #0B1B3A !important; font-weight: 800; font-size: 14px; display: inline-flex; align-items: center; gap: 4px; white-space: nowrap; border: 0; cursor: pointer; font-family: var(--ui-font); }
.ui-dock__label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.ui-bubble {
  position: fixed; z-index: 1000; inset-inline-end: 16px; inset-block-end: calc(var(--ui-sticky-h) + 18px + env(safe-area-inset-bottom));
  background: #fff; border-radius: 16px; border-end-end-radius: 4px; box-shadow: 0 10px 24px rgba(11, 27, 58, .18);
  padding: 10px 12px; display: flex; gap: 9px; align-items: center; max-width: 250px; font-family: var(--ui-font);
  animation: ui-float 4s ease-in-out infinite; transition: opacity .3s ease, transform .3s ease;
}
.ui-bubble.is-hidden { opacity: 0; transform: translateY(8px); pointer-events: none; }
.ui-bubble b { display: block; font-size: 12.5px; color: #0B1B3A; }
.ui-bubble span { font-size: 12px; color: #334155; }
.ui-bubble__on { width: 8px; height: 8px; border-radius: 50%; background: var(--ui-ok); display: inline-block; margin-inline-end: 4px; }
.ui-bubble__close { border: 0; background: transparent; color: #94A3B8; font-size: 18px; line-height: 1; cursor: pointer; padding: 0 0 0 4px; }
.ui-typing { display: inline-flex; gap: 3px; margin-inline-start: 4px; vertical-align: middle; }
.ui-typing i { width: 4px; height: 4px; border-radius: 50%; background: #64748B; animation: ui-dot 1.2s infinite; }
.ui-typing i:nth-child(2) { animation-delay: .2s; } .ui-typing i:nth-child(3) { animation-delay: .4s; }

@media (min-width: 992px) {
  .ui-dock__bar { inset-inline: auto 22px; inset-block-end: 22px; background: transparent; box-shadow: none; padding: 0; gap: 10px; flex-direction: column; align-items: flex-end; }
  .ui-dock__price, .ui-dock__sp, .ui-dock__cta { display: none; }
  .ui-dock__bar.is-hidden { transform: none; opacity: 1; pointer-events: auto; }
  .ui-dock__ib { width: 48px; height: 48px; border-radius: 50%; background: #0B1B3A; box-shadow: 0 8px 18px rgba(11, 27, 58, .3); }
  .ui-dock__ib--call svg { animation: ui-ringphone 3s ease-in-out infinite; }
  .ui-dock__ib--wa { order: 2; width: auto; height: auto; border-radius: 999px; padding-block: 8px; padding-inline: 8px 18px; background: var(--ui-wa); display: flex; gap: 10px; box-shadow: 0 10px 24px rgba(37, 211, 102, .4); transform-origin: 100% 50%; animation: ui-breath 3s ease-in-out infinite; }
  [dir="rtl"] .ui-dock__ib--wa { transform-origin: 0 50%; }
  .ui-dock__ib--wa::before, .ui-dock__ib--wa::after { display: none; }
  .ui-dock__ib--wa svg { width: 38px; height: 38px; padding: 8px; border-radius: 50%; background: #fff; color: var(--ui-wa); animation: none; }
  .ui-dock__ib--wa .ui-dock__label { position: static; width: auto; height: auto; clip: auto; font-weight: 800; font-size: 14px; }
  .ui-dock__badge { top: -2px; inset-inline-end: auto; inset-inline-start: 30px; }
  .ui-bubble { inset-block-end: 150px; inset-inline-end: 22px; }
}
body.has-ui-dock { padding-block-end: calc(var(--ui-sticky-h) + 16px); }
@media (min-width: 992px) { body.has-ui-dock { padding-block-end: 0; } }

@keyframes ui-ring { 0% { transform: scale(1); opacity: .9; } 100% { transform: scale(1.6); opacity: 0; } }
@keyframes ui-wiggle { 0%, 86%, 100% { transform: rotate(0); } 89% { transform: rotate(-14deg); } 92% { transform: rotate(12deg); } 95% { transform: rotate(-8deg); } }
@keyframes ui-pop { 0%, 80%, 100% { transform: scale(1); } 85% { transform: scale(1.3); } }
@keyframes ui-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
@keyframes ui-dot { 0%, 60%, 100% { opacity: .3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-2px); } }
@keyframes ui-breath { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.04); } }
@keyframes ui-ringphone { 0%, 70%, 100% { transform: rotate(0); } 74% { transform: rotate(-18deg); } 78% { transform: rotate(16deg); } 82% { transform: rotate(-12deg); } 86% { transform: rotate(8deg); } }

/* --------------------------------------------------------------------------
   Checkout flow (booking / summary / payment / success)
   -------------------------------------------------------------------------- */
.ui-flow { max-width: 1080px; margin-inline: auto; padding-inline: var(--ui-gutter); padding-block: 18px 120px; }
@media (min-width: 992px) { .ui-flow { padding-block-end: 60px; } }
.ui-flow__grid { display: grid; gap: 16px; }
@media (min-width: 992px) { .ui-flow__grid { grid-template-columns: minmax(0, 1fr) 380px; align-items: start; gap: 28px; } .ui-flow__aside { position: sticky; top: 90px; } }
.ui-flow__main { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.ui-flow__title { margin: 4px 0 0; font-size: 24px; font-weight: 800; color: var(--ui-navy); letter-spacing: -.01em; }
.ui-flow__lead { margin: -8px 0 0; font-size: 13.5px; color: var(--ui-muted); }

.ui-steps { display: flex; align-items: center; gap: 4px; font-size: 11.5px; font-weight: 700; color: var(--ui-muted); list-style: none; margin: 0; padding: 0; }
.ui-steps li { display: flex; align-items: center; gap: 5px; white-space: nowrap; }
.ui-steps li i { width: 24px; height: 24px; border-radius: 50%; border: 1.5px solid var(--ui-line); display: grid; place-items: center; font-style: normal; font-size: 11px; background: var(--ui-card); }
.ui-steps li i svg { width: 12px; height: 12px; stroke-width: 3; }
.ui-steps li.is-current { color: var(--ui-navy); }
.ui-steps li.is-current i { background: var(--ui-brand-600); border-color: var(--ui-brand-600); color: #fff; }
.ui-steps li.is-done i { background: var(--ui-ok); border-color: var(--ui-ok); color: #fff; }
.ui-steps .ui-steps__line { flex: 1; min-width: 8px; border-top: 1.5px dashed var(--ui-line); }
.ui-steps .ui-steps__line.is-done { border-top-style: solid; border-color: var(--ui-ok); }
@media (max-width: 380px) { .ui-steps li span { display: none; } .ui-steps li.is-current span { display: inline; } }

.ui-summary { padding: 14px; background: var(--ui-brand-50); border-radius: 18px; }
.ui-summary__product { display: flex; gap: 12px; align-items: center; }
.ui-summary__product .ui-sbx { width: 80px; flex: none; }
.ui-summary__product b { display: block; color: var(--ui-navy); font-size: 15px; }
.ui-summary__product span { font-size: 12.5px; color: var(--ui-ink); }
.ui-kv { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 14px; margin-top: 12px; }
.ui-kv small { display: block; color: var(--ui-muted); font-size: 11px; }
.ui-kv b { font-size: 13px; color: var(--ui-navy); }
.ui-lines { display: flex; flex-direction: column; gap: 7px; border-top: 1px dashed #B9E3E7; margin-top: 12px; padding-top: 12px; font-size: 13px; font-variant-numeric: tabular-nums; }
.ui-lines > div { display: flex; justify-content: space-between; align-items: center; gap: 10px; color: var(--ui-ink); }
.ui-lines .is-total { font-weight: 800; color: var(--ui-navy); font-size: 15px; }
.ui-lines s { color: var(--ui-muted); font-weight: 500; margin-inline-end: 6px; }
.ui-lines .is-discount { color: var(--ui-ok); }

.ui-paybar { position: fixed; inset-inline: 0; inset-block-end: 0; z-index: 950; background: var(--ui-card); border-top: 1px solid var(--ui-line); padding-block: 10px calc(14px + env(safe-area-inset-bottom)); padding-inline: var(--ui-gutter); display: flex; align-items: center; gap: 12px; box-shadow: 0 -8px 24px rgba(11, 27, 58, .06); }
.ui-paybar__total small { display: block; font-size: 11px; color: var(--ui-muted); }
.ui-paybar__total b { font-size: 20px; color: var(--ui-navy); font-variant-numeric: tabular-nums; }
.ui-paybar .ui-btn { flex: 1; }
@media (min-width: 992px) { .ui-paybar { position: static; padding: 0; border: 0; box-shadow: none; background: transparent; margin-top: 14px; } .ui-paybar__total { display: none; } }
body.has-ui-paybar .ui-dock { display: none; }

.ui-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.ui-feats > div { background: var(--ui-surface); border-radius: 14px; padding: 10px; display: grid; grid-template-columns: 30px 1fr; column-gap: 8px; align-items: center; }
.ui-feats svg { grid-row: span 2; width: 30px; height: 30px; color: var(--ui-brand-600); background: var(--ui-card); border-radius: 8px; padding: 5px; }
.ui-feats b { font-size: 13px; color: var(--ui-navy); }
.ui-feats span { font-size: 11px; color: var(--ui-muted); }
.ui-kit { display: flex; gap: 6px; flex-wrap: wrap; }
.ui-timeline { display: flex; flex-direction: column; gap: 12px; }
.ui-timeline > div { display: grid; grid-template-columns: 14px 1fr; gap: 10px; position: relative; }
.ui-timeline > div:first-child::after { content: ""; position: absolute; inset-inline-start: 6px; top: 18px; bottom: -12px; border-inline-start: 2px dashed #BFE6EA; }
.ui-timeline i { width: 14px; height: 14px; border-radius: 50%; border: 3px solid var(--ui-brand-600); background: var(--ui-card); margin-top: 2px; }
.ui-timeline > div + div i { border-color: var(--ui-navy); }
.ui-timeline small { display: block; font-size: 11px; color: var(--ui-muted); font-weight: 600; }
.ui-timeline b { display: block; font-size: 13.5px; color: var(--ui-navy); }
.ui-timeline span { font-size: 12px; color: var(--ui-ink); }
.ui-prod-hero { display: flex; gap: 14px; align-items: center; background: linear-gradient(150deg, #0B1B3A, #123A63); border-radius: 18px; padding: 14px; }
.ui-prod-hero .ui-sbx { width: 120px; flex: none; }
.ui-prod-hero b { display: block; color: #fff; font-size: 17px; }
.ui-prod-hero span { font-size: 12.5px; color: #B7C4D6; }
.ui-secure { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; font-size: 12px; color: var(--ui-muted); font-weight: 700; }
.ui-secure span { display: inline-flex; align-items: center; gap: 4px; }
.ui-secure svg { width: 15px; height: 15px; color: var(--ui-ok); }

.ui-check { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--ui-ink); line-height: 1.45; cursor: pointer; }
.ui-check input { width: 20px; height: 20px; margin: 1px 0 0; accent-color: var(--ui-brand-600); flex: none; }
.ui-check a { color: var(--ui-brand-600); font-weight: 700; }

.ui-ccard { position: relative; overflow: hidden; height: 168px; border-radius: 16px; background: linear-gradient(135deg, #0B1B3A, #0B8F99); color: #fff; padding: 16px; display: flex; flex-direction: column; justify-content: space-between; direction: ltr; }
.ui-ccard::after { content: ""; position: absolute; right: -40px; top: -40px; width: 170px; height: 170px; border-radius: 50%; background: rgba(255, 255, 255, .08); }
.ui-ccard__chip { width: 36px; height: 26px; border-radius: 5px; background: linear-gradient(135deg, #F5D27A, #C9A13C); }
.ui-ccard__no { font-size: 18px; letter-spacing: .12em; font-weight: 700; font-variant-numeric: tabular-nums; min-height: 24px; }
.ui-ccard__bt { display: flex; justify-content: space-between; font-size: 12px; text-transform: uppercase; }
.ui-ccard__bt small { display: block; font-size: 9px; opacity: .7; letter-spacing: .08em; }

.ui-done { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 6px; padding-block: 8px 4px; }
.ui-done__ok { width: 68px; height: 68px; border-radius: 50%; background: var(--ui-ok-50); color: var(--ui-ok); display: grid; place-items: center; box-shadow: 0 0 0 10px rgba(22, 163, 74, .08); }
.ui-done__ok svg { width: 34px; height: 34px; stroke-width: 2.5; }
.ui-meet { display: flex; gap: 8px; }
.ui-meet > div { flex: 1; background: #0B1B3A; color: #fff; border-radius: 12px; padding: 8px 12px; }
.ui-meet small { display: block; font-size: 10px; color: #9FB0C6; text-transform: uppercase; letter-spacing: .1em; }
.ui-meet b { font-size: 16px; font-weight: 900; }

/* Phone input */
.ui-tel { display: flex; align-items: stretch; border: 1px solid var(--ui-line); border-radius: var(--ui-r-in); background: var(--ui-card); min-height: 48px; direction: ltr; transition: border-color .15s ease, box-shadow .15s ease; }
.ui-tel:focus-within { border-color: var(--ui-brand); box-shadow: 0 0 0 4px rgba(15, 181, 193, .14); }
.ui-tel__cc { position: relative; display: flex; align-items: center; gap: 6px; padding-inline: 10px 26px; border-inline-end: 1px solid var(--ui-line); font: 700 14px/1 var(--ui-font); color: var(--ui-navy); flex: none; }
.ui-tel__cc img { width: 22px; height: 15px; border-radius: 3px; object-fit: cover; }
.ui-tel__cc select { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; font-size: 16px; }
.ui-tel__cc::after { content: ""; position: absolute; right: 10px; top: 50%; width: 7px; height: 7px; border-right: 2px solid var(--ui-muted); border-bottom: 2px solid var(--ui-muted); transform: translateY(-70%) rotate(45deg); pointer-events: none; }
.ui-tel__num { all: unset; box-sizing: border-box; flex: 1; min-width: 0; padding-inline: 12px; font: 700 16px/1 var(--ui-font); color: var(--ui-navy); letter-spacing: .02em; font-variant-numeric: tabular-nums; }
.ui-tel__num::placeholder { color: #94A3B8; font-weight: 500; }
.ui-hint { font-size: 12px; color: var(--ui-ok); display: flex; gap: 5px; align-items: center; }

/* --------------------------------------------------------------------------
   Welcome popup
   -------------------------------------------------------------------------- */
.ui-pop { position: fixed; inset: 0; z-index: 2000; display: flex; align-items: flex-end; justify-content: center; font-family: var(--ui-font); }
@media (min-width: 768px) { .ui-pop { align-items: center; padding: 20px; } }
.ui-pop__backdrop { position: absolute; inset: 0; background: rgba(11, 27, 58, .55); animation: ui-fade .25s ease; }
.ui-pop__sheet { position: relative; width: 100%; max-width: 440px; max-height: 60vh; overflow: auto; background: var(--ui-card); border-radius: 22px 22px 0 0; box-shadow: var(--ui-sh-2); animation: ui-up .35s cubic-bezier(.2, .8, .2, 1); }
@media (min-width: 768px) { .ui-pop__sheet { border-radius: 22px; max-height: none; } }
.ui-pop__media { position: relative; height: 150px; background: #0B1B3A; overflow: hidden; }
.ui-pop__media img { width: 100%; height: 100%; object-fit: cover; opacity: .9; }
.ui-pop__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11, 27, 58, 0) 30%, rgba(11, 27, 58, .8)); }
.ui-pop__price { position: absolute; z-index: 1; inset-inline-start: 16px; inset-block-end: 12px; }
/* same round badge as the hero, sized for the 150px media strip at every width (the hero's desktop 168px rule must not reach it) */
.ui-pop .ui-pop__price.ui-price-badge { --pb: 96px; border-width: 3px; }
.ui-pop__close { position: absolute; z-index: 2; inset-block-start: 10px; inset-inline-end: 10px; width: 36px; height: 36px; border-radius: 50%; border: 0; background: rgba(255, 255, 255, .92); color: #0B1B3A; font-size: 22px; line-height: 1; cursor: pointer; }
.ui-pop__body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 12px; }
.ui-pop__title { margin: 0; font-size: 22px; line-height: 1.15; font-weight: 900; color: var(--ui-navy); letter-spacing: -.01em; }
.ui-pop__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.ui-pop__list li { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--ui-navy); }
.ui-pop__list svg { width: 18px; height: 18px; color: var(--ui-ok); }
.ui-pop__no { align-self: center; border: 0; background: none; color: var(--ui-muted); font: 600 13px var(--ui-font); cursor: pointer; text-decoration: underline; }
@keyframes ui-fade { from { opacity: 0; } }
@keyframes ui-up { from { transform: translateY(40px); opacity: 0; } }

/* --------------------------------------------------------------------------
   SweetAlert2 theme
   -------------------------------------------------------------------------- */
.swal2-popup { font-family: var(--ui-font) !important; border-radius: 20px !important; color: var(--ui-ink) !important; }
.swal2-title { color: var(--ui-navy) !important; font-weight: 800 !important; font-size: 20px !important; }
.swal2-html-container { font-size: 14.5px !important; }
.swal2-styled.swal2-confirm { background: var(--ui-brand-600) !important; border-radius: var(--ui-r-btn) !important; font-weight: 800 !important; box-shadow: none !important; }
.swal2-styled.swal2-cancel { background: var(--ui-surface) !important; color: var(--ui-navy) !important; border-radius: var(--ui-r-btn) !important; }
.swal2-toast { border-radius: 14px !important; box-shadow: var(--ui-sh-2) !important; }
.swal2-toast .swal2-title { font-size: 14px !important; font-weight: 700 !important; }
[dir="rtl"] .swal2-popup { direction: rtl; }

@media (prefers-reduced-motion: reduce) {
  .ui *, .ui-dock *, .ui-bubble, .ui-pop *, .ui-hero__slide { animation: none !important; transition: none !important; }
}

/* --------------------------------------------------------------------------
   Flatpickr (moved from the old inline index/landing block)
   -------------------------------------------------------------------------- */
.flatpickr-calendar { font-family: var(--ui-font); border-radius: 16px !important; box-shadow: var(--ui-sh-2) !important; border: 0 !important; overflow: hidden; }
.flatpickr-calendar-header { background: var(--ui-navy); color: #fff; padding: 10px; text-align: center; font-weight: 800; font-size: 14px; }
html[data-theme="dark"] .flatpickr-calendar-header { background: #123A63; }
.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange { background: var(--ui-brand-600) !important; border-color: var(--ui-brand-600) !important; }
.flatpickr-day.today { border-color: var(--ui-brand) !important; }
@media (max-width: 768px) {
  .flatpickr-calendar { position: fixed !important; top: 50% !important; left: 50% !important; transform: translate(-50%, -50%) !important; width: 310px !important; max-width: calc(100vw - 32px) !important; z-index: 99999 !important; }
  .flatpickr-day { height: 36px !important; line-height: 36px !important; }
  body.calendar-open::after { content: ""; position: fixed; inset: 0; background: rgba(11, 27, 58, .45); z-index: 99998; }
}

/* --------------------------------------------------------------------------
   5.11 — existing pages (location, blog, static): tokens only, markup untouched
   -------------------------------------------------------------------------- */
.btn.btn-brand-700, .btn.btn-brand-solid {
  background: var(--ui-brand-600) !important; border-color: var(--ui-brand-600) !important; color: #fff !important;
  border-radius: var(--ui-r-btn) !important; font-family: var(--ui-font); font-weight: 800; letter-spacing: .01em;
}
.btn.btn-brand-700:hover, .btn.btn-brand-solid:hover { background: #087780 !important; border-color: #087780 !important; }
.btn.btn-brand-outlined-700 { border-radius: var(--ui-r-btn) !important; border-color: var(--ui-brand-600) !important; color: var(--ui-brand-600) !important; }
main h1, main h2, main h3 { font-family: var(--ui-font); letter-spacing: -.01em; }
main h1 { text-wrap: balance; }
.header { box-shadow: 0 1px 0 var(--ui-line); background: var(--ui-page); }
.footer .nav__title { font-family: var(--ui-font); font-weight: 800; }
.footer a { transition: color .15s ease; }
.footer a:hover { color: var(--ui-brand-600) !important; }

/* Faz 5.1 — navy footer (mockup 1); links, order and headings unchanged */
.footer { background: #0B1B3A !important; color: #B7C4D6 !important; font-family: var(--ui-font);
  --tag-text: #DDE6F1; --tag-border: rgba(255, 255, 255, .22); --tag-bg: rgba(255, 255, 255, .04);
  --tag-text-hover: #5FE0E8; --tag-border-hover: #5FE0E8; --section-border: rgba(255, 255, 255, .12); }
.footer .container { max-width: var(--ui-max); padding-inline: var(--ui-gutter) !important; }
.footer p, .footer .footer__addr p { color: #B7C4D6 !important; font-size: 13.5px; line-height: 1.55; }
.footer, .footer .footer__addr, .footer .footer__nav, .footer .nav__item, .footer .nav__ul, .footer .legal, .homepage .faq-left-top { text-align: start !important; }
.footer .footer__addr { align-items: flex-start !important; }
.footer { box-shadow: 0 0 0 100vmax #0B1B3A; clip-path: inset(0 -100vmax -100px); }
.footer .legal { background: #0B1B3A !important; }
.footer .nav__ul li, .footer .nav__ul a { text-align: start !important; }
.footer .nav__ul { gap: 0 !important; }
.footer .container { padding-inline: var(--ui-gutter) !important; }
.footer .footer__addr { padding-inline: 0 !important; margin-inline: 0 !important; }
.footer .nav__item, .footer .nav__ul, .footer .nav__ul li { align-items: flex-start !important; justify-content: flex-start !important; }
.footer .nav__ul li { margin-block: 0 !important; padding-block: 5px !important; }
.footer .footer__social-media, .footer .footer__bank-logo { justify-content: flex-start !important; }
.footer .site-tags .site-tag { display: inline-block !important; text-align: start; font-size: 12.5px !important; padding: 6px 11px !important; }
.footer .site-tags__list { justify-content: flex-start !important; }
.footer .site-tags { padding-inline: var(--ui-gutter) !important; }
.footer .footer__logo { display: block; width: max-content !important; max-width: 100%; margin-inline: 0 !important; background: #fff; border-radius: 12px; padding: 6px 10px; }
.footer .footer__logo img { display: block; width: 120px; height: auto; }
.footer .footer__social-media a { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 9px; background: #fff; }
.footer .footer__social-media svg { width: 18px; height: 18px; }
.footer .nav__title { color: #fff !important; font-size: 14px !important; }
.footer .nav__ul a, .footer .nav__ul li { color: #B7C4D6 !important; font-size: 13.5px; }
.footer .nav__ul a:hover, .footer a:hover { color: #5FE0E8 !important; }
.footer .legal { border-top: 1px solid rgba(255, 255, 255, .12); }
.footer .legal p { color: #8A9BB3 !important; font-size: 12.5px; }
@media (max-width: 991.98px) {
  .footer .footer__nav { display: grid !important; grid-template-columns: 1fr 1fr; gap: 20px 16px; }
  .footer .footer__nav > .nav__item:first-child { grid-column: 1 / -1; }
}

/* Faz 5.1 — FAQ (mockup 1): bordered accordion; on mobile the help box follows the list */
.homepage .faq .accordion__item { border: 1px solid var(--ui-line) !important; border-radius: 14px !important; background: var(--ui-card) !important; margin-block-end: 10px !important; overflow: hidden; box-shadow: none !important; }
.homepage .faq .accordion__title { padding: 14px 16px !important; font-family: var(--ui-font); font-weight: 800; color: var(--ui-navy); border: 0 !important; background: transparent !important; }
.homepage .faq .accordion__content { padding: 0 16px 14px !important; font: 400 14px/1.55 var(--ui-font); color: var(--ui-muted); }
.homepage .faq .more-questions { background: var(--ui-surface) !important; border: 0 !important; border-radius: 16px !important; }
@media (max-width: 991.98px) {
  .homepage .faq-wrapper { display: flex !important; flex-direction: column; }
  .homepage .faq-left { display: contents !important; }
  .homepage .faq-left-top { order: 1; }
  .homepage .faq .accordion { order: 2; width: 100% !important; }
  .homepage .faq-left-bottom { order: 3; margin-block-start: 8px; }
}
.blog-text a, .blog-content a { color: var(--ui-brand-600); }

/* Faz 5.1 — landing article (mockup 2) */
.ui-article { max-width: 820px; margin: 48px auto 32px !important; padding-inline: var(--ui-gutter); font-family: var(--ui-font); }
.ui-article .blog-header-img { padding: 0 !important; box-shadow: none !important; background: transparent !important; }
.ui-article .blog-header-img img { border-radius: 20px; aspect-ratio: 16 / 9; max-height: none; }
.ui-article h1 { font: 800 var(--ui-h1)/1.12 var(--ui-font) !important; color: var(--ui-navy) !important; text-align: start !important; letter-spacing: -.02em; margin: 0 0 16px !important; text-wrap: balance; }
.ui-article .blog-text { font-size: 16px; line-height: 1.7; color: var(--ui-ink); }
.ui-article .blog-text h2 { font: 800 var(--ui-h2)/1.2 var(--ui-font) !important; color: var(--ui-navy) !important; margin: 28px 0 10px !important; }
.ui-article .blog-text h3 { font: 800 var(--ui-h3)/1.3 var(--ui-font) !important; color: var(--ui-navy) !important; margin: 22px 0 8px !important; }
.ui-article .blog-text p { margin: 0 0 14px; }
.ui-article .blog-text img { border-radius: 14px; height: auto; }
.ui-article__cta { margin-block: 24px 8px; }
.ui-article__cta .ui-btn { width: 100%; }
@media (min-width: 768px) { .ui-article__cta .ui-btn { width: auto; padding-inline: 32px; } }

/* Faz 5.1 — booking flow order on mobile (mockups 4/5)
   Step 1: steps + title → order card → forms. Step 2: order card collapses to the price box, after the content. */
@media (max-width: 991.98px) {
  #booking-flow .ui-flow__grid > .ui-flow__main,
  #booking-flow .ui-flow__grid > .ui-flow__main > section.ui-flow__main:not([hidden]) { display: contents; }
  #booking-flow section[data-bk-step="booking"] > :nth-child(-n+2) { order: -2; }
  #booking-flow .ui-flow__aside { order: -1; }
  #booking-flow .is-summary .ui-flow__aside { order: 1; }
  #booking-flow .is-summary .ui-secure { order: 2; }
  #booking-flow .is-summary .ui-summary__product,
  #booking-flow .is-summary .ui-summary > .ui-section-head,
  #booking-flow .is-summary .ui-summary > .ui-kv,
  #booking-flow .is-summary .ui-lines > div:first-child { display: none; }
  #booking-flow .is-summary .ui-lines { margin: 0; border-top: 0; padding-top: 0; }
}

/* Faz 5.1 — card.js preview themed to mockup 6 (navy → teal) */
.ui-card-preview { margin-block: 12px 4px; }
.ui-card-preview .jp-card-container { margin-block: 0 !important; }
.ui-card-preview .jp-card .jp-card-front, .ui-card-preview .jp-card .jp-card-back,
.ui-card-preview .jp-card.jp-card-identified .jp-card-front, .ui-card-preview .jp-card.jp-card-identified .jp-card-back {
  background: linear-gradient(135deg, #0B1B3A 0%, #0E4F66 55%, #0B8F99 100%) !important; }
.ui-card-preview .jp-card .jp-card-front::before, .ui-card-preview .jp-card .jp-card-back::before { opacity: 0 !important; }
.ui-card-preview .jp-card .jp-card-front::after { content: ""; position: absolute; inset-block-start: -40%; inset-inline-end: -20%; width: 70%; height: 140%; border-radius: 50%; background: rgba(255, 255, 255, .07); }
.ui-card-preview .jp-card .jp-card-front .jp-card-lower .jp-card-name, .ui-card-preview .jp-card .jp-card-front .jp-card-number, .ui-card-preview .jp-card .jp-card-front .jp-card-expiry { color: #fff !important; opacity: .95; }
.ui-card-preview .jp-card .jp-card-front .jp-card-chip { background: linear-gradient(135deg, #E9C46A, #C9A227) !important; }

/* Faz 5.1 — success page order on mobile (mockup 7): header → summary → pickup/return → delivery points → buttons */
@media (max-width: 991.98px) {
  .checkout-success .ui-flow__grid > .ui-flow__main, .checkout-success .ui-flow__grid > .ui-flow__aside { display: contents; }
  .checkout-success .ui-flow__main > :first-child, .checkout-success .ui-done { order: -3; }
  .checkout-success .ui-summary { order: -2; }
  .checkout-success .ui-summary .ui-summary__product { display: none; }
  .checkout-success .checkout-success-content { order: -1; }
  .checkout-success .checkout-success-faq { order: 0; }
  .checkout-success .checkout-success-bottom { order: 1; margin-top: 0 !important; }
}
/* Until app.js's tab handler has touched it (it writes style.display), only the pickup pane shows. */
.checkout-success #checkout-qr-2:not([style]) { display: none; }

/* Faz 5.1 — WhatsApp message picker (mockup 8, option C; public/js/wa-picker.js) */
.ui-wa { position: fixed; inset: 0; z-index: 2000; display: flex; align-items: flex-end; justify-content: flex-end; padding: 16px; background: rgba(11, 27, 58, .28); font-family: var(--ui-font); }
.ui-wa[hidden] { display: none !important; }
.ui-wa__panel { width: min(360px, 100%); max-height: calc(100dvh - 32px); display: flex; flex-direction: column; overflow: hidden; border-radius: 20px; background: #fff; box-shadow: 0 24px 60px rgba(11, 27, 58, .28); transform: translateY(16px); opacity: 0; transition: transform .25s ease, opacity .25s ease; }
.ui-wa.is-open .ui-wa__panel { transform: none; opacity: 1; }
.ui-wa__head { display: flex; align-items: center; gap: 12px; padding: 12px 14px; background: #075E54; color: #fff; }
.ui-wa__head b { display: block; font-size: 16px; font-weight: 800; }
.ui-wa__head span { display: flex; align-items: center; gap: 6px; font-size: 12.5px; opacity: .9; }
.ui-wa__logo { flex: none; width: 42px; height: 42px; border-radius: 50%; background: #fff; display: grid; place-items: center; overflow: hidden; }
.ui-wa__logo img { width: 36px; height: auto; }
.ui-wa__dot { width: 8px; height: 8px; border-radius: 50%; background: #25D366; box-shadow: 0 0 0 2px rgba(255, 255, 255, .6); }
.ui-wa__close { margin-inline-start: auto; width: 36px; height: 36px; border: 0; border-radius: 50%; background: rgba(255, 255, 255, .12); color: #fff; font-size: 22px; line-height: 1; cursor: pointer; }
.ui-wa__body { padding: 14px; background: #ECE5DD; display: flex; flex-direction: column; gap: 8px; overflow-y: auto; }
.ui-wa__msg { margin: 0; align-self: flex-start; max-width: 88%; padding: 9px 12px; border-radius: 4px 14px 14px 14px; background: #fff; color: #111B21; font-size: 14px; line-height: 1.4; box-shadow: 0 1px 1px rgba(0, 0, 0, .08); opacity: 0; transform: translateY(6px); }
.ui-wa.is-open .ui-wa__msg { animation: ui-wa-in .35s ease forwards; }
.ui-wa.is-open .ui-wa__msg + .ui-wa__msg { animation-delay: .45s; }
@keyframes ui-wa-in { to { opacity: 1; transform: none; } }
.ui-wa__chips { display: flex; flex-wrap: wrap; gap: 8px; padding: 12px 14px 4px; }
.ui-wa__chip { min-height: 40px; padding: 6px 14px; border: 1.5px solid #25D366; border-radius: 999px; background: #fff; color: #128C7E; font: 700 14px/1.2 var(--ui-font); cursor: pointer; }
.ui-wa__chip:hover, .ui-wa__chip:focus-visible { background: #E7F8EE; outline: none; }
.ui-wa__form { display: flex; gap: 8px; padding: 10px 14px 14px; }
.ui-wa__input { flex: 1; min-width: 0; min-height: 44px; padding-inline: 14px; border: 1px solid var(--ui-line); border-radius: 999px; font: 500 14px var(--ui-font); color: #111B21; outline: none; }
.ui-wa__input:focus { border-color: #25D366; box-shadow: 0 0 0 3px rgba(37, 211, 102, .18); }
.ui-wa__send { flex: none; width: 44px; height: 44px; border: 0; border-radius: 50%; background: #25D366; color: #fff; display: grid; place-items: center; cursor: pointer; }
.ui-wa__send svg { width: 20px; height: 20px; }
[dir="rtl"] .ui-wa__send svg { transform: scaleX(-1); }
[dir="rtl"] .ui-wa__msg { border-radius: 14px 4px 14px 14px; }
@media (max-width: 575.98px) { .ui-wa { padding: 0; align-items: flex-end; justify-content: stretch; } .ui-wa__panel { width: 100%; border-radius: 20px 20px 0 0; max-height: 85dvh; } }
@media (prefers-reduced-motion: reduce) { .ui-wa__panel, .ui-wa__msg { transition: none; animation: none !important; opacity: 1; transform: none; } }

/* ==========================================================================
   Faz 5.1 — rental form v2 (owner reference image): tabs, labelled fields, WiFi quantity, trust row
   ========================================================================== */
.ui-rent__card { grid-template-columns: 1fr 1fr; gap: 10px; padding: 12px; }
.ui-rent__tabs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.ui-rent__tab { display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 6px 8px; border: 0; border-radius: 12px; background: var(--ui-surface); color: var(--ui-navy); font: 700 13px/1.15 var(--ui-font); cursor: pointer; text-align: center; transition: background-color .15s ease, color .15s ease; }
.ui-rent__tab .ui-icon { width: 20px; height: 20px; }
.ui-rent__tab:hover { background: var(--ui-brand-50); }
.ui-rent__tab.is-active { background: var(--ui-brand-600); color: #fff; box-shadow: 0 6px 16px rgba(11, 143, 153, .28); }
.ui-rent__tab:focus-visible { outline: 3px solid rgba(15, 181, 193, .45); outline-offset: 2px; }
@media (max-width: 400px) { .ui-rent__tab { flex-direction: column; gap: 3px; font-size: 12px; min-height: 56px; } }

.ui-rent .ui-field { min-height: 62px; padding-inline: 12px 30px; }
.ui-rent .ui-field > .ui-icon, .ui-rent .ui-field [data-rent-icon] .ui-icon { width: 22px; height: 22px; color: var(--ui-navy); }
.ui-rent .ui-field [data-rent-icon] { display: grid; }
.ui-rent .ui-field__body .ui-field__label { display: block !important; font-size: 12px; margin-block-end: 2px; }
.ui-rent .ui-field input::placeholder, .ui-rent .ui-field select:invalid { color: var(--ui-muted); font-weight: 600; }

.ui-rent__qty { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 12px; padding: 12px; border: 1px solid var(--ui-line); border-radius: var(--ui-r-in); background: var(--ui-card); }
.ui-rent__qty > .ui-icon { width: 30px; height: 30px; color: var(--ui-navy); }
.ui-rent__qty-text label { display: block; font: 800 15px/1.2 var(--ui-font); color: var(--ui-navy); }
.ui-rent__qty-text span { display: block; margin-block-start: 3px; font-size: 12.5px; line-height: 1.35; color: var(--ui-muted); }
.ui-rent__qty-ctl { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.ui-rent__qty-ctl small { font-size: 11.5px; font-weight: 800; color: var(--ui-brand-600); white-space: nowrap; }
@media (max-width: 400px) { .ui-rent__qty { grid-template-columns: auto minmax(0, 1fr); } .ui-rent__qty-ctl { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; } }

.ui-rent__cta .ui-btn { min-height: 56px; font-size: 17px; }

.ui-rent__trust { list-style: none; margin: 0; padding: 10px 12px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 12px; background: var(--ui-brand-50); border: 1px solid rgba(15, 181, 193, .28); border-radius: var(--ui-r-in); }
.ui-rent__trust li { display: flex; align-items: center; gap: 9px; font: 800 12.5px/1.25 var(--ui-font); color: var(--ui-navy) !important; min-width: 0; }
.ui-rent__trust li .ui-icon { width: 30px; height: 30px; padding: 6px; border-radius: 50%; background: var(--ui-brand-600); color: #fff; flex: none; }
.ui-rent__trust small { display: block; font-weight: 600; color: var(--ui-brand-600); font-size: 11.5px; }

@media (min-width: 992px) {
  .ui-rent__card { grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: stretch; padding: 16px; gap: 12px; }
  .ui-rent__full { grid-column: 1 / -1; }
  .ui-rent__tabs { grid-column: 1 / -1; max-width: 720px; }
  .ui-rent__qty { grid-column: 1 / 4; }
  .ui-rent__cta { grid-column: 4 / 5; align-self: stretch; justify-content: flex-end; min-width: 0; }
  .ui-rent__cta .ui-btn { min-height: 60px; }
  .ui-rent .ui-rent__qty { border: 1px solid var(--ui-line); padding-inline: 16px; min-height: 0; }
  .ui-rent__trust { grid-template-columns: repeat(4, minmax(0, 1fr)); padding: 12px 16px; }
  .ui-rent__trust li { justify-content: center; }
  .ui-rent__trust li + li { border-inline-start: 1px solid rgba(15, 181, 193, .3); padding-inline-start: 12px; }

  /* compact pinned bar: 4 fields + stepper + CTA on one row */
  .ui-rent.is-pinned .ui-rent__card { grid-template-columns: repeat(4, minmax(0, 1fr)) auto 190px; align-items: center; gap: 10px; }
  .ui-rent.is-pinned .ui-rent__tabs, .ui-rent.is-pinned .ui-rent__trust, .ui-rent.is-pinned .ui-rent__qty > .ui-icon,
  .ui-rent.is-pinned .ui-rent__qty-text, .ui-rent.is-pinned .ui-rent__qty-ctl small { display: none; }
  .ui-rent.is-pinned .ui-rent__qty { grid-column: auto; grid-template-columns: auto; padding: 6px 10px; }
  .ui-rent.is-pinned .ui-rent__cta { grid-column: auto; }
  .ui-rent.is-pinned .ui-field { min-height: 52px; }
  .ui-rent.is-pinned .ui-rent__cta .ui-btn { min-height: 48px; font-size: 15px; }
}
@media (max-width: 991.98px) {
  .ui-rent .ui-field { gap: 8px; padding-inline: 10px 26px; }
  .ui-rent .ui-field__body .ui-field__label { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .ui-rent .ui-field--select::after { inset-inline-end: 10px; }
}

/* ==========================================================================
   Faz 5.1 — dark mode fixes (html[data-theme="dark"], toggled by app.js)
   ========================================================================== */
/* rental form: the layout's mobile dark rule paints every input #1e293b; inside the field cards they must be transparent */
html[data-theme="dark"] .ui-field input, html[data-theme="dark"] .ui-field select,
html[data-theme="dark"] .ui-stepper input { background: transparent !important; border-color: transparent !important; color: var(--ui-navy) !important; }
html[data-theme="dark"] .ui-field select option { background: #0F172A; color: #E6EDF7; }
html[data-theme="dark"] .ui-rent__tab:not(.is-active) { background: #16233A; color: var(--ui-navy); }
html[data-theme="dark"] .ui-rent__tab:not(.is-active):hover { background: #1C2D48; }
html[data-theme="dark"] .ui-rent.is-pinned { background: rgba(11, 18, 32, .96); }
html[data-theme="dark"] .ui-rent__price b { color: #5FE0E8; }
html[data-theme="dark"] .ui-rent__trust { background: linear-gradient(90deg, rgba(15, 181, 193, .22), rgba(15, 181, 193, .12)); border-color: rgba(95, 224, 232, .45); }
html[data-theme="dark"] .ui-rent__trust li .ui-icon { background: var(--ui-brand); }
html[data-theme="dark"] .ui-rent__trust small,html[data-theme="dark"] .ui-rent__qty-ctl small { color: #5FE0E8; }

/* how it works: the generic .tab-btn.tab-active dark rule below painted the active step teal */
html[data-theme="dark"] .homepage .how-booking-esim-tab-item.tab-active { background: transparent !important; color: inherit !important; }

/* FAQ: legacy brand-subdued fill + muted text was unreadable; keep the card surface */
html[data-theme="dark"] .homepage .faq .accordion__title:hover,
html[data-theme="dark"] .homepage .faq .accordion-active { background: #16233A !important; }
html[data-theme="dark"] .homepage .faq .accordion__content { background: #16233A !important; color: #CBD5E1 !important; }
html[data-theme="dark"] .homepage .faq .accordion__content * { color: inherit !important; }

/* home sections */
html[data-theme="dark"] .homepage .items-container-why, html[data-theme="dark"] .homepage .section-whyus .image-container { background: var(--ui-card) !important; }
html[data-theme="dark"] .homepage .section-whyus .card-whyus { border-color: var(--ui-line) !important; }
html[data-theme="dark"] .homepage .testimonials-section, html[data-theme="dark"] .homepage .testimonials-header { background: transparent !important; border-color: var(--ui-line) !important; }
html[data-theme="dark"] .homepage .location-grid .grid-item { border-color: var(--ui-line) !important; }

/* contact dock bubble */
html[data-theme="dark"] .ui-bubble { background: #16233A; color: #E6EDF7; box-shadow: 0 12px 30px rgba(0, 0, 0, .45); }
html[data-theme="dark"] .ui-bubble b { color: #fff; }
html[data-theme="dark"] .ui-bubble span { color: #B7C4D6; }
html[data-theme="dark"] .ui-bubble__close { color: #B7C4D6; }

/* blog / location detail: DB content, image frames, breadcrumbs, language chips */
html[data-theme="dark"] .blog-detail-img, html[data-theme="dark"] .blog-header-img { background-color: var(--ui-card) !important; border-color: var(--ui-card) !important; }
html[data-theme="dark"] .blog-text strong, html[data-theme="dark"] .blog-text b,
html[data-theme="dark"] .blog-text h1, html[data-theme="dark"] .blog-text h2, html[data-theme="dark"] .blog-text h3,
html[data-theme="dark"] .blog-text h4, html[data-theme="dark"] .related-blogs h2 { color: #F1F5F9 !important; }
html[data-theme="dark"] .breadcrumbs a, html[data-theme="dark"] .breadcrumbs span, html[data-theme="dark"] .breadcrumbs__account-info { color: #E6FAFB !important; }
html[data-theme="dark"] a.language-link { background-color: #16233A !important; color: #E6EDF7 !important; border-color: var(--ui-line) !important; }
html[data-theme="dark"] .ui-wa__panel { background: #0F172A; }
html[data-theme="dark"] .ui-wa__body { background: #0B141A; }
html[data-theme="dark"] .ui-wa__msg { background: #1F2C34; color: #E9EDEF; }
html[data-theme="dark"] .ui-wa__chip { background: transparent; color: #25D366; }
html[data-theme="dark"] .ui-wa__input { background: #16233A; color: #E6EDF7; border-color: var(--ui-line); }
html[data-theme="dark"] .tab-btn.tab-active { background-color: var(--ui-brand-600) !important; color: #fff !important; }
html[data-theme="dark"] button.btn.back { color: #E6EDF7 !important; }
html[data-theme="dark"] .blog-detail .blog-content .blog-detail-img.blog-detail-img--with-img { background-color: var(--ui-card) !important; border-color: var(--ui-line) !important; }

/* ==========================================================================
   Faz 5.1 — mobile first screen (owner request 2026-09-13): header + hero + the whole rental form fit one viewport
   ========================================================================== */
@media (max-width: 991.98px) {
  header.header { height: auto !important; }
  header .nav { padding-block: 6px !important; }
  header .nav__left .logo img { height: 40px !important; width: auto !important; }
  .mobile-menu { top: 52px; }

  .ui-hero__inner { min-height: clamp(210px, calc(100svh - 56px - var(--ui-rent-h, 420px) + 34px), 264px); padding-block: 12px 58px; }
  .ui-hero__top { inset-block-start: 10px; }
  .ui-price-badge { --pb: 78px; border-width: 2px; }
  .ui-hero__copy { padding-inline-end: 84px; }
  .ui-hero__eyebrow { margin-block-end: 6px; }
  .ui-hero__main { font-size: 23px; }
  .ui-hero__sub { font-size: 16px; }
  .ui-hero__best { margin-block-start: 6px; font-size: 11px; padding: 3px 8px; }
  .ui-rotator { height: 28px; margin-block-start: 8px; }
  .ui-rotator .rotating-text { padding: 4px 10px; font-size: 12px !important; }

  .ui-rent__card { gap: 8px; padding: 10px; }
  .ui-rent__tab { flex-direction: row; gap: 6px; min-height: 40px; padding: 4px 6px; font-size: 12px; }
  .ui-rent__tab .ui-icon { width: 17px; height: 17px; }
  .ui-rent .ui-field { min-height: 52px; }
  .ui-rent .ui-field__body .ui-field__label { font-size: 11px; margin-block-end: 0; }
  .ui-rent__qty { grid-template-columns: auto minmax(0, 1fr) auto; gap: 10px; padding: 8px 10px; }
  .ui-rent__qty > .ui-icon { width: 24px; height: 24px; }
  .ui-rent__qty-text span { font-size: 11.5px; line-height: 1.35; margin-block-start: 2px; }
  .ui-rent__qty-ctl { grid-column: auto; flex-direction: column; gap: 2px; }
  .ui-rent__qty-ctl small { font-size: 10.5px; }
  .ui-stepper button { width: 30px; height: 30px; }
  .ui-rent__cta .ui-btn { min-height: 48px; font-size: 16px; }
  .ui-rent__trust { padding: 8px 10px; gap: 6px 10px; }
  .ui-rent__trust li { font-size: 11.5px; gap: 7px; }
  .ui-rent__trust li .ui-icon { width: 24px; height: 24px; padding: 5px; }
  .ui-rent__trust small { font-size: 10.5px; }
  .ui-rent .ui-field--date { cursor: pointer; }
}

/* ==========================================================================
   Faz 5.1 — mobile section scale (owner approved 2026-09-13): Why Rent → footer use the same compact
   type/spacing as the hero + rental form. Headings 20px start-aligned, 32px between sections,
   12px card padding, 14px card radius, 14px/800 card titles, 13px body. CSS only.
   ========================================================================== */
@media (max-width: 991.98px) {
  /* section rhythm + headings */
  .homepage .ui-section { padding-block: 32px 0 !important; }
  .homepage .how-booking-esim, .homepage .page-wrapper, .homepage .faq { padding-block: 32px 0 !important; }
  .homepage .section-whyus { margin-block: 32px 0 !important; padding: 0 !important; background: transparent !important; }
  .homepage .testimonials-section { padding-block: 32px 0 !important; }
  .homepage .how-booking-esim h2, .homepage .title-location, .homepage .faq-left-top h2, .homepage .testimonials-title, .homepage .comparison-card .title-text, .ui-h2 {
    font-size: 20px !important; line-height: 1.2 !important; text-align: start !important; margin: 0 0 12px !important;
  }
  .ui-sub, .homepage .testimonials-subtitle, .homepage .faq-left-top p { font-size: 13px !important; line-height: 1.5 !important; text-align: start !important; margin: -6px 0 12px !important; }
  .homepage .ui-why { gap: 8px !important; }
  .ui-why__item { padding: 12px; border-radius: 14px; }
  .ui-why__item b { font-size: 14px; }
  .ui-why__item span { font-size: 13px; }

  /* how it works */
  .homepage .how-booking-esim { gap: 0 !important; }
  .homepage .how-booking-esim .tabs-nav { margin: 0 !important; }
  .homepage .how-booking-esim-tab-item { gap: 12px; padding-block-end: 14px !important; }
  .homepage .how-booking-esim-tab-item::before { width: 30px; height: 30px; font-size: 14px; }
  .homepage .how-booking-esim-tab-item::after { inset-inline-start: 14px; inset-block-start: 34px; }
  .homepage .how-booking-esim-item-title h3 { margin: 4px 0 2px !important; font-size: 14px !important; }
  .homepage .how-booking-esim-item-title p { font-size: 13px !important; }

  /* locations */
  .homepage .location-grid { margin-top: 0 !important; }

  /* our package: one card, compact list */
  .homepage .wrapper-why-us, .homepage .card-whyus { padding: 0 var(--ui-gutter) !important; background: transparent !important; border: 0 !important; box-shadow: none !important; }
  .homepage .items-container-whyus { display: block !important; }
  .homepage .items-container-why { padding: 0 !important; margin: 0 0 12px !important; background: transparent !important; box-shadow: none !important; }
  .homepage .section-whyus .image-container { margin: 0 !important; padding: 0 !important; background: transparent !important; box-shadow: none !important; }
  .homepage .section-whyus .whyus-image { width: 100% !important; height: auto !important; border-radius: 14px; display: block; }
  .homepage .comparison-card { margin: 0 !important; padding: 12px !important; text-align: start !important; background: var(--ui-card) !important; border: 1px solid var(--ui-line) !important; border-radius: 14px !important; box-shadow: none !important; }
  .homepage .comparison-card .ui-pkg__eyebrow { font-size: 12px !important; margin-block-end: 4px; }
  .homepage .comparison-card .unordered-list { display: grid !important; grid-template-columns: 1fr 1fr; gap: 6px 8px; margin: 0 !important; padding: 0 !important; }
  .homepage .comparison-card .list-item { display: flex !important; align-items: center; gap: 8px; min-height: 36px; margin: 0 !important; padding: 4px 0 !important; border: 0 !important; }
  .homepage .comparison-card .list-item .icon { flex: none; width: 22px !important; height: 22px !important; padding: 4px; border-radius: 7px; background: var(--ui-ok-50); color: var(--ui-ok) !important; }
  .homepage .comparison-card .item-text { font: 700 13px/1.3 var(--ui-font) !important; color: var(--ui-navy) !important; }
  .homepage .comparison-card .ui-pkg__cta { width: 100%; min-height: 48px; margin-block-start: 12px !important; }

  /* testimonials */
  .homepage .testimonials-container { padding: 0 var(--ui-gutter) !important; }
  .homepage .testimonials-header { margin: 0 !important; padding: 0 !important; border: 0 !important; text-align: start !important; }
  .homepage .snap-track { padding-block: 0 8px !important; }
  .homepage .snap-slide, .homepage .testimonial-card { height: auto !important; min-height: 0 !important; }
  .homepage .testimonial-card { border-radius: 14px !important; }
  .homepage .testimonial-content { padding: 12px !important; height: auto !important; }
  .homepage .review-text { font-size: 13px !important; line-height: 1.5 !important; }
  .homepage .snap-pagination { margin-block-start: 4px !important; }

  /* faq */
  .homepage .faq-left-top { text-align: start !important; }
  .homepage .faq .accordion__item { border-radius: 14px !important; margin-block-end: 8px !important; }
  .homepage .faq .accordion__title { padding: 12px !important; gap: 12px !important; }
  .homepage .faq .accordion__title-text { font-size: 14px !important; line-height: 1.35 !important; }
  .homepage .faq .accordion__arrow, .homepage .faq .accordion__arrow i { font-size: 18px !important; }
  .homepage .faq .accordion__content { padding: 0 12px 12px !important; font-size: 13px !important; line-height: 1.5 !important; }
  .homepage .faq-left-bottom { margin-block-start: 4px !important; }
  .homepage .faq-left-bottom, .homepage .faq .more-questions { padding: 12px !important; border-radius: 14px !important; box-shadow: none !important; }
  .homepage .faq-left-bottom .more-questions { padding: 0 !important; background: transparent !important; }
  .homepage .faq-left-bottom .btn, .homepage .faq-left-bottom a.btn { min-height: 48px; }
  .homepage .faq { padding-block-end: 32px !important; }
  /* second pass: legacy flex gaps / centering */
  .homepage .comparison-card .title-text { font-weight: 800 !important; }
  .homepage .how-booking-esim-left { align-items: stretch !important; gap: 0 !important; }
  .homepage .card-whyus { padding: 0 !important; }
  .homepage .comparison-card { display: block !important; }
  .homepage .snap-track { align-items: stretch !important; }
  .homepage .snap-slide .testimonial-card, .homepage .snap-slide .testimonial-content { height: 100% !important; }
  .homepage .faq-wrapper { gap: 12px !important; }
  .homepage .faq-left-top { gap: 0 !important; }
  .homepage .faq-left-top p { margin: 0 0 8px !important; }
  .homepage .faq-left-top h2 { margin-block-end: 8px !important; }
  .homepage .faq .accordion { gap: 0 !important; }
  /* compact header: the controls were positioned for the old 68px bar */
  header .nav #hamburger { top: 13px !important; }
  header .nav #hamburger.active { top: 20px !important; } /* the X is drawn on line one (7px higher) */
  header .nav .header-controls { top: 0 !important; }
  header .nav .icon-pckt-moon { margin-top: 0 !important; } /* legacy 3px offset pushed the moon below the globe */

  /* why rent: horizontal compact cards */
  .ui-why__item { display: grid; grid-template-columns: 30px minmax(0, 1fr); column-gap: 10px; row-gap: 1px; align-items: center; padding: 10px; border-radius: 12px; }
  .ui-why__icon { grid-row: span 2; width: 30px; height: 30px; border-radius: 8px; align-self: start; }
  .ui-why__icon .ui-icon { width: 16px; height: 16px; }
  .ui-why__item b { font-size: 13px; line-height: 1.25; }
  .ui-why__item span:not(.ui-why__icon):not(.ui-why__n) { font-size: 11.5px; line-height: 1.35; }
  .ui-why__item--hi { display: flex; gap: 10px; padding: 10px 12px; }
  .ui-why__item--hi .ui-why__n { font-size: 34px; }
  .ui-why__item--hi b { font-size: 14px; }
  .ui-why__item--hi .ui-sbx { width: 64px; }
  /* trust row: 4 in one row, icon above label */
  .ui-rent__trust { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 4px; padding: 8px 4px; }
  .ui-rent__trust li { flex-direction: column; justify-content: flex-start; text-align: center; gap: 4px; font-size: 10.5px; line-height: 1.2; }
  .ui-rent__trust li + li { border-inline-start: 1px solid rgba(15, 181, 193, .3); padding-inline-start: 4px; }
  .ui-rent__trust li .ui-icon { width: 26px; height: 26px; }
  .ui-rent__trust small { font-size: 9.5px; }
  /* trust row polish: equal 2-line labels, top aligned, nothing overflowing the dividers */
  .ui-rent__trust { align-items: start; padding: 10px 2px 8px; }
  .ui-rent__trust li { align-items: center; gap: 5px; font-weight: 800; min-width: 0; }
  .ui-rent__trust li > span { display: block; max-width: 10ch; margin-inline: auto; overflow-wrap: anywhere; text-wrap: balance; }
  .ui-rent__trust li .ui-icon { width: 24px; height: 24px; padding: 5px; }
  .ui-rent__trust small { margin-block-start: 2px; font-weight: 700; }
}
/* the qty description already says 'up to 6 devices'; the hint under the stepper is redundant */
.ui-rent__qty-ctl small { display: none !important; }

/* rental form: errors are shown by the red frame + shake only; the message stays for screen readers (role=alert) */
.ui-rent .ui-error { position: absolute !important; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ==========================================================================
   Faz 5.1 — compact inputs site-wide (owner request 2026-09-13): 44px controls, 14px text,
   12px/700 labels, tighter groups. The homepage rental form keeps its own .ui-rent sizes.
   Touch screens keep 16px text so iOS Safari does not zoom in on focus.
   ========================================================================== */
.ui-input, .ui .ui-input { height: 44px; min-height: 44px; padding-block: 0 !important; padding-inline: 12px; font-size: 14px; border-radius: 12px; }
textarea.ui-input, .ui textarea.ui-input { height: auto; min-height: 88px; padding-block: 10px !important; }
.ui-tel { min-height: 44px; height: 44px; border-radius: 12px; }
.ui-tel__cc { font-size: 13px; padding-inline: 10px 24px; }
.ui-tel__num { font-size: 14px; }
.ui-field { min-height: 46px; padding-block: 6px; border-radius: 12px; }
.ui-group { gap: 5px; }
.ui-group > label, .ui-label { font-size: 12.5px; }
.ui-error { margin-top: 4px; font-size: 12px; }
/* inline buttons that sit next to an input (e.g. coupon Apply) match the input height */
:has(> .ui-group .ui-input) > .ui-btn, :has(> .ui-input) > .ui-btn { height: 44px; min-height: 44px; border-radius: 12px; align-self: end; }
@media (hover: none) and (pointer: coarse) {
  .ui-input, .ui .ui-input, .ui-tel__num { font-size: 16px; }
}
/* legacy floating-label fields (contact, partner): same compact scale, 46px so the floated label has room */
.text-field input { height: 46px; min-height: 46px; padding: 14px 12px 0 !important; font-size: 14px; border-radius: 12px; }
.text-field textarea { padding: 24px 12px 8px !important; font-size: 14px; }
.text-field > label { left: 12px; font-size: 14px; }
.text-field input:focus + label, .text-field textarea:focus + label,
.text-field input:not(:placeholder-shown) + label, .text-field textarea:not(:placeholder-shown) + label { top: 11px; font-size: 11px; }
@media (hover: none) and (pointer: coarse) { .text-field input, .text-field textarea { font-size: 16px; } }

/* Faz 5.1 — pickup & delivery points strip (owner reference image): icon circles, 6 across on desktop, swipe row on mobile */
.ui-points { padding-block: 24px 0; }
.ui-points__list { list-style: none; margin: 0; padding: 12px 8px; display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); background: var(--ui-card); border: 1px solid var(--ui-line); border-radius: var(--ui-r-card); box-shadow: var(--ui-sh-1); }
.ui-points__list li + li { border-inline-start: 1px solid var(--ui-line); }
.ui-points__item { all: unset; box-sizing: border-box; width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 6px 8px; text-align: center; cursor: pointer; border-radius: 14px; font-family: var(--ui-font); transition: background-color .15s ease; }
.ui-points__item:hover { background: var(--ui-brand-50); }
.ui-points__item:focus-visible { outline: 3px solid rgba(15, 181, 193, .45); outline-offset: -3px; }
.ui-points__icon { width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; background: var(--ui-brand-50); color: var(--ui-brand-600); transition: transform .15s ease; }
.ui-points__item:hover .ui-points__icon { transform: translateY(-2px); }
.ui-points__icon .ui-icon { width: 30px; height: 30px; stroke-width: 1.9; }
.ui-points__item b { font-size: 14px; line-height: 1.25; font-weight: 800; color: var(--ui-navy); text-wrap: balance; }
.ui-points__item small { margin-top: -6px; font-size: 12.5px; font-weight: 600; color: var(--ui-muted); }
@media (max-width: 991.98px) {
  .ui-points { padding-block: 16px 0; }
  .ui-points__list { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding: 10px 4px; border-radius: 14px; }
  .ui-points__list::-webkit-scrollbar { display: none; }
  .ui-points__list li { flex: 0 0 calc((100% - 8px) / 4.4); scroll-snap-align: start; }
  .ui-points__item { gap: 6px; padding: 4px; }
  .ui-points__icon { width: 44px; height: 44px; }
  .ui-points__icon .ui-icon { width: 22px; height: 22px; }
  .ui-points__item b { font-size: 11px; }
  .ui-points__item small { margin-top: -4px; font-size: 10px; }
  .homepage .ui-section { padding-block-start: 28px !important; }
}
html[data-theme="dark"] .ui-points__list { background: var(--ui-card); border-color: var(--ui-line); box-shadow: none; }
/* pickup points v2: bigger icon ratio, 2-line label slot so every item lines up; mobile = 3×2 grid, no hidden items */
.ui-points__list { padding: 14px 6px; }
.ui-points__item { justify-content: flex-start; gap: 10px; padding: 8px 6px; }
.ui-points__icon { width: 58px; height: 58px; background: linear-gradient(145deg, var(--ui-brand-50), rgba(15, 181, 193, .2)); box-shadow: inset 0 0 0 1px rgba(15, 181, 193, .18); }
.ui-points__icon .ui-icon { width: 30px; height: 30px; stroke-width: 2; }
.ui-points__item b { display: flex; flex-direction: column; justify-content: flex-start; min-height: calc(2em * 1.25); font-size: 13.5px; }
.ui-points__item small { margin-top: -8px; font-size: 12px; }
.ui-points__item:hover .ui-points__icon { background: var(--ui-brand-600); color: #fff; box-shadow: 0 8px 18px rgba(11, 143, 153, .28); }
@media (max-width: 991.98px) {
  .ui-points__list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; overflow: visible; padding: 8px; }
  .ui-points__list li { flex: none; }
  .ui-points__list li + li { border-inline-start: 0; }
  .ui-points__item { gap: 6px; padding: 8px 4px; border-radius: 12px; background: var(--ui-surface); }
  .ui-points__icon { width: 40px; height: 40px; }
  .ui-points__icon .ui-icon { width: 21px; height: 21px; }
  .ui-points__item b { font-size: 11px; min-height: calc(2em * 1.25); }
  .ui-points__item small { margin-top: -6px; font-size: 10px; }
}
/* an item with a sub line uses its own second line for it instead of the empty label slot */
.ui-points__item:has(small) b { min-height: 0; }
.ui-points__item small { margin-top: -8px; line-height: 1.25; }
@media (max-width: 991.98px) { .ui-points__item small { margin-top: -5px; } }
/* mobile first screen v2: form + points + the start of Why Rent. Points become compact icon-left chips (3×2). */
@media (max-width: 991.98px) {
  .ui-points { padding-block: 8px 0; }
  .ui-points__list { gap: 4px; padding: 6px; }
  .ui-points__item { flex-direction: row; align-items: center; justify-content: flex-start; gap: 6px; min-height: 44px; padding: 5px 6px; text-align: start; border-radius: 10px; }
  .ui-points__icon { flex: none; width: 28px; height: 28px; }
  .ui-points__icon .ui-icon { width: 15px; height: 15px; stroke-width: 2.1; }
  .ui-points__item b, .ui-points__item:has(small) b { min-height: 0; font-size: 10.5px; line-height: 1.2; text-wrap: pretty; }
  .ui-points__item:has(small) { flex-wrap: wrap; align-content: center; }
  .ui-points__item:has(small) > span + b { flex: 1; }
  .ui-points__item small { flex-basis: 100%; margin: -4px 0 0 34px; font-size: 9.5px; }
  [dir="rtl"] .ui-points__item small { margin: -4px 34px 0 0; }
  .homepage .ui-section { padding-block-start: 20px !important; }
  .ui-hero__inner { min-height: clamp(210px, calc(100svh - 56px - var(--ui-rent-h, 420px) + 34px), 264px); }
}

/* cargo (2026-09-13): 2 tabs when cargo is off; 5 chips grid when the Cargo chip is hidden */
.ui-rent__tabs:not(:has(> :nth-child(3))) { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 992px) { .ui-rent__tabs:not(:has(> :nth-child(3))) { max-width: 480px; } }
.ui-points__list:not(:has(> :nth-child(6))) { grid-template-columns: repeat(5, minmax(0, 1fr)); }
@media (max-width: 991.98px) { .ui-points__list:not(:has(> :nth-child(6))) { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
/* booking: delivery address block */
.ui-addr[hidden] { display: none !important; }
.ui-addr select.ui-input { appearance: none; -webkit-appearance: none; padding-inline-end: 34px; background-image: linear-gradient(45deg, transparent 50%, var(--ui-muted) 50%), linear-gradient(135deg, var(--ui-muted) 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%; background-size: 5px 5px; background-repeat: no-repeat; cursor: pointer; }
[dir="rtl"] .ui-addr select.ui-input { padding-inline: 12px 34px; background-position: 13px 50%, 18px 50%; }
.ui-addr select.ui-input:disabled { opacity: .6; cursor: not-allowed; }
/* booking delivery box: "different address" tick */
.ui-check { display: flex; align-items: center; gap: 10px; min-height: 40px; font: 700 13.5px/1.3 var(--ui-font); color: var(--ui-navy); cursor: pointer; }
.ui-check input { flex: none; width: 20px; height: 20px; margin: 0; accent-color: var(--ui-brand-600); cursor: pointer; }
.ui-addr__fields { display: flex; flex-direction: column; gap: 12px; }
.ui-addr__fields[hidden], .ui-addr [data-bk-loc-group][hidden] { display: none !important; }
/* the "valid phone" hint keeps its row while hidden: showing it on blur pushed everything below by ~25px,
   so a tap aimed at the next control (e.g. the different-address tick) landed on the wrong spot */
.ui-group > .ui-hint[data-phone-hint][hidden] { display: flex !important; visibility: hidden; }

/* ==========================================================================
   Phone country picker (2026-09-13): flag + dial button, searchable list, live valid state.
   The native select stays underneath as the value holder.
   ========================================================================== */
.ui-tel { position: relative; }
.ui-tel__cc.has-picker { padding: 0; }
.ui-tel__cc.has-picker::after { display: none; }
.ui-tel__cc.has-picker select { pointer-events: none; opacity: 0; width: 1px; height: 1px; inset: auto; }
.ui-tel__btn { all: unset; box-sizing: border-box; display: flex; align-items: center; gap: 7px; height: 100%; padding-inline: 10px 26px; cursor: pointer; font: 700 14px/1 var(--ui-font); color: var(--ui-navy); border-radius: var(--ui-r-in) 0 0 var(--ui-r-in); position: relative; }
.ui-tel__btn::after { content: ""; position: absolute; right: 10px; top: 50%; width: 6px; height: 6px; border-right: 2px solid var(--ui-muted); border-bottom: 2px solid var(--ui-muted); transform: translateY(-70%) rotate(45deg); transition: transform .15s ease; }
.ui-tel.is-open .ui-tel__btn::after { transform: translateY(-30%) rotate(-135deg); }
.ui-tel__btn:hover { background: var(--ui-surface); }
.ui-tel__btn:focus-visible { outline: 3px solid rgba(15, 181, 193, .45); outline-offset: -3px; }
.ui-tel__btn img, .ui-tel__list img { width: 22px; height: 16px; flex: none; border-radius: 3px; object-fit: cover; box-shadow: 0 0 0 1px rgba(11, 27, 58, .12); }


/* live state */
.ui-tel.is-valid { border-color: var(--ui-ok); }
.ui-tel.is-valid::after { content: ""; position: absolute; right: 12px; top: 50%; width: 18px; height: 18px; margin-top: -9px; border-radius: 50%; background: var(--ui-ok) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5 9-10'/%3E%3C/svg%3E") center / 12px no-repeat; pointer-events: none; }
.ui-tel.is-valid .ui-tel__num { padding-inline-end: 38px; }

/* popover */
.ui-tel__pop { position: absolute; z-index: 60; top: calc(100% + 6px); left: 0; width: min(360px, 100%); background: var(--ui-card); border: 1px solid var(--ui-line); border-radius: 14px; box-shadow: var(--ui-sh-2); overflow: hidden; display: flex; flex-direction: column; font-family: var(--ui-font); }
.ui-tel__pop[hidden] { display: none; }
.ui-tel__pop-head { display: flex; align-items: center; gap: 6px; padding: 8px; border-bottom: 1px solid var(--ui-line); }
.ui-tel__search { flex: 1; min-width: 0; height: 40px; padding-inline: 12px 12px; border: 1px solid var(--ui-line); border-radius: 10px; background: var(--ui-surface); color: var(--ui-navy); font: 600 14px var(--ui-font); outline: none; }
.ui-tel__search:focus { border-color: var(--ui-brand); box-shadow: 0 0 0 3px rgba(15, 181, 193, .14); }
.ui-tel__pop-close { display: none; flex: none; width: 40px; height: 40px; border: 0; border-radius: 10px; background: var(--ui-surface); color: var(--ui-navy); font-size: 22px; line-height: 1; cursor: pointer; }
.ui-tel__list { list-style: none; margin: 0; padding: 4px; max-height: 280px; overflow-y: auto; overscroll-behavior: contain; }
.ui-tel__list li { display: flex; align-items: center; gap: 10px; min-height: 40px; padding: 6px 10px; border-radius: 8px; cursor: pointer; color: var(--ui-navy); font-size: 14px; }
.ui-tel__list li[hidden] { display: none; }
.ui-tel__list li.is-active { background: var(--ui-brand-50); }
.ui-tel__list li[data-iso][aria-selected="true"] .ui-tel__name { font-weight: 700; }
.ui-tel__list:not(.is-filtered) li.is-last-priority { margin-bottom: 5px; box-shadow: 0 5px 0 -4px var(--ui-line); }
.ui-tel__name { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ui-tel__dial { flex: none; color: var(--ui-muted); font-weight: 600; font-variant-numeric: tabular-nums; direction: ltr; }
.ui-tel__empty { margin: 0; padding: 16px; text-align: center; color: var(--ui-muted); font-size: 13px; }
/* .ui-tel is direction:ltr in every locale (the flag button is always on the left), so the list stays left-aligned */

/* phones: bottom sheet */
@media (max-width: 575.98px) {
  .ui-tel__pop { position: fixed; top: auto; left: 0; right: 0; bottom: 0; width: 100%; max-height: 80dvh; border-radius: 18px 18px 0 0; z-index: 2100; box-shadow: 0 -12px 40px rgba(11, 27, 58, .25); }
  .ui-tel__list { max-height: none; flex: 1; }
  .ui-tel__pop-close { display: block; }
  .ui-tel__search { font-size: 16px; }
  html.ui-tel-sheet-open { overflow: hidden; }
  html.ui-tel-sheet-open body::after { content: ""; position: fixed; inset: 0; z-index: 2090; background: rgba(11, 27, 58, .45); }
}
html[data-theme="dark"] .ui-tel__pop { background: #0F172A; }
html[data-theme="dark"] .ui-tel__search, html[data-theme="dark"] .ui-tel__pop-close { background: #16233A !important; color: #E6EDF7 !important; }
html[data-theme="dark"] .ui-tel__list li.is-active { background: rgba(15, 181, 193, .18); }
/* booking: pickup + return places inside the Delivery box (2026-09-13) */
.ui-place { display: flex; flex-direction: column; gap: 10px; }
.ui-place + .ui-place { padding-top: 14px; border-top: 1px dashed var(--ui-line); }
.ui .ui-place__title { margin: 0 !important; font: 800 13px/1.2 var(--ui-font) !important; letter-spacing: .04em; text-transform: uppercase; color: var(--ui-brand-600) !important; }
.ui-addr__inputs { display: flex; flex-direction: column; gap: 12px; }
.ui-addr__inputs[hidden], .ui-place [data-bk-same-wrap][hidden] { display: none !important; }

/* Hero copy readability on phones/tablets (owner request 2026-09-13): the new mobile photos have a bright left side.
   A left-to-right navy scrim sits behind the copy and a soft shadow lifts the text; the photo's right side stays clear. */
@media (max-width: 991.98px) {
  .ui-hero::before { background:
    linear-gradient(90deg, rgba(11, 27, 58, .88) 0%, rgba(11, 27, 58, .72) 45%, rgba(11, 27, 58, .25) 70%, rgba(11, 27, 58, 0) 85%),
    linear-gradient(180deg, rgba(11, 27, 58, 0) 70%, rgba(11, 27, 58, .45) 100%); }
  .ui-hero__heading, .ui-hero__best, .ui-rotator .rotating-text { text-shadow: 0 1px 2px rgba(11, 27, 58, .7), 0 2px 10px rgba(11, 27, 58, .5); }
  .ui-hero__eyebrow { text-shadow: none; }
}

/* 2026-09-13: anasayfa rental formu — alan kenarlıkları daha belirgin (sadece görsel) */
.ui-rent .ui-field,
.ui-rent .ui-rent__card .ui-rent__qty,
.ui-rent .ui-rent__qty { border: 1.5px solid #B6C7D6; box-shadow: 0 1px 2px rgba(11, 27, 58, .06); transition: border-color .15s ease, box-shadow .15s ease; }
.ui-rent .ui-field:hover,
.ui-rent .ui-rent__qty:hover { border-color: var(--ui-brand); }
.ui-rent .ui-field:focus-within { border-color: var(--ui-brand-600); box-shadow: 0 0 0 4px rgba(15, 181, 193, .18); }
html[data-theme="dark"] .ui-rent .ui-field,
html[data-theme="dark"] .ui-rent .ui-rent__qty { border-color: #4B5E78; }
html[data-theme="dark"] .ui-rent .ui-field:hover,
html[data-theme="dark"] .ui-rent .ui-rent__qty:hover { border-color: var(--ui-brand); }

/* 2026-09-13: rental formu WiFi adet ikonu — sinyal animasyonu (nokta → küçük → orta → büyük yay) */
.ui-icon--wifi-anim .w { animation: uiWifi 2s ease-in-out infinite; opacity: .25; }
.ui-icon--wifi-anim .w0 { animation-delay: 0s; }
.ui-icon--wifi-anim .w1 { animation-delay: .25s; }
.ui-icon--wifi-anim .w2 { animation-delay: .5s; }
.ui-icon--wifi-anim .w3 { animation-delay: .75s; }
@keyframes uiWifi { 0%, 15% { opacity: .25; } 30%, 70% { opacity: 1; } 100% { opacity: .25; } }
@media (prefers-reduced-motion: reduce) { .ui-icon--wifi-anim .w { animation: none; opacity: 1; } }

/* 2026-09-13: rental formu Rent Now — dikkat çeken CTA animasyonu (parlama + nabız halkası + ok itmesi).
   ::after is-loading spinner'ına ait, parlama ::before kullanır. Ok için `translate` (RTL scaleX transform'unu bozmaz). */
#search-btn { position: relative; overflow: hidden; isolation: isolate; animation: uiCtaPulse 2.8s ease-out infinite; }
#search-btn::before {
  content: ""; position: absolute; inset-block: 0; inset-inline-start: -60%; width: 45%; z-index: -1; pointer-events: none;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .38) 50%, rgba(255, 255, 255, 0) 100%);
  animation: uiCtaShine 3.5s ease-in-out infinite;
}
#search-btn .ui-icon--dir { animation: uiCtaNudge 2.8s ease-in-out infinite; }
#search-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(11, 143, 153, .35); animation-play-state: paused; }
#search-btn:hover .ui-icon--dir { animation: none; translate: 4px 0; transition: translate .15s ease; }
[dir="rtl"] #search-btn:hover .ui-icon--dir { translate: -4px 0; }
#search-btn:active { transform: translateY(1px); }
#search-btn.is-loading, #search-btn.is-loading::before { animation: none; }
#search-btn.is-loading::before { display: none; }
@keyframes uiCtaPulse {
  0% { box-shadow: 0 0 0 0 rgba(15, 181, 193, .55); }
  70%, 100% { box-shadow: 0 0 0 14px rgba(15, 181, 193, 0); }
}
@keyframes uiCtaShine { 0%, 55% { inset-inline-start: -60%; } 100% { inset-inline-start: 130%; } }
@keyframes uiCtaNudge { 0%, 60%, 100% { translate: 0 0; } 70% { translate: 5px 0; } 80% { translate: 0 0; } 90% { translate: 3px 0; } }
[dir="rtl"] #search-btn .ui-icon--dir { animation-name: uiCtaNudgeRtl; }
@keyframes uiCtaNudgeRtl { 0%, 60%, 100% { translate: 0 0; } 70% { translate: -5px 0; } 80% { translate: 0 0; } 90% { translate: -3px 0; } }
@media (prefers-reduced-motion: reduce) {
  #search-btn, #search-btn::before, #search-btn .ui-icon--dir { animation: none; }
  #search-btn::before { display: none; }
}

/* 2026-09-14 (owner) — pickup points strip in the Rent Now navy: navy block + turquoise border, translucent navy cards, turquoise icons, cargo card highlighted like Rent Now */
.ui-points__list { gap: 10px; padding: 12px; background: radial-gradient(circle at 50% 0%, #123A63 0%, #0B1B3A 75%); border: 2px solid #0FB5C1; box-shadow: 0 14px 32px rgba(11, 27, 58, .30); }
.ui-points__list li + li { border-inline-start: 0; }
.ui-points__item { flex-direction: row; align-items: center; justify-content: flex-start; gap: 12px; padding: 12px 14px; text-align: start; background: rgba(255, 255, 255, .06); border-radius: 14px; box-shadow: inset 0 0 0 1px rgba(95, 224, 232, .22); transition: background-color .15s ease, box-shadow .15s ease, transform .15s ease; }
.ui-points__item:hover { background: rgba(255, 255, 255, .11); box-shadow: inset 0 0 0 1.5px #0FB5C1; transform: translateY(-2px); }
.ui-points__item:focus-visible { outline: 3px solid #5FE0E8; outline-offset: 2px; }
.ui-points__icon { flex: none; width: 46px; height: 46px; background: linear-gradient(145deg, #5FE0E8, #0FB5C1); color: #0B1B3A; box-shadow: none; transition: box-shadow .15s ease; }
.ui-points__icon .ui-icon { width: 23px; height: 23px; stroke-width: 2.1; }
.ui-points__item:hover .ui-points__icon { transform: none; background: linear-gradient(145deg, #5FE0E8, #0FB5C1); color: #0B1B3A; box-shadow: 0 0 16px rgba(95, 224, 232, .70); }
.ui-points__item b, .ui-points__item:has(small) b { flex: 1; min-width: 0; min-height: 0; display: block; font-size: 13.5px; line-height: 1.25; color: #fff; text-wrap: balance; }
.ui-points__item:has(small) { flex-wrap: wrap; align-content: center; column-gap: 12px; row-gap: 4px; }
.ui-points__item small, [dir="rtl"] .ui-points__item small { flex-basis: auto; margin: 0 0 0 58px; padding: 2px 8px; border-radius: 999px; background: rgba(15, 181, 193, .20); color: #5FE0E8; font-size: 11px; font-weight: 800; line-height: 1.3; white-space: nowrap; }
[dir="rtl"] .ui-points__item small { margin: 0 58px 0 0; }
.ui-points__item[data-rent-pick="other"] { background: rgba(15, 181, 193, .12); box-shadow: inset 0 0 0 2px #0FB5C1, 0 0 18px rgba(15, 181, 193, .25); }
.ui-points__item[data-rent-pick="other"] .ui-points__icon { box-shadow: 0 0 16px rgba(95, 224, 232, .70); }
@media (max-width: 991.98px) {
  .ui-points__list { gap: 6px; padding: 8px; }
  .ui-points__item { gap: 8px; padding: 8px; }
  .ui-points__icon { width: 34px; height: 34px; }
  .ui-points__icon .ui-icon { width: 18px; height: 18px; }
  .ui-points__item b, .ui-points__item:has(small) b { font-size: 11.5px; }
  .ui-points__item small, [dir="rtl"] .ui-points__item small { margin-inline: 42px 0; font-size: 9.5px; padding: 1px 6px; }
}
@media (max-width: 575.98px) {
  .ui-points__item { gap: 6px; padding: 6px; min-height: 48px; }
  .ui-points__icon { width: 28px; height: 28px; }
  .ui-points__icon .ui-icon { width: 15px; height: 15px; }
  .ui-points__item b, .ui-points__item:has(small) b { font-size: 10.5px; }
  .ui-points__item small, [dir="rtl"] .ui-points__item small { margin-inline: 0; flex-basis: auto; font-size: 9px; white-space: normal; }
}
html[data-theme="dark"] .ui-points__list { background: radial-gradient(circle at 50% 0%, #123A63 0%, #0B1B3A 75%); border-color: #0FB5C1; box-shadow: none; }
/* 2026-09-14 (owner) — rental form: tabs and fields take the hero price badge's navy (badge bg #123A63→#0B1B3A, border #0FB5C1) */
.ui-rent__tab { background: #F3F6FA; box-shadow: inset 0 0 0 1.5px #123A63; transition: background-color .15s ease, color .15s ease, box-shadow .15s ease; }
.ui-rent__tab:hover { background: #E7EDF5; }
.ui-rent__tab.is-active { background: radial-gradient(circle at 50% 35%, #123A63 0%, #0B1B3A 70%); color: #fff; box-shadow: inset 0 0 0 2px #0FB5C1, 0 6px 16px rgba(11, 27, 58, .30); }
.ui-rent__tab.is-active .ui-icon { color: #5FE0E8; }
.ui-rent .ui-field { background: #F3F6FA; border: 1.5px solid #123A63; }
.ui-rent .ui-field:focus-within { border-color: #0FB5C1; box-shadow: 0 0 0 4px rgba(15, 181, 193, .18); }
html[data-theme="dark"] .ui-rent__tab { background: var(--ui-surface); box-shadow: inset 0 0 0 1.5px #3B5A85; }
html[data-theme="dark"] .ui-rent__tab:hover { background: #16243A; }
html[data-theme="dark"] .ui-rent__tab.is-active { box-shadow: inset 0 0 0 2px #0FB5C1; }
html[data-theme="dark"] .ui-rent .ui-field { background: var(--ui-surface); border-color: #3B5A85; }
html[data-theme="dark"] .ui-rent .ui-field:focus-within { border-color: #0FB5C1; }

/* 2026-09-14 (owner) — Rent Now: same navy as the active form tab / price badge, turquoise border + glow. Shine/nudge/pulse animations above are kept; ::after stays the loading spinner. */
#search-btn { background: radial-gradient(circle at 50% 35%, #123A63 0%, #0B1B3A 70%); border: 2px solid #0FB5C1; animation-name: uiCtaPulse, uiCtaGlow; animation-duration: 2.8s, 1.8s; animation-timing-function: ease-out, ease-in-out; animation-iteration-count: infinite; }
#search-btn .ui-icon--dir { color: #5FE0E8; }
#search-btn:hover { background: radial-gradient(circle at 50% 35%, #1A4A7A 0%, #10264D 70%); border-color: #5FE0E8; box-shadow: 0 14px 30px rgba(11, 27, 58, .35); }
#search-btn.is-loading { animation: none; }
@keyframes uiCtaGlow { 0%, 100% { filter: drop-shadow(0 6px 12px rgba(15, 181, 193, .35)); } 50% { filter: drop-shadow(0 6px 18px rgba(95, 224, 232, .75)); } }
@media (prefers-reduced-motion: reduce) { #search-btn { animation: none; } }
/* 2026-09-14 (owner) — rental form: darker placeholders/labels, select chevron in a turquoise circle, tinted icon tiles, qty box matches the fields */
.ui-rent .ui-field input::placeholder, .ui-rent .ui-field select:invalid { color: #123A63; font-weight: 700; opacity: 1; }
.ui-rent .ui-field__body .ui-field__label { color: #475569; font-weight: 700; }
.ui-rent .ui-field { padding-inline-end: 44px; }
.ui-rent .ui-field:hover { background: #EEF9FA; border-color: #0FB5C1; }
.ui-rent .ui-field > .ui-icon, .ui-rent .ui-field [data-rent-icon] { flex: none; width: 36px; height: 36px; padding: 7px; border-radius: 10px; background: rgba(15, 181, 193, .14); color: #123A63; box-sizing: border-box; }
.ui-rent .ui-field [data-rent-icon] { place-items: center; padding: 0; }
.ui-rent .ui-field [data-rent-icon] .ui-icon { width: 22px; height: 22px; color: #123A63; }
.ui-rent .ui-field--select::before { content: ""; position: absolute; inset-inline-end: 10px; top: 50%; width: 26px; height: 26px; margin-top: -13px; border-radius: 50%; background: rgba(15, 181, 193, .16); pointer-events: none; transition: background-color .15s ease; }
.ui-rent .ui-field--select::after { inset-inline-end: 19px; width: 7px; height: 7px; border-color: #123A63; transition: transform .2s ease, border-color .15s ease; }
.ui-rent .ui-field--select:focus-within::before { background: #0FB5C1; }
.ui-rent .ui-field--select:focus-within::after { border-color: #fff; transform: translateY(-25%) rotate(-135deg); }
.ui-rent .ui-rent__qty { background: #F3F6FA; border: 1.5px solid #123A63; }
.ui-rent .ui-rent__qty:hover { border-color: #0FB5C1; }
@media (max-width: 575.98px) {
  .ui-rent .ui-field { padding-inline-end: 36px; gap: 6px; }
  .ui-rent .ui-field > .ui-icon, .ui-rent .ui-field [data-rent-icon] { width: 30px; height: 30px; padding: 6px; }
  .ui-rent .ui-field [data-rent-icon] { padding: 0; }
  .ui-rent .ui-field [data-rent-icon] .ui-icon { width: 18px; height: 18px; }
  .ui-rent .ui-field input, .ui-rent .ui-field select { font-size: 14px; }
  .ui-rent .ui-field--select::before { inset-inline-end: 6px; width: 22px; height: 22px; margin-top: -11px; }
  .ui-rent .ui-field--select::after { inset-inline-end: 13px; width: 6px; height: 6px; }
}
html[data-theme="dark"] .ui-rent .ui-field input::placeholder, html[data-theme="dark"] .ui-rent .ui-field select:invalid { color: #E6EDF7; }
html[data-theme="dark"] .ui-rent .ui-field__body .ui-field__label { color: #94A3B8; }
html[data-theme="dark"] .ui-rent .ui-field:hover { background: #16243A; }
html[data-theme="dark"] .ui-rent .ui-field > .ui-icon, html[data-theme="dark"] .ui-rent .ui-field [data-rent-icon], html[data-theme="dark"] .ui-rent .ui-field [data-rent-icon] .ui-icon { color: #5FE0E8; }
html[data-theme="dark"] .ui-rent .ui-field--select::after { border-color: #5FE0E8; }
html[data-theme="dark"] .ui-rent .ui-rent__qty { background: var(--ui-surface); border-color: #3B5A85; }

/* 2026-09-14 (owner) — custom pickup/delivery dropdown (public/js/ui-select.js). The native select stays underneath. */
.ui-sel { cursor: pointer; }
.ui-sel__hit { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; margin: 0; padding: 0; border: 0; border-radius: inherit; background: transparent; cursor: pointer; }
.ui-sel__hit:focus-visible { outline: 3px solid rgba(15, 181, 193, .55); outline-offset: 2px; }
.ui-sel__hit:disabled { cursor: not-allowed; }
.ui-rent .ui-field.is-open { border-color: #0FB5C1; box-shadow: 0 0 0 4px rgba(15, 181, 193, .18); }
.ui-rent .ui-field--select.is-open::before { background: #0FB5C1; }
.ui-rent .ui-field--select.is-open::after { border-color: #fff; transform: translateY(-25%) rotate(-135deg); }

.ui-sel__pop { position: fixed; z-index: 1900; display: flex; flex-direction: column; overflow: hidden; background: #fff; border-radius: 16px; border-top: 3px solid #0FB5C1; box-shadow: 0 18px 44px rgba(11, 27, 58, .22), 0 0 0 1px rgba(11, 27, 58, .06); font-family: var(--ui-font); opacity: 0; transform: translateY(-6px); transition: opacity .16s ease, transform .16s ease; }
.ui-sel__pop.is-up { border-top: 0; border-bottom: 3px solid #0FB5C1; transform: translateY(6px); }
.ui-sel__pop.is-in { opacity: 1; transform: none; }
.ui-sel__search { padding: 10px 10px 4px; }
.ui-sel__search input { width: 100%; height: 40px; padding-inline: 12px; border: 1.5px solid #D5DEE8; border-radius: 10px; background: #F3F6FA; color: #0B1B3A; font: 600 14px var(--ui-font); outline: 0; }
.ui-sel__search input:focus { border-color: #0FB5C1; background: #fff; }
.ui-sel__list { list-style: none; margin: 0; padding: 6px; overflow-y: auto; overscroll-behavior: contain; }
.ui-sel__list li { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 10px; color: #0B1B3A; font-size: 14.5px; font-weight: 700; line-height: 1.25; cursor: pointer; outline: 0; transition: background-color .12s ease; }
.ui-sel__list li + li { margin-top: 2px; }
.ui-sel__list li:hover, .ui-sel__list li:focus { background: #E8F8F9; }
.ui-sel__list li[aria-disabled="true"] { opacity: .45; cursor: not-allowed; }
.ui-sel__ico { flex: none; width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center; background: rgba(15, 181, 193, .14); color: #123A63; }
.ui-sel__ico .ui-icon { width: 17px; height: 17px; }
.ui-sel__txt { flex: 1; min-width: 0; }
.ui-sel__check { flex: none; width: 18px; height: 18px; fill: none; stroke: #5FE0E8; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; visibility: hidden; }
.ui-sel__list li[aria-selected="true"] { background: radial-gradient(circle at 50% 35%, #123A63 0%, #0B1B3A 80%); color: #fff; }
.ui-sel__list li[aria-selected="true"] .ui-sel__ico { background: rgba(95, 224, 232, .18); color: #5FE0E8; }
.ui-sel__list li[aria-selected="true"] .ui-sel__check { visibility: visible; }

.ui-sel__backdrop { position: fixed; inset: 0; z-index: 1899; background: rgba(11, 27, 58, .45); animation: ui-sel-fade .2s ease; }
.ui-sel__pop.is-sheet { left: 0; right: 0; bottom: 0; top: auto; width: auto; max-height: 72vh; border-radius: 20px 20px 0 0; border-top: 3px solid #0FB5C1; transform: translateY(100%); transition: transform .24s ease, opacity .2s ease; padding-bottom: env(safe-area-inset-bottom); }
.ui-sel__pop.is-sheet.is-in { transform: none; }
.ui-sel__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 16px 8px; }
.ui-sel__head::before { content: ""; position: absolute; top: 6px; left: 50%; width: 40px; height: 4px; margin-left: -20px; border-radius: 2px; background: #D5DEE8; }
.ui-sel__head b { color: #0B1B3A; font-size: 16px; font-weight: 800; }
.ui-sel__x { width: 34px; height: 34px; border: 0; border-radius: 50%; background: #F3F6FA; color: #123A63; font-size: 22px; line-height: 1; cursor: pointer; }
.ui-sel__pop.is-sheet .ui-sel__list { padding: 6px 10px 14px; }
.ui-sel__pop.is-sheet .ui-sel__list li { min-height: 52px; font-size: 15.5px; }
@keyframes ui-sel-fade { from { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .ui-sel__pop, .ui-sel__pop.is-sheet { transition: none; } .ui-sel__backdrop { animation: none; } }

html[data-theme="dark"] .ui-sel__pop { background: #0F172A; box-shadow: 0 18px 44px rgba(0, 0, 0, .5), 0 0 0 1px #334155; }
html[data-theme="dark"] .ui-sel__list li, html[data-theme="dark"] .ui-sel__head b { color: #E6EDF7; }
html[data-theme="dark"] .ui-sel__list li:hover, html[data-theme="dark"] .ui-sel__list li:focus { background: rgba(15, 181, 193, .14); }
html[data-theme="dark"] .ui-sel__ico { color: #5FE0E8; }
html[data-theme="dark"] .ui-sel__search input, html[data-theme="dark"] .ui-sel__x { background: #111C2E; border-color: #334155; color: #E6EDF7; }
html[data-theme="dark"] .ui-sel__list li[aria-selected="true"] { background: radial-gradient(circle at 50% 35%, #1A4A7A 0%, #10264D 80%); }

/* 2026-09-14 (owner) — hero: more vertical padding, larger copy */
.ui-hero .ui-hero__inner { padding-block: 24px 70px; }
.ui-hero .ui-hero__main { font-size: 27px; }
.ui-hero .ui-hero__sub { font-size: 19px; }
.ui-hero .ui-hero__eyebrow { font-size: 13px !important; }
.ui-hero .ui-hero__best { font-size: 12.5px; }
.ui-hero .ui-rotator .rotating-text { font-size: 13.5px !important; }
@media (min-width: 992px) {
  .ui-hero .ui-hero__inner { min-height: 620px; padding-block: 96px 150px; }
  .ui-hero .ui-hero__copy { max-width: 680px; }
  .ui-hero .ui-hero__main { font-size: 52px; }
  .ui-hero .ui-hero__sub { font-size: 34px; }
  .ui-hero .ui-hero__eyebrow { font-size: 14px !important; }
  .ui-hero .ui-hero__best { font-size: 14px; padding: 5px 11px; }
  .ui-hero .ui-rotator { height: 42px; }
  .ui-hero .ui-rotator .rotating-text { font-size: 16px !important; }
}

/* 2026-09-14 (owner) — hero RTL: RTL locales use mirrored slide photos (people on the left, see partials/home/hero),
   so the layout mirrors too: the logical properties already put the copy and dots on the right and the price badge
   on the left; only the scrims, which are physical gradients, are flipped to back the copy on the right. */
@media (min-width: 992px) {
  [dir="rtl"] .ui-hero::before { background: linear-gradient(270deg, rgba(11, 27, 58, .88) 0%, rgba(11, 27, 58, .55) 45%, rgba(11, 27, 58, .05) 75%); }
}
@media (max-width: 991.98px) {
  [dir="rtl"] .ui-hero::before { background:
    linear-gradient(270deg, rgba(11, 27, 58, .88) 0%, rgba(11, 27, 58, .72) 45%, rgba(11, 27, 58, .25) 70%, rgba(11, 27, 58, 0) 85%),
    linear-gradient(180deg, rgba(11, 27, 58, 0) 70%, rgba(11, 27, 58, .45) 100%); }
}
/* 2026-09-14 (owner) — WiFi Quantity box: same navy border/background as the fields (the older .ui-rent__card rule above out-specified it) */
.ui-rent .ui-rent__card .ui-rent__qty { background: #F3F6FA; border: 1.5px solid #123A63; box-shadow: none; }
.ui-rent .ui-rent__card .ui-rent__qty:hover { background: #EEF9FA; border-color: #0FB5C1; }
.ui-rent .ui-rent__card .ui-rent__qty:focus-within { border-color: #0FB5C1; box-shadow: 0 0 0 4px rgba(15, 181, 193, .18); }
html[data-theme="dark"] .ui-rent .ui-rent__card .ui-rent__qty { background: var(--ui-surface); border-color: #3B5A85; }
html[data-theme="dark"] .ui-rent .ui-rent__card .ui-rent__qty:hover { background: #16243A; border-color: #0FB5C1; }

/* 2026-09-14 (owner) — welcome popup Rent Now: same navy + turquoise border/glow as the home #search-btn (no shine/pulse ring) */
.ui-pop .ui-btn[data-rent] { background: radial-gradient(circle at 50% 35%, #123A63 0%, #0B1B3A 70%); border: 2px solid #0FB5C1; color: #fff !important; animation: uiCtaGlow 1.8s ease-in-out infinite; }
.ui-pop .ui-btn[data-rent]:hover { background: radial-gradient(circle at 50% 35%, #1A4A7A 0%, #10264D 70%); border-color: #5FE0E8; box-shadow: 0 10px 24px rgba(11, 27, 58, .30); }
@media (prefers-reduced-motion: reduce) { .ui-pop .ui-btn[data-rent] { animation: none; } }

/* 2026-09-14 (owner) — mobile: taller hero; price badge moves from the hero to a round tab on the rental form's top corner.
   Uses the form's existing .ui-rent__price (desktop-only until now), the hero badge is hidden on mobile, so the price still renders once visibly. */
@media (max-width: 991.98px) {
  .ui-hero .ui-hero__inner { min-height: clamp(250px, calc(100svh - 56px - var(--ui-rent-h, 420px) + 34px), 320px); }
  .ui-hero .ui-hero__top .ui-price-badge { display: none; }
  .ui-hero .ui-hero__copy { padding-inline-end: 0; }
  .ui-rent .ui-rent__card { position: relative; padding-block-start: 34px; }
  .ui-rent .ui-rent__cta .ui-rent__price {
    --pb: 80px; position: absolute; z-index: 4; inset-block-start: calc(var(--pb) * -.66); inset-inline-end: 12px;
    width: var(--pb); height: var(--pb); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0;
    text-align: center; line-height: 1; white-space: nowrap; color: #fff; font-family: var(--ui-font);
    background: radial-gradient(circle at 50% 35%, #123A63 0%, #0B1B3A 70%); border: 3px solid #0FB5C1;
    box-shadow: 0 0 0 4px rgba(15, 181, 193, .25), 0 10px 22px rgba(11, 27, 58, .35);
    animation: ui-pb-pulse 1.8s ease-in-out infinite;
  }
  .ui-rent .ui-rent__cta .ui-rent__price small { font-size: 11px; font-weight: 700; color: #fff; margin-block-end: 2px; }
  .ui-rent .ui-rent__cta .ui-rent__price b { display: block; font-size: 21px; font-weight: 900; letter-spacing: -.02em; color: #5FE0E8; animation: ui-pb-glow 1.8s ease-in-out infinite; }
  .ui-rent .ui-rent__cta .ui-rent__price b span { display: block; margin-block-start: 2px; font-size: 11.5px; font-weight: 600; color: #fff; }
  html[data-theme="dark"] .ui-rent .ui-rent__cta .ui-rent__price b { color: #5FE0E8; }
}
@media (max-width: 991.98px) and (prefers-reduced-motion: reduce) { .ui-rent .ui-rent__cta .ui-rent__price, .ui-rent .ui-rent__cta .ui-rent__price b { animation: none; } }

/* 2026-09-14 (owner) — language menus (desktop hover .sub + mobile #language-dropdown): card with turquoise top edge, round flags,
   navy highlight on the current language, all 10 visible without scrolling. CSS only: links, hreflang and URLs unchanged. */
header .nav .nav__right__language .sub { top: 46px; width: 400px; padding: 10px; border: 0; border-top: 3px solid #0FB5C1; border-radius: 16px; background: #fff; box-shadow: 0 18px 44px rgba(11, 27, 58, .20), 0 0 0 1px rgba(11, 27, 58, .06); display: grid !important; grid-template-columns: 1fr 1fr; gap: 4px; }
header .nav .nav__right__language:hover .sub, header .nav .nav__right__language .sub:hover { max-height: 460px; }
header .nav .nav__right__language .sub::before, #language-dropdown::before { display: block; grid-column: 1 / -1; padding: 4px 10px 8px; font: 800 11px/1.2 var(--ui-font); letter-spacing: .12em; text-transform: uppercase; color: #64748B; text-align: start; }
header .nav .nav__right__language .sub .item { gap: 10px; min-height: 42px; padding: 8px 10px; border-radius: 10px; font: 700 14px/1.2 var(--ui-font); color: #0B1B3A; transition: background-color .12s ease; }
header .nav .nav__right__language .sub .item:hover { background: #E8F8F9; color: #0B1B3A; }
header .nav .nav__right__language .sub .item img, #language-dropdown li img { width: 24px !important; height: 24px !important; border-radius: 50% !important; object-fit: cover; box-shadow: 0 0 0 2px #fff, 0 0 0 3px rgba(11, 27, 58, .10); flex: none; }
header .nav .nav__right__language .sub .item.active-lang,
html[lang="it"] #language-dropdown li[data-lang="it"],
html[lang="es"] #language-dropdown li[data-lang="es"],
html[lang="fr"] #language-dropdown li[data-lang="fr"],
html[lang="pt"] #language-dropdown li[data-lang="pt"],
html[lang="ko"] #language-dropdown li[data-lang="ko"],
html[lang="de"] #language-dropdown li[data-lang="de"],
html[lang="en"] #language-dropdown li[data-lang="en"],
html[lang="ru"] #language-dropdown li[data-lang="ru"],
html[lang="zh"] #language-dropdown li[data-lang="zh"],
html[lang="ar"] #language-dropdown li[data-lang="ar"] { background: radial-gradient(circle at 50% 35%, #123A63 0%, #0B1B3A 80%); color: #fff; }
header .nav .nav__right__language .sub .item.active-lang::after { content: ""; }
header .nav .nav__right__language .sub .item.active-lang { position: relative; padding-inline-end: 30px; }
header .nav .nav__right__language .sub .item.active-lang::after { position: absolute; inset-inline-end: 10px; top: 50%; width: 5px; height: 10px; margin-top: -7px; border: solid #5FE0E8; border-width: 0 2.5px 2.5px 0; transform: rotate(45deg); }

#language-dropdown { top: 46px; right: 0; min-width: 210px; padding: 8px; border: 0; border-top: 3px solid #0FB5C1; border-radius: 16px; background: #fff; box-shadow: 0 18px 44px rgba(11, 27, 58, .22), 0 0 0 1px rgba(11, 27, 58, .06); }
[dir="rtl"] #language-dropdown { right: auto; left: 0; }
#language-dropdown li { min-height: 0; padding: 0; border-radius: 10px; font: 700 14px/1.2 var(--ui-font); color: #0B1B3A; }
#language-dropdown li + li { margin-top: 2px; }
#language-dropdown li:hover { background: #E8F8F9; }
#language-dropdown li a { gap: 10px; min-height: 40px; padding: 7px 10px; color: inherit; font: inherit; position: relative; }
html[lang="it"] #language-dropdown li[data-lang="it"] a,
html[lang="es"] #language-dropdown li[data-lang="es"] a,
html[lang="fr"] #language-dropdown li[data-lang="fr"] a,
html[lang="pt"] #language-dropdown li[data-lang="pt"] a,
html[lang="ko"] #language-dropdown li[data-lang="ko"] a,
html[lang="de"] #language-dropdown li[data-lang="de"] a,
html[lang="en"] #language-dropdown li[data-lang="en"] a,
html[lang="ru"] #language-dropdown li[data-lang="ru"] a,
html[lang="zh"] #language-dropdown li[data-lang="zh"] a,
html[lang="ar"] #language-dropdown li[data-lang="ar"] a { color: #fff; padding-inline-end: 30px; }
html[lang="it"] #language-dropdown li[data-lang="it"] a::after,
html[lang="es"] #language-dropdown li[data-lang="es"] a::after,
html[lang="fr"] #language-dropdown li[data-lang="fr"] a::after,
html[lang="pt"] #language-dropdown li[data-lang="pt"] a::after,
html[lang="ko"] #language-dropdown li[data-lang="ko"] a::after,
html[lang="de"] #language-dropdown li[data-lang="de"] a::after,
html[lang="en"] #language-dropdown li[data-lang="en"] a::after,
html[lang="ru"] #language-dropdown li[data-lang="ru"] a::after,
html[lang="zh"] #language-dropdown li[data-lang="zh"] a::after,
html[lang="ar"] #language-dropdown li[data-lang="ar"] a::after { content: ""; position: absolute; inset-inline-end: 12px; top: 50%; width: 5px; height: 10px; margin-top: -7px; border: solid #5FE0E8; border-width: 0 2.5px 2.5px 0; transform: rotate(45deg); }
html[lang="it"] header .nav .nav__right__language .sub::before, html[lang="it"] #language-dropdown::before { content: "Lingua"; }
html[lang="es"] header .nav .nav__right__language .sub::before, html[lang="es"] #language-dropdown::before { content: "Idioma"; }
html[lang="fr"] header .nav .nav__right__language .sub::before, html[lang="fr"] #language-dropdown::before { content: "Langue"; }
html[lang="pt"] header .nav .nav__right__language .sub::before, html[lang="pt"] #language-dropdown::before { content: "Idioma"; }
html[lang="ko"] header .nav .nav__right__language .sub::before, html[lang="ko"] #language-dropdown::before { content: "언어"; }
html[lang="de"] header .nav .nav__right__language .sub::before, html[lang="de"] #language-dropdown::before { content: "Sprache"; }
html[lang="en"] header .nav .nav__right__language .sub::before, html[lang="en"] #language-dropdown::before { content: "Language"; }
html[lang="ru"] header .nav .nav__right__language .sub::before, html[lang="ru"] #language-dropdown::before { content: "Язык"; }
html[lang="zh"] header .nav .nav__right__language .sub::before, html[lang="zh"] #language-dropdown::before { content: "语言"; }
html[lang="ar"] header .nav .nav__right__language .sub::before, html[lang="ar"] #language-dropdown::before { content: "اللغة"; }

html[data-theme="dark"] header .nav .nav__right__language .sub, html[data-theme="dark"] #language-dropdown { background: #0F172A; box-shadow: 0 18px 44px rgba(0, 0, 0, .5), 0 0 0 1px #334155; }
html[data-theme="dark"] header .nav .nav__right__language .sub .item, html[data-theme="dark"] #language-dropdown li { color: #E6EDF7; }
html[data-theme="dark"] header .nav .nav__right__language .sub .item:hover, html[data-theme="dark"] #language-dropdown li:hover { background: rgba(15, 181, 193, .14); color: #E6EDF7; }
html[data-theme="dark"] header .nav .nav__right__language .sub::before, html[data-theme="dark"] #language-dropdown::before { color: #94A3B8; }
html[data-theme="dark"] header .nav .nav__right__language .sub .item img, html[data-theme="dark"] #language-dropdown li img { box-shadow: 0 0 0 2px #0F172A, 0 0 0 3px #334155; }

/* 2026-09-14 (owner) — mobile hamburger menu redesign. Links, URLs, titles and order are unchanged (CSS + a small layout script that
   clones the existing dock WhatsApp / call / Rent Now controls into the menu and marks the current page). */
@media (max-width: 991.98px) {
  header .nav #hamburger.active { top: 13px !important; }
  #hamburger .line { transition: transform .2s ease, opacity .2s ease; }
  #hamburger.active { border-radius: 50%; background: rgba(15, 181, 193, .16); box-shadow: 0 0 0 8px rgba(15, 181, 193, .16); }
  #hamburger.active #one { transform: translateY(7px) rotate(45deg) !important; }
  #hamburger.active #three { transform: translateY(-7px) rotate(-45deg) !important; }
  #hamburger.active .line { background: #123A63; }

  html.active-mobile-menu .ui-dock, html.active-mobile-menu .ui-bubble { display: none !important; }

  .mobile-menu { transition: opacity .25s ease, visibility 0s linear .25s; }
  .mobile-menu.active { display: block; height: auto; overflow-x: hidden !important; overflow-y: auto !important; overscroll-behavior: contain; padding-block: 14px 24px !important; background: #F6FAFB; transition: opacity .25s ease; }
  .mobile-menu .mobile-menu__items { gap: 12px; padding-inline: 14px; }

  .mobile-menu .mobile-menu__items .mobile-menu-links { display: flex; flex-direction: column; gap: 6px; }
  .mobile-menu .mobile-menu__items .mobile-menu-links > div { height: auto; }
  .mobile-menu .mobile-menu__items .mobile-menu-links > div > a { gap: 12px; min-height: 52px; padding: 8px 10px; justify-content: flex-start; border-radius: 14px; background: #fff; box-shadow: inset 0 0 0 1px #E2E8F0; color: #0B1B3A; font: 700 15.5px/1.2 var(--ui-font); }
  .mobile-menu .mobile-menu__items .mobile-menu-links > div > a:hover { background: #E8F8F9; box-shadow: inset 0 0 0 1px #0FB5C1; }
  .mobile-menu .mobile-menu-links > div > a::before { content: ""; flex: none; width: 36px; height: 36px; border-radius: 10px; background: rgba(15, 181, 193, .14) no-repeat center / 20px; }
  .mobile-menu .mobile-menu-links > div:nth-child(1) > a::before { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2024%2024'%20fill%3D'none'%20stroke%3D'%230B8F99'%20stroke-width%3D'2'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'%3E%3Crect%20x%3D'7'%20y%3D'2'%20width%3D'10'%20height%3D'20'%20rx%3D'2'%2F%3E%3Cpath%20d%3D'M11%2018h2'%2F%3E%3C%2Fsvg%3E"); }
  .mobile-menu .mobile-menu-links > div:nth-child(2) > a::before { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2024%2024'%20fill%3D'none'%20stroke%3D'%230B8F99'%20stroke-width%3D'2'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'%3E%3Cpath%20d%3D'M12%2021s-7-6.2-7-11.5A7%207%200%200%201%2019%209.5C19%2014.8%2012%2021%2012%2021z'%2F%3E%3Ccircle%20cx%3D'12'%20cy%3D'9.5'%20r%3D'2.5'%2F%3E%3C%2Fsvg%3E"); }
  .mobile-menu .mobile-menu-links > div:nth-child(4) > a::before { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2024%2024'%20fill%3D'none'%20stroke%3D'%230B8F99'%20stroke-width%3D'2'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'%3E%3Ccircle%20cx%3D'12'%20cy%3D'12'%20r%3D'9'%2F%3E%3Cpath%20d%3D'M12%2011v5M12%208h.01'%2F%3E%3C%2Fsvg%3E"); }
  .mobile-menu .mobile-menu-links > div:nth-child(5) > a::before { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2024%2024'%20fill%3D'none'%20stroke%3D'%230B8F99'%20stroke-width%3D'2'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'%3E%3Cpath%20d%3D'M3%2012l4-4%205%203%205-3%204%204-5%205-4-2-4%202z'%2F%3E%3C%2Fsvg%3E"); }
  .mobile-menu .mobile-menu-links > div:nth-child(6) > a::before { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2024%2024'%20fill%3D'none'%20stroke%3D'%230B8F99'%20stroke-width%3D'2'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'%3E%3Cpath%20d%3D'M5%204h11l3%203v13H5z'%2F%3E%3Cpath%20d%3D'M9%2010h6M9%2014h6M9%2018h3'%2F%3E%3C%2Fsvg%3E"); }
  .mobile-menu .mobile-menu-links > div:nth-child(7) > a::before { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2024%2024'%20fill%3D'none'%20stroke%3D'%230B8F99'%20stroke-width%3D'2'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'%3E%3Ccircle%20cx%3D'12'%20cy%3D'12'%20r%3D'9'%2F%3E%3Cpath%20d%3D'M9.5%209.5a2.5%202.5%200%201%201%203.5%202.3c-.6.3-1%20.8-1%201.5V14M12%2017h.01'%2F%3E%3C%2Fsvg%3E"); }
  .mobile-menu .mobile-menu-links > div:nth-child(8) > a::before { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2024%2024'%20fill%3D'none'%20stroke%3D'%230B8F99'%20stroke-width%3D'2'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'%3E%3Cpath%20d%3D'M5%204h3l2%205-2.5%201.5a11%2011%200%200%200%206%206L15%2014l5%202v3a2%202%200%200%201-2%202A16%2016%200%200%201%203%206a2%202%200%200%201%202-2z'%2F%3E%3C%2Fsvg%3E"); }
  .mobile-menu .mobile-menu-links > div:nth-child(9) > a::before { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2024%2024'%20fill%3D'none'%20stroke%3D'%230B8F99'%20stroke-width%3D'2'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'%3E%3Cpath%20d%3D'M6%203h9l4%204v14H6z'%2F%3E%3Cpath%20d%3D'M14%203v5h5M9%2013h7M9%2017h5'%2F%3E%3C%2Fsvg%3E"); }
  .mobile-menu .mobile-menu__items .mobile-menu-links > div > a i { margin-inline-start: auto; width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: #F3F6FA; color: #123A63; font-size: 14px; flex: none; transition: transform .2s ease; }
  [dir="rtl"] .mobile-menu .mobile-menu__items .mobile-menu-links > div > a i { transform: scaleX(-1); }
  .mobile-menu .mobile-menu-mega.down-arrow > a i { transform: rotate(90deg); }

  .mobile-menu .mobile-menu__items .mobile-menu-links > div:first-child > a { background: radial-gradient(circle at 50% 35%, #123A63 0%, #0B1B3A 75%); box-shadow: inset 0 0 0 2px #0FB5C1; color: #fff; }
  .mobile-menu .mobile-menu-links > div:first-child > a::before { background-color: rgba(95, 224, 232, .18); background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2024%2024'%20fill%3D'none'%20stroke%3D'%235FE0E8'%20stroke-width%3D'2'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'%3E%3Crect%20x%3D'7'%20y%3D'2'%20width%3D'10'%20height%3D'20'%20rx%3D'2'%2F%3E%3Cpath%20d%3D'M11%2018h2'%2F%3E%3C%2Fsvg%3E"); }
  .mobile-menu .mobile-menu__items .mobile-menu-links > div:first-child > a::after { content: "\2197"; margin-inline-start: auto; color: #5FE0E8; font-size: 18px; }

  .mobile-menu .mobile-menu__items .mobile-menu-links > div > a.is-current { background: radial-gradient(circle at 50% 35%, #123A63 0%, #0B1B3A 75%); box-shadow: inset 0 0 0 1px #0FB5C1; color: #fff; }
  .mobile-menu .mobile-menu__items .mobile-menu-links > div > a.is-current::before { background-color: rgba(95, 224, 232, .18); }
  .mobile-menu .mobile-menu__items .mobile-menu-links > div > a.is-current i { background: rgba(95, 224, 232, .18); color: #5FE0E8; }

  .mobile-menu .mobile-menu-links > .sub { height: auto !important; margin: -2px 0 4px; padding: 6px; border-radius: 14px; background: #fff; box-shadow: inset 0 0 0 1px #E2E8F0; }
  .mobile-menu .mobile-menu-links > .sub .tabs-stage__list a, .mobile-menu .mobile-menu-links > .sub .nav__left__mega-menu__right__bottom a { display: flex; align-items: center; gap: 8px; min-height: 42px; padding: 8px 12px; border-radius: 10px; color: #0B1B3A; font: 700 14px/1.2 var(--ui-font); }
  .mobile-menu .mobile-menu-links > .sub .tabs-stage__list a:hover { background: #E8F8F9; }
  .mobile-menu .mobile-menu-links > .sub .nav__left__mega-menu__right__bottom a { color: #0B8F99; }

  .ui-mm-actions { display: grid; grid-template-columns: 1fr auto auto; gap: 8px; padding: 10px; border-radius: 18px; background: radial-gradient(circle at 30% 0%, #123A63 0%, #0B1B3A 80%); box-shadow: inset 0 0 0 1.5px rgba(15, 181, 193, .6); }
  .ui-mm-actions .ui-dock__cta { position: static; min-height: 48px; border-radius: 12px; }
  .ui-mm-actions .ui-dock__ib { position: relative; width: 48px; height: 48px; border-radius: 12px; }
  .ui-mm-actions .ui-dock__label, .ui-mm-actions .ui-dock__badge { display: none; }

  .mobile-menu .mobile-dark-mode { position: static !important; width: auto !important; margin: 0; padding: 0; border: 0; border-radius: 14px; display: block; }
  .mobile-menu .mobile-menu__items > div:has(> .bottom-sheet-btn), .mobile-menu .ui-mm-row > div { margin: 0; min-width: 0; }
  .mobile-menu .mobile-dark-mode .switches label { position: relative; display: flex; align-items: center; gap: 8px; }
  .mobile-menu .mobile-dark-mode .switches label span:first-child { inset-inline-end: 12px; right: auto; }
  [dir="ltr"] .mobile-menu .mobile-dark-mode .switches label span:first-child { right: 12px; }
  .mobile-menu .ui-mm-actions { margin-top: 8px; }
  .mobile-menu .mobile-menu__items .ui-mm-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .mobile-menu .mobile-dark-mode .switches, .mobile-menu .bottom-sheet-btn { position: static !important; width: 100% !important; min-height: 52px; margin: 0; border: 0 !important; border-radius: 14px !important; background: #fff; box-shadow: inset 0 0 0 1px #E2E8F0; }
  .mobile-menu .mobile-dark-mode .switches label { min-height: 52px; padding-inline: 12px; border: 0; background: transparent; }
  .mobile-menu .mobile-dark-mode .switches label span:last-child, .mobile-menu .bottom-sheet-btn .mobile-user-menu-info { font: 700 14px/1.2 var(--ui-font); color: #0B1B3A; }
  .mobile-menu .bottom-sheet-btn .mobile-user-menu-top { min-height: 52px; padding: 8px 12px; background: transparent !important; }
  .mobile-menu .bottom-sheet-btn .mobile-user-menu-avatar { width: 26px; height: 26px; padding: 0; border-radius: 50%; overflow: hidden; background: transparent; }
  .mobile-menu .bottom-sheet-btn .mobile-user-menu-avatar img { width: 26px; height: 26px; object-fit: cover; }
  .mobile-menu .bottom-sheet-btn .mobile-user-menu-top > i { color: #0B8F99; font-size: 18px; }

  html[data-theme="dark"] .mobile-menu.active { background: #0B1220; }
  html[data-theme="dark"] .mobile-menu .mobile-menu__items .mobile-menu-links > div > a, html[data-theme="dark"] .mobile-menu .mobile-menu-links > .sub,
  html[data-theme="dark"] .mobile-menu .mobile-dark-mode .switches, html[data-theme="dark"] .mobile-menu .bottom-sheet-btn { background: #0F172A; box-shadow: inset 0 0 0 1px #334155; color: #E6EDF7; }
  html[data-theme="dark"] .mobile-menu .mobile-menu-links > .sub a, html[data-theme="dark"] .mobile-menu .mobile-dark-mode .switches label span:last-child, html[data-theme="dark"] .mobile-menu .bottom-sheet-btn .mobile-user-menu-info { color: #E6EDF7; }
  html[data-theme="dark"] .mobile-menu .mobile-menu__items .mobile-menu-links > div > a i { background: #16243A; color: #5FE0E8; }
  html[data-theme="dark"] #hamburger.active .line { background: #E6EDF7; }
}
@media (max-width: 991.98px) { .ui-mm-actions .ui-dock__cta { justify-content: center; font: 800 16px/1 var(--ui-font); } .mobile-menu .mobile-menu__items .mobile-menu-links > div > a.is-current::before { background-color: rgba(95, 224, 232, .9); } }
/* 2026-09-14 — mobile menu overflow fix: the menu fits between the header and the screen bottom, and the (hidden) language
   bottom sheet is fixed to the viewport so it no longer stretches the menu's scroll area. */
@media (max-width: 991.98px) {
  .mobile-menu.active { height: auto !important; min-height: 0 !important; }
  .mobile-menu .bottom-sheet-wrapper .bottom-sheet { position: fixed; z-index: 1001; left: 0; right: 0; width: auto; max-height: 80vh; overflow-y: auto; transform: none; bottom: -120%; border-radius: 18px 18px 0 0; }
  .mobile-menu .bottom-sheet-wrapper.show-modal .bottom-sheet { bottom: 0; }
  .mobile-menu .bottom-sheet-wrapper .backdrop { z-index: 1000; }
}
@media (max-width: 991.98px) { .mobile-menu .bottom-sheet-wrapper .bottom-sheet { justify-content: flex-start; } }
@media (max-width: 991.98px) { .mobile-menu .bottom-sheet-wrapper.show-modal .bottom-sheet { bottom: 76px; max-height: calc(100vh - 150px); border-radius: 18px; left: 16px; right: 16px; } }
@media (max-width: 991.98px) { .mobile-menu .bottom-sheet-wrapper .bottom-sheet { overflow: hidden; } .mobile-menu .bottom-sheet-wrapper.show-modal .bottom-sheet { bottom: 16px; max-height: calc(100vh - 90px); } .mobile-menu .bottom-sheet-wrapper .bottom-sheet .sub { flex: 1 1 auto; min-height: 0; width: 100%; overflow-y: auto; } .mobile-menu .bottom-sheet-wrapper .bottom-sheet > :not(.sub) { flex: none; } }

/* 2026-09-14 (owner) — mobile bottom dock: light frosted bar with a turquoise top edge; Rent Now takes the navy + turquoise
   style of the other CTAs (also inside the hamburger menu card). Desktop floating buttons unchanged. */
@media (max-width: 991.98px) {
  .ui-dock.ui-dock__bar { background: rgba(255, 255, 255, .92); -webkit-backdrop-filter: saturate(1.4) blur(12px); backdrop-filter: saturate(1.4) blur(12px); border-top: 2px solid #0FB5C1; box-shadow: 0 12px 30px rgba(11, 27, 58, .22), 0 0 0 1px rgba(11, 27, 58, .06); }
  .ui-dock .ui-dock__price { color: #0B1B3A; }
  .ui-dock .ui-dock__price small { color: #64748B; font-weight: 600; }
  .ui-dock .ui-dock__price b { color: #0B8F99; }
  .ui-dock .ui-dock__price b span { color: #123A63; }
  .ui-dock .ui-dock__ib--call { background: rgba(15, 181, 193, .16); color: #123A63; }
  .ui-dock .ui-dock__badge { border-color: #fff; }
  .ui-dock .ui-dock__cta, .ui-mm-actions .ui-dock__cta { background: radial-gradient(circle at 50% 35%, #123A63 0%, #0B1B3A 70%); color: #fff !important; border: 2px solid #0FB5C1; box-shadow: 0 6px 16px rgba(15, 181, 193, .35); animation: uiCtaGlow 1.8s ease-in-out infinite; }
  .ui-dock .ui-dock__cta .ui-icon--dir, .ui-mm-actions .ui-dock__cta .ui-icon--dir { color: #5FE0E8; font-size: 18px; }
  .ui-mm-actions .ui-dock__ib--call { background: rgba(255, 255, 255, .12); color: #fff; }
  html[data-theme="dark"] .ui-dock.ui-dock__bar { background: rgba(15, 23, 42, .94); box-shadow: 0 12px 30px rgba(0, 0, 0, .5), 0 0 0 1px #334155; }
  html[data-theme="dark"] .ui-dock .ui-dock__price { color: #E6EDF7; }
  html[data-theme="dark"] .ui-dock .ui-dock__price b { color: #5FE0E8; }
  html[data-theme="dark"] .ui-dock .ui-dock__price b span { color: #CBD5E1; }
  html[data-theme="dark"] .ui-dock .ui-dock__ib--call { background: rgba(15, 181, 193, .18); color: #5FE0E8; }
  html[data-theme="dark"] .ui-dock .ui-dock__badge { border-color: #0F172A; }
}
@media (max-width: 991.98px) and (prefers-reduced-motion: reduce) { .ui-dock .ui-dock__cta, .ui-mm-actions .ui-dock__cta { animation: none; } }

/* 2026-09-14 (owner) — why-rent: 5G coverage card is highlighted with a glowing navy/turquoise "5G" badge */
.ui-why__item--5g { position: relative; box-shadow: inset 0 0 0 1.5px rgba(15, 181, 193, .55); background: linear-gradient(145deg, rgba(15, 181, 193, .10), var(--ui-surface) 60%); }
.ui-why .ui-why__item--5g > .ui-why__badge { position: absolute; inset-block-start: 10px; inset-inline-end: 10px; padding: 3px 9px; border-radius: 999px; background: radial-gradient(circle at 50% 35%, #123A63 0%, #0B1B3A 75%); border: 1.5px solid #0FB5C1; color: #5FE0E8; font: 900 13px/1.1 var(--ui-font) !important; letter-spacing: .02em; box-shadow: 0 0 12px rgba(95, 224, 232, .45); animation: ui-pb-glow 1.8s ease-in-out infinite; }
.ui-why__item--5g b { padding-inline-end: 44px; }
@media (prefers-reduced-motion: reduce) { .ui-why .ui-why__item--5g > .ui-why__badge { animation: none; } }
html[data-theme="dark"] .ui-why__item--5g { background: linear-gradient(145deg, rgba(15, 181, 193, .16), var(--ui-surface) 60%); }

/* 2026-09-14 (owner) — hero "10 years of trusted service" label above the country eyebrow: navy glass pill, gold laurels + "10" */
.ui-years { display: inline-flex; align-items: center; gap: 8px; width: max-content; max-width: 100%; margin-block-end: 12px; padding: 5px 12px; border-radius: 999px;
  background: linear-gradient(135deg, rgba(11, 27, 58, .78), rgba(18, 58, 99, .72)); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border: 1.5px solid rgba(242, 183, 5, .85); box-shadow: 0 6px 18px rgba(0, 0, 0, .25), inset 0 1px 0 rgba(255, 255, 255, .12); color: #fff; font-family: var(--ui-font); }
.ui-years__laurel { width: 20px; height: 20px; fill: none; stroke: #F2C94C; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.ui-years__laurel--r { transform: scaleX(-1); }
.ui-years__n { font-size: 26px; line-height: 1; font-weight: 900; letter-spacing: -.03em; background: linear-gradient(180deg, #FFE08A, #F2B705 60%, #D48F00); -webkit-background-clip: text; background-clip: text; color: transparent; }
.ui-years__txt { display: flex; flex-direction: column; line-height: 1.1; }
.ui-years__txt strong { font-size: 12px; font-weight: 900; letter-spacing: .14em; color: #FFE08A; }
.ui-years__txt small { font-size: 11px; font-weight: 600; color: #E6EDF7; }
@media (min-width: 992px) {
  .ui-years { gap: 10px; padding: 7px 16px; margin-block-end: 16px; }
  .ui-years__laurel { width: 24px; height: 24px; }
  .ui-years__n { font-size: 32px; }
  .ui-years__txt strong { font-size: 13px; }
  .ui-years__txt small { font-size: 12.5px; }
}
@media (max-width: 991.98px) { .ui-years { margin-block-end: 8px; padding: 4px 10px; gap: 6px; } .ui-years__n { font-size: 22px; } .ui-years__laurel { width: 17px; height: 17px; } }
/* 2026-09-14 (owner) — 10-years label: white inside; gold border/laurels/number kept, darker tones for contrast on white */
.ui-years { background: #fff; -webkit-backdrop-filter: none; backdrop-filter: none; border-color: #E0A800; box-shadow: 0 6px 18px rgba(11, 27, 58, .22); }
.ui-years__laurel { stroke: #C99400; }
.ui-years__n { background: linear-gradient(180deg, #F2B705, #C98A00 70%, #A56F00); -webkit-background-clip: text; background-clip: text; color: transparent; }
.ui-years__txt strong { color: #B07A00; }
.ui-years__txt small { color: #0B1B3A; }
/* 2026-09-14 (owner) — 10-years label breathes like the price badge (same 1.8s rhythm, gold glow instead of turquoise) */
.ui-years { transform-origin: 0 50%; animation: ui-years-pulse 1.8s ease-in-out infinite; }
[dir="rtl"] .ui-years { transform-origin: 100% 50%; }
.ui-years__n { animation: ui-years-glow 1.8s ease-in-out infinite; }
@keyframes ui-years-pulse {
  0%, 100% { transform: scale(1); border-color: #E0A800; box-shadow: 0 0 0 3px rgba(242, 183, 5, .22), 0 6px 18px rgba(11, 27, 58, .22); }
  50% { transform: scale(1.05); border-color: #F7C948; box-shadow: 0 0 0 10px rgba(242, 183, 5, 0), 0 0 26px rgba(247, 201, 72, .7), 0 6px 18px rgba(11, 27, 58, .22); }
}
@keyframes ui-years-glow { 0%, 100% { filter: none; } 50% { filter: drop-shadow(0 0 6px rgba(247, 201, 72, .8)); } }
@media (prefers-reduced-motion: reduce) { .ui-years, .ui-years__n { animation: none; } }

/* 2026-09-14 (owner) — booking / checkout: step indicator and primary buttons in the home Rent Now style (navy + turquoise) */
.ui-steps li.is-current { color: #0B1B3A; font-weight: 800; }
.ui-steps li.is-current i { background: radial-gradient(circle at 50% 35%, #123A63 0%, #0B1B3A 75%); border: 2px solid #0FB5C1; color: #fff; box-shadow: 0 0 0 3px rgba(15, 181, 193, .18), 0 0 12px rgba(95, 224, 232, .45); }
.ui-steps li.is-done { color: #123A63; }
.ui-steps li.is-done i { background: radial-gradient(circle at 50% 35%, #123A63 0%, #0B1B3A 75%); border-color: #123A63; color: #5FE0E8; }
.ui-steps .ui-steps__line.is-done { border-top-style: solid; border-color: #0FB5C1; }
html[data-theme="dark"] .ui-steps li.is-current, html[data-theme="dark"] .ui-steps li.is-done { color: #E6EDF7; }
html[data-theme="dark"] .ui-steps li.is-done i { border-color: #3B5A85; }

.ui-paybar .ui-btn { background: radial-gradient(circle at 50% 35%, #123A63 0%, #0B1B3A 70%); border: 2px solid #0FB5C1; color: #fff !important; animation: uiCtaGlow 1.8s ease-in-out infinite; }
.ui-paybar .ui-btn .ui-icon { color: #5FE0E8; }
.ui-paybar .ui-btn:hover { background: radial-gradient(circle at 50% 35%, #1A4A7A 0%, #10264D 70%); border-color: #5FE0E8; box-shadow: 0 10px 24px rgba(11, 27, 58, .30); }
.ui-paybar .ui-btn[disabled], .ui-paybar .ui-btn.is-disabled, .ui-paybar .ui-btn.is-loading { animation: none; }
.ui-paybar .ui-btn[disabled], .ui-paybar .ui-btn.is-disabled { background: #B8C4CF; border-color: #B8C4CF; }
@media (prefers-reduced-motion: reduce) { .ui-paybar .ui-btn { animation: none; } }
