/* ============================================================================
   RENT marketplace — public landing / browse / operator profile.
   Uses the aurora hue tokens (page-aipb) + the site container rhythm so it
   reads 1:1 with shop / support / landings.
   ============================================================================ */

/* ============================================================================
   GEO LANDING HERO (.rent-geo-hero) — AIPB .s01-style shell with an AI image
   background + per-page hue (distinct "event night" palette). Used by the
   programmatic "Photo Booth Rental in {City}" SEO pages.
   ============================================================================ */
/* Rent's own theme — a vibrant magenta / plum "celebration" palette, distinct
   from AIPB purple, AIDS emerald and PMW navy. */
.page-rent {
    --hue-base: #1A0726;
    --hue-radial-a: #E0408F;
    --hue-radial-b: #FF6B5C;
    --hue-radial-c: #A02BD6;
    --hue-emph-from: #FF8FB0;
    --hue-emph-to: #FFD166;
    --hue-accent: #E0408F;
    --hue-surface: #FFF5FA;
}
/* Trust-row check stays brand-green on the rent theme (parity with .page-aipb). */
.page-rent .s01-meta-item svg { color: #12B76A; }
.rent-geo-hero { position: relative; overflow: hidden; background: var(--hue-base, #140A2E); }
.rent-geo-hero-bg {
    position: absolute; inset: 0;
    background: url('/img/rent/hero-bg.webp') center right no-repeat;
    background-size: cover; opacity: .5; mix-blend-mode: luminosity;
}
.rent-geo-hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 50% 22%, color-mix(in srgb, var(--hue-radial-a) 42%, transparent) 0%, transparent 72%),
        radial-gradient(ellipse 60% 50% at 12% 78%, color-mix(in srgb, var(--hue-radial-b) 24%, transparent) 0%, transparent 68%),
        radial-gradient(ellipse 50% 40% at 88% 62%, color-mix(in srgb, var(--hue-radial-c) 16%, transparent) 0%, transparent 65%),
        linear-gradient(180deg, color-mix(in srgb, var(--hue-base) 50%, transparent) 0%, var(--hue-base) 100%);
}
.rent-geo-hero-w {
    position: relative; z-index: 2; max-width: var(--hdr-container-max, 1280px); margin: 0 auto;
    padding: clamp(120px, 11vw, 168px) var(--hdr-px, 24px) clamp(56px, 6vw, 88px);
    display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
    gap: clamp(36px, 5vw, 72px); align-items: center;
}
.rent-geo-crumb { font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 16px; }
.rent-geo-crumb a { color: rgba(255,255,255,.8); text-decoration: none; }
.rent-geo-t {
    font-family: var(--font-heading, 'Inter', sans-serif); font-size: clamp(34px, 5vw, 60px); font-weight: 900;
    line-height: 1.06; letter-spacing: -.025em; color: #fff; margin: 0 0 18px; text-wrap: balance;
}
.rent-geo-t em { font-style: normal; background: linear-gradient(135deg, var(--hue-emph-from), var(--hue-emph-to)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.rent-geo-sub { font-size: clamp(16px, 1.4vw, 19px); line-height: 1.6; color: rgba(255,255,255,.74); margin: 0 0 26px; max-width: 56ch; }

/* Visual booth-type cards (item 3) */
.rent-booth-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.rent-booth-card { position: relative; display: block; border-radius: 16px; overflow: hidden; text-decoration: none; aspect-ratio: 4/3; background: #14121f; box-shadow: 0 1px 3px rgba(16,24,40,.06), 0 12px 28px -16px rgba(16,24,40,.18); transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s; }
.rent-booth-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -20px rgba(16,24,40,.28); }
.rent-booth-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.rent-booth-card:hover img { transform: scale(1.06); }
.rent-booth-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(10,6,24,.82) 100%); }
.rent-booth-label { position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 1; color: #fff; }
.rent-booth-name { font-size: 17px; font-weight: 800; letter-spacing: -.01em; text-shadow: 0 1px 6px rgba(0,0,0,.4); }

/* Internal-link chips (other experiences / cities) for SEO cross-linking. */
.rent-exp-links { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.rent-exp-link { display: inline-flex; align-items: center; padding: 10px 18px; border-radius: 999px; border: 1px solid #EAECF0; background: #fff; color: #344054; font-size: 14px; font-weight: 600; text-decoration: none; transition: border-color .15s, color .15s, transform .15s; }
.rent-exp-link:hover { border-color: color-mix(in srgb, var(--hue-accent, #B49BF5) 55%, #EAECF0); color: var(--hue-accent, #8C68D5); transform: translateY(-1px); }

/* Visual city cards (city-view image + name + count) — Foto Master style */
.rent-city-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 18px; }
.rent-city-card { position: relative; display: block; border-radius: 16px; overflow: hidden; text-decoration: none; aspect-ratio: 16/10; background: linear-gradient(135deg, #1a0b3b, #3d1d6e); box-shadow: 0 1px 3px rgba(16,24,40,.06), 0 12px 28px -16px rgba(16,24,40,.2); transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s; }
.rent-city-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -20px rgba(16,24,40,.3); }
.rent-city-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.rent-city-card:hover img { transform: scale(1.07); }
.rent-city-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,6,24,.05) 28%, rgba(10,6,24,.88) 100%); }
.rent-city-label { position: absolute; left: 16px; right: 16px; bottom: 14px; z-index: 1; color: #fff; display: flex; align-items: flex-end; justify-content: space-between; gap: 8px; }
.rent-city-name { font-size: 18px; font-weight: 800; letter-spacing: -.01em; line-height: 1.2; }
.rent-city-name small { display: block; font-size: 12px; font-weight: 600; opacity: .82; margin-top: 2px; }
.rent-city-count { font-size: 12px; font-weight: 700; background: rgba(255,255,255,.22); border-radius: 999px; padding: 4px 10px; white-space: nowrap; backdrop-filter: blur(4px); }

/* Locations grid (city links) */
.rent-loc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; }
.rent-loc { display: flex; align-items: center; gap: 10px; padding: 14px 16px; border: 1px solid #EAECF0; border-radius: 12px; background: #fff; text-decoration: none; color: #344054; font-weight: 600; font-size: 14.5px; transition: border-color .15s, color .15s, background .15s; }
.rent-loc:hover { border-color: var(--hue-accent, #7F56D9); color: var(--hue-accent, #7F56D9); background: color-mix(in srgb, var(--hue-accent,#7F56D9) 6%, #fff); }
.rent-loc svg { width: 16px; height: 16px; stroke: #98A2B3; flex-shrink: 0; }
.rent-loc:hover svg { stroke: var(--hue-accent, #7F56D9); }
.rent-loc-count { margin-left: auto; font-size: 12px; color: #98A2B3; font-weight: 600; }

/* ---------- Main /rent hero = canonical .s01 shell + AI bg + lead form ----- */
/* Visible, true-colour event backdrop (AIDS/PMW recipe): normal blend + higher
   opacity so the photo reads, with the .s01-bg::after radial+fade tinting it to
   the magenta theme and keeping the left-side H1 legible. */
.s01--rent .s01-bg { background-image: url('/img/rent/hero-bg.webp'); opacity: .6; mix-blend-mode: normal; }
.s01--rent .s01-media { width: 100%; }
.s01--rent .s01-media .rent-form-card { width: 100%; }

/* Reseller hero — canonical .s01, single column (no right box), AI backdrop. */
.s01--reseller .s01-bg { background-image: url('/img/reseller/hero-bg.webp'); opacity: .55; mix-blend-mode: normal; }
.s01--reseller .s01-grid { grid-template-columns: 1fr; }
.s01--reseller .s01-content { max-width: 760px; }

/* Reseller-specific profit highlight inside the canonical .s07 pricing card (light section). */
.rsl-s07-earn { display: block; margin: 0 0 6px; padding: 9px 12px; border-radius: 10px;
    background: #ECFDF3; border: 1px solid #A6F4C5;
    color: #067647; font-size: 13px; font-weight: 700; line-height: 1.4; }
.rsl-s07-earn span { color: #667085; font-weight: 500; }
/* Canonical .s01-grid uses `55% 45%` + 48px gap, which sums to 100%+gap and
   overflows the container by the gap width. Harmless when the right column is a
   video (doesn't fill), but the lead-form card fills 100% so its right edge spilled
   ~24px past the header boundary. fr units are gap-aware, keeping the form within
   the 1280 container so the hero aligns 1:1 with the header. */
.s01--rent .s01-grid { grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); }
@media (max-width: 900px) {
    .s01--rent .s01-grid { grid-template-columns: 1fr; }
    .s01--rent .s01-media { justify-content: stretch; }
}

/* ---------- (legacy) Rent band hero — kept for reference ---------- */
.rent-hero {
    position: relative;
    overflow: hidden;
    background: var(--hue-base, #0B0420);
}
/* AI image texture behind the radials (same recipe as the geo hero). */
.rent-hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background: url('/img/rent/hero-bg.webp') center right no-repeat;
    background-size: cover; opacity: .38; mix-blend-mode: luminosity;
}
.rent-hero > .rent-hero-w { position: relative; z-index: 2; }

/* Brand logo strip — reuses the canonical .s01-marquee (sections.css + aurora
   force-unify) so it's byte-identical to the home / AIPB hero strips. This
   wrapper only handles placement at the foot of the Rent hero. */
.rent-logos { position: relative; z-index: 2; height: 90px; margin-top: -30px; padding: 0 var(--hdr-px, 24px); }
.rent-logos .s01-marquee { max-width: var(--hdr-container-max, 1280px); margin: 0 auto; }
@media (max-width: 960px) { .rent-logos { height: 70px; margin-top: 0; } }
.rent-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 60% 55% at 16% 24%, color-mix(in srgb, var(--hue-radial-a, #8E68D5) 34%, transparent) 0%, transparent 66%),
        radial-gradient(ellipse 55% 50% at 88% 78%, color-mix(in srgb, var(--hue-radial-c, #7331E0) 22%, transparent) 0%, transparent 60%);
}
.rent-hero-w {
    position: relative;
    z-index: 1;
    max-width: var(--hdr-container-max, 1280px);
    margin: 0 auto;
    padding: clamp(116px, 12vw, 152px) var(--hdr-px, 24px) clamp(64px, 7vw, 96px);
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: clamp(36px, 5vw, 72px);
    align-items: center;
}
.rent-hero-copy { color: #fff; }
.rent-hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
    color: rgba(255,255,255,.7); margin: 0 0 16px;
}
.rent-hero-eyebrow::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #34D399; box-shadow: 0 0 0 3px rgba(52,211,153,.25); }
.rent-hero-t {
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-size: clamp(36px, 4.6vw, 56px); font-weight: 900; line-height: 1.05;
    letter-spacing: -.025em; margin: 0 0 18px; color: #fff; text-wrap: balance;
}
.rent-hero-t em { font-style: normal; background: linear-gradient(135deg, #B49BF5, #FF9E88); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.rent-hero-sub { font-size: clamp(16px, 1.3vw, 18px); line-height: 1.6; color: rgba(255,255,255,.72); margin: 0 0 24px; max-width: 52ch; }
.rent-hero-trust { display: flex; flex-wrap: wrap; gap: 18px 26px; margin-top: 8px; }
.rent-hero-trust span { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; color: rgba(255,255,255,.8); }
.rent-hero-trust svg { width: 16px; height: 16px; stroke: #34D399; }

/* Lead form card */
.rent-form-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 20px;
    padding: clamp(22px, 2.4vw, 30px);
    backdrop-filter: blur(8px);
    box-shadow: 0 30px 60px -30px rgba(0,0,0,.5);
}
.rent-form-card-t { color: #fff; font-size: 19px; font-weight: 800; margin: 0 0 4px; letter-spacing: -.01em; }
.rent-form-card-sub { color: rgba(255,255,255,.6); font-size: 13.5px; margin: 0 0 18px; }
.rent-form { display: flex; flex-direction: column; gap: 12px; }
.rent-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.rent-input, .rent-select, .rent-textarea {
    width: 100%; box-sizing: border-box;
    padding: 13px 15px; border-radius: 11px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.08); color: #fff;
    font-size: 15px; font-family: inherit; outline: none;
    transition: border-color .15s, box-shadow .15s, background .15s;
}
.rent-input::placeholder, .rent-textarea::placeholder { color: rgba(255,255,255,.5); }
.rent-input:focus, .rent-select:focus, .rent-textarea:focus {
    border-color: rgba(180,155,245,.9); background: rgba(255,255,255,.13);
    box-shadow: 0 0 0 3px rgba(140,104,213,.25);
}
.rent-input:focus-visible, .rent-select:focus-visible, .rent-textarea:focus-visible { outline: 2px solid rgba(180,155,245,.95) !important; outline-offset: 2px !important; }
.rent-select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-opacity='.6' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 34px; }
.rent-select option { color: #101828; }
/* color-scheme:dark themes the native picker dark + makes its icon light automatically.
   (Don't also invert the icon — that would flip the already-light glyph back to black.)
   accent-color tints what Chrome allows; the calendar grid's selected-day highlight is
   still browser-controlled, so it can't be fully recolored without a custom JS picker. */
.rent-input[type=date] { color-scheme: dark; accent-color: #B49BF5; }
.rent-input[type=date]::-webkit-calendar-picker-indicator { opacity: .85; cursor: pointer; }
.rent-input[type=date]::-webkit-calendar-picker-indicator:hover { opacity: 1; }

/* "What do you need?" multi-select dropdown (compact — single field, checkbox popover). */
.rent-ms { position: relative; }
.rent-ms-trigger { width: 100%; text-align: left; cursor: pointer; display: flex; align-items: center; min-height: 0; }
.rent-ms-label { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.rent-ms-label.is-placeholder { color: rgba(255,255,255,.5); }
.rent-ms.is-err .rent-ms-trigger { border-color: rgba(253,164,175,.85); box-shadow: 0 0 0 3px rgba(253,164,175,.18); }
.rent-ms-panel {
    position: absolute; z-index: 30; top: calc(100% + 6px); left: 0; right: 0;
    background: #1d1330; border: 1px solid rgba(255,255,255,.15); border-radius: 12px;
    padding: 6px; max-height: 240px; overflow-y: auto;
    box-shadow: 0 16px 40px rgba(0,0,0,.45);
}
.rent-ms-panel[hidden] { display: none; }
.rent-ms-opt {
    display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: 8px;
    cursor: pointer; font-size: 14px; color: rgba(255,255,255,.9); user-select: none;
}
.rent-ms-opt:hover { background: rgba(255,255,255,.08); }
.rent-ms-opt input { width: 16px; height: 16px; accent-color: #8C68D5; cursor: pointer; flex: 0 0 auto; }
.rent-ms-opt--unsure { border-top: 1px solid rgba(255,255,255,.1); margin-top: 4px; padding-top: 11px; color: rgba(255,255,255,.7); }
.rent-textarea { resize: vertical; min-height: 86px; }
/* Optional "+ Add details" expander — keeps the form low-friction by default. */
.rent-form-details { margin-top: -2px; }
.rent-form-details summary { list-style: none; cursor: pointer; font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,.78); display: inline-flex; align-items: center; gap: 6px; padding: 4px 0; user-select: none; transition: color .15s; }
.rent-form-details summary::-webkit-details-marker { display: none; }
.rent-form-details summary::before { content: '+'; width: 16px; height: 16px; display: inline-flex; align-items: center; justify-content: center; font-size: 17px; line-height: 1; color: var(--hue-accent, #B49BF5); }
.rent-form-details[open] summary::before { content: '–'; }
.rent-form-details summary:hover { color: #fff; }
.rent-form-details summary span { color: rgba(255,255,255,.5); font-weight: 500; }
/* Animated reveal: JS tweens height px (smooth; grid-rows janks against the hero backdrop). */
.rent-details-body { height: 0; overflow: hidden; transition: height .24s ease-out; }
.rent-details-body > * { min-height: 0; }
.rent-form-details .rent-textarea { margin-top: 10px; }
.rent-submit {
    width: 100%; min-height: 54px !important; margin-top: 4px; padding: 15px 28px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 0; border-radius: 12px; cursor: pointer; box-sizing: border-box;
    background: linear-gradient(135deg, var(--c-cta-from, #FF7A5C), var(--c-cta-to, #F43F5E));
    color: #fff; font-family: var(--font-heading, 'Inter', sans-serif); font-size: 16px; font-weight: 700;
    box-shadow: 0 16px 30px -14px rgba(244,63,94,.5); transition: transform .15s, box-shadow .15s, filter .15s;
}
.rent-submit:hover { transform: translateY(-1px); filter: brightness(1.04); box-shadow: 0 20px 38px -14px rgba(244,63,94,.6); }
.rent-submit:disabled { opacity: .7; cursor: progress; transform: none; }
.rent-form-fine { display: flex; align-items: center; gap: 6px; font-size: 11.5px; color: rgba(255,255,255,.5); margin: 12px 0 0; text-align: left; }
.rent-form-fine svg { width: 14px; height: 14px; flex: 0 0 auto; stroke: #34D399; }
.rent-form-success { display: none; text-align: center; color: #fff; padding: 20px 8px; }
.rent-form-success svg { width: 44px; height: 44px; stroke: #34D399; margin-bottom: 10px; }
.rent-form-success h3 { font-size: 20px; font-weight: 800; margin: 0 0 6px; }
.rent-form-success p { color: rgba(255,255,255,.7); font-size: 14px; margin: 0; }
.rent-form.is-sent { display: none; }
.rent-form-success.is-shown { display: block; }

/* ---------- Generic section rhythm ---------- */
.rent-section { padding: clamp(64px, 7vw, 104px) 0; }
.rent-section--surface { background: #FAFAFB; }
.rent-w { max-width: var(--hdr-container-max, 1280px); margin: 0 auto; padding: 0 var(--hdr-px, 24px); }
/* Section header — aligned to the canonical home/AIPB .hx-head spec (one-template feel). */
.rent-head { text-align: center; max-width: min(760px, 90%); margin: 0 auto 40px; }
.rent-h2 { font-family: 'Inter', sans-serif; font-size: var(--fs-section-h2); font-weight: 800; letter-spacing: -.02em; line-height: 1.1; color: #101828; margin: 0 0 16px; text-wrap: balance; }
.rent-h2 em { font-style: normal; background: linear-gradient(135deg, var(--hue-emph-from, #ED4D6D), var(--hue-emph-to, #FBD065)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.rent-sub { font-family: 'Inter', sans-serif; font-size: var(--fs-section-sub); line-height: 1.6; color: #475467; margin: 0 auto; max-width: 64ch; }

/* ---------- How it works ---------- */
.rent-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.rent-step { display: flex; flex-direction: column; align-items: flex-start; text-align: left; padding: 28px 26px; background: #fff; border: 1px solid #EAECF0; border-radius: 16px; box-shadow: 0 10px 30px -20px rgba(16,24,40,.18); }
/* Match the homepage "how it works" badge — soft coral tile + coral number (not a solid fill). */
.rent-step-num { width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading, 'Inter', sans-serif); font-weight: 800; font-size: 17px; color: #F43F5E; margin-bottom: 18px; background: color-mix(in srgb, #F43F5E 11%, #fff); }
.rent-step-t { font-size: 17px; font-weight: 700; color: #101828; margin: 0 0 8px; letter-spacing: -.01em; }
.rent-step-d { font-size: 14.5px; color: #667085; line-height: 1.6; margin: 0; }

/* ---------- Operator cards ---------- */
.rent-op-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
/* Operator card — matches the homepage .hx-eco-card chrome (radius 20, soft 2-layer shadow). */
.rent-op {
    display: flex; flex-direction: column; background: #fff; border: 1px solid #EAECF0;
    border-radius: 20px; overflow: hidden; text-decoration: none; color: inherit;
    box-shadow: 0 1px 3px rgba(16,24,40,.04), 0 10px 28px -14px rgba(16,24,40,.08);
    transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s, border-color .25s;
}
.rent-op:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -22px rgba(16,24,40,.18); border-color: #D0D5DD; }
.rent-op-cover { aspect-ratio: 16/10; background: linear-gradient(135deg, #1a0b3b, #3d1d6e); position: relative; overflow: hidden; }
.rent-op-cover img { width: 100%; height: 100%; object-fit: cover; }
/* Verified seal badge — frosted glass pill, coral rosette + white check (premium, not a plain tick). */
.rent-op-official { position: absolute; top: 12px; left: 12px; z-index: 2; display: inline-flex; align-items: center; gap: 5px; padding: 6px 12px 6px 8px; border-radius: 999px; background: rgba(255,255,255,.92); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); color: #1D2939; font-size: 11.5px; font-weight: 800; letter-spacing: .01em; box-shadow: 0 6px 16px -6px rgba(0,0,0,.35); }
.rent-op-official svg { width: 15px; height: 15px; }
.rent-op-body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.rent-op-logo { width: 54px; height: 54px; border-radius: 14px; object-fit: cover; border: 3px solid #fff; margin-top: -46px; background: #fff; position: relative; z-index: 1; box-shadow: 0 8px 20px -8px rgba(16,24,40,.4); }
.rent-op-name { font-size: 18px; font-weight: 800; color: #101828; margin: 2px 0 0; letter-spacing: -.01em; }
.rent-op-loc { font-size: 13px; color: #667085; display: inline-flex; align-items: center; gap: 5px; }
.rent-op-loc svg { width: 13px; height: 13px; stroke: #98A2B3; }
.rent-op-tagline { font-size: 13.5px; color: #667085; line-height: 1.55; margin: 6px 0 0; }

/* ── Star rating (shared partial) ───────────────────────────────────────── */
.rent-stars { display: inline-flex; align-items: center; gap: 1px; vertical-align: middle; }
.rent-stars svg { width: 15px; height: 15px; fill: #E4E7EC; }
.rent-stars svg.on { fill: #FBBF24; }
.rent-op-rating { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: #475467; margin-top: 1px; }
.rent-op-rating strong { color: #101828; font-weight: 700; }
.rent-op-rating span { color: #98A2B3; }
.rent-profile-rating { display: inline-flex; align-items: center; gap: 6px; }
.rent-profile-rating strong { color: #fff; }

/* ── Operator profile cover + video ─────────────────────────────────────── */
.rent-profile-video { position: relative; width: 100%; aspect-ratio: 16/9; border-radius: 14px; overflow: hidden; border: 1px solid #EAECF0; background: #000; }
.rent-profile-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ── Reviews on the operator profile ────────────────────────────────────── */
.rent-reviews-agg { font-size: 14px; font-weight: 600; color: #667085; display: inline-flex; align-items: center; gap: 6px; margin-left: 10px; }
.rent-reviews-empty { color: #667085; font-size: 14px; line-height: 1.6; max-width: 60ch; }
.rent-reviews { display: flex; flex-direction: column; gap: 16px; }
.rent-review { border: 1px solid #EAECF0; border-radius: 14px; padding: 18px 20px; background: #fff; }
.rent-review-top { display: flex; align-items: center; flex-wrap: wrap; gap: 8px 12px; margin-bottom: 8px; }
.rent-review-name { font-weight: 700; color: #101828; font-size: 14px; }
.rent-review-verified { font-size: 11.5px; font-weight: 700; color: #067647; background: #ECFDF3; border: 1px solid #A6F4C5; border-radius: 999px; padding: 2px 9px; }
.rent-review-date { font-size: 12.5px; color: #98A2B3; margin-left: auto; }
.rent-review-body { font-size: 14.5px; color: #344054; line-height: 1.6; margin: 0; white-space: pre-line; }
.rent-review-reply { margin-top: 12px; padding: 12px 14px; background: #F9FAFB; border-radius: 10px; border-left: 3px solid var(--hue-accent, #B49BF5); }
.rent-review-reply strong { font-size: 12.5px; color: #475467; display: block; margin-bottom: 4px; }
.rent-review-reply p { margin: 0; font-size: 13.5px; color: #475467; line-height: 1.55; }
.rent-review-report { margin-top: 10px; background: none; border: 0; padding: 0; min-height: 0; font-size: 12px; color: #98A2B3; cursor: pointer; text-decoration: underline; }
.rent-review-report:hover { color: #667085; }
.rent-review-report:disabled { cursor: default; text-decoration: none; }

/* ── Token-gated review form page ───────────────────────────────────────── */
.rent-review-page { background: #F9FAFB; min-height: 70vh; display: flex; align-items: flex-start; justify-content: center; padding: clamp(40px, 6vw, 88px) 20px; }
.rent-review-card { width: 100%; max-width: 560px; background: #fff; border: 1px solid #EAECF0; border-radius: 20px; padding: clamp(28px, 4vw, 44px); box-shadow: 0 1px 3px rgba(16,24,40,.04), 0 16px 40px -20px rgba(16,24,40,.14); }
.rent-review-card--center { text-align: center; }
.rent-review-eyebrow { font-size: 12px; font-weight: 700; color: #067647; background: #ECFDF3; border: 1px solid #A6F4C5; border-radius: 999px; padding: 4px 11px; display: inline-block; margin-bottom: 14px; }
.rent-review-h1 { font-family: var(--font-heading, 'Inter', sans-serif); font-size: clamp(26px, 3vw, 34px); font-weight: 800; letter-spacing: -.02em; color: #101828; margin: 0 0 10px; }
.rent-review-lead { font-size: 15px; line-height: 1.6; color: #667085; margin: 0 0 24px; }
.rent-review-err { background: #FEF3F2; border: 1px solid #FECDCA; color: #B42318; font-size: 13.5px; border-radius: 10px; padding: 10px 14px; margin-bottom: 18px; }
.rent-review-form { display: flex; flex-direction: column; }
.rent-review-label { font-size: 13px; font-weight: 700; color: #344054; margin-bottom: 8px; }
.rent-review-form textarea { width: 100%; box-sizing: border-box; border: 1px solid #D0D5DD; border-radius: 12px; padding: 12px 14px; font-size: 15px; font-family: inherit; color: #101828; resize: vertical; min-height: 110px; margin-bottom: 16px; }
.rent-review-form textarea:focus { outline: none; border-color: var(--hue-accent, #8C68D5); box-shadow: 0 0 0 3px rgba(140,104,213,.18); }
.rent-review-submit { display: inline-block; text-align: center; text-decoration: none; background: linear-gradient(135deg, #FF7A5C, #F43F5E); color: #fff; border: 0; border-radius: 12px; padding: 14px 22px; font-size: 15px; font-weight: 700; cursor: pointer; transition: filter .15s, transform .15s; }
.rent-review-submit:hover { filter: brightness(1.04); transform: translateY(-1px); color: #fff; }
.rent-review-fine { font-size: 12px; color: #98A2B3; text-align: center; margin: 14px 0 0; }
.rent-review-tick { width: 60px; height: 60px; border-radius: 50%; background: #ECFDF3; color: #16a34a; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.rent-review-tick svg { width: 30px; height: 30px; }
.rent-review-card--center .rent-review-submit { margin-top: 22px; }

/* Reverse-order star picker — :checked ~ later siblings (lower stars) fill. */
.rent-star-input { display: inline-flex; flex-direction: row-reverse; justify-content: flex-end; gap: 6px; margin-bottom: 22px; }
.rent-star-input input { position: absolute; opacity: 0; width: 0; height: 0; }
.rent-star-input label { cursor: pointer; line-height: 0; }
.rent-star-input label svg { width: 38px; height: 38px; fill: #E4E7EC; transition: fill .12s, transform .12s; }
.rent-star-input label:hover svg { transform: scale(1.08); }
.rent-star-input label:hover svg,
.rent-star-input label:hover ~ label svg,
.rent-star-input input:checked ~ label svg { fill: #FBBF24; }
.rent-star-input input:focus-visible + label svg { outline: 2px solid var(--hue-accent, #8C68D5); outline-offset: 2px; border-radius: 4px; }

/* Service tag chips (browse-by) */
.rent-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.rent-tag-pill { display: inline-flex; align-items: center; gap: 7px; padding: 10px 18px; border-radius: 999px; border: 1px solid #EAECF0; background: #fff; color: #344054; font-size: 14px; font-weight: 600; text-decoration: none; transition: border-color .15s, color .15s, background .15s; }
.rent-tag-pill:hover { border-color: var(--hue-accent, #7F56D9); color: var(--hue-accent, #7F56D9); background: color-mix(in srgb, var(--hue-accent,#7F56D9) 6%, #fff); }

/* ---------- Operator CTA band (get listed) ---------- */
.rent-operator-cta { background: var(--hue-base, #0B0420); position: relative; overflow: hidden; }
.rent-operator-cta::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 50% 60% at 80% 30%, color-mix(in srgb, var(--hue-radial-a,#8E68D5) 26%, transparent), transparent 65%); }
.rent-operator-w { position: relative; z-index: 1; max-width: var(--hdr-container-max, 1280px); margin: 0 auto; padding: clamp(64px, 7vw, 104px) var(--hdr-px, 24px); display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(36px, 5vw, 64px); align-items: center; }
.rent-operator-copy h2 { font-family: var(--font-heading, 'Inter', sans-serif); font-size: clamp(28px, 3.4vw, 42px); font-weight: 800; color: #fff; letter-spacing: -.025em; margin: 0 0 16px; text-wrap: balance; }
.rent-operator-copy h2 em { font-style: normal; background: linear-gradient(135deg, #B49BF5, #FF9E88); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.rent-operator-copy > p { font-size: 16px; line-height: 1.6; color: rgba(255,255,255,.72); margin: 0 0 24px; max-width: 50ch; }
.rent-operator-btns { display: flex; flex-wrap: wrap; gap: 14px; }
.rent-btn-primary { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 28px; border-radius: 12px; background: linear-gradient(135deg, var(--c-cta-from, #FF7A5C), var(--c-cta-to, #F43F5E)); color: #fff; font-weight: 700; font-size: 15px; text-decoration: none; box-shadow: 0 16px 30px -14px rgba(244,63,94,.5); transition: transform .15s, box-shadow .15s; }
.rent-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 20px 38px -14px rgba(244,63,94,.6); color: #fff; }
.rent-btn-ghost { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 26px; border-radius: 12px; background: transparent; border: 1px solid rgba(255,255,255,.28); color: #fff; font-weight: 700; font-size: 15px; text-decoration: none; transition: border-color .15s, background .15s; }
.rent-btn-ghost:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.06); color: #fff; }
.rent-benefits { display: grid; gap: 14px; }
.rent-benefit { display: flex; gap: 14px; align-items: flex-start; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: 14px; padding: 16px 18px; }
.rent-benefit-icon { flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.08); }
.rent-benefit-icon svg { width: 20px; height: 20px; stroke: #B49BF5; }
.rent-benefit-t { color: #fff; font-size: 14.5px; font-weight: 700; margin: 0 0 3px; }
.rent-benefit-d { color: rgba(255,255,255,.62); font-size: 13px; line-height: 1.5; margin: 0; }

/* ---------- Reseller tier cards ---------- */
.rent-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.rent-tier { display: flex; flex-direction: column; background: #fff; border: 1px solid #EAECF0; border-radius: 18px; padding: 30px 26px; position: relative; box-shadow: 0 1px 3px rgba(16,24,40,.04), 0 10px 28px -14px rgba(16,24,40,.08); }
.rent-tier--featured { border-color: color-mix(in srgb, var(--hue-accent,#7F56D9) 40%, #EAECF0); box-shadow: 0 20px 44px -20px color-mix(in srgb, var(--hue-accent,#7F56D9) 40%, transparent); }
.rent-tier-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--c-cta-from,#FF7A5C), var(--c-cta-to,#F43F5E)); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .04em; padding: 5px 14px; border-radius: 999px; text-transform: uppercase; }
.rent-tier-name { font-size: 18px; font-weight: 800; color: #101828; margin: 0 0 6px; letter-spacing: -.01em; }
.rent-tier-disc { font-family: var(--font-heading,'Inter',sans-serif); font-size: 40px; font-weight: 900; color: #101828; line-height: 1; margin: 8px 0 2px; letter-spacing: -.03em; }
.rent-tier-disc span { background: linear-gradient(135deg, var(--hue-emph-from,#ED4D6D), var(--hue-emph-to,#FBD065)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.rent-tier-disc small { font-size: 14px; font-weight: 600; color: #667085; -webkit-text-fill-color: #667085; }
.rent-tier-min { font-size: 13px; color: #667085; margin: 0 0 18px; }
.rent-tier-earn { background: #ECFDF3; border: 1px solid #A6F4C5; border-radius: 12px; padding: 12px 14px; margin: 0 0 18px; }
.rent-tier-earn-v { display: block; font-size: 22px; font-weight: 800; color: #067647; letter-spacing: -.01em; }
.rent-tier-earn-l { display: block; font-size: 12px; color: #475467; line-height: 1.4; margin-top: 2px; }
.rent-tier--featured .rent-tier-earn { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.22); }
.rent-tier--featured .rent-tier-earn-v { color: #6CE9A6; }
.rent-tier--featured .rent-tier-earn-l { color: rgba(255,255,255,.72); }
.rent-tier-perks { list-style: none; margin: 0 0 22px; padding: 0; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.rent-tier-perks li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: #344054; line-height: 1.45; }
.rent-tier-perks li svg { flex-shrink: 0; width: 17px; height: 17px; stroke: var(--hue-accent,#7F56D9); margin-top: 1px; }

/* Reseller balance / dashboard stat tiles */
.rsl-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: 16px; }
.rsl-stat { background: #fff; border: 1px solid #EAECF0; border-radius: 14px; padding: 18px 20px; }
.rsl-stat-v { font-size: 26px; font-weight: 800; color: #101828; letter-spacing: -.02em; }
.rsl-stat-l { font-size: 13px; color: #667085; margin-top: 2px; }

/* ---------- FAQ — the canonical .hx-faq component (byte-identical to the
   landings / shop PDP FAQ; native <details>, two columns, circled chevron) ---- */
.shop-faq-w { max-width: none; margin: 0; }
.shop-faq-head { margin-bottom: 24px; text-align: left; }
.shop-faq-head h2 { font-family: 'Inter', sans-serif; font-size: clamp(28px, 3.4vw, 48px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.12; color: #101828; margin: 0; }
.hx-faq { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; align-items: start; }
.hx-faq-col { display: flex; flex-direction: column; gap: 12px; }
@media (max-width: 768px) { .hx-faq { grid-template-columns: 1fr; } }
.hx-faq-item { background: #fff; border: 1px solid #EAECF0; border-radius: 14px; overflow: hidden; transition: border-color .14s; }
.hx-faq-item[open] { border-color: rgba(127, 86, 217, .3); }
.hx-faq-item summary { list-style: none; cursor: pointer; padding: 20px 24px; font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 700; color: #101828; display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 44px; }
.hx-faq-item summary::-webkit-details-marker { display: none; }
.hx-faq-item summary::after { content: ''; width: 20px; height: 20px; background: #F4F5F7; border-radius: 50%; flex-shrink: 0; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23667085' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>"); background-size: 12px; background-position: center; background-repeat: no-repeat; transition: transform .14s; }
.hx-faq-item[open] summary::after { transform: rotate(180deg); }
.hx-faq-body { padding: 0 24px 22px; font-size: 14.5px; line-height: 1.65; color: #667085; }
.hx-faq-body a { color: var(--c-cta-to, #F43F5E); font-weight: 600; }

/* ---------- Empty state ---------- */
.rent-empty { text-align: center; padding: 40px 24px; color: #667085; border: 1px dashed #D0D5DD; border-radius: 16px; background: #fff; }
.rent-empty h3 { font-size: 18px; font-weight: 700; color: #101828; margin: 0 0 6px; }
.rent-empty p { font-size: 14.5px; margin: 0 0 16px; }

/* ---------- Profile page ---------- */
/* Same aurora treatment as the /photo-booth-rental landing hero: cover image blended
   (luminosity, .5) over the page-rent base, with radial accents fading to the base. */
.rent-profile-hero { background: var(--hue-base, #0B0420); position: relative; overflow: hidden; min-height: 380px; display: flex; }
.rent-profile-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center right; opacity: .5; mix-blend-mode: luminosity; z-index: 0; }
.rent-profile-hero::after {
    content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background:
        radial-gradient(ellipse 70% 60% at 50% 22%, color-mix(in srgb, var(--hue-radial-a, #8E68D5) 42%, transparent) 0%, transparent 72%),
        radial-gradient(ellipse 60% 50% at 12% 78%, color-mix(in srgb, var(--hue-radial-b, #C36AB8) 24%, transparent) 0%, transparent 68%),
        radial-gradient(ellipse 50% 40% at 88% 62%, color-mix(in srgb, var(--hue-radial-c, #7945D5) 16%, transparent) 0%, transparent 65%),
        linear-gradient(180deg, color-mix(in srgb, var(--hue-base, #0B0420) 45%, transparent) 0%, var(--hue-base, #0B0420) 100%);
}
.rent-profile-w { position: relative; z-index: 2; width: 100%; align-self: flex-end; max-width: var(--hdr-container-max, 1280px); margin: 0 auto; padding: clamp(108px, 11vw, 140px) var(--hdr-px, 24px) clamp(32px, 4vw, 44px); }
/* "Official" verified-seal badge (matches the operator card) — inline in the meta row. */
.rent-profile-badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px 5px 8px; border-radius: 999px; background: rgba(255,255,255,.92); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); color: #1D2939; font-size: 12px; font-weight: 800; letter-spacing: .01em; box-shadow: 0 6px 16px -6px rgba(0,0,0,.4); }
.rent-profile-badge svg { width: 15px; height: 15px; }
.rent-profile-crumb { font-size: 13px; color: rgba(255,255,255,.7); margin-bottom: 18px; }
.rent-profile-crumb a { color: rgba(255,255,255,.85); text-decoration: none; }
.rent-profile-id { display: flex; align-items: flex-end; gap: 20px; flex-wrap: wrap; }
.rent-profile-logo { width: 88px; height: 88px; border-radius: 18px; object-fit: cover; border: 3px solid #fff; background: #fff; box-shadow: 0 10px 28px -10px rgba(0,0,0,.55); }
.rent-profile-name { font-family: var(--font-heading, 'Inter', sans-serif); font-size: clamp(30px, 3.6vw, 46px); font-weight: 900; color: #fff; letter-spacing: -.022em; margin: 0 0 14px; line-height: 1.05; text-shadow: 0 2px 12px rgba(0,0,0,.35); }
.rent-profile-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 16px; color: rgba(255,255,255,.9); font-size: 14.5px; }
.rent-profile-meta span { display: inline-flex; align-items: center; gap: 6px; }
.rent-profile-layout { max-width: var(--hdr-container-max, 1280px); margin: 0 auto; padding: clamp(40px, 5vw, 64px) var(--hdr-px, 24px); display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: clamp(36px, 4.5vw, 64px); align-items: start; }
.rent-profile-main { display: flex; flex-direction: column; gap: clamp(34px, 4vw, 48px); }
.rent-pblock { margin: 0; }
/* Intro block: tagline acts as the title, About text as the body (no "About" label). */
.rent-profile-lead { font-size: clamp(21px, 2vw, 27px); font-weight: 700; line-height: 1.32; color: #101828; letter-spacing: -.02em; margin: 0 0 14px; text-wrap: balance; }
.rent-profile-intro .rent-profile-about { margin: 0; }
.rent-profile-about { font-size: 16px; line-height: 1.75; color: #475467; max-width: 68ch; }
.rent-profile-section-t { font-size: clamp(20px, 1.8vw, 23px); font-weight: 800; color: #101828; margin: 0 0 18px; letter-spacing: -.015em; display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.rent-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 0; }
.rent-gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 12px; cursor: zoom-in; transition: transform .2s, box-shadow .2s; }
.rent-gallery img:hover { transform: scale(1.02); box-shadow: 0 10px 24px -12px rgba(16,24,40,.4); }

/* Colored experience pills (subscription-aligned) on the operator profile. */
.rent-profile-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.rent-pill { display: inline-flex; align-items: center; padding: 7px 14px; border-radius: 999px; font-size: 13px; font-weight: 700; text-decoration: none; border: 1px solid transparent; transition: transform .15s, filter .15s; }
.rent-pill:hover { transform: translateY(-1px); filter: brightness(1.02); }
.rent-pill--pb { background: #F4F3FF; color: #6941C6; border-color: #E9D7FE; }
.rent-pill--mosaic { background: #EFF8FF; color: #175CD3; border-color: #B2DDFF; }
.rent-pill--draw { background: #ECFDF3; color: #067647; border-color: #A6F4C5; }

/* Gallery lightbox */
/* Gallery lightbox is now the site-wide primitive — see wwwroot/css/lightbox.css + js/lightbox.js. */
.rent-profile-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.rent-contact-card { position: sticky; top: 100px; background: #fff; border: 1px solid #EAECF0; border-radius: 18px; padding: 26px; box-shadow: 0 1px 3px rgba(16,24,40,.04), 0 16px 40px -24px rgba(16,24,40,.16); }
.rent-contact-card h3 { font-size: 18px; font-weight: 800; color: #101828; margin: 0 0 14px; letter-spacing: -.01em; }
.rent-contact-rating { display: flex; align-items: center; gap: 7px; font-size: 14px; color: #667085; margin: 0 0 16px; }
.rent-contact-rating strong { color: #101828; font-size: 16px; font-weight: 800; }
.rent-contact-cta { display: inline-flex; width: 100%; box-sizing: border-box; align-items: center; justify-content: center; min-height: 52px; border-radius: 12px; background: linear-gradient(135deg, var(--c-cta-from, #FF7A5C), var(--c-cta-to, #F43F5E)); color: #fff; font-weight: 700; font-size: 15px; text-decoration: none; transition: filter .15s, transform .15s; }
.rent-contact-cta:hover { filter: brightness(1.04); transform: translateY(-1px); color: #fff; }
.rent-contact-note { font-size: 12.5px; color: #667085; text-align: center; margin: 10px 0 0; line-height: 1.5; }
.rent-contact-row { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid #F2F4F7; font-size: 14px; color: #344054; text-decoration: none; }
.rent-contact-row:first-of-type { border-top: 1px solid #F2F4F7; margin-top: 18px; }
.rent-contact-row svg { width: 18px; height: 18px; stroke: var(--hue-accent, #7F56D9); flex-shrink: 0; }
.rent-contact-row a { color: var(--hue-accent, #7F56D9); text-decoration: none; }
.rent-contact-powered { font-size: 12px; color: #98A2B3; text-align: left; margin: 18px 0 0; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .rent-hero-w { grid-template-columns: 1fr; gap: 32px; }
    .rent-operator-w { grid-template-columns: 1fr; }
    .rent-profile-layout { grid-template-columns: 1fr; }
    .rent-contact-card { position: static; }
    .rent-steps { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .rent-form-row { grid-template-columns: 1fr; }
    /* Gallery becomes a swipeable horizontal rail on mobile. */
    .rent-gallery { display: flex; grid-template-columns: none; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; gap: 10px; margin: 0 calc(-1 * var(--hdr-px, 24px)); padding: 0 var(--hdr-px, 24px); }
    .rent-gallery::-webkit-scrollbar { display: none; }
    .rent-gallery img { flex: 0 0 72%; scroll-snap-align: start; }
}
