/* RENTURO — Design System & Styles */

/* ---- Réservation bateau à l'heure (fiche desktop) ---- */
.rt-bb-price{display:flex;align-items:baseline;gap:6px}
.rt-bb-amount{font-size:26px;font-weight:800;color:var(--rt-ink)}
.rt-bb-unit{font-size:14px;color:var(--rt-muted)}
.rt-bb-min{font-size:12.5px;color:var(--rt-muted);margin:2px 0 4px}
.rt-bb-label{font-size:11.5px;font-weight:700;text-transform:uppercase;letter-spacing:.05em;color:var(--rt-muted);margin:16px 0 8px}
.rt-bb-date{width:100%;padding:11px 12px;border:1px solid var(--rt-line-2);border-radius:var(--rt-r);font:inherit;font-size:14px;color:var(--rt-ink);background:var(--rt-bg);box-sizing:border-box}
.rt-bb-chips{display:flex;flex-wrap:wrap;gap:8px}
.rt-bb-chip{padding:8px 14px;border:1px solid var(--rt-line-2);border-radius:999px;background:var(--rt-bg);font-size:13.5px;font-weight:600;color:var(--rt-ink);cursor:pointer}
.rt-bb-chip.is-active{background:var(--rt-ink);border-color:var(--rt-ink);color:#fff}
.rt-bb-slots{display:grid;grid-template-columns:repeat(2,1fr);gap:8px;max-height:172px;overflow:auto}
.rt-bb-slot{padding:9px 8px;border:1px solid var(--rt-line-2);border-radius:var(--rt-r);background:var(--rt-bg);font-size:13px;font-weight:600;color:var(--rt-ink);cursor:pointer}
.rt-bb-slot.is-active{background:var(--rt-orange-soft);border-color:var(--rt-orange);color:var(--rt-orange-2)}
.rt-bb-hint{font-size:13px;color:var(--rt-muted);margin:2px 0 0}
.rt-bb-recap{margin-top:14px;padding:12px 14px;background:var(--rt-bg-soft);border-radius:var(--rt-r);display:flex;flex-direction:column;gap:7px}
.rt-bb-row{display:flex;justify-content:space-between;font-size:13.5px;color:var(--rt-ink-2)}
.rt-bb-row.is-total{border-top:1px solid var(--rt-line);padding-top:8px;font-weight:800;font-size:15px;color:var(--rt-ink)}
.rt-bb-error{color:#c0392b;font-size:13px;margin-top:10px}
.rt-bb-book{margin-top:14px}
.rt-bb-book:disabled{opacity:.45;cursor:default}
.rt-bb-success{text-align:center;padding:8px 4px}
.rt-bb-success-ico{width:44px;height:44px;border-radius:50%;background:var(--rt-green);color:#fff;font-size:22px;display:flex;align-items:center;justify-content:center;margin:0 auto 10px}
.rt-bb-success h3{margin:0 0 6px;font-size:17px}
.rt-bb-success p{font-size:13.5px;color:var(--rt-muted);margin:0 0 10px}
.rt-bb-success-slot{font-weight:700;font-size:14px}


:root {
  /* Palette */
  --rt-black: #0A0A0A;
  --rt-white: #FFFFFF;
  --rt-ink: #15161a;
  --rt-ink-2: #2a2c33;
  --rt-muted: #6b6e76;
  --rt-muted-2: #9a9da6;
  --rt-line: #e7e8ec;
  --rt-line-2: #d8dade;
  --rt-bg: #ffffff;
  --rt-bg-soft: #f8f8f5;
  --rt-bg-soft-2: #f3f3ef;

  /* Accent — Renturo orange */
  --rt-orange: #FF6B00;
  --rt-orange-2: #FF5500;
  --rt-orange-soft: #fff3e8;
  --rt-orange-tint: #ffece0;

  /* Success / brand */
  --rt-green: #00B868;
  --rt-green-2: #25D366;
  --rt-blue: #1A4FD8;
  --rt-blue-soft: #e5edff;

  /* Radii */
  --rt-r-sm: 6px;
  --rt-r: 10px;
  --rt-r-lg: 16px;
  --rt-r-xl: 22px;
  --rt-r-pill: 999px;

  /* Shadows */
  --rt-shadow-sm: 0 1px 2px rgba(15, 17, 25, 0.04);
  --rt-shadow: 0 4px 16px rgba(15, 17, 25, 0.06);
  --rt-shadow-lg: 0 20px 50px rgba(15, 17, 25, 0.10);

  /* Type */
  --rt-font-display: 'Archivo', 'Inter', system-ui, sans-serif;
  --rt-font-body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--rt-font-body);
  color: var(--rt-ink);
  background: var(--rt-bg);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; padding: 0; color: inherit; }
img { display: block; max-width: 100%; }
input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; }

.rt-container { max-width: 1320px; margin: 0 auto; padding: 0 28px; width: 100%; }
.rt-accent { color: var(--rt-orange); }

/* ============ TOPBAR ============ */
.rt-topbar { background: var(--rt-black); color: var(--rt-white); font-size: 12px; letter-spacing: 0.06em; }
.rt-topbar-inner { display: flex; justify-content: space-between; align-items: center; height: 38px; }
.rt-topbar-left, .rt-topbar-right { display: flex; align-items: center; gap: 18px; }
.rt-flag { display: inline-flex; height: 12px; border-radius: 2px; overflow: hidden; border: 0.5px solid rgba(255,255,255,0.2); }
.rt-flag span { width: 7px; height: 12px; display: block; }
.rt-topbar-country { font-weight: 700; }
.rt-topbar-divider { width: 1px; height: 12px; background: rgba(255,255,255,0.2); }
.rt-topbar-link { color: var(--rt-white); opacity: 0.85; transition: opacity 0.15s; display: inline-flex; align-items: center; gap: 6px; }
.rt-topbar-link:hover { opacity: 1; }
.rt-topbar-cta { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.08); padding: 6px 14px; border-radius: var(--rt-r-pill); font-weight: 700; letter-spacing: 0.08em; transition: background 0.15s; }
.rt-topbar-cta:hover { background: var(--rt-orange); }
.rt-topbar-acct { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; background: none; border: none; color: var(--rt-white); opacity: 0.9; transition: opacity 0.15s; }
.rt-topbar-acct:hover { opacity: 1; }
.rt-langswitch { display: inline-flex; align-items: center; gap: 2px; background: rgba(255,255,255,0.08); border-radius: var(--rt-r-pill); padding: 2px; }
.rt-lang-opt { cursor: pointer; background: none; border: none; color: var(--rt-white); opacity: 0.6; font: inherit; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; padding: 4px 9px; border-radius: var(--rt-r-pill); transition: opacity 0.15s, background 0.15s; line-height: 1; }
.rt-lang-opt:hover { opacity: 0.9; }
.rt-lang-opt.is-active { opacity: 1; background: var(--rt-orange); }
.rt-autotrans { display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; padding: 0; background: none; border: none; cursor: pointer; color: var(--rt-muted); font: inherit; font-size: 12.5px; font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.rt-autotrans:hover { color: var(--rt-orange); }
.rt-autotrans svg { flex: none; opacity: 0.8; }

/* ============ HEADER ============ */
.rt-header { background: var(--rt-white); border-bottom: 1px solid var(--rt-line); position: sticky; top: 0; z-index: 50; }
.rt-header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 30px; }
.rt-logo { font-family: var(--rt-font-display); font-weight: 900; font-style: italic; font-size: 28px; letter-spacing: -0.02em; color: var(--rt-black); flex: 0 0 auto; }
.rt-nav { display: flex; gap: 28px; align-items: center; }
.rt-nav-item { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--rt-ink); padding: 8px 0; border-bottom: 2px solid transparent; transition: border-color 0.15s, color 0.15s; }
.rt-nav-item:hover { color: var(--rt-orange); border-color: var(--rt-orange); }
.rt-nav-icon { display: inline-flex; align-items: center; color: currentColor; }
.rt-user-btn { display: inline-flex; align-items: center; gap: 10px; padding: 8px 8px 8px 14px; border: 1px solid var(--rt-line); border-radius: var(--rt-r-pill); transition: box-shadow 0.15s; }
.rt-user-btn:hover { box-shadow: var(--rt-shadow); }
.rt-user-circle { width: 30px; height: 30px; background: var(--rt-ink); color: var(--rt-white); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; }
.rt-user-btn { cursor: pointer; background: none; }
.rt-user-ava { width: 30px; height: 30px; background: var(--rt-orange); color: #fff; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; letter-spacing: 0.02em; }
.rt-user-wrap { position: relative; }
.rt-user-backdrop { position: fixed; inset: 0; z-index: 40; }
.rt-user-menu { position: absolute; top: calc(100% + 10px); right: 0; z-index: 50; min-width: 240px; background: var(--rt-white); border: 1px solid var(--rt-line); border-radius: 14px; box-shadow: var(--rt-shadow); overflow: hidden; }
.rt-user-menu-head { display: flex; align-items: center; gap: 12px; padding: 16px; border-bottom: 1px solid var(--rt-line); }
.rt-user-menu-ava { width: 38px; height: 38px; flex: none; background: var(--rt-orange); color: #fff; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; }
.rt-user-menu-name { font-weight: 700; font-size: 14px; }
.rt-user-menu-mail { font-size: 12px; color: var(--rt-muted); margin-top: 2px; }
.rt-user-menu-item { display: flex; align-items: center; gap: 11px; width: 100%; text-align: left; background: none; border: none; padding: 11px 14px; font: inherit; font-size: 14px; font-weight: 600; cursor: pointer; border-radius: 9px; transition: background 0.12s, color 0.12s; }
.rt-user-menu-item:hover { background: var(--rt-haze, rgba(0,0,0,0.04)); color: var(--rt-orange); }
.rt-user-menu-headbtn { width: 100%; cursor: pointer; transition: background 0.12s; }
.rt-user-menu-headbtn:hover { background: var(--rt-bg-soft); }
.rt-user-menu-list { padding: 6px; display: flex; flex-direction: column; gap: 1px; }
.rt-user-menu-ic { display: inline-flex; flex: none; color: var(--rt-muted); transition: color 0.12s; }
.rt-user-menu-item:hover .rt-user-menu-ic { color: var(--rt-orange); }
.rt-user-menu-badge { margin-left: auto; min-width: 18px; height: 18px; padding: 0 6px; border-radius: var(--rt-r-pill); background: var(--rt-orange); color: #fff; font-size: 10.5px; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; }
.rt-user-menu-sep { height: 1px; background: var(--rt-line); margin: 0 6px; }
.rt-user-menu-out { margin: 6px; width: auto; color: var(--rt-muted); }
.rt-user-menu-out:hover { background: #fdf4f2; color: #c0392b; }
.rt-user-menu-out:hover .rt-user-menu-ic { color: #c0392b; }

/* ============ HERO ============ */
.rt-hero { padding: 56px 0 32px; background: radial-gradient(900px 400px at 80% -100px, rgba(255,107,0,0.06), transparent 50%), var(--rt-bg); }
.rt-hero-headline { max-width: 760px; margin-bottom: 40px; }
.rt-hero-headline h1 { font-family: var(--rt-font-display); font-weight: 800; font-size: clamp(36px, 4.5vw, 60px); line-height: 1.04; letter-spacing: -0.025em; margin-bottom: 16px; text-wrap: balance; }
.rt-hero-headline h1 em { font-style: italic; color: var(--rt-orange); }
.rt-hero-headline p { font-size: 17px; color: var(--rt-muted); max-width: 580px; margin: 0; }

/* ============ SEARCH BAR ============ */
.rt-searchbar { background: var(--rt-white); border: 1px solid var(--rt-line); border-radius: var(--rt-r-pill); box-shadow: var(--rt-shadow); display: grid; grid-template-columns: 1.6fr auto 1fr auto 1fr auto; align-items: center; padding: 8px; }
.rt-searchbar-compact { box-shadow: var(--rt-shadow-sm); }
.rt-searchbar-field { padding: 8px 24px; cursor: pointer; border-radius: var(--rt-r-pill); transition: background 0.15s; }
.rt-searchbar-field:hover { background: var(--rt-bg-soft); }
.rt-searchbar-label { font-size: 12px; font-weight: 700; color: var(--rt-ink); margin-bottom: 2px; }
.rt-searchbar-field input, .rt-searchbar-field select { border: none; background: transparent; outline: none; width: 100%; font-size: 14px; color: var(--rt-muted); padding: 0; }
.rt-searchbar-field input::placeholder, .rt-searchbar-field select { color: var(--rt-muted); }
.rt-searchbar-field input[type="date"]::-webkit-calendar-picker-indicator { opacity: 0.4; }
.rt-searchbar-datewrap { position: relative; }
.rt-searchbar-fake { font-size: 14px; color: var(--rt-ink); padding: 0; line-height: 1.5; }
.rt-searchbar-fake.rt-searchbar-ph { color: var(--rt-muted); }

/* Panneau de suggestions groupées */
.rt-searchbar-sugwrap { position: relative; }
.rt-sb-suggest {
  position: absolute;
  top: calc(100% + 12px);
  left: -8px;
  width: 380px;
  max-width: 92vw;
  max-height: 400px;
  overflow-y: auto;
  background: var(--rt-white);
  border: 1px solid var(--rt-line);
  border-radius: 22px;
  box-shadow: 0 16px 44px rgba(0,0,0,0.15), 0 4px 12px rgba(0,0,0,0.07);
  padding: 12px 10px;
  z-index: 80;
  cursor: default;
  animation: rtSbIn 0.16s ease;
}
@keyframes rtSbIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.rt-sb-group + .rt-sb-group { margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--rt-line); }
.rt-sb-grouplabel {
  font-size: 11px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--rt-muted); padding: 4px 10px 6px;
}
.rt-sb-row {
  display: flex; align-items: center; gap: 13px; width: 100%;
  padding: 8px 10px; border: none; background: none; border-radius: 14px;
  text-align: left; cursor: pointer; transition: background 0.12s;
}
.rt-sb-row:hover { background: var(--rt-bg-soft); }
.rt-sb-ico {
  width: 40px; height: 40px; border-radius: 11px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
}
.rt-sb-ico-city { background: #eaf1ff; color: #2a6fdb; }
.rt-sb-ico-brand { background: transparent; color: var(--rt-ink); }
.rt-sb-ico-brand svg, .rt-sb-ico-brand img { width: 34px; height: 34px; object-fit: contain; }
.rt-sb-ico-photo { object-fit: cover; }
.rt-sb-ico-model { background: var(--rt-orange-tint); color: var(--rt-orange); }
.rt-sb-rowtext { display: flex; flex-direction: column; min-width: 0; }
.rt-sb-name { font-size: 14px; font-weight: 600; color: var(--rt-ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rt-sb-sub { font-size: 12px; color: var(--rt-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ===== Calendrier de plage (recherche) ===== */
.rt-rcal-backdrop { position: fixed; inset: 0; z-index: 60; }
.rt-rcal-pop { position: absolute; top: calc(100% + 14px); left: 0; z-index: 70; background: var(--rt-white); border: 1px solid var(--rt-line); border-radius: var(--rt-r-lg); box-shadow: var(--rt-shadow); padding: 18px; cursor: default; }
.rt-rcal-nav { display: flex; justify-content: space-between; position: absolute; top: 18px; left: 18px; right: 18px; pointer-events: none; }
.rt-rcal-arrow { pointer-events: auto; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--rt-line); background: var(--rt-white); color: var(--rt-ink); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.15s, border-color 0.15s; }
.rt-rcal-arrow:hover { border-color: var(--rt-ink); }
.rt-rcal-arrow:disabled { opacity: 0.3; cursor: not-allowed; }
.rt-rcal-months { display: flex; gap: 28px; }
.rt-rcal-month { width: 252px; }
.rt-rcal-mhead { text-align: center; font-weight: 700; font-size: 14px; text-transform: capitalize; margin-bottom: 14px; }
.rt-rcal-dow { display: grid; grid-template-columns: repeat(7, 1fr); margin-bottom: 6px; }
.rt-rcal-dow span { text-align: center; font-size: 11px; font-weight: 600; color: var(--rt-muted); text-transform: capitalize; }
.rt-rcal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.rt-rcal-cell { height: 34px; border: none; background: none; font: inherit; font-size: 13px; color: var(--rt-ink); cursor: pointer; border-radius: 9px; transition: background 0.12s; }
.rt-rcal-empty { cursor: default; }
.rt-rcal-cell:not(.rt-rcal-empty):not(.rt-rcal-past):not(.rt-rcal-sel):hover { background: var(--rt-bg-soft); }
.rt-rcal-past { color: var(--rt-line); cursor: not-allowed; }
.rt-rcal-inrange { background: color-mix(in srgb, var(--rt-orange) 14%, white); border-radius: 0; }
.rt-rcal-sel { background: var(--rt-orange); color: var(--rt-white); font-weight: 700; }
.rt-rcal-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--rt-line); }
.rt-rcal-clear { background: none; border: none; font: inherit; font-size: 13px; font-weight: 600; color: var(--rt-muted); cursor: pointer; padding: 0; }
.rt-rcal-clear:hover { color: var(--rt-ink); }
.rt-rcal-done { background: var(--rt-ink); color: var(--rt-white); border: none; border-radius: var(--rt-r-pill); font: inherit; font-size: 13px; font-weight: 700; padding: 9px 22px; cursor: pointer; }
.rt-rcal-done:hover { background: var(--rt-orange); }
.rt-searchbar-divider { width: 1px; height: 32px; background: var(--rt-line); }
.rt-searchbar-btn { width: 56px; height: 56px; border-radius: 50%; background: var(--rt-orange); color: var(--rt-white); display: inline-flex; align-items: center; justify-content: center; margin-left: 12px; transition: background 0.15s, transform 0.15s; }
.rt-searchbar-btn:hover { background: var(--rt-orange-2); transform: scale(1.05); }

/* ============ SECTIONS ============ */
.rt-section { padding: 56px 0; }
.rt-section-head { margin-bottom: 32px; }
.rt-section-head h2 { font-family: var(--rt-font-display); font-weight: 800; font-size: 22px; letter-spacing: -0.01em; }
.rt-section-head-row { display: flex; justify-content: space-between; align-items: end; gap: 24px; flex-wrap: wrap; }
.rt-section-cta { font-size: 14px; color: var(--rt-orange); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-left: 12px; }
.rt-voirplus { display: inline-flex; align-items: center; gap: 10px; background: var(--rt-orange); color: var(--rt-white); padding: 12px 20px; border-radius: var(--rt-r-pill); font-size: 12px; font-weight: 800; letter-spacing: 0.1em; transition: background 0.15s; }
.rt-voirplus:hover { background: var(--rt-orange-2); }

/* ============ CATEGORY GRID ============ */
.rt-cat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px 24px; row-gap: 32px; }
.rt-cat-pill { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; padding: 8px; border-radius: var(--rt-r); transition: transform 0.2s, background 0.15s; }
.rt-cat-pill:hover { transform: translateY(-4px); }
.rt-cat-img { width: 100%; height: 80px; border-radius: var(--rt-r); overflow: hidden; background: transparent; }
.rt-cat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.rt-cat-pill:hover .rt-cat-img img { transform: scale(1.1); }
.rt-cat-label { font-size: 13px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; }
.rt-cat-count { font-size: 12px; color: var(--rt-muted); }

/* ============ AD BANNER ============ */
.rt-ad-section { padding: 24px 0; }
.rt-adbanner { display: block; position: relative; border-radius: var(--rt-r-lg); overflow: hidden; background: var(--rt-ink); aspect-ratio: 1280/220; }
.rt-adbanner img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }
.rt-adbanner-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--rt-white); gap: 6px; text-shadow: 0 2px 12px rgba(0,0,0,0.5); }
.rt-adbanner-title { font-family: var(--rt-font-display); font-weight: 800; font-size: 28px; letter-spacing: 0.04em; color: var(--rt-orange); }
.rt-adbanner-sub { font-size: 14px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.rt-adgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.rt-home-seeall { display: flex; justify-content: center; margin-top: 32px; }
/* Spotlight (grandes cartes immersives, home) */
.rt-spotgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.rt-spot { position: relative; display: block; height: 380px; border-radius: var(--rt-r-xl); overflow: hidden; cursor: pointer; }
.rt-spot img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.rt-spot:hover img { transform: scale(1.03); }
.rt-spot-grad { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.72), rgba(0,0,0,0) 55%); }
.rt-spot-body { position: absolute; left: 26px; right: 26px; bottom: 22px; color: #fff; }
.rt-spot-owner { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.85; }
.rt-spot-body h3 { font-family: var(--rt-font-display); font-weight: 800; font-size: 26px; letter-spacing: -0.01em; margin: 6px 0 8px; }
.rt-spot-price { display: flex; align-items: baseline; gap: 8px; }
.rt-spot-price s { font-size: 14px; opacity: 0.7; }
.rt-spot-price strong { font-size: 21px; font-weight: 800; }
.rt-spot-price span { font-size: 13px; opacity: 0.8; }
.rt-adbanner-sm { aspect-ratio: 640/220; }

/* ============ VEHICLE CARD ============ */
.rt-vgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.rt-vcard { display: block; text-decoration: none; color: inherit; background: var(--rt-white); border: 1px solid var(--rt-line); border-radius: var(--rt-r-lg); overflow: hidden; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s, border-color 0.15s; display: flex; flex-direction: column; }
.rt-vcard:hover { transform: translateY(-4px); box-shadow: var(--rt-shadow-lg); border-color: var(--rt-line-2); }
.rt-vcard-media { position: relative; aspect-ratio: 16/10; background: var(--rt-bg-soft); overflow: hidden; }
.rt-vcard-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.rt-vcard-fav { position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.92); display: flex; align-items: center; justify-content: center; color: var(--rt-ink); backdrop-filter: blur(8px); transition: color 0.15s, transform 0.15s; }
.rt-vcard-fav:hover { transform: scale(1.1); }
.rt-vcard-fav.is-active { color: var(--rt-orange); }
.rt-vcard-badge { position: absolute; bottom: 12px; left: 12px; background: var(--rt-ink); color: var(--rt-white); font-size: 10px; font-weight: 800; letter-spacing: 0.1em; padding: 5px 9px; border-radius: var(--rt-r-sm); }
.rt-vcard-body { padding: 16px; display: grid; grid-template-rows: auto auto auto auto auto 1fr auto; gap: 8px; flex: 1; min-height: 280px; }
.rt-vcard-title { font-size: 15px; font-weight: 700; color: var(--rt-ink); letter-spacing: -0.005em; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.rt-vcard-tags { display: flex; gap: 6px; flex-wrap: wrap; min-height: 24px; }
.rt-tag, .rt-tag-icon { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; padding: 3px 8px; border: 1px solid var(--rt-line); border-radius: var(--rt-r-pill); color: var(--rt-ink-2); }
.rt-tag-icon svg { color: var(--rt-muted); }
.rt-vcard-pricing { display: flex; gap: 16px; margin-top: 4px; min-height: 36px; }
.rt-vcard-price { display: flex; flex-direction: row; align-items: baseline; gap: 5px; }
.rt-price-amount { font-size: 15px; font-weight: 700; color: var(--rt-ink); white-space: nowrap; }
.rt-price-old { font-size: 12px; color: var(--rt-muted); text-decoration: line-through; font-weight: 600; white-space: nowrap; }
.rt-price-amount-mo { font-size: 14px; font-weight: 700; color: var(--rt-ink); }
.rt-price-unit { font-size: 12px; color: var(--rt-muted); }
.rt-vcard-km { display: flex; gap: 12px; font-size: 12px; color: var(--rt-muted); min-height: 18px; }
.rt-vcard-km span { display: inline-flex; align-items: center; gap: 4px; }
.rt-vcard-owner { display: flex; align-items: center; gap: 8px; padding-top: 8px; border-top: 1px dashed var(--rt-line); margin-top: 4px; }
.rt-owner-logo { width: 22px; height: 22px; border-radius: 50%; background: var(--rt-orange); color: var(--rt-white); font-size: 11px; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; }
.rt-owner-name { font-size: 12px; font-weight: 700; color: var(--rt-ink-2); }
.rt-vcard-incl { list-style: none; padding: 0; margin: 4px 0 0; display: flex; flex-direction: column; gap: 4px; font-size: 12px; color: var(--rt-muted); }
.rt-vcard-incl li { display: flex; align-items: center; gap: 6px; }
.rt-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--rt-green); display: inline-block; }
.rt-dot-green { width: 8px; height: 8px; border-radius: 50%; background: var(--rt-green); display: inline-block; }
.rt-vcard-incl svg { color: var(--rt-green); }

/* ============ CITY GRID ============ */
.rt-city-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
.rt-city-row { margin-top: 20px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rt-city-card { position: relative; aspect-ratio: 4/5; border-radius: var(--rt-r-lg); overflow: hidden; cursor: pointer; transition: transform 0.2s; background: var(--rt-ink); }
.rt-city-card:hover { transform: translateY(-6px); }
.rt-city-card-sm { aspect-ratio: 16/10; }

/* ============ CITY PICKER MODAL ============ */
.rt-citypick-overlay { position: fixed; inset: 0; z-index: 300; background: rgba(10,10,10,0.5); display: flex; align-items: flex-start; justify-content: center; padding: 64px 20px; overflow-y: auto; }
.rt-citypick { background: #fff; width: 100%; max-width: 720px; border-radius: 18px; box-shadow: var(--rt-shadow-lg); overflow: hidden; }
.rt-citypick-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--rt-line); }
.rt-citypick-head h3 { font-family: var(--rt-font-display); font-weight: 800; font-size: 20px; margin: 0; }
.rt-citypick-x { width: 34px; height: 34px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 22px; color: var(--rt-ink); background: transparent; cursor: pointer; }
.rt-citypick-x:hover { background: var(--rt-bg-soft); }
.rt-citypick-body { padding: 20px 24px 24px; }
.rt-citypick-group { margin-bottom: 22px; }
.rt-citypick-group:last-child { margin-bottom: 0; }
.rt-citypick-country { font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--rt-muted); margin-bottom: 10px; }
.rt-citypick-cities { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.rt-citypick-city { display: flex; flex-direction: column; gap: 2px; align-items: flex-start; text-align: left; padding: 12px 14px; border: 1px solid var(--rt-line); border-radius: 12px; background: #fff; cursor: pointer; transition: border-color 0.12s, background 0.12s; }
.rt-citypick-city:hover { border-color: var(--rt-ink); background: var(--rt-bg-soft); }
.rt-citypick-cityname { font-weight: 700; font-size: 15px; color: var(--rt-ink); }
.rt-citypick-citycount { font-size: 12px; color: var(--rt-muted); }
@media (max-width: 640px) { .rt-citypick-cities { grid-template-columns: 1fr 1fr; } }
.rt-city-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.rt-city-card:hover img { transform: scale(1.05); }
.rt-city-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.5) 100%); padding: 24px; display: flex; flex-direction: column; justify-content: flex-end; color: var(--rt-white); }
.rt-city-overlay h3 { font-family: var(--rt-font-display); font-weight: 800; font-size: clamp(32px, 3.6vw, 56px); letter-spacing: -0.02em; line-height: 1; background: rgba(20,20,20,0.55); display: inline-block; padding: 8px 14px; border-radius: var(--rt-r-sm); align-self: flex-start; backdrop-filter: blur(2px); }
.rt-city-card-sm .rt-city-overlay h3 { font-size: clamp(22px, 2vw, 36px); }
.rt-city-overlay span { margin-top: 8px; font-size: 13px; font-weight: 600; opacity: 0.95; }

/* ============ TRUST STRIP ============ */
.rt-trust { background: var(--rt-bg-soft); padding: 64px 0; }
.rt-trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.rt-trust-grid > div h3 { font-family: var(--rt-font-display); font-weight: 800; font-size: 17px; margin-bottom: 8px; }
.rt-trust-grid > div p { font-size: 14px; color: var(--rt-muted); margin: 0; }
.rt-trust-icon { font-size: 28px; margin-bottom: 14px; }

/* ============ HOST CTA ============ */
.rt-host { padding: 48px 0 80px; }
.rt-host-card { background: var(--rt-black); color: var(--rt-white); border-radius: var(--rt-r-xl); padding: 64px; display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: center; position: relative; overflow: hidden; }
.rt-host-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(800px 400px at 100% 0%, rgba(255,107,0,0.15), transparent 60%); pointer-events: none; }
.rt-eyebrow { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; color: var(--rt-orange); margin-bottom: 16px; }
.rt-host-card h2 { font-family: var(--rt-font-display); font-weight: 800; font-size: clamp(28px, 3vw, 40px); letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 16px; }
.rt-host-card h2 em { font-style: italic; color: var(--rt-orange); }
.rt-host-card p { color: rgba(255,255,255,0.7); font-size: 16px; max-width: 540px; margin: 0 0 24px; }
.rt-host-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.rt-host-stats { display: flex; flex-direction: column; gap: 20px; padding-left: 32px; border-left: 1px solid rgba(255,255,255,0.15); position: relative; z-index: 1; }
.rt-host-stats > div { display: flex; flex-direction: column; }
.rt-host-stats strong { font-family: var(--rt-font-display); font-size: 36px; font-weight: 800; color: var(--rt-orange); letter-spacing: -0.02em; }
.rt-host-stats span { font-size: 13px; color: rgba(255,255,255,0.65); }

/* ============ BUTTONS ============ */
.rt-btn-primary { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: var(--rt-orange); color: var(--rt-white); padding: 14px 24px; border-radius: var(--rt-r-pill); font-size: 14px; font-weight: 700; letter-spacing: 0.02em; transition: background 0.15s, transform 0.1s; }
.rt-btn-primary:hover { background: var(--rt-orange-2); }
.rt-btn-primary:active { transform: translateY(1px); }
.rt-btn-primary:disabled { background: var(--rt-muted-2); cursor: not-allowed; }
.rt-btn-block { width: 100%; }
.rt-btn-large { padding: 16px 24px; font-size: 15px; }
.rt-btn-ghost { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: transparent; color: var(--rt-ink); padding: 14px 24px; border-radius: var(--rt-r-pill); font-size: 14px; font-weight: 700; border: 1px solid var(--rt-line); transition: background 0.15s; }
.rt-btn-ghost:hover { background: var(--rt-bg-soft); }
.rt-icon-btn { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--rt-line); background: var(--rt-white); display: inline-flex; align-items: center; justify-content: center; color: var(--rt-ink); transition: background 0.15s; }
.rt-icon-btn:hover { background: var(--rt-bg-soft); }

/* ============ FOOTER ============ */
.rt-footer { background: var(--rt-black); color: var(--rt-white); padding: 64px 0 24px; margin-top: 40px; }
.rt-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.rt-logo-footer { color: var(--rt-white); font-size: 32px; margin-bottom: 16px; }
.rt-footer-tag { font-size: 14px; color: rgba(255,255,255,0.65); max-width: 360px; margin: 0 0 24px; }
.rt-app-buttons { display: flex; gap: 12px; }
.rt-app-btn { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.08); padding: 10px 16px; border-radius: var(--rt-r); border: 1px solid rgba(255,255,255,0.12); transition: background 0.15s; }
.rt-app-btn:hover { background: rgba(255,255,255,0.14); }
.rt-app-stack { display: flex; flex-direction: column; line-height: 1.1; }
.rt-app-stack span { font-size: 10px; color: rgba(255,255,255,0.65); }
.rt-app-stack strong { font-size: 14px; }
.rt-footer-grid h4 { font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 700; margin-bottom: 16px; }
.rt-footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.rt-footer-grid ul a { font-size: 14px; color: rgba(255,255,255,0.65); transition: color 0.15s; }
.rt-footer-grid ul a:hover { color: var(--rt-orange); }
.rt-footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-size: 12px; color: rgba(255,255,255,0.5); }
.rt-footer-legal { display: flex; gap: 18px; }
.rt-footer-legal a:hover { color: var(--rt-white); }

/* ============ RESULTS ============ */
.rt-results { padding-bottom: 64px; }
.rt-results-search { padding: 24px 0; border-bottom: 1px solid var(--rt-line); margin-bottom: 24px; }
.rt-breadcrumb { font-size: 13px; color: var(--rt-muted); padding: 16px 0; }
.rt-breadcrumb a { color: var(--rt-muted); }
.rt-breadcrumb a:hover { color: var(--rt-orange); }
.rt-breadcrumb span { color: var(--rt-ink); font-weight: 600; }
.rt-results-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; gap: 24px; flex-wrap: wrap; }
.rt-results-head h1 { font-family: var(--rt-font-display); font-weight: 800; font-size: 26px; letter-spacing: -0.015em; }
.rt-results-sort { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.rt-results-sort label { color: var(--rt-muted); }
.rt-results-sort select { padding: 8px 14px; border: 1px solid var(--rt-line); border-radius: var(--rt-r-pill); background: var(--rt-white); font-weight: 600; cursor: pointer; }
.rt-results-layout { display: grid; grid-template-columns: 280px 1fr; gap: 28px; align-items: start; }
.rt-results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.rt-filters { background: var(--rt-white); border: 1px solid var(--rt-line); border-radius: var(--rt-r-lg); padding: 24px; position: sticky; top: 100px; }
.rt-filters h3 { font-family: var(--rt-font-display); font-weight: 800; font-size: 17px; margin-bottom: 20px; }
.rt-filter-block { padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid var(--rt-line); }
.rt-filter-block:last-of-type { border-bottom: none; margin-bottom: 0; }
.rt-filter-block h4 { font-size: 13px; font-weight: 700; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.04em; }
.rt-filter-radios { display: flex; flex-direction: column; gap: 6px; }
.rt-filter-radio { display: flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: var(--rt-r); cursor: pointer; font-size: 14px; border: 1px solid transparent; transition: background 0.15s, border-color 0.15s; }
.rt-filter-radio input { accent-color: var(--rt-orange); }
.rt-filter-radio:hover { background: var(--rt-bg-soft); }
.rt-filter-radio.is-active { background: var(--rt-orange-soft); border-color: var(--rt-orange); color: var(--rt-ink); font-weight: 700; }
.rt-filter-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.rt-chip { padding: 6px 12px; border-radius: var(--rt-r-pill); border: 1px solid var(--rt-line); background: var(--rt-white); font-size: 13px; font-weight: 600; cursor: pointer; transition: background 0.15s, border-color 0.15s; }
.rt-chip:hover { background: var(--rt-bg-soft); }
.rt-chip.is-active { background: var(--rt-ink); color: var(--rt-white); border-color: var(--rt-ink); }
.rt-slider { width: 100%; accent-color: var(--rt-orange); }
.rt-slider-val { font-size: 13px; color: var(--rt-muted); margin-top: 8px; }
.rt-check { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 13px; cursor: pointer; }
.rt-check input { accent-color: var(--rt-orange); width: 16px; height: 16px; }
.rt-filter-reset { width: 100%; margin-top: 12px; }
.rt-empty { text-align: center; padding: 80px 0; grid-column: 1 / -1; }
.rt-empty h3 { font-family: var(--rt-font-display); font-weight: 800; font-size: 20px; margin-bottom: 8px; }
.rt-empty p { color: var(--rt-muted); }

/* ============ DETAIL ============ */
.rt-detail { padding-bottom: 32px; }
.rt-detail-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; gap: 16px; flex-wrap: wrap; }
.rt-detail-title { display: flex; align-items: center; gap: 18px; }
.rt-brand-badge { width: 56px; height: 56px; border-radius: 50%; background: var(--rt-bg-soft); border: 1px solid var(--rt-line); display: inline-flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 800; }
.rt-detail-title h1 { font-family: var(--rt-font-display); font-weight: 800; font-size: clamp(28px, 3.4vw, 44px); letter-spacing: -0.02em; line-height: 1.05; }
.rt-brand-badge svg { max-width: 40px; max-height: 30px; }
.rt-brand-badge img { max-width: 40px; max-height: 32px; object-fit: contain; mix-blend-mode: multiply; }
.rt-detail-actions { display: flex; gap: 10px; }
.rt-detail-layout { display: grid; grid-template-columns: 1fr 380px; gap: 44px; align-items: start; }

.rt-gallery { display: grid; grid-template-columns: 1fr; gap: 12px; }
.rt-gallery-main { position: relative; aspect-ratio: 16/10; border-radius: var(--rt-r-lg); overflow: hidden; background: var(--rt-bg-soft); }
.rt-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.rt-gallery-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.95); display: inline-flex; align-items: center; justify-content: center; box-shadow: var(--rt-shadow); transition: transform 0.15s; }
.rt-gallery-nav:hover { transform: translateY(-50%) scale(1.08); }
.rt-gallery-prev { left: 16px; }
.rt-gallery-next { right: 16px; }
.rt-gallery-counter { position: absolute; bottom: 16px; right: 16px; background: rgba(20,20,20,0.7); color: var(--rt-white); font-size: 12px; font-weight: 700; padding: 6px 12px; border-radius: var(--rt-r-pill); }
.rt-gallery-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.rt-thumb { aspect-ratio: 4/3; border-radius: var(--rt-r); overflow: hidden; border: 2px solid transparent; transition: border-color 0.15s, opacity 0.15s; opacity: 0.7; cursor: pointer; }
.rt-thumb.is-active { border-color: var(--rt-orange); opacity: 1; }
.rt-thumb:hover { opacity: 1; }
.rt-thumb img { width: 100%; height: 100%; object-fit: cover; }
.rt-detail-tags { display: flex; gap: 8px; margin: 24px 0; flex-wrap: wrap; }
.rt-pill { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border: 1px solid var(--rt-line); border-radius: var(--rt-r-pill); font-size: 13px; font-weight: 600; }
.rt-pill svg { color: var(--rt-muted); }

.rt-owner-strip { display: grid; grid-template-columns: 1fr; gap: 24px; padding: 20px; border: 1px solid var(--rt-line); border-radius: var(--rt-r-lg); margin-bottom: 32px; }
.rt-owner-card { display: flex; align-items: center; gap: 16px; }
.rt-owner-logo-big { width: 56px; height: 56px; border-radius: var(--rt-r); background: var(--rt-ink); color: var(--rt-orange); display: inline-flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 800; border: 1px solid var(--rt-line); }
.rt-owner-line { font-size: 14px; }
.rt-owner-stars { display: flex; align-items: center; gap: 4px; margin: 4px 0; font-size: 14px; color: var(--rt-line); }
.rt-owner-stars span.is-on { color: var(--rt-orange); }
.rt-owner-label { margin-left: 6px; font-size: 13px; color: var(--rt-ink); font-weight: 600; }
.rt-owner-since { font-size: 12px; color: var(--rt-muted); display: flex; align-items: center; gap: 6px; }
.rt-incl-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; font-size: 13px; }
.rt-incl-list li { display: flex; align-items: center; gap: 6px; color: var(--rt-ink-2); }
.rt-incl-list svg { color: var(--rt-green); }

.rt-spec-section { margin-bottom: 40px; }
.rt-spec-section h2 { font-family: var(--rt-font-display); font-weight: 800; font-size: 22px; letter-spacing: -0.01em; margin-bottom: 20px; }
.rt-spec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px 32px; }

/* ============ POINTS FORTS ============ */
.rt-highlights { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 32px; }
.rt-highlight { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--rt-ink); font-weight: 600; }
.rt-highlight svg { color: var(--rt-green); flex-shrink: 0; }

/* ============ CONDITIONS TARIFAIRES ============ */
.rt-cond-rates { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; margin-bottom: 22px; }
.rt-cond-rate { border: 1px solid var(--rt-line); border-radius: 14px; padding: 16px 18px; }
.rt-cond-rate.is-ref { border-color: var(--rt-ink); }
.rt-cond-rate-per { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; color: var(--rt-muted); margin-bottom: 10px; }
.rt-cond-save { background: var(--rt-orange-soft); color: var(--rt-orange-2); font-size: 11px; font-weight: 800; padding: 2px 7px; border-radius: 999px; letter-spacing: 0; text-transform: none; }
.rt-cond-rate-price { font-family: var(--rt-font-display); font-weight: 800; font-size: 22px; letter-spacing: -0.01em; line-height: 1; }
.rt-cond-rate-eff { font-size: 12px; color: var(--rt-muted); margin-top: 7px; }
.rt-cond-facts { display: flex; flex-direction: column; border: 1px solid var(--rt-line); border-radius: 14px; padding: 4px 18px; margin-bottom: 22px; }
.rt-cond-fact { display: flex; align-items: center; gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--rt-line); }
.rt-cond-fact:last-child { border-bottom: none; }
.rt-cond-fact-ic { width: 42px; height: 42px; flex-shrink: 0; border-radius: 11px; background: var(--rt-bg-soft); color: var(--rt-ink); display: inline-flex; align-items: center; justify-content: center; }
.rt-cond-fact-tx { flex: 1; min-width: 0; }
.rt-cond-fact-tx strong { display: block; font-size: 15px; font-weight: 700; color: var(--rt-ink); }
.rt-cond-fact-tx span { font-size: 13px; color: var(--rt-muted); }
.rt-cond-fact b { font-family: var(--rt-font-display); font-weight: 800; font-size: 16px; white-space: nowrap; }
.rt-cond-detail { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: start; }
.rt-cond-incl { margin-bottom: 24px; }
.rt-cond-incl h4 { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; color: var(--rt-ink); margin: 0 0 14px; }
.rt-cond-incl .rt-incl-list { font-size: 14px; gap: 12px 32px; }
.rt-cond-block { border: 1px solid var(--rt-line); border-radius: 14px; padding: 18px 20px; }
.rt-cond-block h4 { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; color: var(--rt-ink); margin: 0 0 14px; }
.rt-cond-rows { display: flex; flex-direction: column; }
.rt-cond-row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--rt-line); font-size: 13.5px; color: var(--rt-muted); }
.rt-cond-row span { flex: 1; min-width: 0; }
.rt-cond-row:last-child { border-bottom: none; }
.rt-cond-row strong { color: var(--rt-ink); font-weight: 700; font-family: var(--rt-font-display); white-space: nowrap; }
.rt-cond-tiers { display: flex; flex-direction: column; gap: 14px; }
.rt-cond-tier { display: flex; gap: 11px; }
.rt-cond-dot { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; margin-top: 3px; }
.rt-cond-dot.is-green { background: var(--rt-green); }
.rt-cond-dot.is-amber { background: #E8A317; }
.rt-cond-dot.is-red { background: #E0473E; }
.rt-cond-tier-tx strong { display: block; font-size: 13.5px; font-weight: 700; color: var(--rt-ink); }
.rt-cond-tier-tx span { font-size: 12.5px; color: var(--rt-muted); }
.rt-cond-note { font-size: 12.5px; color: var(--rt-muted); line-height: 1.5; margin: 20px 0 0; }
@media (max-width: 760px) {
  .rt-cond-rates, .rt-cond-detail { grid-template-columns: 1fr; }
  .rt-highlights { grid-template-columns: 1fr; }
}
.rt-spec-row { display: flex; align-items: center; gap: 13px; }
.rt-spec-icon { width: 40px; height: 40px; flex-shrink: 0; border: 1px solid var(--rt-line); border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; color: var(--rt-ink); }
.rt-spec-label { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--rt-muted); }
.rt-spec-value { font-size: 15px; font-weight: 600; color: var(--rt-ink); }

.rt-feat-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.rt-feat-item { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.rt-feat-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--rt-bg-soft); display: inline-flex; align-items: center; justify-content: center; font-size: 22px; }
.rt-feat-label { font-size: 12px; font-weight: 600; color: var(--rt-ink-2); max-width: 100px; }

.rt-cal-actions { display: flex; justify-content: space-between; margin: 16px 0; }
.rt-link-btn { font-size: 13px; color: var(--rt-muted); text-decoration: underline; }
.rt-link-btn:hover { color: var(--rt-orange); }
.rt-contact-hint { text-align: center; font-size: 12px; color: var(--rt-muted); margin-top: 10px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.rt-wa-chip { display: inline-flex; align-items: center; gap: 4px; padding: 4px 8px; background: rgba(37,211,102,0.1); color: #009451; border-radius: var(--rt-r-sm); font-weight: 700; font-size: 11px; }
.rt-spec-narrow p { font-size: 14px; color: var(--rt-muted); margin: 0 0 16px; }
.rt-legal-line { font-size: 12px; color: var(--rt-muted-2); text-align: center; padding: 32px 0; max-width: 720px; margin: 0 auto; line-height: 1.6; }

.rt-faq { border: 1px solid var(--rt-line); border-radius: var(--rt-r-lg); overflow: hidden; }
.rt-faq-item { border-bottom: 1px solid var(--rt-line); }
.rt-faq-item:last-child { border-bottom: none; }
.rt-faq-q { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 18px 20px; font-size: 14px; font-weight: 600; text-align: left; transition: background 0.15s; }
.rt-faq-q:hover { background: var(--rt-bg-soft); }
.rt-faq-q svg { transition: transform 0.2s; }
.rt-faq-item.is-open .rt-faq-q svg { transform: rotate(180deg); }
.rt-faq-a { padding: 0 20px 20px; font-size: 14px; color: var(--rt-muted); line-height: 1.6; }

/* CALENDAR (Airbnb-style) */
.rt-cal2 {
  border: 1px solid var(--rt-line);
  border-radius: var(--rt-r-lg);
  margin-bottom: 16px;
  background: var(--rt-white);
  overflow: hidden;
}
.rt-cal2-head {
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--rt-line);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.rt-cal2-title {
  font-family: var(--rt-font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.rt-cal2-range {
  font-size: 14px;
  color: var(--rt-muted);
  margin-top: 4px;
}
.rt-cal2-clear {
  font-size: 14px;
  font-weight: 600;
  color: var(--rt-ink);
  text-decoration: underline;
  padding: 4px 0;
  background: transparent;
}
.rt-cal2-clear:hover { color: var(--rt-orange); }
.rt-cal2-scroll {
  max-height: 520px;
  overflow-y: auto;
  padding: 8px 24px 20px;
}
.rt-cal2-scroll::-webkit-scrollbar { width: 6px; }
.rt-cal2-scroll::-webkit-scrollbar-thumb { background: var(--rt-line-2); border-radius: 4px; }
.rt-cal2-month {
  padding: 16px 0 8px;
}
.rt-cal2-monthname {
  font-family: var(--rt-font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  color: var(--rt-ink);
}
.rt-cal2-dow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  font-size: 12px;
  font-weight: 500;
  color: var(--rt-muted);
  text-align: center;
  padding: 0 0 12px;
  border-bottom: 1px solid var(--rt-line);
  margin-bottom: 4px;
}
.rt-cal2-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
}
.rt-cal2-cell {
  aspect-ratio: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--rt-ink);
  background: transparent;
  border: none;
  padding: 0;
  position: relative;
  cursor: pointer;
  transition: background 0.1s;
}
.rt-cal2-empty { visibility: hidden; cursor: default; }
.rt-cal2-cell.is-past {
  color: var(--rt-muted-2);
  text-decoration: line-through;
  cursor: not-allowed;
}
.rt-cal2-cell:not(.is-past):not(.is-selected):not(.is-range):hover .rt-cal2-num {
  outline: 1.5px solid var(--rt-ink);
  outline-offset: -2px;
  border-radius: 50%;
}
.rt-cal2-num {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}
.rt-cal2-cell.is-range {
  background: var(--rt-bg-soft);
}
.rt-cal2-cell.is-selected .rt-cal2-num {
  background: var(--rt-ink);
  color: #fff;
}
.rt-cal2-cell.is-start {
  background: linear-gradient(to right, transparent 50%, var(--rt-bg-soft) 50%);
}
.rt-cal2-cell.is-end {
  background: linear-gradient(to right, var(--rt-bg-soft) 50%, transparent 50%);
}
.rt-cal2-cell.is-start.is-end {
  background: transparent;
}

/* legacy compat — keep old class names from removed component */
.rt-cal { display: none; }
.rt-cal-head { display: grid; grid-template-columns: 36px 1fr 1fr 36px; align-items: center; gap: 16px; margin-bottom: 16px; }
.rt-cal-nav { width: 36px; height: 36px; border-radius: 50%; font-size: 20px; color: var(--rt-ink); transition: background 0.15s; display: inline-flex; align-items: center; justify-content: center; }
.rt-cal-nav:hover { background: var(--rt-bg-soft); }
.rt-cal-month { text-align: center; font-weight: 700; font-size: 14px; }
.rt-cal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.rt-cal-dow { display: grid; grid-template-columns: repeat(7, 1fr); font-size: 11px; font-weight: 700; color: var(--rt-muted); margin-bottom: 6px; text-align: center; }
.rt-cal-dow span { padding: 4px 0; }
.rt-cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.rt-cal-day { aspect-ratio: 1; display: inline-flex; align-items: center; justify-content: center; font-size: 13px; border-radius: 50%; transition: background 0.15s; position: relative; z-index: 1; }
.rt-cal-day:not(:disabled):hover { background: var(--rt-bg-soft); }
.rt-cal-empty { visibility: hidden; }
.rt-cal-disabled { color: var(--rt-line-2); }
.rt-cal-start, .rt-cal-end { background: var(--rt-ink); color: var(--rt-white); }
.rt-cal-start:hover, .rt-cal-end:hover { background: var(--rt-ink) !important; }
.rt-cal-inrange { background: var(--rt-orange-soft); border-radius: 0; color: var(--rt-ink); }

/* ============ BOOKING CARD ============ */
.rt-detail-side { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 100px; }
.rt-booking-card { background: var(--rt-white); border: 1px solid var(--rt-line); border-radius: var(--rt-r-lg); padding: 20px; box-shadow: var(--rt-shadow-sm); }
.rt-booking-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.rt-bp-amount { font-family: var(--rt-font-display); font-weight: 800; font-size: 25px; letter-spacing: -0.02em; white-space: nowrap; }
.rt-bp-old { color: var(--rt-muted); font-size: 15px; text-decoration: line-through; font-weight: 600; white-space: nowrap; }
.rt-bp-unit { color: var(--rt-muted); font-size: 14px; }
.rt-link { display: inline-block; font-size: 13px; color: var(--rt-muted); text-decoration: underline; margin-bottom: 16px; }
.rt-link:hover { color: var(--rt-orange); }
.rt-booking-dates { display: grid; grid-template-columns: 1fr 1px 1fr; border: 1px solid var(--rt-line); border-radius: var(--rt-r); margin-bottom: 12px; }
.rt-bd-col { padding: 12px 16px; display: flex; flex-direction: column; gap: 2px; }
.rt-bd-divider { background: var(--rt-line); }
.rt-bd-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--rt-ink); }
.rt-bd-value { font-size: 14px; color: var(--rt-muted); }
.rt-booking-time { padding: 12px 16px; border: 1px solid var(--rt-line); border-radius: var(--rt-r); text-align: center; margin-bottom: 16px; }
.rt-booking-time .rt-bd-label { display: block; margin-bottom: 4px; }
.rt-booking-divider { height: 1px; background: var(--rt-line); margin: 16px 0 14px; }
.rt-contact-label { text-align: center; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; color: var(--rt-muted); margin-bottom: 12px; }
.rt-contact-row { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 8px; }
.rt-contact-btn { padding: 10px; border: 1px solid var(--rt-line); border-radius: var(--rt-r-pill); display: inline-flex; align-items: center; justify-content: center; gap: 6px; font-size: 13px; font-weight: 700; transition: background 0.15s; }
.rt-contact-btn:hover { background: var(--rt-bg-soft); }
.rt-contact-wa { color: #009451; border-color: rgba(37,211,102,0.3); }
.rt-contact-phone { color: var(--rt-orange); }
.rt-contact-chat { color: var(--rt-orange); background: var(--rt-orange-soft); border-color: transparent; }
.rt-contact-meta { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; font-size: 13px; color: var(--rt-muted); }
.rt-contact-meta a { display: flex; align-items: center; gap: 10px; color: var(--rt-orange); }
.rt-icon-circle { width: 24px; height: 24px; display: inline-flex; align-items: center; justify-content: center; }

/* ============ AIRBNB-STYLE DATE SELECTOR (booking card) ============ */
.rt-booking-card { position: relative; }
.rt-booking-card .rt-btn-large { padding: 12px 24px; font-size: 14px; }
.rt-booking-card .rt-btn-ghost { padding: 10px 18px; font-size: 13px; }
.rt-bk-box { border: 1px solid var(--rt-line-2); border-radius: 12px; margin: 12px 0 12px; position: relative; }
.rt-bk-row2 { display: grid; grid-template-columns: 1fr 1fr; }
.rt-bk-cell { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; padding: 9px 12px; text-align: left; background: transparent; cursor: pointer; border-radius: 12px; transition: background 0.12s; }
.rt-bk-cell:hover { background: var(--rt-bg-soft); }
.rt-bk-cell.is-active { box-shadow: inset 0 0 0 2px var(--rt-ink); }
.rt-bk-cell-start { border-right: 1px solid var(--rt-line-2); border-bottom: 1px solid var(--rt-line-2); }
.rt-bk-cell-end { border-bottom: 1px solid var(--rt-line-2); }
.rt-bk-cell-full { flex-direction: row; align-items: center; justify-content: space-between; }
.rt-bk-cell-time { position: relative; cursor: pointer; }
.rt-bk-cell-time .rt-bk-cellinner { flex: 1; }
.rt-bk-timeindicator { position: absolute; inset: 0; width: 100%; height: 100%; border: none; background: transparent; color: transparent; padding: 0; margin: 0; cursor: pointer; }
.rt-bk-timeindicator:focus { outline: none; }
.rt-bk-timeindicator::-webkit-calendar-picker-indicator { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; padding: 0; opacity: 0; cursor: pointer; }
.rt-bk-cellinner { display: flex; flex-direction: column; gap: 2px; align-items: flex-start; }
.rt-bk-clabel { font-size: 10px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--rt-ink); white-space: nowrap; }
.rt-bk-cval { font-size: 13px; color: var(--rt-ink-2); }
.rt-bk-timeinput { border: none; background: transparent; outline: none; font-family: inherit; font-size: 14px; font-weight: 600; color: var(--rt-ink); padding: 0; cursor: pointer; }
.rt-bk-timeinput::-webkit-calendar-picker-indicator { opacity: 0.45; cursor: pointer; }
.rt-bk-timeinput { border: none; background: transparent; outline: none; font-family: inherit; font-size: 14px; font-weight: 600; color: var(--rt-ink); padding: 0; cursor: pointer; }
.rt-bk-timeinput::-webkit-calendar-picker-indicator { opacity: 0.45; cursor: pointer; }
.rt-bk-cval.is-empty { color: var(--rt-muted-2); font-weight: 400; }
.rt-bk-caret { color: var(--rt-ink); transition: transform 0.15s; flex: 0 0 auto; }
.rt-bk-caret.is-open { transform: rotate(180deg); }
.rt-bk-times { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; padding: 10px; border-top: 1px solid var(--rt-line-2); }
.rt-bk-timeopt { padding: 9px 0; border: 1px solid var(--rt-line); border-radius: 8px; font-size: 13px; font-weight: 600; color: var(--rt-ink-2); cursor: pointer; background: #fff; transition: border-color 0.12s; }
.rt-bk-timeopt:hover { border-color: var(--rt-ink); }
.rt-bk-timeopt.is-on { background: var(--rt-ink); color: #fff; border-color: var(--rt-ink); }

.rt-bk-assure { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--rt-bg-soft); border-radius: 10px; padding: 9px 12px; font-size: 12px; font-weight: 600; color: var(--rt-ink-2); margin-bottom: 12px; text-align: center; }
.rt-bk-assure svg { color: var(--rt-green); flex: 0 0 auto; }
.rt-bk-nocharge { text-align: center; font-size: 12px; color: var(--rt-muted); margin: 10px 0 0; }
.rt-bk-breakdown { margin-top: 14px; display: flex; flex-direction: column; gap: 10px; }
.rt-bk-bline { display: flex; justify-content: space-between; font-size: 13px; color: var(--rt-ink-2); }
.rt-bk-btotal { border-top: 1px solid var(--rt-line); padding-top: 12px; font-weight: 800; color: var(--rt-ink); font-family: var(--rt-font-display); font-size: 15px; }
.rt-bk-bdiscount span { color: #1f8a5b; font-weight: 600; }

/* ===== Contacter le loueur (modale messagerie) ===== */
.rt-cmodal-backdrop { position: fixed; inset: 0; z-index: 300; background: rgba(10,10,10,0.5); display: flex; align-items: center; justify-content: center; padding: 24px; animation: rtCmFade 0.16s ease; }
@keyframes rtCmFade { from { opacity: 0; } to { opacity: 1; } }
.rt-cmodal { width: min(480px, 100%); max-height: 88vh; display: flex; flex-direction: column; background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,0.35); }
.rt-cmodal-head { display: flex; align-items: center; gap: 12px; padding: 18px 20px; border-bottom: 1px solid var(--rt-line); }
.rt-cmodal-logo { width: 42px; height: 42px; flex: none; border-radius: 12px; background: var(--rt-black); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-family: var(--rt-font-display); font-weight: 800; font-size: 16px; }
.rt-cmodal-id { flex: 1; min-width: 0; }
.rt-cmodal-title { font-family: var(--rt-font-display); font-weight: 800; font-size: 16px; color: var(--rt-ink); }
.rt-cmodal-sub { font-size: 12.5px; color: var(--rt-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rt-cmodal-x { width: 34px; height: 34px; flex: none; border-radius: 9px; background: var(--rt-bg-soft); border: none; color: var(--rt-muted); cursor: pointer; font-size: 14px; }
.rt-cmodal-x:hover { background: #ececec; color: var(--rt-ink); }
.rt-cmodal-body { padding: 18px 20px 20px; overflow-y: auto; display: flex; flex-direction: column; gap: 14px; }
.rt-cmodal-hint { font-size: 13.5px; color: var(--rt-muted); line-height: 1.5; background: var(--rt-bg-soft); padding: 13px 15px; border-radius: 12px; }
.rt-cmodal-thread { display: flex; flex-direction: column; gap: 8px; max-height: 280px; overflow-y: auto; }
.rt-cmodal-bubble { align-self: flex-start; max-width: 80%; background: var(--rt-bg-soft-2, #f1f1ee); color: var(--rt-ink); padding: 10px 14px; border-radius: 14px; font-size: 14px; line-height: 1.45; }
.rt-cmodal-bubble.is-me { align-self: flex-end; background: var(--rt-orange); color: #fff; }
.rt-cmodal-at { display: block; font-size: 10px; opacity: 0.6; margin-top: 4px; }
.rt-cmodal-compose { display: flex; flex-direction: column; gap: 10px; }
.rt-cmodal-compose textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--rt-line); border-radius: 14px; font-size: 14px; font-family: inherit; resize: vertical; outline: none; }
.rt-cmodal-compose textarea:focus { border-color: var(--rt-orange); }
.rt-cmodal-link { background: none; border: none; color: var(--rt-orange); font-size: 13px; font-weight: 700; cursor: pointer; padding: 2px; align-self: center; }

/* ===== Date popover ===== */
.rt-dp-backdrop { position: fixed; inset: 0; z-index: 190; background: transparent; }
.rt-dp-pop { position: absolute; top: calc(100% + 12px); right: 0; z-index: 200; width: 720px; max-width: calc(100vw - 48px); background: #fff; border: 1px solid var(--rt-line); border-radius: 18px; box-shadow: var(--rt-shadow-lg); padding: 26px 28px 20px; }
.rt-dp-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; margin-bottom: 22px; }
.rt-dp-nights { font-family: var(--rt-font-display); font-weight: 800; font-size: 22px; letter-spacing: -0.01em; color: var(--rt-ink); line-height: 1.1; }
.rt-dp-sub { font-size: 13px; color: var(--rt-muted); margin-top: 5px; }
.rt-dp-fields { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--rt-line-2); border-radius: 10px; flex: 0 0 auto; }
.rt-dp-field { position: relative; display: flex; flex-direction: column; gap: 2px; padding: 9px 32px 9px 14px; min-width: 132px; border-radius: 10px; }
.rt-dp-field + .rt-dp-field { border-left: 1px solid var(--rt-line-2); }
.rt-dp-field.is-active { box-shadow: inset 0 0 0 2px var(--rt-ink); }
.rt-dp-flabel { font-size: 10px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--rt-ink); }
.rt-dp-fval { font-size: 13px; color: var(--rt-ink-2); }
.rt-dp-fval.is-empty { color: var(--rt-muted-2); }
.rt-dp-x { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 17px; line-height: 1; color: var(--rt-muted); background: transparent; cursor: pointer; }
.rt-dp-x:hover { background: var(--rt-bg-soft-2); color: var(--rt-ink); }
.rt-dp-cals { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.rt-dp-mtitle { text-align: center; font-family: var(--rt-font-display); font-weight: 700; font-size: 16px; margin-bottom: 12px; color: var(--rt-ink); }
.rt-dp-nav { position: absolute; top: -4px; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--rt-ink); cursor: pointer; background: transparent; transition: background 0.12s; }
.rt-dp-nav:hover { background: var(--rt-bg-soft); }
.rt-dp-nav:disabled { opacity: 0.25; cursor: default; }
.rt-dp-prev { left: -6px; }
.rt-dp-next { right: -6px; }
.rt-dp-cals .rt-cal2-month { padding: 0; }
.rt-dp-cals .rt-cal2-monthname { display: none; }
.rt-dp-cals .rt-cal2-num { width: 38px; height: 38px; }
.rt-dp-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 18px; }
.rt-dp-clear { font-size: 14px; font-weight: 700; color: var(--rt-ink); text-decoration: underline; background: transparent; cursor: pointer; }
.rt-dp-clear:hover { color: var(--rt-orange); }
.rt-dp-close { background: var(--rt-ink); color: #fff; font-weight: 700; font-size: 14px; padding: 11px 22px; border-radius: 10px; cursor: pointer; transition: background 0.12s; }
.rt-dp-close:hover { background: #000; }

@media (max-width: 1100px) {
  .rt-dp-backdrop { background: rgba(10,10,10,0.42); }
  .rt-dp-pop { position: fixed; top: 50%; left: 50%; right: auto; transform: translate(-50%, -50%); width: min(440px, calc(100vw - 24px)); max-height: 88vh; overflow-y: auto; }
  .rt-dp-cals { grid-template-columns: 1fr; gap: 20px; }
  .rt-dp-top { flex-direction: column; gap: 14px; }
  .rt-dp-fields { width: 100%; }
}

.rt-doc-card, .rt-req-card { background: var(--rt-white); border: 1px solid var(--rt-line); border-radius: var(--rt-r-lg); padding: 24px; }
.rt-doc-card h3, .rt-req-card h3 { font-family: var(--rt-font-display); font-weight: 800; font-size: 16px; margin-bottom: 12px; }
.rt-doc-card p { font-size: 13px; color: var(--rt-muted); margin: 0 0 16px; }
.rt-tabs { display: flex; gap: 4px; margin-bottom: 16px; border-bottom: 1px solid var(--rt-line); }
.rt-tab { padding: 10px 14px; font-size: 13px; font-weight: 600; color: var(--rt-muted); border-bottom: 2px solid transparent; margin-bottom: -1px; transition: color 0.15s, border-color 0.15s; }
.rt-tab.is-active { color: var(--rt-ink); border-color: var(--rt-orange); }
.rt-doc-list { list-style: none; padding: 0; margin: 0 0 16px; display: flex; flex-direction: column; gap: 10px; font-size: 13px; }
.rt-doc-list li { display: flex; align-items: center; gap: 8px; }
.rt-doc-list svg { color: var(--rt-ink); }
.rt-doc-note { font-size: 11px; color: var(--rt-muted); line-height: 1.5; margin: 0 0 20px; }
.rt-doc-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 10px; }
.rt-payment-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.rt-pill-sm { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 600; padding: 5px 10px; border: 1px solid var(--rt-line); border-radius: var(--rt-r-pill); }
.rt-req-card .rt-req-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--rt-line); font-size: 13px; }
.rt-req-card .rt-req-row:last-child { border-bottom: none; }
.rt-req-card strong { font-weight: 800; }

/* ============ REVIEWS ============ */
.rt-reviews { padding: 48px 0 8px; border-top: 1px solid var(--rt-line); margin-top: 8px; }
.rt-reviews-h { font-family: var(--rt-font-display); font-weight: 800; font-size: 26px; letter-spacing: -0.01em; display: flex; align-items: center; gap: 10px; margin-bottom: 28px; }
.rt-star-lg { color: var(--rt-ink); flex: 0 0 auto; }
.rt-rev-summary { display: flex; align-items: stretch; margin-bottom: 44px; flex-wrap: wrap; }
.rt-rev-overall { min-width: 230px; padding-right: 28px; }
.rt-rev-overall-h { font-size: 14px; font-weight: 700; margin-bottom: 14px; }
.rt-rev-hist { display: flex; flex-direction: column; gap: 6px; }
.rt-rev-histrow { display: flex; align-items: center; gap: 10px; }
.rt-rev-histn { font-size: 12px; color: var(--rt-muted); width: 8px; text-align: right; }
.rt-rev-histtrack { flex: 1; height: 4px; border-radius: 2px; background: var(--rt-line); overflow: hidden; }
.rt-rev-histfill { display: block; height: 100%; background: var(--rt-ink); border-radius: 2px; }
.rt-rev-catrow { display: flex; flex: 1; }
.rt-rev-cat { flex: 1; padding: 0 18px; border-left: 1px solid var(--rt-line); display: flex; flex-direction: column; }
.rt-rev-cat-label { font-size: 13px; font-weight: 600; color: var(--rt-ink-2); min-height: 34px; line-height: 1.3; }
.rt-rev-cat-score { font-size: 18px; font-weight: 800; font-family: var(--rt-font-display); margin: 2px 0 12px; }
.rt-rev-cat-ic { color: var(--rt-ink); margin-top: auto; }
.rt-rev-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 56px; }
.rt-rev-author { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.rt-rev-avatar { width: 44px; height: 44px; border-radius: 50%; color: #fff; font-weight: 700; font-size: 16px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.rt-rev-name { font-weight: 700; font-size: 15px; }
.rt-rev-since { font-size: 13px; color: var(--rt-muted); }
.rt-rev-meta { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--rt-muted); margin-bottom: 8px; }
.rt-rev-stars { display: inline-flex; gap: 1px; color: var(--rt-ink); }
.rt-rev-text { font-size: 14px; line-height: 1.6; color: var(--rt-ink-2); margin: 0; }
.rt-rev-more { margin-top: 34px; border: 1px solid var(--rt-ink); width: auto; padding: 12px 22px; border-radius: 10px; font-weight: 700; white-space: nowrap; }

/* ============ LOCATION MAP ============ */
.rt-loc { padding: 48px 0; border-top: 1px solid var(--rt-line); }
.rt-loc-h { font-family: var(--rt-font-display); font-weight: 800; font-size: 26px; letter-spacing: -0.01em; margin-bottom: 8px; }
.rt-loc-where { margin-bottom: 20px; }
.rt-loc-name { font-weight: 700; font-size: 15px; }
.rt-loc-area { font-size: 14px; color: var(--rt-muted); }
.rt-map-wrap { position: relative; border-radius: var(--rt-r-lg); overflow: hidden; border: 1px solid var(--rt-line); box-shadow: var(--rt-shadow-sm); }
.rt-map-frame { display: block; width: 100%; height: 420px; border: 0; }
.rt-loc-note { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--rt-muted); margin: 16px 0 0; }
.rt-loc-note svg { color: var(--rt-green); flex: 0 0 auto; }

@media (max-width: 1100px) {
  .rt-rev-summary { flex-direction: column; gap: 24px; }
  .rt-rev-overall { padding-right: 0; }
  .rt-rev-catrow { flex-wrap: wrap; }
  .rt-rev-cat { flex: 1 1 30%; border-left: none; border-top: 1px solid var(--rt-line); padding: 12px 0; }
  .rt-rev-cat-label { min-height: 0; }
}
@media (max-width: 720px) {
  .rt-rev-grid { grid-template-columns: 1fr; }
  .rt-rev-cat { flex-basis: 50%; }
  .rt-map-frame { height: 320px; }
}

/* ============ À SAVOIR ============ */
.rt-asavoir { padding: 48px 0; border-top: 1px solid var(--rt-line); }
.rt-asavoir-h { font-family: var(--rt-font-display); font-weight: 800; font-size: 26px; letter-spacing: -0.01em; margin-bottom: 28px; }
.rt-asavoir-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px 56px; }
.rt-asavoir-ic { color: var(--rt-ink); margin-bottom: 14px; }
.rt-asavoir-item h3 { font-size: 15px; font-weight: 700; margin: 0 0 8px; }
.rt-asavoir-item p { font-size: 14px; line-height: 1.65; color: var(--rt-muted); margin: 0 0 10px; }
.rt-asavoir-link { font-size: 14px; font-weight: 600; color: var(--rt-ink); text-decoration: underline; }
.rt-asavoir-link:hover { color: var(--rt-orange); }
@media (max-width: 860px) { .rt-asavoir-grid { grid-template-columns: 1fr; gap: 24px; } }

.rt-similar { padding-top: 64px; }
.rt-similar h2 { font-family: var(--rt-font-display); font-weight: 800; font-size: 22px; letter-spacing: -0.01em; margin-bottom: 24px; }

/* ============ BOOKING (multi-step) ============ */
.rt-booking { padding-bottom: 64px; }
.rt-booking-head { margin-bottom: 32px; padding-top: 16px; }
.rt-booking-head h1 { font-family: var(--rt-font-display); font-weight: 800; font-size: clamp(24px, 2.6vw, 32px); letter-spacing: -0.015em; margin-bottom: 24px; }
.rt-stepper { display: flex; gap: 8px; background: var(--rt-bg-soft); padding: 8px; border-radius: var(--rt-r-pill); width: fit-content; }
.rt-step { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: var(--rt-r-pill); font-size: 13px; font-weight: 700; color: var(--rt-muted); }
.rt-step.is-active { background: var(--rt-white); color: var(--rt-ink); box-shadow: var(--rt-shadow-sm); }
.rt-step-num { width: 22px; height: 22px; border-radius: 50%; background: var(--rt-line-2); color: var(--rt-white); display: inline-flex; align-items: center; justify-content: center; font-size: 11px; }
.rt-step.is-active .rt-step-num { background: var(--rt-orange); }
.rt-step.is-done .rt-step-num { background: var(--rt-green); }

.rt-booking-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }

/* Récap des dates (étape 1) */
.rt-recap-wrap { position: relative; }
.rt-recap-dates { border: 1px solid var(--rt-line); border-radius: var(--rt-r-lg); padding: 20px 22px; }
.rt-recap-grid { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; }
.rt-recap-col { display: flex; flex-direction: column; gap: 4px; }
.rt-recap-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--rt-muted); }
.rt-recap-value { font-size: 16px; font-weight: 700; color: var(--rt-ink); text-transform: capitalize; line-height: 1.3; }
.rt-recap-time { font-size: 13px; color: var(--rt-muted); }
.rt-recap-arrow { color: var(--rt-orange); display: flex; align-items: center; justify-content: center; }
.rt-recap-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--rt-line); }
.rt-recap-nights { font-size: 14px; font-weight: 600; color: var(--rt-ink); }
.rt-recap-edit { display: inline-flex; align-items: center; gap: 7px; background: none; border: 1px solid var(--rt-line-2); border-radius: var(--rt-r-pill); padding: 9px 16px; font: inherit; font-size: 13px; font-weight: 700; color: var(--rt-ink); cursor: pointer; transition: border-color 0.15s, color 0.15s; }
.rt-recap-edit:hover { border-color: var(--rt-orange); color: var(--rt-orange); }
.rt-recap-empty { display: flex; align-items: center; justify-content: space-between; gap: 16px; color: var(--rt-muted); font-size: 14px; }
@media (max-width: 560px) {
  .rt-recap-grid { grid-template-columns: 1fr; gap: 12px; }
  .rt-recap-arrow { transform: rotate(90deg); }
  .rt-recap-foot { flex-direction: column; align-items: stretch; gap: 12px; }
  .rt-recap-empty { flex-direction: column; align-items: stretch; }
}
.rt-form-section { margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid var(--rt-line); }
.rt-form-section:last-of-type { border-bottom: none; padding-bottom: 0; }
.rt-form-section h2 { font-family: var(--rt-font-display); font-weight: 800; font-size: 18px; margin-bottom: 16px; }
.rt-form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; margin-bottom: 12px; }
.rt-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.rt-field-label { font-size: 12px; font-weight: 700; color: var(--rt-ink); text-transform: uppercase; letter-spacing: 0.04em; }
.rt-field input, .rt-field select, .rt-field textarea { padding: 12px 14px; border: 1px solid var(--rt-line); border-radius: var(--rt-r); font-size: 14px; background: var(--rt-white); outline: none; transition: border-color 0.15s; }
.rt-field input:focus, .rt-field select:focus { border-color: var(--rt-orange); }

.rt-radio-cards { display: flex; flex-direction: column; gap: 8px; }
.rt-radio-card { display: flex; align-items: center; gap: 16px; padding: 14px 16px; border: 1px solid var(--rt-line); border-radius: var(--rt-r); background: var(--rt-white); text-align: left; transition: border-color 0.15s, background 0.15s; }
.rt-radio-card:hover { background: var(--rt-bg-soft); }
.rt-radio-card.is-checked { border-color: var(--rt-orange); background: var(--rt-orange-soft); }
.rt-radio-dot { width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--rt-line-2); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.rt-radio-card.is-checked .rt-radio-dot { border-color: var(--rt-orange); }
.rt-radio-fill { width: 10px; height: 10px; border-radius: 50%; background: var(--rt-orange); }
.rt-radio-body { flex: 1; }
.rt-radio-title { font-size: 14px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.rt-radio-sub { font-size: 12px; color: var(--rt-muted); margin-top: 2px; }
.rt-radio-cost { font-size: 14px; font-weight: 800; color: var(--rt-orange); flex-shrink: 0; }
.rt-tag-rec { font-size: 10px; font-weight: 700; background: var(--rt-green); color: var(--rt-white); padding: 2px 6px; border-radius: var(--rt-r-pill); letter-spacing: 0.04em; }

.rt-doc-uploads { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.rt-upload { display: flex; align-items: center; gap: 14px; padding: 18px; border: 2px dashed var(--rt-line-2); border-radius: var(--rt-r); background: var(--rt-bg-soft); cursor: pointer; transition: border-color 0.15s, background 0.15s; text-align: left; }
.rt-upload:hover { border-color: var(--rt-orange); background: var(--rt-orange-soft); }
.rt-upload-icon { width: 36px; height: 36px; border-radius: 50%; background: var(--rt-white); display: inline-flex; align-items: center; justify-content: center; font-size: 18px; color: var(--rt-orange); }
.rt-upload-label { font-size: 14px; font-weight: 700; }
.rt-upload-hint { font-size: 11px; color: var(--rt-muted); }
.rt-form-hint { font-size: 12px; color: var(--rt-muted); margin: 12px 0 0; }
.rt-form-actions { display: flex; justify-content: space-between; margin-top: 32px; }

/* Summary card */
.rt-booking-summary { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 100px; }
.rt-summary-card { background: var(--rt-white); border: 1px solid var(--rt-line); border-radius: var(--rt-r-lg); overflow: hidden; }
.rt-summary-img { aspect-ratio: 16/10; overflow: hidden; }
.rt-summary-img img { width: 100%; height: 100%; object-fit: cover; }
.rt-summary-body { padding: 16px 20px; }
.rt-summary-body h3 { font-family: var(--rt-font-display); font-weight: 800; font-size: 16px; margin-bottom: 8px; }
.rt-summary-tags { display: flex; gap: 6px; margin-bottom: 8px; flex-wrap: wrap; }
.rt-summary-owner { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--rt-muted); }
.rt-summary-divider { height: 1px; background: var(--rt-line); margin: 0 20px; }
.rt-summary-lines { padding: 16px 20px; display: flex; flex-direction: column; gap: 8px; }
.rt-sl { display: flex; justify-content: space-between; font-size: 13px; }
.rt-sl span:first-child { color: var(--rt-muted); }
.rt-sl-discount span { color: #1f8a5b !important; font-weight: 600; }
.rt-summary-total { display: flex; justify-content: space-between; align-items: baseline; padding: 16px 20px; font-size: 16px; }
.rt-summary-total strong { font-family: var(--rt-font-display); font-size: 22px; font-weight: 800; color: var(--rt-orange); }
.rt-summary-note { padding: 0 20px 20px; font-size: 11px; color: var(--rt-muted); line-height: 1.5; margin: 0; }
.rt-summary-help { background: var(--rt-bg-soft); border-radius: var(--rt-r-lg); padding: 20px; }
.rt-summary-help h4 { font-family: var(--rt-font-display); font-weight: 800; font-size: 15px; margin-bottom: 4px; }
.rt-summary-help p { font-size: 13px; color: var(--rt-muted); margin: 0 0 12px; }

/* CONFIRMATION */
.rt-confirm { max-width: 640px; margin: 64px auto; text-align: center; }
.rt-confirm-icon { margin: 0 auto 24px; }
.rt-confirm h1 { font-family: var(--rt-font-display); font-weight: 800; font-size: 40px; letter-spacing: -0.02em; margin-bottom: 12px; }
.rt-confirm-lead { font-size: 16px; color: var(--rt-muted); margin: 0 0 32px; }
.rt-confirm-card { background: var(--rt-bg-soft); border-radius: var(--rt-r-lg); padding: 24px; text-align: left; margin-bottom: 24px; }
.rt-confirm-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; }
.rt-confirm-row strong { font-weight: 800; }
.rt-confirm-next { background: var(--rt-orange-soft); border-radius: var(--rt-r-lg); padding: 24px; text-align: left; margin-bottom: 32px; }
.rt-confirm-next h3 { font-family: var(--rt-font-display); font-weight: 800; font-size: 18px; margin-bottom: 8px; }
.rt-confirm-next p { margin: 0; font-size: 14px; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.rt-confirm-actions { display: flex; justify-content: center; gap: 12px; }

/* ============ BRANDS PAGE (Desktop) ============ */
.rt-brands { padding-bottom: 64px; }
.rt-brands-head {
  margin: 16px 0 40px;
  max-width: 720px;
}
.rt-brands-head h1 {
  font-family: var(--rt-font-display);
  font-weight: 800;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.rt-brands-head h1 em {
  font-style: italic;
  color: var(--rt-orange);
}
.rt-brands-head p {
  font-size: 17px;
  color: var(--rt-muted);
  margin: 0;
}
.rt-brands-section {
  margin-bottom: 48px;
}
.rt-brands-section h2 {
  font-family: var(--rt-font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rt-line);
}
.rt-brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.rt-brand-card {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 20px 18px 16px;
  background: var(--rt-white);
  border: 1px solid var(--rt-line);
  border-radius: var(--rt-r-lg);
  text-align: left;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
  cursor: pointer;
}
.rt-brand-card:hover {
  border-color: var(--rt-line-2);
  box-shadow: var(--rt-shadow);
  transform: translateY(-2px);
}
.rt-brand-card:hover .rt-brand-arrow {
  color: var(--rt-orange);
  transform: translateX(4px);
}
.rt-brand-logo-box {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rt-brand-logo-box svg {
  max-width: 100%;
  max-height: 100%;
}
.rt-brand-logo-box .rt-brand-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.rt-brand-fallback {
  font-family: var(--rt-font-display);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 1px;
}
.rt-brand-info { min-width: 0; }
.rt-brand-name {
  font-family: var(--rt-font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.rt-brand-count {
  font-size: 12px;
  color: var(--rt-muted);
}
.rt-brand-arrow {
  color: var(--rt-muted);
  display: inline-flex;
  align-items: center;
  transition: color 0.15s, transform 0.15s;
}

/* Brand filter chips in results */
.rt-filter-brands {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.rt-fbrand {
  height: 44px;
  border: 1px solid var(--rt-line);
  border-radius: var(--rt-r);
  background: var(--rt-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.rt-fbrand:hover {
  border-color: var(--rt-line-2);
  background: var(--rt-bg-soft);
}
.rt-fbrand.is-active {
  border-color: var(--rt-orange);
  background: var(--rt-orange-soft);
  box-shadow: 0 0 0 1px var(--rt-orange);
}
.rt-fbrand-logo {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rt-fbrand-logo svg {
  max-width: 100%;
  max-height: 28px;
}
.rt-fbrand-logo .rt-brand-img {
  max-width: 100%;
  max-height: 32px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.rt-fbrand-all {
  font-size: 12px;
  font-weight: 800;
  color: var(--rt-ink);
}

@media (max-width: 1100px) {
  .rt-brands-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .rt-brands-grid { grid-template-columns: 1fr; }
}
.rt-route-pill { position: fixed; bottom: 16px; right: 16px; padding: 10px 16px; background: var(--rt-ink); color: var(--rt-white); font-size: 12px; font-weight: 700; border-radius: var(--rt-r-pill); cursor: pointer; z-index: 100; opacity: 0.85; transition: opacity 0.15s, transform 0.15s; box-shadow: var(--rt-shadow-lg); }
.rt-route-pill:hover { opacity: 1; transform: translateY(-2px); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .rt-nav { display: none; }
  .rt-cat-grid { grid-template-columns: repeat(4, 1fr); }
  .rt-vgrid { grid-template-columns: repeat(3, 1fr); }
  .rt-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .rt-host-card { grid-template-columns: 1fr; padding: 40px; }
  .rt-host-stats { padding-left: 0; border-left: none; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.15); flex-direction: row; flex-wrap: wrap; }
  .rt-host-stats > div { flex: 1; min-width: 140px; }
  .rt-detail-layout { grid-template-columns: 1fr; }
  .rt-detail-side { position: static; }
  .rt-results-layout { grid-template-columns: 1fr; }
  .rt-filters { position: static; }
  .rt-results-grid { grid-template-columns: repeat(2, 1fr); }
  .rt-booking-layout { grid-template-columns: 1fr; }
  .rt-booking-summary { position: static; }
  .rt-searchbar { grid-template-columns: 1fr; padding: 16px; border-radius: var(--rt-r-lg); }
  .rt-searchbar-divider { display: none; }
  .rt-searchbar-field { padding: 12px 16px; border: 1px solid var(--rt-line); border-radius: var(--rt-r); margin-bottom: 8px; }
  .rt-searchbar-btn { margin: 8px 0 0; width: 100%; border-radius: var(--rt-r-pill); }
  .rt-rcal-pop { left: 0; right: 0; }
  .rt-rcal-months { flex-direction: column; gap: 18px; }
  .rt-rcal-month { width: 100%; }
  .rt-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .rt-topbar-left .rt-topbar-link, .rt-topbar-right .rt-topbar-link:not(:last-child) { display: none; }
  .rt-cat-grid { grid-template-columns: repeat(3, 1fr); }
  .rt-vgrid { grid-template-columns: 1fr 1fr; }
  .rt-results-grid { grid-template-columns: 1fr; }
  .rt-spec-grid { grid-template-columns: 1fr 1fr; }
  .rt-feat-row { grid-template-columns: repeat(3, 1fr); }
  .rt-gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
  .rt-adgrid { grid-template-columns: 1fr; }
  .rt-trust-grid { grid-template-columns: 1fr; }
  .rt-cal-grid { grid-template-columns: 1fr; }
  .rt-footer-grid { grid-template-columns: 1fr; }
}

/* ============ AIRTABLE — mode banner, blocked dates, errors ============ */
.rt-modebar {
  font-size: 13px; font-weight: 600; text-align: center;
  padding: 10px 20px; line-height: 1.45;
}
.rt-modebar a { color: inherit; text-decoration: underline; font-weight: 800; }
.rt-modebar code { font-family: var(--rt-font-mono, ui-monospace, monospace); font-size: 0.92em; background: rgba(0,0,0,0.08); padding: 1px 6px; border-radius: 4px; }
.rt-modebar-demo { background: #fff3e8; color: #9a4d00; border-bottom: 1px solid #ffdcc0; }
.rt-modebar-error { background: #fdecec; color: #9a1f1f; border-bottom: 1px solid #f6cccc; }

.rt-cal2-cell.is-blocked { cursor: not-allowed; }
.rt-cal2-cell.is-blocked .rt-cal2-num {
  color: var(--rt-muted-2);
  text-decoration: line-through;
  position: relative;
}
.rt-cal2-cell.is-blocked { background:
  repeating-linear-gradient(45deg, transparent, transparent 4px, rgba(210,59,59,0.10) 4px, rgba(210,59,59,0.10) 8px);
}

.rt-form-error {
  background: #fdecec; color: #9a1f1f; border: 1px solid #f6cccc;
  border-radius: 12px; padding: 12px 16px; font-size: 14px; font-weight: 600;
  margin-bottom: 18px;
}
.rt-confirm-demo {
  margin-top: 14px; font-size: 13px; color: #9a4d00;
  background: #fff3e8; border: 1px solid #ffdcc0; border-radius: 10px; padding: 12px 14px;
}
.rt-confirm-demo a { color: var(--rt-orange); font-weight: 800; }
.rt-confirm-demo code { font-family: var(--rt-font-mono, ui-monospace, monospace); background: rgba(0,0,0,0.06); padding: 1px 6px; border-radius: 4px; }
.rt-field textarea {
  width: 100%; border: 1px solid var(--rt-line); border-radius: 10px;
  padding: 11px 14px; font: inherit; font-size: 14px; resize: vertical; outline: none;
  background: var(--rt-white); color: var(--rt-ink);
}
.rt-field textarea:focus { border-color: var(--rt-ink); }

/* ============================================================
   AUTH (comptes) + état connecté — version web
   ============================================================ */
.rt-topbar-user { display: inline-flex; align-items: center; gap: 8px; }
.rt-topbar-ava { width: 24px; height: 24px; border-radius: 50%; background: var(--rt-orange); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 800; }
.rt-topbar-uname { font-weight: 600; }
.rt-topbar-logout { background: none; border: none; color: rgba(255,255,255,0.7); font: inherit; font-size: inherit; cursor: pointer; padding: 0 0 0 6px; }
.rt-topbar-logout:hover { color: #fff; }

.auth-overlay { position: fixed; inset: 0; z-index: 2000; background: rgba(10,10,10,0.55); display: flex; align-items: center; justify-content: center; padding: 24px; }
.auth-card { position: relative; width: 100%; max-width: 460px; max-height: 92vh; overflow-y: auto; background: #fff; border-radius: 18px; padding: 40px 36px 32px; box-shadow: 0 30px 80px rgba(0,0,0,0.3); }
.auth-close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 50%; background: var(--rt-bg-soft); border: none; color: var(--rt-ink); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; }
.auth-close:hover { background: var(--rt-line); }
.auth-screen { display: flex; flex-direction: column; }
.auth-welcome { text-align: center; align-items: center; padding: 12px 0; }
.auth-logo { font-family: var(--rt-font-display); font-weight: 900; font-style: italic; font-size: 30px; letter-spacing: -0.02em; color: var(--rt-orange); margin-bottom: 22px; }
.auth-title { font-family: var(--rt-font-display); font-weight: 800; font-size: 28px; line-height: 1.15; color: var(--rt-ink); margin: 0 0 10px; max-width: 340px; }
.auth-sub { font-size: 15px; color: var(--rt-muted); line-height: 1.5; margin: 0 0 28px; max-width: 340px; }
.auth-head { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.auth-back { width: 36px; height: 36px; border-radius: 50%; background: var(--rt-bg-soft); border: none; color: var(--rt-ink); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; }
.auth-head h2 { margin: 0; font-family: var(--rt-font-display); font-weight: 800; font-size: 24px; color: var(--rt-ink); }
.auth-form { display: flex; flex-direction: column; gap: 14px; }
.auth-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.auth-field > span { display: block; font-size: 12.5px; font-weight: 700; color: var(--rt-ink); margin-bottom: 6px; }
.auth-field input { width: 100%; box-sizing: border-box; padding: 13px 15px; border: 1px solid var(--rt-line); border-radius: 11px; font: inherit; font-size: 15px; color: var(--rt-ink); outline: none; background: #fff; }
.auth-field input:focus { border-color: var(--rt-orange); }
.auth-hosttoggle { display: flex; align-items: center; gap: 11px; padding: 14px; border-radius: 11px; background: var(--rt-bg-soft); border: 1px solid transparent; cursor: pointer; text-align: left; font-size: 13.5px; color: var(--rt-ink); line-height: 1.4; }
.auth-hosttoggle.is-on { border-color: var(--rt-orange); background: var(--rt-orange-soft); }
.auth-check { flex-shrink: 0; width: 22px; height: 22px; border-radius: 6px; border: 1.5px solid var(--rt-line-2); background: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; color: #fff; }
.auth-hosttoggle.is-on .auth-check { background: var(--rt-orange); border-color: var(--rt-orange); }
.auth-error { background: #fdecec; color: #c0392b; border: 1px solid #f5c6c6; border-radius: 10px; padding: 10px 12px; font-size: 13px; font-weight: 600; text-align: center; }
.auth-btn-primary { margin-top: 4px; padding: 15px; border-radius: 11px; border: none; background: var(--rt-orange); color: #fff; font: inherit; font-weight: 700; font-size: 15px; cursor: pointer; width: 100%; }
.auth-btn-primary:hover { background: var(--rt-orange-2); }
.auth-btn-ghost { margin-top: 12px; padding: 15px; border-radius: 11px; background: #fff; border: 1px solid var(--rt-ink); color: var(--rt-ink); font: inherit; font-weight: 700; font-size: 15px; cursor: pointer; width: 100%; max-width: 340px; }
.auth-switch { text-align: center; font-size: 13.5px; color: var(--rt-muted); margin: 16px 0 0; }
.auth-switch button { background: none; border: none; color: var(--rt-orange); font-weight: 700; font-size: 13.5px; cursor: pointer; padding: 0; }

/* ============================================================ LOUEUR (page agence, desktop) ============================================================ */
.rt-lou-d { padding-bottom: 64px; }
.rt-owner-card-link { cursor: pointer; border-radius: var(--rt-r); transition: background 0.15s; margin: -8px; padding: 8px; }
.rt-owner-card-link:hover { background: var(--rt-bg-soft); }
.rt-owner-visit { font-size: 13px; font-weight: 700; color: var(--rt-orange); margin-top: 6px; }

/* Top bar : retour + bascule */
.rt-lou-d-topbar { display: flex; align-items: center; justify-content: space-between; padding-top: 22px; padding-bottom: 16px; }
.rt-lou-d-back { font-size: 14px; font-weight: 700; color: var(--rt-ink); padding: 8px 4px; }
.rt-lou-d-back:hover { color: var(--rt-orange); }
.rt-lou-d-switch { display: flex; align-items: center; gap: 4px; background: var(--rt-bg-soft); border: 1px solid var(--rt-line); border-radius: var(--rt-r-pill); padding: 4px; }
.rt-lou-d-switch-lbl { font-size: 11px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--rt-muted-2); padding: 0 8px 0 10px; }
.rt-lou-d-switch button { font-size: 13px; font-weight: 700; color: var(--rt-muted); padding: 7px 16px; border-radius: var(--rt-r-pill); transition: all 0.16s; }
.rt-lou-d-switch button.is-on { background: var(--rt-ink); color: #fff; }

/* Hero — Variante A immersive */
.rt-lou-hero-d { position: relative; height: 380px; background-size: cover; background-position: center; background-color: var(--rt-ink); display: flex; align-items: flex-end; }
.rt-lou-hero-d-grad { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,10,10,0.15), rgba(10,10,10,0.05) 40%, rgba(10,10,10,0.85)); }
.rt-lou-hero-d-inner { position: relative; padding-bottom: 40px; color: #fff; }
.rt-lou-d-logo { width: 88px; height: 88px; border-radius: 22px; background: #fff; color: var(--rt-ink); display: inline-flex; align-items: center; justify-content: center; font-family: var(--rt-font-display); font-weight: 800; font-size: 34px; box-shadow: 0 10px 30px rgba(0,0,0,0.35); margin-bottom: 18px; }
.rt-lou-d-logo-round { border-radius: 50%; background: var(--rt-ink); color: #fff; }
.rt-lou-d-name { font-family: var(--rt-font-display); font-weight: 800; font-size: 48px; letter-spacing: -0.025em; line-height: 1; margin: 0; display: flex; align-items: center; gap: 12px; }
.rt-lou-d-tick { color: var(--rt-orange); display: inline-flex; }
.rt-lou-d-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; font-size: 16px; margin-top: 16px; opacity: 0.96; }
.rt-lou-d-meta > span { display: inline-flex; align-items: center; }
.rt-lou-d-meta > span:not(:first-child)::before { content: ''; }
.rt-lou-d-note { font-weight: 800; color: var(--rt-orange); }

/* Hero — Variante B éditoriale */
.rt-lou-headB-d { background: var(--rt-white); border-bottom: 1px solid var(--rt-line); }
.rt-lou-headB-d-inner { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 22px 0 0; }
.rt-lou-d-name-dark { color: var(--rt-ink); justify-content: center; }
.rt-lou-d-verified { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; font-size: 14px; font-weight: 700; color: var(--rt-ink); background: var(--rt-orange-soft); padding: 7px 16px 7px 12px; border-radius: var(--rt-r-pill); }
.rt-lou-d-tick-dark { color: var(--rt-orange); display: inline-flex; }
.rt-lou-d-meta-dark { justify-content: center; color: var(--rt-muted); }
.rt-lou-d-meta-dark .rt-lou-d-note { color: var(--rt-orange); }
.rt-lou-headB-d-cover { width: 100%; margin-top: 28px; border-radius: var(--rt-r-xl) var(--rt-r-xl) 0 0; overflow: hidden; height: 240px; }
.rt-lou-headB-d-cover img { width: 100%; height: 100%; object-fit: cover; }

/* Corps */
.rt-lou-d-body { padding-top: 36px; }
.rt-lou-d-stats { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--rt-line); border-radius: var(--rt-r-lg); overflow: hidden; background: #fff; margin-bottom: 44px; }
.rt-lou-d-stat { padding: 24px 16px; text-align: center; border-right: 1px solid var(--rt-line); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; min-height: 116px; }
.rt-lou-d-stat:last-child { border-right: none; }
.rt-lou-d-stat strong { display: block; font-family: var(--rt-font-display); font-weight: 800; font-size: 28px; letter-spacing: -0.02em; color: var(--rt-ink); white-space: nowrap; }
.rt-lou-d-stat span { display: block; font-size: 13px; color: var(--rt-muted); line-height: 1.3; white-space: nowrap; }

.rt-lou-d-grid { display: grid; grid-template-columns: 1fr 360px; gap: 48px; margin-bottom: 52px; align-items: start; }
.rt-lou-d-about h2 { font-family: var(--rt-font-display); font-weight: 800; font-size: 26px; letter-spacing: -0.015em; margin: 0 0 14px; }
.rt-lou-d-about p { font-size: 16px; line-height: 1.65; color: var(--rt-ink-2); margin: 0 0 26px; max-width: 62ch; text-wrap: pretty; }
.rt-lou-d-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--rt-line); border: 1px solid var(--rt-line); border-radius: var(--rt-r-lg); overflow: hidden; }
.rt-lou-d-facts > div { background: #fff; padding: 16px 18px; }
.rt-lou-d-facts span { display: block; font-size: 12px; color: var(--rt-muted); margin-bottom: 4px; }
.rt-lou-d-facts strong { font-size: 15px; font-weight: 700; color: var(--rt-ink); }

.rt-lou-d-contact-card { border: 1px solid var(--rt-line); border-radius: var(--rt-r-lg); padding: 22px; background: #fff; box-shadow: var(--rt-shadow); position: sticky; top: 96px; }
.rt-lou-d-contact-h { font-family: var(--rt-font-display); font-weight: 800; font-size: 18px; margin-bottom: 16px; }
.rt-lou-d-cbtn { display: flex; align-items: center; justify-content: center; gap: 9px; width: 100%; box-sizing: border-box; height: 50px; border-radius: 12px; font-size: 15px; font-weight: 700; margin-bottom: 10px; }
.rt-lou-d-cbtn-wa { background: var(--rt-green-2); color: #fff; }
.rt-lou-d-cbtn-wa:hover { filter: brightness(0.96); }
.rt-lou-d-cbtn-msg { background: var(--rt-ink); color: #fff; }
.rt-lou-d-cbtn-msg:hover { background: var(--rt-ink-2); }
.rt-lou-d-cbtn-ghost { background: #fff; color: var(--rt-ink); border: 1px solid var(--rt-line-2); font-weight: 600; }
.rt-lou-d-cbtn-ghost:hover { border-color: var(--rt-ink); }
.rt-lou-d-locknote { display: flex; gap: 11px; align-items: flex-start; margin-top: 6px; padding: 14px; border-radius: 12px; background: var(--rt-bg-soft); font-size: 13px; line-height: 1.5; color: var(--rt-ink-2); }
.rt-lou-d-locknote-ic { flex-shrink: 0; width: 34px; height: 34px; border-radius: 9px; background: #fff; border: 1px solid var(--rt-line); color: var(--rt-ink); display: inline-flex; align-items: center; justify-content: center; }
.rt-lou-d-locknote strong { color: var(--rt-ink); }
.rt-lou-d-trust { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--rt-muted); margin-top: 12px; }

/* Le parc */
.rt-lou-d-fleet { margin-bottom: 52px; }
.rt-lou-d-fleet-h { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 24px; flex-wrap: wrap; }
.rt-lou-d-fleet-h h2 { font-family: var(--rt-font-display); font-weight: 800; font-size: 26px; letter-spacing: -0.015em; margin: 0; }
.rt-lou-d-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.rt-lou-d-chip { font-size: 13.5px; font-weight: 600; color: var(--rt-ink); padding: 9px 16px; border-radius: var(--rt-r-pill); border: 1px solid var(--rt-line-2); background: #fff; }
.rt-lou-d-chip:hover { border-color: var(--rt-ink); }
.rt-lou-d-chip.is-on { background: var(--rt-ink); color: #fff; border-color: var(--rt-ink); }

/* Avis */
.rt-lou-d-reviews h2 { font-family: var(--rt-font-display); font-weight: 800; font-size: 26px; letter-spacing: -0.015em; margin: 0 0 24px; }
.rt-lou-d-rev-wrap { display: grid; grid-template-columns: 300px 1fr; gap: 40px; align-items: start; }
.rt-lou-d-rev-sum { border: 1px solid var(--rt-line); border-radius: var(--rt-r-lg); padding: 24px; background: #fff; position: sticky; top: 96px; }
.rt-lou-d-rev-big { font-family: var(--rt-font-display); font-weight: 800; font-size: 44px; color: var(--rt-orange); letter-spacing: -0.02em; line-height: 1; }
.rt-lou-d-rev-big span { font-size: 20px; color: var(--rt-muted); }
.rt-lou-d-rev-tot { font-size: 13px; color: var(--rt-muted); margin: 8px 0 18px; }
.rt-lou-d-rev-dist { display: flex; flex-direction: column; gap: 7px; }
.rt-lou-d-distrow { display: flex; align-items: center; gap: 10px; }
.rt-lou-d-distn { font-size: 12px; color: var(--rt-muted); width: 28px; }
.rt-lou-d-distbar { flex: 1; height: 7px; border-radius: 4px; background: var(--rt-line); overflow: hidden; }
.rt-lou-d-distbar i { display: block; height: 100%; background: var(--rt-orange); border-radius: 4px; }
.rt-lou-d-rev-list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.rt-lou-d-rev-card { border: 1px solid var(--rt-line); border-radius: var(--rt-r-lg); padding: 20px; background: #fff; }
.rt-lou-d-rev-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.rt-lou-d-rev-av { width: 42px; height: 42px; border-radius: 50%; background: var(--rt-bg-soft-2); color: var(--rt-ink); display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; }
.rt-lou-d-rev-name { font-size: 14.5px; font-weight: 700; }
.rt-lou-d-rev-stars { font-size: 12px; color: var(--rt-orange); margin-top: 2px; }
.rt-lou-d-rev-empty { color: var(--rt-muted-2); }
.rt-lou-d-rev-card p { font-size: 14.5px; line-height: 1.55; color: var(--rt-ink-2); margin: 0; }
.rt-lou-d-rev-veh { font-size: 12px; color: var(--rt-muted); margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--rt-line); }
.rt-lou-d-rev-empty { font-size: 15px; color: var(--rt-muted); }

@media (max-width: 980px) {
  .rt-lou-d-grid { grid-template-columns: 1fr; gap: 32px; }
  .rt-lou-d-contact-card { position: static; }
  .rt-lou-d-rev-wrap { grid-template-columns: 1fr; gap: 24px; }
  .rt-lou-d-rev-sum { position: static; }
  .rt-lou-d-rev-list { grid-template-columns: 1fr; }
  .rt-lou-d-name { font-size: 36px; }
}
@media (max-width: 640px) {
  .rt-lou-d-stats { grid-template-columns: 1fr 1fr; }
  .rt-lou-d-stat { border-bottom: 1px solid var(--rt-line); }
  .rt-lou-d-facts { grid-template-columns: 1fr; }
}

/* ============================================================ ESPACE LOCATAIRE (compte) ============================================================ */
.rt-acct { padding: 28px 0 80px; background: var(--rt-bg); min-height: 60vh; }
.rt-acct-layout { display: grid; grid-template-columns: 300px 1fr; gap: 32px; align-items: start; margin-top: 6px; }

/* --- Déconnecté --- */
.rt-acct-loggedout { max-width: 460px; margin: 60px auto 80px; text-align: center; border: 1px solid var(--rt-line); border-radius: var(--rt-r-xl); padding: 48px 40px; box-shadow: var(--rt-shadow-sm); }
.rt-acct-lo-ic { width: 64px; height: 64px; border-radius: 50%; background: var(--rt-orange-soft); color: var(--rt-orange); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.rt-acct-lo-ic svg { width: 30px; height: 30px; }
.rt-acct-loggedout h1 { font-family: var(--rt-font-display); font-weight: 800; font-size: 26px; letter-spacing: -0.02em; margin-bottom: 10px; }
.rt-acct-loggedout p { color: var(--rt-muted); font-size: 15px; margin: 0 0 24px; }

/* --- Barre latérale --- */
.rt-acct-sidebar { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 16px; }
.rt-acct-id { display: flex; align-items: center; gap: 14px; padding: 20px; border: 1px solid var(--rt-line); border-radius: var(--rt-r-lg); background: var(--rt-white); box-shadow: var(--rt-shadow-sm); }
.rt-acct-avatar { width: 52px; height: 52px; flex: none; border-radius: 50%; background: var(--rt-orange); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-family: var(--rt-font-display); font-weight: 800; font-size: 18px; }
.rt-acct-id-tx { min-width: 0; }
.rt-acct-id-name { font-family: var(--rt-font-display); font-weight: 800; font-size: 16px; letter-spacing: -0.01em; line-height: 1.2; }
.rt-acct-id-mail { font-size: 12.5px; color: var(--rt-muted); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rt-acct-id-chip { display: inline-flex; align-items: center; gap: 5px; margin-top: 8px; font-size: 11px; font-weight: 700; color: var(--rt-ink-2); background: var(--rt-bg-soft-2); padding: 3px 9px; border-radius: var(--rt-r-pill); }

.rt-acct-nav { display: flex; flex-direction: column; gap: 4px; border: 1px solid var(--rt-line); border-radius: var(--rt-r-lg); padding: 8px; background: var(--rt-white); box-shadow: var(--rt-shadow-sm); }
.rt-acct-navitem { display: flex; align-items: center; gap: 13px; width: 100%; text-align: left; padding: 11px 12px; border-radius: var(--rt-r); transition: background 0.13s, color 0.13s; position: relative; }
.rt-acct-navitem:hover { background: var(--rt-bg-soft); }
.rt-acct-navitem.is-active { background: var(--rt-orange-soft); }
.rt-acct-navitem-ic { flex: none; width: 38px; height: 38px; border-radius: 10px; background: var(--rt-bg-soft-2); color: var(--rt-ink-2); display: inline-flex; align-items: center; justify-content: center; transition: background 0.13s, color 0.13s; }
.rt-acct-navitem.is-active .rt-acct-navitem-ic { background: var(--rt-orange); color: #fff; }
.rt-acct-navitem-tx { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.rt-acct-navitem-lbl { font-size: 14px; font-weight: 700; color: var(--rt-ink); line-height: 1.25; }
.rt-acct-navitem.is-active .rt-acct-navitem-lbl { color: var(--rt-orange-2); }
.rt-acct-navitem-sub { font-size: 11.5px; color: var(--rt-muted); margin-top: 1px; }
.rt-acct-navitem-badge { flex: none; min-width: 20px; height: 20px; padding: 0 6px; border-radius: var(--rt-r-pill); background: var(--rt-orange); color: #fff; font-size: 11px; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; }

.rt-acct-hostcard { display: flex; align-items: center; gap: 13px; padding: 16px; border: 1px solid var(--rt-line); border-radius: var(--rt-r-lg); background: var(--rt-black); color: #fff; position: relative; overflow: hidden; transition: transform 0.12s; }
.rt-acct-hostcard::before { content: ''; position: absolute; inset: 0; background: radial-gradient(360px 160px at 100% 0%, rgba(255,107,0,0.28), transparent 65%); pointer-events: none; }
.rt-acct-hostcard:hover { transform: translateY(-1px); }
.rt-acct-hostcard-ic { flex: none; width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.1); color: var(--rt-orange); display: inline-flex; align-items: center; justify-content: center; }
.rt-acct-hostcard-tx { display: flex; flex-direction: column; flex: 1; min-width: 0; position: relative; }
.rt-acct-hostcard-lbl { font-family: var(--rt-font-display); font-weight: 800; font-size: 15px; }
.rt-acct-hostcard-sub { font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 1px; }
.rt-acct-hostcard-go { position: relative; color: rgba(255,255,255,0.6); }

.rt-acct-logout { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px; border: 1px solid var(--rt-line); border-radius: var(--rt-r-pill); font-size: 13.5px; font-weight: 700; color: var(--rt-muted); transition: color 0.13s, border-color 0.13s, background 0.13s; }
.rt-acct-logout:hover { color: #c0392b; border-color: #e9c4bd; background: #fdf4f2; }

/* --- Contenu --- */
.rt-acct-content { min-width: 0; }
.rt-acct-panel { display: flex; flex-direction: column; gap: 24px; }
.rt-acct-phead h1 { font-family: var(--rt-font-display); font-weight: 800; font-size: 30px; letter-spacing: -0.025em; line-height: 1.05; }
.rt-acct-phead p { color: var(--rt-muted); font-size: 15px; margin: 8px 0 0; }
.rt-acct-section { display: flex; flex-direction: column; gap: 14px; }
.rt-acct-section-h { font-family: var(--rt-font-display); font-weight: 800; font-size: 17px; letter-spacing: -0.01em; }

.rt-acct-card { border: 1px solid var(--rt-line); border-radius: var(--rt-r-lg); padding: 26px; background: var(--rt-white); box-shadow: var(--rt-shadow-sm); }
.rt-acct-card-h { font-family: var(--rt-font-display); font-weight: 800; font-size: 18px; letter-spacing: -0.01em; margin-bottom: 18px; }
.rt-acct-card-sub { font-size: 13.5px; color: var(--rt-muted); margin: -10px 0 18px; line-height: 1.5; }

/* Formulaires */
.rt-acct-form { display: flex; flex-direction: column; gap: 14px; }
.rt-acct-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.rt-acct-field { display: flex; flex-direction: column; gap: 6px; }
.rt-acct-field-label { font-size: 12px; font-weight: 700; color: var(--rt-ink); text-transform: uppercase; letter-spacing: 0.04em; }
.rt-acct-field input { padding: 12px 14px; border: 1px solid var(--rt-line); border-radius: var(--rt-r); font-size: 14px; background: var(--rt-white); color: var(--rt-ink); outline: none; transition: border-color 0.15s; width: 100%; }
.rt-acct-field input:focus { border-color: var(--rt-orange); }
.rt-acct-field input:disabled { background: var(--rt-bg-soft); color: var(--rt-muted); cursor: not-allowed; }
.rt-acct-form-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 4px; }

/* Vérification */
.rt-acct-verify { display: flex; flex-direction: column; gap: 12px; }
.rt-acct-verify-row { display: flex; align-items: center; gap: 14px; padding: 16px; border: 1px solid var(--rt-line); border-radius: var(--rt-r); background: var(--rt-bg-soft); }
.rt-acct-verify-ic { flex: none; width: 44px; height: 44px; border-radius: 10px; background: var(--rt-white); border: 1px solid var(--rt-line); color: var(--rt-ink-2); display: inline-flex; align-items: center; justify-content: center; }
.rt-acct-verify-tx { flex: 1; min-width: 0; }
.rt-acct-verify-lbl { font-size: 14.5px; font-weight: 700; }
.rt-acct-verify-sub { font-size: 12.5px; color: var(--rt-muted); margin-top: 2px; }
.rt-acct-verify-btn { padding: 9px 18px; font-size: 13px; }
.rt-acct-verify-actions { display: flex; align-items: center; gap: 8px; flex: none; }
.rt-acct-doc-input { display: none; }
.rt-acct-doc-thumb { width: 100%; height: 100%; object-fit: cover; border-radius: 9px; }
.rt-acct-verify-ic { overflow: hidden; }
.rt-acct-doc-del { width: 34px; height: 34px; flex: none; border-radius: 9px; display: inline-flex; align-items: center; justify-content: center; color: var(--rt-muted); transition: color 0.13s, background 0.13s; }
.rt-acct-doc-del:hover { color: #c0392b; background: #fdf4f2; }
.rt-acct-doc-del svg { width: 16px; height: 16px; }
.rt-acct-verify-row[data-status="verified"] { border-color: #bfe6cf; background: #f4fbf7; }
.rt-acct-verify-row[data-status="verified"] .rt-acct-verify-ic { border-color: #bfe6cf; color: var(--rt-green); }
.rt-acct-badge.is-verifying { background: #eaf1fe; color: #2a62c4; }
.rt-acct-badge.is-verified { background: #e6f7ef; color: #047d4c; }
.rt-acct-badge.is-rejected { background: #fdecea; color: #c0392b; }
.rt-acct-verify-row[data-status="pending"] .rt-acct-badge.is-verifying { position: relative; padding-left: 20px; }
.rt-acct-verify-row[data-status="pending"] .rt-acct-badge.is-verifying::before { content: ''; position: absolute; left: 9px; top: 50%; width: 7px; height: 7px; margin-top: -3.5px; border-radius: 50%; background: #2a62c4; animation: rtDocPulse 1.1s ease-in-out infinite; }
@keyframes rtDocPulse { 0%, 100% { opacity: 0.35; transform: scale(0.8); } 50% { opacity: 1; transform: scale(1.15); } }
.rt-acct-badge { flex: none; font-size: 11px; font-weight: 800; letter-spacing: 0.03em; text-transform: uppercase; padding: 4px 10px; border-radius: var(--rt-r-pill); }
.rt-acct-badge.is-pending { background: #fff3e0; color: #b25a00; }
.rt-acct-badge.is-done { background: var(--rt-bg-soft-2); color: var(--rt-muted); }
.rt-acct-badge.is-up { background: #e6f7ef; color: #047d4c; }

/* Locations */
.rt-acct-trip-list { display: flex; flex-direction: column; gap: 14px; }
.rt-acct-trip { display: flex; gap: 18px; border: 1px solid var(--rt-line); border-radius: var(--rt-r-lg); background: var(--rt-white); padding: 14px; box-shadow: var(--rt-shadow-sm); transition: box-shadow 0.15s; }
.rt-acct-trip:hover { box-shadow: var(--rt-shadow); }
.rt-acct-trip-media { flex: none; width: 180px; height: 120px; border-radius: var(--rt-r); overflow: hidden; background: var(--rt-bg-soft-2); cursor: pointer; }
.rt-acct-trip-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.rt-acct-trip-media:hover img { transform: scale(1.05); }
.rt-acct-trip-body { flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: space-between; padding: 4px 6px 4px 0; }
.rt-acct-trip-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.rt-acct-trip-name { font-family: var(--rt-font-display); font-weight: 800; font-size: 18px; letter-spacing: -0.01em; }
.rt-acct-trip-meta { font-size: 13px; color: var(--rt-muted); margin-top: 4px; }
.rt-acct-trip-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-top: 14px; }
.rt-acct-trip-info { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--rt-ink-2); }
.rt-acct-trip-days { font-weight: 700; }
.rt-acct-trip-total { font-weight: 700; }
.rt-acct-trip-dot { color: var(--rt-muted-2); }
.rt-acct-trip-host { color: var(--rt-muted); }
.rt-acct-trip-cta { display: flex; align-items: center; gap: 14px; }
.rt-acct-trip-rate { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: var(--rt-r-pill); background: var(--rt-orange-soft); color: var(--rt-orange-2); font-size: 13px; font-weight: 700; transition: background 0.13s; }
.rt-acct-trip-rate:hover { background: var(--rt-orange-tint); }
.rt-acct-trip-rated { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--rt-ink-2); }
.rt-acct-trip-rated:hover { color: var(--rt-orange-2); }
.rt-acct-trip-stars { color: var(--rt-orange); letter-spacing: 1px; }
.rt-acct-trip-empty { color: var(--rt-line-2); }
.rt-acct-trip-link { font-size: 13px; font-weight: 700; color: var(--rt-muted); transition: color 0.13s; }
.rt-acct-trip-link:hover { color: var(--rt-orange-2); }

/* Favoris */
.rt-acct-fav-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }

/* État vide */
.rt-acct-empty { text-align: center; padding: 56px 32px; border: 1px dashed var(--rt-line-2); border-radius: var(--rt-r-lg); background: var(--rt-bg-soft); }
.rt-acct-empty-ic { width: 60px; height: 60px; border-radius: 50%; background: var(--rt-white); border: 1px solid var(--rt-line); color: var(--rt-muted); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.rt-acct-empty-ic svg { width: 28px; height: 28px; }
.rt-acct-empty-title { font-family: var(--rt-font-display); font-weight: 800; font-size: 19px; letter-spacing: -0.01em; margin-bottom: 8px; }
.rt-acct-empty p { color: var(--rt-muted); font-size: 14px; max-width: 380px; margin: 0 auto 22px; line-height: 1.55; }

/* Carte bancaire */
.rt-acct-cardview { display: flex; flex-direction: column; gap: 18px; }
.rt-acct-creditcard { max-width: 380px; aspect-ratio: 1.586; border-radius: 16px; padding: 24px; background: var(--rt-black); color: #fff; position: relative; overflow: hidden; box-shadow: var(--rt-shadow); display: flex; flex-direction: column; justify-content: space-between; }
.rt-acct-creditcard::before { content: ''; position: absolute; inset: 0; background: radial-gradient(420px 200px at 110% -10%, rgba(255,107,0,0.4), transparent 60%); pointer-events: none; }
.rt-acct-cc-top { display: flex; align-items: center; justify-content: space-between; position: relative; }
.rt-acct-cc-chip { width: 38px; height: 28px; border-radius: 6px; background: linear-gradient(135deg, #d9b878, #b8923f); }
.rt-acct-cc-brand { font-family: var(--rt-font-display); font-weight: 900; font-style: italic; font-size: 20px; letter-spacing: 0.04em; }
.rt-acct-cc-num { font-size: 20px; font-weight: 600; letter-spacing: 0.14em; position: relative; font-variant-numeric: tabular-nums; }
.rt-acct-cc-foot { display: flex; gap: 36px; position: relative; }
.rt-acct-cc-foot span { display: block; font-size: 9px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.55); margin-bottom: 3px; }
.rt-acct-cc-foot strong { font-size: 13px; font-weight: 600; letter-spacing: 0.02em; }
.rt-acct-card-btns { display: flex; gap: 10px; }
.rt-acct-card-btns .rt-btn-ghost { padding: 10px 22px; }
.rt-acct-danger:hover { color: #c0392b; border-color: #e9c4bd; background: #fdf4f2; }
.rt-acct-securenote { display: flex; align-items: flex-start; gap: 8px; margin-top: 18px; font-size: 12.5px; color: var(--rt-muted); line-height: 1.5; }
.rt-acct-securenote svg { flex: none; width: 18px; height: 18px; color: var(--rt-green); margin-top: 1px; }

/* Reçus */
.rt-acct-receipts { display: flex; flex-direction: column; }
.rt-acct-receipt { display: flex; align-items: center; gap: 14px; width: 100%; text-align: left; padding: 14px 4px; border-bottom: 1px solid var(--rt-line); transition: background 0.12s; }
.rt-acct-receipt:last-child { border-bottom: none; }
.rt-acct-receipt:hover { background: var(--rt-bg-soft); }
.rt-acct-receipt-ic { flex: none; width: 40px; height: 40px; border-radius: 10px; background: var(--rt-bg-soft-2); color: var(--rt-ink-2); display: inline-flex; align-items: center; justify-content: center; }
.rt-acct-receipt-tx { flex: 1; min-width: 0; }
.rt-acct-receipt-name { font-size: 14px; font-weight: 700; }
.rt-acct-receipt-sub { font-size: 12px; color: var(--rt-muted); margin-top: 2px; }
.rt-acct-receipt-amt { font-family: var(--rt-font-display); font-weight: 800; font-size: 15px; }

/* Aide */
.rt-acct-help-rows { display: flex; flex-direction: column; gap: 10px; }
.rt-acct-help-row { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border: 1px solid var(--rt-line); border-radius: var(--rt-r); background: var(--rt-white); transition: border-color 0.13s, background 0.13s; }
.rt-acct-help-row:hover { border-color: var(--rt-line-2); background: var(--rt-bg-soft); }
.rt-acct-help-ic { flex: none; width: 40px; height: 40px; border-radius: 10px; background: var(--rt-bg-soft-2); display: inline-flex; align-items: center; justify-content: center; color: var(--rt-ink-2); }
.rt-acct-help-tx { flex: 1; min-width: 0; }
.rt-acct-help-lbl { font-size: 14.5px; font-weight: 700; }
.rt-acct-help-sub { font-size: 12.5px; color: var(--rt-muted); margin-top: 2px; }
.rt-acct-help-go { color: var(--rt-muted-2); }
.rt-acct-help-note { font-size: 12px; color: var(--rt-muted-2); margin-top: 16px; text-align: center; }

/* Toggles */
.rt-acct-toggle-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--rt-line); }
.rt-acct-toggle-row:first-of-type { padding-top: 0; }
.rt-acct-toggle-tx { min-width: 0; }
.rt-acct-toggle-lbl { font-size: 14.5px; font-weight: 700; }
.rt-acct-toggle-sub { font-size: 12.5px; color: var(--rt-muted); margin-top: 2px; }
.rt-acct-tg { flex: none; width: 46px; height: 27px; border-radius: var(--rt-r-pill); background: var(--rt-line-2); position: relative; transition: background 0.18s; }
.rt-acct-tg.is-on { background: var(--rt-orange); }
.rt-acct-tg-knob { position: absolute; top: 3px; left: 3px; width: 21px; height: 21px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.25); transition: transform 0.18s; }
.rt-acct-tg.is-on .rt-acct-tg-knob { transform: translateX(19px); }

/* Modale de notation */
.rt-acct-modal-bd { position: fixed; inset: 0; z-index: 200; background: rgba(10,10,10,0.55); display: flex; align-items: center; justify-content: center; padding: 24px; animation: rtAcctFade 0.18s ease; }
@keyframes rtAcctFade { from { opacity: 0; } to { opacity: 1; } }
.rt-acct-modal { width: 100%; max-width: 460px; background: var(--rt-white); border-radius: var(--rt-r-xl); padding: 28px; box-shadow: var(--rt-shadow-lg); animation: rtAcctPop 0.2s cubic-bezier(0.16,1,0.3,1); }
@keyframes rtAcctPop { from { transform: translateY(12px) scale(0.98); opacity: 0; } to { transform: none; opacity: 1; } }
.rt-acct-modal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.rt-acct-modal-head h2 { font-family: var(--rt-font-display); font-weight: 800; font-size: 21px; letter-spacing: -0.01em; }
.rt-acct-modal-x { width: 36px; height: 36px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: var(--rt-muted); transition: background 0.13s; }
.rt-acct-modal-x:hover { background: var(--rt-bg-soft); }
.rt-acct-rate-veh { display: flex; align-items: center; gap: 14px; padding: 12px; border-radius: var(--rt-r); background: var(--rt-bg-soft); margin-bottom: 20px; }
.rt-acct-rate-veh img { width: 72px; height: 54px; object-fit: cover; border-radius: 8px; flex: none; }
.rt-acct-rate-vname { font-weight: 700; font-size: 15px; }
.rt-acct-rate-vsub { font-size: 12.5px; color: var(--rt-muted); margin-top: 3px; }
.rt-acct-stars { display: flex; justify-content: center; gap: 8px; }
.rt-acct-star { padding: 4px; line-height: 0; transition: transform 0.1s; }
.rt-acct-star:hover { transform: scale(1.12); }
.rt-acct-stars-label { text-align: center; font-size: 14px; font-weight: 700; color: var(--rt-ink-2); margin: 10px 0 18px; min-height: 20px; }
.rt-acct-rate-comment { width: 100%; border: 1px solid var(--rt-line); border-radius: var(--rt-r); padding: 12px 14px; font: inherit; font-size: 14px; resize: vertical; outline: none; margin-bottom: 18px; transition: border-color 0.15s; }
.rt-acct-rate-comment:focus { border-color: var(--rt-orange); }

@media (max-width: 980px) {
  .rt-acct-layout { grid-template-columns: 1fr; gap: 24px; }
  .rt-acct-sidebar { position: static; }
  .rt-acct-nav { display: grid; grid-template-columns: 1fr 1fr; }
  .rt-acct-hostcard { display: none; }
}
@media (max-width: 720px) {
  .rt-acct-fav-grid { grid-template-columns: 1fr; }
  .rt-acct-trip { flex-direction: column; }
  .rt-acct-trip-media { width: 100%; height: 170px; }
}
@media (max-width: 540px) {
  .rt-acct-nav { grid-template-columns: 1fr; }
  .rt-acct-form-row { grid-template-columns: 1fr; }
  .rt-acct-phead h1 { font-size: 25px; }
}

/* ---- Vitrine loueur desktop — version finale ---- */
.rt-lou-d-vline { display: flex; flex-wrap: wrap; gap: 7px; font-size: 14px; margin-top: 10px; color: rgba(255,255,255,0.88); }
.rt-loud-stats { display: flex; align-items: flex-end; gap: 56px; padding: 6px 0 30px; border-bottom: 1px solid var(--rt-line); margin-bottom: 40px; }
.rt-loud-stat strong { display: block; font-family: var(--rt-font-display); font-weight: 900; font-size: 44px; letter-spacing: -0.04em; line-height: 1; color: var(--rt-ink); white-space: nowrap; }
.rt-loud-stat strong em { font-style: normal; font-weight: 800; font-size: 0.55em; color: var(--rt-orange); letter-spacing: -0.01em; }
.rt-loud-stat span { display: block; font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--rt-muted); margin-top: 8px; }
.rt-loud-legal { font-size: 13px; color: var(--rt-muted); margin-top: 14px; }
.rt-loud-fleet-sub { font-size: 14.5px; color: var(--rt-muted); margin-top: 6px; }
.rt-loud-fleet-sub em { font-style: normal; font-weight: 700; color: var(--rt-orange); }
