* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.host-app,
body.host-landing {
    width: 100%;
    max-width: none !important;
    min-height: 100svh;
    height: auto;
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--ink);
    background: #f8f5f2;
    font-family: var(--font-ui);
    font-size: 15px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

body.host-app [hidden] {
    display: none !important;
}

.host-app *,
.host-landing * {
    font-family: var(--font-ui);
}

.host-app * {
    -webkit-user-select: auto;
    user-select: auto;
}

.host-app strong,
.host-app b,
.host-app h1,
.host-app h2,
.host-app h3 {
    font-weight: 700;
}

.host-app input,
.host-app select,
.host-app textarea {
    user-select: text;
}

.host-app a,
.host-landing a {
    color: inherit;
    text-decoration: none;
}

.host-app button,
.host-app input,
.host-app select,
.host-app textarea,
.host-landing button {
    font: inherit;
}

.host-app button,
.host-app a,
.host-landing button,
.host-landing a {
    -webkit-tap-highlight-color: transparent;
}

.host-app :focus-visible,
.host-landing :focus-visible {
    outline: 3px solid rgba(142, 23, 79, .24);
    outline-offset: 3px;
}

.skip-link {
    position: fixed;
    inset: 8px auto auto 50%;
    z-index: 1000000;
    transform: translate(-50%, -150%);
    border-radius: 12px;
    padding: 10px 16px;
    color: #fff !important;
    background: var(--brand);
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translate(-50%, 0);
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.host-guest-switch {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    margin: 14px 18px 20px;
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 13px;
    color: rgba(255,255,255,.92);
    font-size: 12px;
    font-weight: 700;
    transition: background .18s ease, border-color .18s ease;
}

.host-guest-switch:hover {
    border-color: rgba(255,255,255,.32);
    background: rgba(255,255,255,.08);
}

.host-guest-switch svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.host-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: -.1px;
}

.host-eyebrow::before {
    width: 20px;
    height: 2px;
    content: "";
    background: currentColor;
}

/* Public host landing */
.host-landing {
    background: #fff;
}

.host-landing__header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 20;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 48px;
    width: min(1320px, calc(100% - 72px));
    min-height: 92px;
    margin: auto;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .22);
}

.host-landing__brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 44px;
}

.host-landing__brand img { width: 38px; height: 38px; filter: brightness(0) invert(1); }
.host-landing__brand strong { font: 700 21px/1 var(--font-display); }

.host-landing__brand span {
    padding-right: 12px;
    border-right: 1px solid rgba(255,255,255,.42);
    font-size: 13px;
}

.host-landing__header nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.host-landing__header nav a,
.host-landing__login {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
}

.host-landing__login {
    justify-content: center;
    min-width: 112px;
    padding: 0 18px;
    border: 1px solid rgba(255,255,255,.52);
    border-radius: 12px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(10px);
}

.host-hero {
    position: relative;
    min-height: min(800px, 100svh);
    display: flex;
    align-items: center;
    isolation: isolate;
    overflow: hidden;
    color: #fff;
    background: #25161d;
}

.host-hero__photo,
.host-hero__shade {
    position: absolute;
    inset: 0;
}

.host-hero__photo {
    z-index: -3;
    background-image: url("../../img/guest/home-hero-full-v1.webp");
    background-position: center 56%;
    background-size: cover;
    transform: scale(1.01);
}

.host-hero__shade {
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(24,11,17,.08) 0%, rgba(24,11,17,.38) 48%, rgba(24,11,17,.88) 100%),
        linear-gradient(0deg, rgba(22,9,15,.3), transparent 45%);
}

.host-hero__content {
    width: min(1320px, calc(100% - 72px));
    margin: 74px auto 0;
}

.host-hero .host-eyebrow {
    color: #f9d8c7;
}

.host-hero__content h1 {
    max-width: 680px;
    margin: 18px 0 18px;
    font: 700 clamp(46px, 5.3vw, 78px)/1.2 var(--font-display);
    letter-spacing: -2.6px;
}

.host-hero__content p {
    max-width: 600px;
    margin: 0;
    color: rgba(255,255,255,.86);
    font-size: 17px;
    line-height: 2;
}

.host-hero__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}

.host-hero__primary,
.host-hero__secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 14px;
    font-weight: 700;
}

.host-hero__primary {
    color: var(--brand) !important;
    background: #fff;
    box-shadow: 0 14px 35px rgba(0,0,0,.18);
}

.host-hero__secondary {
    border: 1px solid rgba(255,255,255,.5);
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
}

.host-hero__proof {
    display: flex;
    gap: 28px;
    margin-top: 34px;
    color: rgba(255,255,255,.78);
    font-size: 13px;
}

.host-hero__proof span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.host-hero__proof svg {
    width: 18px;
    fill: none;
    stroke: #f9d8c7;
    stroke-width: 2;
}

.host-landing-section {
    width: min(1160px, calc(100% - 48px));
    margin: 0 auto;
    padding: 112px 0;
}

.host-section-heading {
    max-width: 650px;
    margin: 0 auto 54px;
    text-align: center;
}

.host-section-heading > span {
    color: var(--brand);
    font-weight: 700;
    font-size: 13px;
}

.host-section-heading h2,
.host-benefits__content h2 {
    margin: 10px 0 12px;
    font: 700 clamp(32px, 3.6vw, 50px)/1.35 var(--font-display);
    letter-spacing: -1.2px;
}

.host-section-heading p {
    margin: 0;
    color: var(--muted);
}

.host-steps__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.host-steps__grid article {
    min-height: 230px;
    padding: 28px;
    border: 1px solid #eadfe3;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 16px 45px rgba(63,29,42,.05);
}

.host-steps__grid b {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    color: var(--brand);
    border-radius: 14px;
    background: var(--tint);
    font: 700 18px var(--font-display);
}

.host-steps__grid h3 {
    margin: 38px 0 8px;
    font: 700 19px var(--font-display);
}

.host-steps__grid p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.host-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 96px;
    width: 100%;
    max-width: none;
    padding-right: max(48px, calc((100% - 1160px)/2));
    padding-left: max(48px, calc((100% - 1160px)/2));
    color: #fff;
    background: #30131f;
}

.host-benefits__visual {
    position: relative;
    min-height: 430px;
    border-radius: 32px;
    background:
        radial-gradient(circle at 28% 18%, rgba(217,109,78,.35), transparent 35%),
        linear-gradient(145deg, #5d1735, #220e16);
    overflow: hidden;
}

.host-benefits__visual::before,
.host-benefits__visual::after {
    position: absolute;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50%;
    content: "";
}

.host-benefits__visual::before {
    width: 380px;
    height: 380px;
    inset: -140px -120px auto auto;
}

.host-benefits__visual::after {
    width: 220px;
    height: 220px;
    inset: auto auto -90px -50px;
}

.host-benefits__card {
    position: absolute;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 22px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(18px);
    box-shadow: 0 25px 60px rgba(0,0,0,.2);
}

.host-benefits__card--main {
    inset: 68px 48px auto;
    padding: 28px;
}

.host-benefits__card span {
    display: block;
    color: rgba(255,255,255,.68);
    font-size: 13px;
}

.host-benefits__card strong {
    display: block;
    margin-top: 8px;
    font: 700 28px var(--font-display);
}

.host-benefits__card--main div {
    height: 120px;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin-top: 24px;
}

.host-benefits__card--main i {
    flex: 1;
    height: 35%;
    border-radius: 5px 5px 0 0;
    background: linear-gradient(#f6b99e, #d96d4e);
}

.host-benefits__card--main i:nth-child(2) { height: 54%; }
.host-benefits__card--main i:nth-child(3) { height: 42%; }
.host-benefits__card--main i:nth-child(4) { height: 72%; }
.host-benefits__card--main i:nth-child(5) { height: 64%; }
.host-benefits__card--main i:nth-child(6) { height: 86%; }
.host-benefits__card--main i:nth-child(7) { height: 76%; }

.host-benefits__card--small {
    inset: auto 84px 36px auto;
    min-width: 170px;
    padding: 18px 22px;
    background: rgba(255,255,255,.92);
    color: var(--ink);
}

.host-benefits__card--small span { color: var(--muted); }
.host-benefits__card--small strong { color: var(--brand); }

.host-benefits__content .host-eyebrow { color: #f0ad92; }
.host-benefits__content h2 { max-width: 520px; }
.host-benefits__content ul { padding: 0; margin: 32px 0; list-style: none; }
.host-benefits__content li { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.host-benefits__content li svg { width: 24px; height: 24px; flex: 0 0 24px; fill: none; stroke: #f0ad92; stroke-width: 1.7; }
.host-benefits__content li strong,
.host-benefits__content li span { display: block; }
.host-benefits__content li strong { font: 600 16px var(--font-display); }
.host-benefits__content li span { margin-top: 3px; color: rgba(255,255,255,.62); font-size: 13px; }
.host-benefits__content > a { display: inline-flex; align-items: center; gap: 10px; color: #f7c8b3; font-weight: 700; }

.host-landing-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    width: min(1160px, calc(100% - 48px));
    margin: 96px auto;
    padding: 42px 48px;
    border-radius: 28px;
    color: #fff;
    background: linear-gradient(120deg, var(--brand), #5e0d35);
    box-shadow: 0 24px 65px rgba(110,16,60,.2);
}

.host-landing-cta span { color: #f4c9da; font-size: 13px; }
.host-landing-cta h2 { margin: 5px 0 0; font: 700 27px/1.5 var(--font-display); }
.host-landing-cta a { display: inline-flex; align-items: center; justify-content: center; min-width: 180px; min-height: 52px; padding: 0 22px; border-radius: 14px; color: var(--brand); background: #fff; font-weight: 700; }

.host-landing__footer {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    width: min(1160px, calc(100% - 48px));
    margin: 0 auto;
    padding: 30px 0 40px;
    border-top: 1px solid #eadfe3;
    color: var(--muted);
    font-size: 13px;
}

.host-landing__brand--footer { color: var(--ink); }
.host-landing__brand--footer img { width: 34px; height: 34px; filter: none; }
.host-landing__brand--footer strong { font-size: 19px; }
.host-landing__footer p { margin: 0; }
.host-landing__footer a { color: var(--brand); font-weight: 700; }

/* Authenticated host shell */
.host-shell {
    display: grid;
    grid-template-columns: 264px minmax(0, 1fr);
    min-height: 100svh;
}

.host-sidebar {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 30;
    width: 264px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,.2) transparent;
    padding: 28px 20px 24px;
    color: #fff;
    background:
        radial-gradient(circle at 25% 8%, rgba(217,109,78,.18), transparent 26%),
        linear-gradient(175deg, #3a1424 0%, #260f19 100%);
}

.host-brand {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 52px;
    padding: 0 8px 20px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.host-brand img { width: 38px; height: 38px; filter: brightness(0) invert(1); }
.host-brand strong { font: 700 18px/1 var(--font-display); }
.host-brand span { padding-right: 10px; border-right: 1px solid rgba(255,255,255,.25); color: rgba(255,255,255,.62); font-size: 11px; }

.host-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 26px;
}

.host-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 50px;
    padding: 0 13px;
    border-radius: 13px;
    color: rgba(255,255,255,.65);
    font-size: 13px;
    font-weight: 600;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.host-nav a:hover,
.host-nav a.active {
    color: #fff;
    background: rgba(255,255,255,.1);
}

.host-nav a:hover { transform: translateX(-2px); }

.host-nav__icon {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
}

.host-nav__icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.65;
}

.host-sidebar__support {
    margin-top: auto;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 17px;
    background: rgba(255,255,255,.06);
}

.host-sidebar__support span,
.host-sidebar__support strong,
.host-sidebar__support a { display: block; }
.host-sidebar__support span { color: rgba(255,255,255,.5); font-size: 11px; }
.host-sidebar__support strong { margin: 3px 0 14px; font: 600 14px var(--font-display); }
.host-sidebar__support a { color: #efb397; direction: ltr; text-align: right; font-family: var(--font-numeric); font-size: 13px; }

.host-workspace {
    grid-column: 2;
    min-width: 0;
}

.host-topbar {
    position: sticky;
    top: 0;
    z-index: 25;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    min-height: 76px;
    padding: 0 clamp(24px, 4vw, 56px);
    border-bottom: 1px solid rgba(220,205,211,.8);
    background: rgba(248,245,242,.92);
    backdrop-filter: blur(18px);
}

.host-mobile-navigation { display: none; }
.host-topbar__title { min-width: 0; }
.host-topbar__title > .title { font: 700 18px var(--font-display); }
.host-topbar__actions { display: flex; align-items: center; gap: 10px; }

.host-support-link,
.host-primary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
}

.host-support-link { color: var(--muted) !important; }
.host-primary-link { gap: 7px; color: #fff !important; background: var(--brand); box-shadow: 0 8px 20px rgba(142,23,79,.16); }
.host-primary-link svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }

.host-main {
    width: 100%;
    min-height: calc(100svh - 76px);
    padding: clamp(24px, 4vw, 48px);
}

.host-loading {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: var(--muted);
    background: #f8f5f2;
    font-size: 12px;
}

.host-loading img { animation: hostPulse 1.2s ease-in-out infinite alternate; }

@keyframes hostPulse {
    from { opacity: .55; transform: scale(.94); }
    to { opacity: 1; transform: scale(1); }
}

.host-page-title {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.host-page-title > div { min-width: 0; }
.host-page-title span,
.host-page-title strong { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.host-page-title span { color: var(--muted); font-size: 12px; }
.host-page-title strong { font: 700 16px var(--font-display); }
.host-back { display: grid; place-items: center; width: 42px; height: 42px; flex: 0 0 42px; border: 1px solid var(--border); border-radius: 12px; background: #fff; }
.host-back svg { width: 20px; fill: none; stroke: var(--ink); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.host-button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 0;
    border-radius: 13px;
    cursor: pointer;
    font-weight: 700;
}

.host-button--primary { color: #fff !important; background: var(--brand); box-shadow: 0 10px 24px rgba(142,23,79,.14); }
.host-button--primary:hover { background: var(--brand-dark); }
.host-button--secondary { color: var(--ink) !important; border: 1px solid var(--border); background: #fff; }
.host-button:disabled { cursor: wait; opacity: .62; }

/* Registration wizard */
.host-onboarding {
    display: grid;
    grid-template-columns: 290px minmax(0, 760px);
    justify-content: center;
    align-items: start;
    gap: clamp(28px, 4vw, 64px);
    max-width: 1160px;
    margin: 0 auto;
}

.host-onboarding__aside {
    position: sticky;
    top: 108px;
    padding: 28px;
    border: 1px solid #eadfe3;
    border-radius: 24px;
    background: linear-gradient(160deg, #fff, #fcf7f5);
    box-shadow: 0 18px 50px rgba(69,25,43,.06);
}

.host-onboarding__aside h1 {
    margin: 10px 0 8px;
    font: 700 25px/1.5 var(--font-display);
    letter-spacing: -.5px;
}

.host-onboarding__aside > p { margin: 0; color: var(--muted); font-size: 12px; }

.host-progress {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 26px 0 20px;
    padding: 0;
    list-style: none;
}

.host-progress::before {
    position: absolute;
    inset: 21px 20px 21px auto;
    width: 1px;
    content: "";
    background: #e5d8dd;
}

.host-progress li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    color: #9b9095;
}

.host-progress li b {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border: 1px solid #ded1d6;
    border-radius: 50%;
    background: #fff;
    font-family: var(--font-numeric);
    font-size: 12px;
}

.host-progress li strong,
.host-progress li small { display: block; }
.host-progress li strong { font-size: 13px; }
.host-progress li small { font-size: 11px; }
.host-progress li.active,
.host-progress li.done { color: var(--ink); }
.host-progress li.active b { color: #fff; border-color: var(--brand); background: var(--brand); box-shadow: 0 0 0 5px var(--tint); }
.host-progress li.done b { color: var(--brand); border-color: #d7aabe; background: #fbf2f6; }

.host-draft-state {
    display: flex;
    align-items: center;
    gap: 9px;
    padding-top: 16px;
    border-top: 1px solid #eadfe3;
    color: var(--muted);
    font-size: 12px;
}
.host-draft-state svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.host-draft-state.saved { color: var(--success); }

.host-onboarding__form {
    position: relative;
    min-width: 0;
    padding: clamp(26px, 4vw, 46px);
    padding-bottom: 116px;
    border: 1px solid #eadfe3;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 20px 55px rgba(69,25,43,.06);
}

.host-step__header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #eee4e7;
}
.host-step__header > span { color: var(--brand); font-size: 12px; font-weight: 700; }
.host-step__header h2 { margin: 6px 0 6px; font: 700 clamp(24px, 3vw, 32px)/1.45 var(--font-display); letter-spacing: -.6px; }
.host-step__header p { margin: 0; color: var(--muted); font-size: 14px; }

.host-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 18px;
}
.host-field--full { grid-column: 1 / -1; }

.host-field > label,
.host-choice-field legend,
.host-rules legend,
.host-rules > label {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 7px;
    color: #3b3538;
    font-size: 13px;
    font-weight: 700;
}

.host-field label em,
.host-choice-field legend em { color: var(--brand); font-size: 11px; font-style: normal; font-weight: 500; }
.host-field label > span { color: var(--muted); font-size: 10px; font-weight: 500; }

.host-field input,
.host-field select,
.host-field textarea,
.host-rules > input {
    width: 100%;
    min-height: 50px;
    margin: 0;
    padding: 0 14px;
    color: var(--ink);
    border: 1px solid #ded3d7;
    border-radius: 12px;
    outline: 0;
    background: #fff;
    font-size: 16px;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.host-field textarea { min-height: 108px; padding-block: 12px; resize: vertical; }
.host-field input:hover,
.host-field select:hover,
.host-field textarea:hover { border-color: #c6b4bb; }
.host-field input:focus,
.host-field select:focus,
.host-field textarea:focus,
.host-rules > input:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(142,23,79,.09); }
.host-field input::placeholder,
.host-field textarea::placeholder { color: #aaa0a4; }
.host-field > small { display: block; margin-top: 6px; color: var(--muted); font-size: 11px; }
.host-field__meta { display: flex; justify-content: space-between; gap: 12px; margin-top: 6px; color: var(--muted); font-family: var(--font-numeric); font-size: 11px; }
.host-search-select { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: 8px; }
.host-field .host-search-select > input[type="search"] { min-height: 50px; padding-inline: 12px; background: #faf7f5; font-size: 13px; }
.host-search-select > select { min-width: 0; }
.host-search-select > input:disabled,
.host-search-select > select:disabled { cursor: not-allowed; opacity: .55; background: #f3efed; }
.field-error { display: none; margin-top: 5px; color: var(--danger); font-size: 12px; }
.host-field.has-error .field-error,
.host-choice-field.has-error .field-error,
.host-upload.has-error .field-error,
.host-review-card.has-error > .field-error { display: block; }
.host-field.has-error input,
.host-field.has-error select,
.host-field.has-error textarea { border-color: var(--danger); background: #fffafb; }

.host-choice-field,
.host-amenities,
.host-rules { min-width: 0; margin: 0; padding: 0; border: 0; }
.host-choice-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.host-choice-grid label,
.host-segmented label { position: relative; min-width: 0; cursor: pointer; }
.host-choice-grid input,
.host-segmented input,
.host-amenities input,
.host-rules input,
.host-review-card input { position: absolute; opacity: 0; pointer-events: none; }
.host-choice-grid label > span,
.host-segmented label > span { display: flex; align-items: center; justify-content: center; min-height: 48px; padding: 8px 10px; border: 1px solid #ded3d7; border-radius: 12px; color: var(--muted); background: #fff; font-size: 13px; text-align: center; transition: all .18s ease; }
.host-choice-grid input:checked + span,
.host-segmented input:checked + span { color: var(--brand); border-color: var(--brand); background: #fbf3f7; box-shadow: inset 0 0 0 1px var(--brand); font-weight: 700; }
.host-choice-grid input:focus-visible + span,
.host-segmented input:focus-visible + span,
.host-amenities input:focus-visible ~ strong,
.host-rules input:focus-visible + span,
.host-review-card input:focus-visible + span { outline: 3px solid rgba(142,23,79,.2); outline-offset: 2px; }
.host-segmented { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }

.host-input-unit { position: relative; }
.host-input-unit input { padding-left: 70px; font-family: var(--font-numeric); }
.host-input-unit span { position: absolute; inset: 50% auto auto 12px; transform: translateY(-50%); color: var(--muted); font-size: 12px; }

.host-location-card {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 8px 18px;
    padding: 18px;
    border: 1px dashed #cdb9c0;
    border-radius: 16px;
    background: #fcf8f6;
}
.host-location-card > div { display: flex; align-items: center; gap: 12px; }
.host-location-card svg { width: 25px; height: 25px; fill: none; stroke: var(--brand); stroke-width: 1.7; }
.host-location-card strong,
.host-location-card small { display: block; }
.host-location-card strong { font-size: 13px; }
.host-location-card small { color: var(--muted); font-size: 11px; }
.host-location-card button { min-height: 44px; padding: 0 14px; color: var(--brand); border: 1px solid #d6afc0; border-radius: 11px; background: #fff; cursor: pointer; font-size: 12px; font-weight: 700; }
.host-location-card p { grid-column: 1 / -1; margin: 0; color: var(--muted); font-size: 11px; }
.host-location-card.located { border-color: var(--color-success-border); background: var(--color-success-surface); }
.host-location-card.located p { color: var(--success); }

.host-amenities { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.host-amenities label { position: relative; display: grid; grid-template-columns: 44px 1fr; align-items: center; gap: 0 11px; min-height: 82px; padding: 14px; border: 1px solid #e3d9dc; border-radius: 15px; cursor: pointer; transition: border-color .18s ease, background .18s ease; }
.host-amenities label:has(input:checked) { border-color: #c990a9; background: #fcf3f7; }
.host-amenity-icon { grid-row: 1 / 3; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; color: var(--muted); background: #f4efec; }
.host-amenity-icon svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.host-amenities input:checked + .host-amenity-icon { color: #fff; background: var(--brand); }
.host-amenities strong { align-self: end; font-size: 13px; }
.host-amenities small { align-self: start; color: var(--muted); font-size: 11px; }
.host-amenity-toolbar { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 6px 16px; margin-bottom: 22px; }
.host-amenity-toolbar label { grid-column: 1 / -1; font-size: 12px; font-weight: 700; }
.host-amenity-toolbar input { min-height: 50px; padding: 0 15px; border: 1px solid #ded3d7; border-radius: 13px; background: #fff; font: 13px var(--font-body); }
.host-amenity-toolbar input:focus { outline: 3px solid rgba(142,23,79,.14); border-color: var(--brand); }
.host-amenity-toolbar span { color: var(--muted); font-size: 11px; white-space: nowrap; }
.host-amenity-categories { display: grid; gap: 24px; }
.host-amenity-category { min-width: 0; margin: 0; padding: 0; border: 0; }
.host-amenity-category legend { width: 100%; margin-bottom: 10px; color: var(--ink); font: 700 15px var(--font-display); }
.host-amenity-category[hidden],
.host-amenities label[hidden] { display: none; }
.host-room-amenities { margin-top: 30px; padding-top: 26px; border-top: 1px solid #eadfe2; }
.host-room-amenities > header { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.host-room-amenities > header span { color: var(--brand); font-size: 11px; font-weight: 700; }
.host-room-amenities > header h3 { margin: 3px 0 0; font: 700 18px var(--font-display); }
.host-room-amenities > header small { padding: 7px 10px; border-radius: 999px; color: var(--brand); background: #fbf1f6; font-size: 11px; white-space: nowrap; }
.host-room-amenities > p { margin: 8px 0 18px; color: var(--muted); font-size: 12px; }
.host-room-list { display: grid; gap: 12px; }
.host-room-card { overflow: hidden; border: 1px solid #e1d5d9; border-radius: 16px; background: #fff; }
.host-room-card[open] { border-color: #cf9caf; box-shadow: 0 12px 32px rgba(64,31,43,.06); }
.host-room-card summary { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 68px; padding: 12px 16px; cursor: pointer; list-style: none; }
.host-room-card summary::-webkit-details-marker { display: none; }
.host-room-card summary span { display: grid; gap: 3px; }
.host-room-card summary strong { font-size: 14px; }
.host-room-card summary small { color: var(--muted); font-size: 10px; }
.host-room-card summary b { color: var(--brand); font-size: 11px; }
.host-room-card__body { display: grid; gap: 14px; padding: 16px; border-top: 1px solid #eee5e7; background: #fdfbfa; }
.host-room-card__body h4 { margin: 4px 0 -5px; font-size: 12px; }
.host-room-name { display: grid; gap: 6px; color: var(--muted); font-size: 11px; }
.host-room-name input,
.host-room-beds input { min-height: 44px; border: 1px solid #ded3d7; border-radius: 11px; background: #fff; font: 13px var(--font-body); }
.host-room-name input { padding: 0 12px; }
.host-room-beds { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px; }
.host-room-beds label { display: grid; gap: 6px; color: var(--muted); font-size: 10px; }
.host-room-beds input { width: 100%; padding: 0 10px; font-family: var(--font-numeric); }
.host-room-features { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 8px; }
.host-room-features label { position: relative; cursor: pointer; }
.host-room-features input { position: absolute; opacity: 0; pointer-events: none; }
.host-room-features span { display: flex; align-items: center; justify-content: center; min-height: 44px; padding: 7px 9px; border: 1px solid #ded3d7; border-radius: 11px; color: var(--muted); background: #fff; font-size: 10px; text-align: center; }
.host-room-features input:checked + span { color: var(--brand); border-color: #c990a9; background: #fbf1f6; box-shadow: inset 0 0 0 1px #c990a9; font-weight: 700; }
.host-room-features input:focus-visible + span { outline: 3px solid rgba(142,23,79,.18); outline-offset: 2px; }
.host-room-empty { padding: 18px; border: 1px dashed #d8c9ce; border-radius: 14px; color: var(--muted); background: #faf7f5; font-size: 12px; text-align: center; }
.host-note { display: flex; gap: 10px; margin-top: 18px; padding: 13px 15px; border-radius: 13px; color: var(--color-info-text); background: var(--color-info-surface); font-size: 12px; }
.host-note svg { width: 19px; height: 19px; flex: 0 0 19px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.host-note p { margin: 0; }

.host-upload { position: relative; }
.host-upload > input { position: absolute; opacity: 0; pointer-events: none; }
.host-upload > label { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 260px; padding: 32px; border: 1.5px dashed #cdb9c0; border-radius: 20px; background: #fcf9f7; cursor: pointer; text-align: center; transition: border-color .18s ease, background .18s ease; }
.host-upload.dragover > label { border-color: var(--brand); background: #fbf1f6; }
.host-upload > label svg { width: 42px; height: 42px; margin-bottom: 14px; fill: none; stroke: var(--brand); stroke-width: 1.5; }
.host-upload > label strong { font: 700 17px var(--font-display); }
.host-upload > label span { margin: 4px 0 16px; color: var(--muted); font-size: 12px; }
.host-upload > label b { display: inline-flex; align-items: center; min-height: 42px; padding: 0 16px; border-radius: 10px; color: #fff; background: var(--brand); font-size: 12px; }
.host-upload__preview { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 14px; }
.host-upload__preview figure { position: relative; aspect-ratio: 4 / 3; margin: 0; overflow: hidden; border-radius: 13px; background: #eee; }
.host-upload__preview img { width: 100%; height: 100%; object-fit: cover; }
.host-upload__preview span { position: absolute; inset: auto 5px 5px; overflow: hidden; padding: 3px 6px; border-radius: 6px; color: #fff; background: rgba(0,0,0,.6); font-size: 7px; text-overflow: ellipsis; white-space: nowrap; }
.host-photo-tips { display: flex; flex-wrap: wrap; gap: 8px 14px; margin-top: 18px; padding: 14px; border-radius: 13px; background: #f5f1ef; color: var(--muted); font-size: 11px; }
.host-photo-tips strong { width: 100%; color: var(--ink); font-size: 13px; }
.host-photo-tips span::before { margin-left: 5px; color: var(--success); content: "✓"; }
.host-existing-photos { margin-top: 24px; }
.host-existing-photos h3 { font: 600 14px var(--font-display); }
.host-existing-photos > div { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.host-existing-photos img { width: 100%; aspect-ratio: 1; border-radius: 10px; object-fit: cover; }

.host-verification-state { display: flex; align-items: center; gap: 13px; margin-bottom: 22px; padding: 14px 16px; border: 1px solid #ead5a5; border-radius: 16px; color: #805616; background: #fff8e7; }
.host-verification-state > span { display: grid; width: 44px; height: 44px; flex: 0 0 44px; place-items: center; border-radius: 13px; background: rgba(255,255,255,.8); }
.host-verification-state svg { width: 23px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.host-verification-state > div { min-width: 0; }
.host-verification-state small,
.host-verification-state strong,
.host-verification-state p { display: block; margin: 0; }
.host-verification-state small { font-size: 9px; opacity: .72; }
.host-verification-state strong { font: 700 13px var(--font-display); }
.host-verification-state p { margin-top: 2px; font-size: 9px; }
.host-verification-state em { display: block; margin-top: 7px; padding-top: 7px; border-top: 1px solid currentColor; font-size: 9px; font-style: normal; }
.host-verification-state.is-approved { border-color: var(--color-success-border); color: var(--color-success-text); background: var(--color-success-surface); }
.host-verification-state.is-rejected { border-color: var(--color-danger-border); color: var(--color-danger-text); background: var(--color-danger-surface); }

.host-verification-methods { margin: 0; padding: 0; border: 0; }
.host-verification-methods > legend { margin-bottom: 11px; color: var(--ink); font-size: 12px; font-weight: 700; }
.host-verification-methods > legend em { margin-right: 5px; color: var(--brand); font-size: 8px; font-style: normal; }
.host-verification-methods > div { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.host-verification-methods label { position: relative; display: grid; grid-template-columns: 48px minmax(0,1fr); align-items: start; gap: 12px; min-height: 150px; padding: 18px; border: 1.5px solid #dfd3d7; border-radius: 18px; background: #fff; cursor: pointer; transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease; }
.host-verification-methods label:hover { border-color: #c99ab0; }
.host-verification-methods label:has(input:checked) { border-color: var(--brand); background: #fff8fb; box-shadow: 0 0 0 3px rgba(142,23,79,.08); }
.host-verification-methods input { position: absolute; opacity: 0; pointer-events: none; }
.host-verification-method__icon { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 15px; color: var(--brand); background: var(--tint); }
.host-verification-method__icon svg { width: 25px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.host-verification-methods label > span:last-child { min-width: 0; }
.host-verification-methods strong,
.host-verification-methods small,
.host-verification-methods b { display: block; }
.host-verification-methods strong { font: 700 13px/1.7 var(--font-display); }
.host-verification-methods small { margin-top: 4px; color: var(--muted); font-size: 9px; line-height: 1.8; }
.host-verification-methods b { width: fit-content; margin-top: 9px; padding: 3px 7px; border-radius: 7px; color: var(--brand); background: var(--tint); font-size: 7px; }
.host-verification-methods label:focus-within { outline: 3px solid rgba(142,23,79,.22); outline-offset: 2px; }

.host-verification-panel { margin-top: 18px; padding: 20px; border: 1px solid #e4d9dc; border-radius: 19px; background: #faf7f5; }
.host-verification-panel__head { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 16px; }
.host-verification-panel__head > span { display: grid; width: 39px; height: 39px; flex: 0 0 39px; place-items: center; border-radius: 12px; color: var(--brand); background: #fff; }
.host-verification-panel__head svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.host-verification-panel__head strong { display: block; font-size: 11px; }
.host-verification-panel__head p { margin: 3px 0 0; color: var(--muted); font-size: 9px; line-height: 1.8; }
.host-verification-location { min-height: 44px; padding: 0 14px; border: 0; border-radius: 11px; color: #fff; background: var(--brand); font-family: inherit; font-size: 10px; font-weight: 700; cursor: pointer; }
.host-verification-location:disabled { opacity: .62; cursor: wait; }
.host-verification-location__status { min-height: 18px; margin: 7px 0 13px; color: var(--muted); font-size: 9px; }
.host-verification-panel.has-location .host-verification-location__status { color: var(--success); }
.host-verification-upload { position: relative; }
.host-verification-upload > input { position: absolute; opacity: 0; pointer-events: none; }
.host-verification-upload > label { display: flex; align-items: center; gap: 13px; min-height: 94px; padding: 15px; border: 1.5px dashed #cdb9c0; border-radius: 15px; background: #fff; cursor: pointer; }
.host-verification-upload > label > svg { width: 30px; height: 30px; flex: 0 0 30px; fill: none; stroke: var(--brand); stroke-width: 1.6; }
.host-verification-upload > label > span { min-width: 0; flex: 1; }
.host-verification-upload > label strong,
.host-verification-upload > label small { display: block; }
.host-verification-upload > label strong { font-size: 11px; }
.host-verification-upload > label small { margin-top: 3px; color: var(--muted); font-size: 8px; line-height: 1.7; }
.host-verification-upload > label > b { min-height: 38px; display: inline-flex; align-items: center; padding: 0 11px; border-radius: 10px; color: var(--brand); background: var(--tint); font-size: 8px; white-space: nowrap; }
.host-verification-upload > p { margin: 7px 2px 0; color: var(--muted); font-size: 8px; }
.host-verification-upload:focus-within > label { outline: 3px solid rgba(142,23,79,.22); outline-offset: 2px; }
.host-verification-methods.has-error label,
.host-verification-upload.has-error > label { border-color: var(--danger); }
.host-verification-methods > .field-error,
.host-verification-upload > .field-error { min-height: 15px; display: block; margin-top: 6px; color: var(--danger); font-size: 9px; }
.host-live-recorder__stage { position: relative; min-height: 280px; overflow: hidden; border: 1px solid #ded3d6; border-radius: 17px; color: #fff; background: #181416; box-shadow: inset 0 0 0 1px rgba(255,255,255,.04); }
.host-live-recorder__stage video { width: 100%; min-height: 280px; display: block; aspect-ratio: 16 / 9; object-fit: cover; background: #181416; }
.host-live-recorder__placeholder { position: absolute; inset: 0; display: grid; align-content: center; justify-items: center; padding: 30px; text-align: center; background: radial-gradient(circle at 50% 25%, rgba(142,23,79,.24), transparent 38%), #181416; }
.host-live-recorder__placeholder > span { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 13px; border: 1px solid rgba(255,255,255,.13); border-radius: 17px; background: rgba(255,255,255,.08); }
.host-live-recorder__placeholder svg { width: 28px; fill: none; stroke: #fff; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.host-live-recorder__placeholder strong,
.host-live-recorder__placeholder small { display: block; }
.host-live-recorder__placeholder strong { font-size: 12px; }
.host-live-recorder__placeholder small { margin-top: 4px; color: rgba(255,255,255,.66); font-size: 9px; }
.host-live-recorder__stage[data-state="ready"] .host-live-recorder__placeholder,
.host-live-recorder__stage[data-state="recording"] .host-live-recorder__placeholder,
.host-live-recorder__stage[data-state="recorded"] .host-live-recorder__placeholder { display: none; }
.host-live-recorder__stage[data-state="opening"] .host-live-recorder__placeholder { opacity: .72; }
.host-live-recorder__timer { position: absolute; top: 13px; right: 13px; min-height: 31px; display: inline-flex; align-items: center; gap: 7px; padding: 0 11px; border-radius: 999px; direction: ltr; background: rgba(23,17,20,.76); backdrop-filter: blur(8px); font-size: 10px; font-weight: 700; }
.host-live-recorder__timer::before { width: 8px; height: 8px; border-radius: 50%; background: #e8384f; box-shadow: 0 0 0 4px rgba(232,56,79,.18); content: ""; animation: host-record-pulse 1.2s ease-in-out infinite; }
@keyframes host-record-pulse { 50% { opacity: .45; } }
.host-live-recorder__controls { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 11px; }
.host-live-recorder__controls button { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 0 15px; border: 0; border-radius: 11px; font-family: inherit; font-size: 10px; font-weight: 700; cursor: pointer; transition: transform .16s ease, opacity .16s ease, background-color .16s ease; }
.host-live-recorder__controls button:hover:not(:disabled) { transform: translateY(-1px); }
.host-live-recorder__controls button:focus-visible { outline: 3px solid rgba(142,23,79,.22); outline-offset: 2px; }
.host-live-recorder__controls button:disabled { opacity: .46; cursor: not-allowed; }
.host-live-recorder__primary { color: #fff; background: var(--brand); }
.host-live-recorder__primary svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.host-live-recorder__record { color: #fff; background: #1d171a; }
.host-live-recorder__record > span { width: 13px; height: 13px; border: 2px solid #fff; border-radius: 50%; background: #e8384f; box-shadow: 0 0 0 3px rgba(232,56,79,.2); }
.host-live-recorder__stop { color: #fff; background: #c5263b; }
.host-live-recorder__stop > span { width: 11px; height: 11px; border-radius: 2px; background: #fff; }
.host-live-recorder__secondary { color: var(--brand); background: var(--tint); }
.host-live-recorder__status { min-height: 19px; margin: 8px 2px 0; color: var(--muted); font-size: 9px; }
.host-live-recorder__status.is-success { color: var(--success); }
.host-live-recorder__status.is-error { color: var(--danger); }
.host-live-recorder.has-error .host-live-recorder__stage { border-color: var(--danger); }
.host-verification-privacy { display: flex; align-items: flex-start; gap: 10px; margin-top: 16px; padding: 13px 15px; border-radius: 14px; color: #52655b; background: #f0f7f3; }
.host-verification-privacy svg { width: 22px; flex: 0 0 22px; fill: none; stroke: var(--success); stroke-width: 1.7; }
.host-verification-privacy p { margin: 0; }
.host-verification-privacy strong,
.host-verification-privacy span { display: block; }
.host-verification-privacy strong { font-size: 10px; }
.host-verification-privacy span { margin-top: 2px; font-size: 8px; line-height: 1.8; }

.host-rules { margin-top: 24px; padding: 20px; border-radius: 16px; background: #f9f5f3; }
.host-rules > div { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 18px; }
.host-rules > div label,
.host-review-card > label { position: relative; display: flex; align-items: flex-start; gap: 9px; min-height: 44px; cursor: pointer; color: var(--muted); font-size: 12px; }
.host-rules > div label::before,
.host-review-card > label::before { width: 20px; height: 20px; flex: 0 0 20px; border: 1px solid #cbbbc1; border-radius: 6px; background: #fff; content: ""; }
.host-rules > div label:has(input:checked)::before,
.host-review-card > label:has(input:checked)::before { border-color: var(--brand); background: var(--brand); box-shadow: inset 0 0 0 4px #fff; }
.host-rules > input { min-height: 48px; }
.host-readonly { display: flex; flex-direction: column; justify-content: center; min-height: 86px; padding: 15px 18px; border: 1px solid #e4dadd; border-radius: 14px; background: #faf7f5; }
.host-readonly span { color: var(--muted); font-size: 11px; }
.host-readonly strong { direction: ltr; width: fit-content; font-family: var(--font-numeric); }
.host-readonly small { color: var(--muted); font-size: 10px; }
.host-review-card { margin-top: 24px; padding: 20px; border: 1px solid #e1d4d9; border-radius: 17px; background: #fcf9f7; }
.host-review-card > div { display: flex; gap: 12px; margin-bottom: 20px; }
.host-review-card > div svg { width: 28px; height: 28px; flex: 0 0 28px; fill: none; stroke: var(--brand); stroke-width: 1.6; }
.host-review-card strong,
.host-review-card small { display: block; }
.host-review-card strong { font: 600 14px var(--font-display); }
.host-review-card small { margin-top: 4px; color: var(--muted); font-size: 12px; }
.host-review-card a { color: var(--brand); text-decoration: underline; }

.host-onboarding__actions {
    position: absolute;
    inset: auto 0 0;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    min-height: 84px;
    padding: 16px clamp(26px, 4vw, 46px);
    border-top: 1px solid #eadfe3;
    border-radius: 0 0 26px 26px;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
}
.host-onboarding__actions [data-step-back] { grid-column: 1; grid-row: 1; justify-self: start; }
.host-onboarding__actions > .host-onboarding__step-status { grid-column: 2; grid-row: 1; justify-self: center; min-width: 96px; color: var(--muted); font-family: var(--font-numeric); font-size: 11px; text-align: center; }
.host-onboarding__actions [data-step-next],
.host-onboarding__actions [data-step-submit] { grid-column: 3; grid-row: 1; justify-self: end; }
.host-onboarding__actions .host-button { gap: 7px; white-space: nowrap; }
.host-onboarding__actions .host-button svg { width: 18px; height: 18px; flex: 0 0 18px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.host-mobile-progress { display: none; }

/* Property management */
.host-property-center { max-width: 1180px; margin: 0 auto; }
.host-property-hero { display: grid; grid-template-columns: minmax(260px, .7fr) 1.3fr; min-height: 280px; overflow: hidden; border: 1px solid #e5d9de; border-radius: 26px; background: #fff; box-shadow: 0 20px 60px rgba(69,25,43,.07); }
.host-property-hero__photo { position: relative; min-height: 280px; background-color: #e7ded9; background-position: center; background-size: cover; }
.host-property-hero__photo::after { position: absolute; inset: 0; content: ""; background: linear-gradient(0deg, rgba(35,15,23,.25), transparent 55%); }
.host-status { position: absolute; inset: 18px 18px auto auto; z-index: 1; display: inline-flex; align-items: center; min-height: 34px; padding: 0 11px; border-radius: 9px; font-size: 11px; font-weight: 700; }
.host-status--review { color: var(--warning); background: rgba(255,244,223,.94); }
.host-status--active { color: var(--success); background: rgba(232,248,239,.95); }
.host-status--paused { color: #8b5a12; background: rgba(255,244,217,.96); }
.host-status--rejected { color: var(--danger); background: rgba(255,236,239,.95); }
.host-property-hero__content { display: flex; flex-direction: column; justify-content: space-between; gap: 24px; padding: clamp(28px, 4vw, 44px); }
.host-property-hero__content h1 { margin: 8px 0 6px; font: 700 clamp(27px, 3.3vw, 40px)/1.4 var(--font-display); }
.host-property-hero__content p { margin: 0; color: var(--muted); font-size: 14px; }
.host-property-hero__actions { display: flex; flex-wrap: wrap; gap: 9px; }
.host-property-grid { display: grid; grid-template-columns: minmax(0, 1fr) 320px; align-items: start; gap: 22px; margin-top: 22px; }
.host-property-main,
.host-property-side { display: flex; flex-direction: column; gap: 22px; }
.host-panel { padding: 26px; border: 1px solid #e7dcdf; border-radius: 21px; background: #fff; box-shadow: 0 12px 35px rgba(69,25,43,.045); }
.host-panel > header { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.host-panel > header span,
.host-panel > header h2 { display: block; margin: 0; }
.host-panel > header span { color: var(--muted); font-size: 11px; }
.host-panel > header h2 { font: 700 19px var(--font-display); }
.host-panel > header > a { color: var(--brand); font-size: 12px; font-weight: 700; }
.host-progress-ring { --progress:0; display: grid; place-content: center; width: 72px; height: 72px; flex: 0 0 72px; border-radius: 50%; background: radial-gradient(circle closest-side, #fff 78%, transparent 80% 100%), conic-gradient(var(--brand) calc(var(--progress) * 1%), #eee4e7 0); text-align: center; }
.host-progress-ring strong { font: 700 16px var(--font-numeric); line-height: 1; }
.host-progress-ring small { color: var(--muted); font-size: 7px; }
.host-completion-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.host-completion-list > div { display: grid; grid-template-columns: 28px 1fr; align-items: center; gap: 1px 9px; min-height: 60px; padding: 9px 12px; border-radius: 12px; background: #faf7f6; }
.host-completion-list > div > span { grid-row: 1 / 3; display: grid; place-items: center; width: 27px; height: 27px; border-radius: 50%; color: #a3999d; background: #ece6e8; }
.host-completion-list svg { width: 15px; fill: none; stroke: currentColor; stroke-width: 2; }
.host-completion-list strong { align-self: end; font-size: 10px; }
.host-completion-list small { align-self: start; color: var(--muted); font-size: 8px; }
.host-completion-list .done > span { color: var(--success); background: var(--color-success-surface); }
.host-completion-panel > a { display: inline-flex; margin-top: 18px; color: var(--brand); font-size: 10px; font-weight: 700; }
.host-ready-message { display: block; margin-top: 18px; color: var(--success); font-size: 10px; }
.host-verification-summary > header > strong { min-height: 30px; display: inline-flex; align-items: center; padding: 0 9px; border-radius: 8px; color: #805616; background: #fff4d9; font-size: 8px; }
.host-verification-summary.is-approved > header > strong { color: var(--color-success-text); background: var(--color-success-surface); }
.host-verification-summary.is-rejected > header > strong,
.host-verification-summary.is-missing > header > strong { color: var(--color-danger-text); background: var(--color-danger-surface); }
.host-verification-summary__body { display: grid; grid-template-columns: 50px minmax(0,1fr) auto; align-items: center; gap: 13px; }
.host-verification-summary__body > span { display: grid; width: 50px; height: 50px; place-items: center; border-radius: 15px; color: var(--brand); background: var(--tint); }
.host-verification-summary__body svg { width: 27px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.host-verification-summary__body strong { display: block; font-size: 11px; }
.host-verification-summary__body p { margin: 3px 0 0; color: var(--muted); font-size: 9px; line-height: 1.8; }
.host-verification-summary__body small { display: block; margin-top: 7px; color: var(--danger); font-size: 8px; }
.host-verification-summary__body > a { min-height: 40px; display: inline-flex; align-items: center; padding: 0 12px; border: 1px solid #dcc8d0; border-radius: 10px; color: var(--brand); background: #fff; font-size: 9px; font-weight: 700; white-space: nowrap; }
.host-property-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; overflow: hidden; border: 1px solid #ede4e7; border-radius: 14px; background: #ede4e7; }
.host-property-facts > div { min-height: 82px; padding: 16px; background: #fff; }
.host-property-facts span,
.host-property-facts strong { display: block; }
.host-property-facts span { color: var(--muted); font-size: 9px; }
.host-property-facts strong { margin-top: 5px; font: 600 12px var(--font-display); }
.host-property-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.host-property-gallery img { width: 100%; aspect-ratio: 4 / 3; border-radius: 11px; object-fit: cover; }
.host-review-status { text-align: center; }
.host-review-status__icon { display: grid; place-items: center; width: 58px; height: 58px; margin: 0 auto 14px; border-radius: 18px; color: var(--warning); background: var(--color-warning-surface); }
.host-review-status__icon svg { width: 27px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.host-review-status.is-active .host-review-status__icon { color: var(--success); background: var(--color-success-surface); }
.host-review-status.is-paused .host-review-status__icon { color: #9b6414; background: #fff4d9; }
.host-review-status.is-rejected .host-review-status__icon { color: var(--danger); background: var(--color-danger-surface); }
.host-review-status h2 { margin: 0 0 6px; font: 700 17px var(--font-display); }
.host-review-status p { margin: 0; color: var(--muted); font-size: 10px; }
.host-review-status > div { display: flex; justify-content: space-between; gap: 14px; margin-top: 18px; padding-top: 14px; border-top: 1px solid #eee5e7; font-size: 9px; }
.host-review-status > div span { color: var(--muted); }
.host-review-status > div strong { font-weight: 700; }
.host-review-status__action { width: 100%; margin-top: 16px; }
.host-reservation-status-form { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 7px 12px; margin-top: 18px; padding-top: 14px; border-top: 1px solid #eee5e7; text-align: right; }
.host-reservation-status-form > span { color: var(--muted); font-size: 9px; }
.host-reservation-status-form > small { grid-column: 1 / -1; min-height: 15px; color: var(--muted); font-size: 8px; line-height: 1.7; }
.host-reservation-status-form > small.is-error { color: var(--danger); }
.host-reservation-switch { display: inline-flex; min-height: 42px; padding: 6px 8px 6px 10px; align-items: center; gap: 8px; border: 1px solid #dfd3d7; border-radius: 12px; color: #6f6267; background: #fff; font-family: inherit; cursor: pointer; }
.host-reservation-switch > i { position: relative; width: 38px; height: 22px; border-radius: 99px; background: #c9c1c4; transition: background-color .18s ease; }
.host-reservation-switch > i b { position: absolute; top: 3px; right: 3px; width: 16px; height: 16px; border-radius: 50%; background: #fff; box-shadow: 0 2px 6px rgba(35,15,23,.2); transition: transform .18s ease; }
.host-reservation-switch > strong { min-width: 41px; font-size: 9px; text-align: center; }
.host-reservation-switch.is-on { color: var(--success); border-color: #bcdccb; background: #f5fbf7; }
.host-reservation-switch.is-on > i { background: var(--success); }
.host-reservation-switch.is-on > i b { transform: translateX(-16px); }
.host-reservation-switch:focus-visible { outline: 3px solid rgba(142,23,79,.22); outline-offset: 2px; }
.host-reservation-switch:disabled { opacity: .62; cursor: wait; }
@media (prefers-reduced-motion: reduce) { .host-reservation-switch > i, .host-reservation-switch > i b { transition: none; } }
.host-quick-actions h2 { margin: 0 0 12px; font: 700 16px var(--font-display); }
.host-quick-actions > a { display: flex; align-items: center; justify-content: space-between; min-height: 50px; border-bottom: 1px solid #eee5e7; font-size: 10px; }
.host-quick-actions > a:last-child { border-bottom: 0; }
.host-quick-actions > a > span { display: inline-flex; align-items: center; gap: 9px; }
.host-quick-actions svg { width: 18px; fill: none; stroke: var(--brand); stroke-width: 1.7; }
.host-quick-actions b { color: var(--muted); }
.host-quick-actions > a.host-quick-actions__pricing { min-height: 64px; }
.host-quick-actions__copy { display: flex; min-width: 0; flex-direction: column; gap: 2px; }
.host-quick-actions__copy strong { color: var(--ink); font-size: 10px; font-weight: 700; }
.host-quick-actions__copy small { color: var(--muted); font-size: 8px; line-height: 1.6; }

/* Legacy host dashboard adapted into the new shell */
.host-dashboard-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    max-width: 1180px;
    margin: 0 auto 22px;
    padding: 30px 34px;
    overflow: hidden;
    border-radius: 24px;
    color: #fff;
    background:
        radial-gradient(circle at 10% 5%, rgba(217,109,78,.32), transparent 28%),
        linear-gradient(125deg, #681439, #35121f);
    box-shadow: 0 18px 48px rgba(76,19,45,.14);
}
.host-dashboard-head .host-eyebrow { color: #f2b79d; }
.host-dashboard-head h1 { max-width: 700px; margin: 8px 0 4px; font: 700 clamp(24px, 3vw, 34px)/1.5 var(--font-display); letter-spacing: -.6px; }
.host-dashboard-head p { margin: 0; color: rgba(255,255,255,.72); font-size: 13px; }
.host-dashboard-head .host-button { color: var(--brand) !important; flex: 0 0 auto; background: #fff; box-shadow: none; }
.host-dashboard-stats { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; max-width: 1180px; margin: 0 auto 22px; }
.host-dashboard-stats article,
.host-dashboard-stats > a { display: flex; align-items: center; gap: 13px; min-height: 92px; padding: 16px 18px; border: 1px solid #e7dcdf; border-radius: 17px; color: var(--ink); background: #fff; box-shadow: 0 10px 28px rgba(69,25,43,.04); }
.host-dashboard-stats__icon { display: grid; place-items: center; width: 46px; height: 46px; flex: 0 0 46px; border-radius: 14px; color: var(--brand); background: var(--tint); }
.host-dashboard-stats__icon svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.host-dashboard-stats small,
.host-dashboard-stats strong { display: block; }
.host-dashboard-stats small { color: var(--muted); font-size: 11px; }
.host-dashboard-stats strong { margin-top: 2px; font: 700 22px var(--font-numeric); }
.host-dashboard-stats .host-stat-text { font-family: var(--font-display); font-size: 15px; color: var(--success); }
.host-dashboard-stat-attention { position: relative; border-color: #dfb4c6 !important; background: linear-gradient(145deg,#fff,#fff6fa) !important; transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease; }
.host-dashboard-stat-attention:hover { transform: translateY(-2px); border-color: var(--brand) !important; box-shadow: 0 14px 30px rgba(108,24,61,.09); }
.host-dashboard-stat-attention .host-dashboard-stats__icon { color: #fff; background: var(--brand); box-shadow: 0 8px 20px rgba(142,23,79,.18); }
.host-dashboard-stat-attention > div { min-width: 0; }
.host-dashboard-stat-attention > b { margin-right: auto; color: var(--brand); font-size: 17px; }
.host-dashboard-attention { max-width: 1180px; margin: 0 auto 22px; padding: 24px 26px; border: 1px solid var(--host-line); border-radius: 23px; background: var(--host-surface); box-shadow: var(--host-card-shadow); }
.host-dashboard-attention > header { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 17px; }
.host-dashboard-attention > header h2 { margin: 3px 0 1px; color: var(--ink); font: 700 21px var(--font-display); }
.host-dashboard-attention > header p { margin: 0; color: var(--muted); font-size: 9px; }
.host-dashboard-attention > header > a { display: inline-flex; align-items: center; gap: 7px; min-height: 38px; padding: 0 12px; border: 1px solid #dfbdcb; border-radius: 11px; color: var(--brand); background: var(--tint); font-size: 9px; font-weight: 800; }
.host-dashboard-attention__list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
.host-dashboard-attention-row { display: grid; grid-template-columns: 74px minmax(0,1fr) auto; align-items: center; gap: 12px; min-height: 94px; padding: 9px; overflow: hidden; border: 1px solid var(--host-line-soft); border-radius: 16px; color: var(--ink); background: var(--host-surface-soft); transition: transform 180ms ease, border-color 180ms ease, background 180ms ease; }
.host-dashboard-attention-row:hover { transform: translateY(-2px); border-color: #d6a8bd; background: #fff; }
.host-dashboard-attention-row__image { width: 74px; height: 74px; overflow: hidden; border-radius: 12px; background: #eee7e9; }
.host-dashboard-attention-row__image img { width: 100%; height: 100%; object-fit: cover; }
.host-dashboard-attention-row__copy { min-width: 0; }
.host-dashboard-attention-row__copy > small { display: inline-flex; min-height: 23px; align-items: center; padding: 0 7px; border-radius: 7px; color: var(--brand); background: var(--tint); font-size: 7px; font-weight: 800; }
.host-dashboard-attention-row[data-status="SuccessfulPayment"] .host-dashboard-attention-row__copy > small { color: var(--success); background: var(--color-success-surface); }
.host-dashboard-attention-row__copy > strong { display: block; margin-top: 5px; overflow: hidden; color: var(--ink); font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.host-dashboard-attention-row__copy > span { display: block; margin-top: 2px; overflow: hidden; color: var(--muted); font-size: 7px; text-overflow: ellipsis; white-space: nowrap; }
.host-dashboard-attention-row__action { display: inline-flex; align-items: center; gap: 5px; padding-left: 7px; color: var(--brand); font-size: 8px; font-weight: 800; white-space: nowrap; }
.host-dashboard-attention-row__action b { font-size: 14px; }
.host-dashboard-attention__empty { display: flex; align-items: center; gap: 13px; min-height: 84px; padding: 14px 17px; border: 1px solid var(--color-success-border); border-radius: 16px; color: var(--success); background: var(--color-success-surface); }
.host-dashboard-attention__empty > span { display: grid; place-items: center; width: 45px; height: 45px; flex: 0 0 45px; border-radius: 14px; color: #fff; background: var(--success); }
.host-dashboard-attention__empty svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.host-dashboard-attention__empty strong { display: block; color: var(--success); font: 700 12px var(--font-display); }
.host-dashboard-attention__empty p { margin: 2px 0 0; color: var(--muted); font-size: 8px; }
.host-dashboard-finance { max-width: 1180px; margin: 0 auto 22px; padding: 26px; border: 1px solid var(--host-line); border-radius: 23px; background: var(--host-surface); box-shadow: var(--host-card-shadow); }
.host-dashboard-finance > header { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.host-dashboard-finance > header h2 { margin: 3px 0 1px; color: var(--ink); font: 700 21px var(--font-display); }
.host-dashboard-finance > header p { margin: 0; color: var(--muted); font-size: 9px; }
.host-dashboard-finance > header > a { display: inline-flex; align-items: center; gap: 7px; min-height: 38px; padding: 0 12px; border: 1px solid var(--host-line-soft); border-radius: 11px; color: var(--brand); background: var(--host-surface-soft); font-size: 9px; font-weight: 700; }
.host-dashboard-finance__layout { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(330px,.8fr); gap: 15px; }
.host-finance-metrics { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.host-finance-metric { display: flex; min-width: 0; min-height: 142px; padding: 17px; flex-direction: column; border: 1px solid var(--host-line-soft); border-radius: 17px; background: var(--host-surface-soft); }
.host-finance-metric--sales { color: #fff; border-color: transparent; background: radial-gradient(circle at 12% 0,rgba(235,150,113,.3),transparent 34%),linear-gradient(135deg,#64163a,#34121f); }
.host-finance-metric__head { display: flex; align-items: center; gap: 9px; }
.host-finance-metric__head > span { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 11px; color: var(--brand); background: var(--tint); }
.host-finance-metric--sales .host-finance-metric__head > span { color: #f4b99e; background: rgba(255,255,255,.1); }
.host-finance-metric__head svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.host-finance-metric__head > small { color: var(--muted); font-size: 9px; font-weight: 700; }
.host-finance-metric--sales .host-finance-metric__head > small { color: rgba(255,255,255,.68); }
.host-finance-metric > strong { display: block; margin-top: 13px; overflow: hidden; color: var(--ink); font: 700 clamp(17px,2vw,22px) var(--font-numeric); text-overflow: ellipsis; white-space: nowrap; }
.host-finance-metric--sales > strong { color: #fff; }
.host-finance-metric > strong small { font: 600 8px var(--font-ui); }
.host-finance-metric > p { margin: auto 0 0; color: var(--muted); font-size: 8px; }
.host-finance-metric--sales > p { color: rgba(255,255,255,.62); }
.host-finance-metric > p.is-positive { color: var(--success); }
.host-finance-metric > p.is-negative { color: var(--danger); }
.host-recent-transactions { min-width: 0; padding: 18px; border: 1px solid var(--host-line-soft); border-radius: 18px; background: #fff; }
.host-recent-transactions__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; min-height: 39px; margin-bottom: 10px; }
.host-recent-transactions__head span { color: var(--brand); font-size: 8px; font-weight: 700; }
.host-recent-transactions__head h3 { margin: 2px 0 0; color: var(--ink); font: 700 15px var(--font-display); }
.host-recent-transactions__head > small { color: var(--muted); font-size: 8px; }
.host-recent-transactions__list { display: grid; }
.host-transaction-row { display: grid; grid-template-columns: 38px minmax(0,1fr) auto; align-items: center; gap: 10px; min-height: 63px; border-bottom: 1px solid var(--host-line-soft); color: var(--ink); }
.host-transaction-row:last-child { border-bottom: 0; }
.host-transaction-row__icon { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; color: var(--success); background: var(--color-success-surface); }
.host-transaction-row--settlement .host-transaction-row__icon { color: var(--brand); background: var(--tint); }
.host-transaction-row--refund .host-transaction-row__icon { color: var(--danger); background: var(--color-danger-surface); }
.host-transaction-row__icon svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.host-transaction-row__copy,
.host-transaction-row__amount { min-width: 0; }
.host-transaction-row__copy strong,
.host-transaction-row__copy small,
.host-transaction-row__amount strong,
.host-transaction-row__amount small { display: block; }
.host-transaction-row__copy strong { color: var(--ink); font-size: 9px; }
.host-transaction-row__copy small { margin-top: 3px; overflow: hidden; color: var(--muted); font-size: 7px; text-overflow: ellipsis; white-space: nowrap; }
.host-transaction-row__amount { text-align: left; }
.host-transaction-row__amount strong { color: var(--success); font: 700 9px var(--font-numeric); }
.host-transaction-row--settlement .host-transaction-row__amount strong { color: var(--brand); }
.host-transaction-row--refund .host-transaction-row__amount strong { color: var(--danger); }
.host-transaction-row__amount small { margin-top: 3px; color: var(--muted); font-size: 7px; white-space: nowrap; }
.host-recent-transactions__empty { display: grid; place-items: center; min-height: 245px; padding: 24px; text-align: center; }
.host-recent-transactions__empty > span { display: grid; place-items: center; width: 55px; height: 55px; border-radius: 17px; color: var(--brand); background: var(--tint); }
.host-recent-transactions__empty svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.host-recent-transactions__empty strong { margin-top: 12px; color: var(--ink); font: 700 12px var(--font-display); }
.host-recent-transactions__empty p { max-width: 260px; margin: 4px 0 0; color: var(--muted); font-size: 8px; line-height: 1.9; }
.host-dashboard-links { max-width: 1180px; margin: 0 auto; padding: 25px; border: 1px solid var(--host-line); border-radius: 22px; background: var(--host-surface); box-shadow: var(--host-card-shadow); }
.host-dashboard-links > header { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.host-dashboard-links > header h2 { margin: 3px 0 0; color: var(--ink); font: 700 20px var(--font-display); }
.host-dashboard-links > header p { margin: 0; color: var(--muted); font-size: 10px; }
.host-dashboard-links > div { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.host-dashboard-links a { display: grid; grid-template-columns: 48px minmax(0,1fr) 22px; align-items: center; gap: 13px; min-height: 92px; padding: 16px; border: 1px solid var(--host-line-soft); border-radius: 16px; color: var(--ink); background: var(--host-surface-soft); transition: transform 180ms ease, border-color 180ms ease, background 180ms ease; }
.host-dashboard-links a:hover { transform: translateY(-2px); border-color: #d6a8bd; background: #fff; }
.host-dashboard-links a > span { display: grid; place-items: center; grid-row: 1 / span 2; width: 48px; height: 48px; border-radius: 15px; color: var(--brand); background: var(--tint); }
.host-dashboard-links svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.host-dashboard-links strong { align-self: end; font-size: 11px; }
.host-dashboard-links small { align-self: start; color: var(--muted); font-size: 8px; }
.host-dashboard-links b { grid-column: 3; grid-row: 1 / span 2; color: var(--muted); font-size: 17px; }
.host-section-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 14px; padding: 4px 2px; }
.host-section-toolbar span,
.host-section-toolbar h2 { display: block; margin: 0; }
.host-section-toolbar span { color: var(--muted); font-size: 11px; }
.host-section-toolbar h2 { font: 700 19px var(--font-display); }
.host-section-toolbar a { color: var(--brand); font-size: 12px; font-weight: 700; }
.host-empty-state { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 390px; padding: 40px 24px; border: 1px dashed #d7c3ca; border-radius: 22px; background: rgba(255,255,255,.72); text-align: center; }
.host-empty-state__icon { display: grid; place-items: center; width: 72px; height: 72px; border-radius: 22px; color: var(--brand); background: var(--tint); }
.host-empty-state__icon svg { width: 34px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.host-empty-state h3 { margin: 18px 0 5px; font: 700 20px var(--font-display); }
.host-empty-state p { max-width: 480px; margin: 0 0 20px; color: var(--muted); font-size: 13px; }
.host-empty-state--compact { width: 100%; min-height: 320px; border: 0; }
.host-app #listtransaction { width: min(100%, 920px); margin-inline: auto; overflow: hidden; border: 1px solid #e4d8dc; border-radius: 24px; background: #fff; box-shadow: 0 16px 45px rgba(69,25,43,.06); }
.host-app #listtransaction > .head { min-height: 220px; padding: 32px; border-radius: 0; background-image: linear-gradient(135deg, rgba(75,11,43,.94), rgba(142,23,79,.78)), url('../../img/bkgTransaction.jpg'); background-position: center; }
.host-app #listtransaction > .head .total span.price,
.host-app #listtransaction > .head .total span.unit { color: #fff; }
.host-app #listtransaction > .head .blance { background: rgba(255,255,255,.14); }
.host-app #listtransaction > .head .settlement { max-width: 560px; border-radius: 12px; background: rgba(255,255,255,.92); }
.host-app #listtransaction > .list { gap: 0; background: #fff; }
.host-app #listtransaction .list .item { transition: background-color .2s ease; }
.host-app #listtransaction .list .item:hover { background: #fffafb; }
.host-app .layout {max-width: 1180px;margin: 0 auto;background: transparent;}
.host-app #register > .header { display: none; }
.host-app #register {
    width: min(100%, 820px);
    margin-inline: auto;
    overflow: hidden;
    border: 1px solid #e4d8dc;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 16px 45px rgba(69,25,43,.06);
}
.host-app #register > .body { min-height: 0; }
.host-app #register .steper > .warper { max-width: none; margin: 0; border: 0; }
.host-app .layout > .content {width: 100%;background: transparent;}
.host-app #listMyHome { min-height: 300px; }
.host-app #listMyHome > .item { min-height: 94px; margin-bottom: 10px; padding: 12px; border: 1px solid #e6dade; border-radius: 16px; background: #fff; box-shadow: 0 8px 25px rgba(69,25,43,.04); }
.host-app #listMyHome .status.active { color: var(--success); background: var(--color-success-surface); }
.host-app #listMyHome .status.rejected { color: var(--danger); background: var(--color-danger-surface); }
.host-app #listMyHome .status.draft { color: var(--brand); background: var(--tint); }
.host-app #listMyHome .status.waiting { color: var(--warning); background: var(--color-warning-surface); }
.host-app #listMyHome > .hr { display: none; }
.host-app #listMyHome .noneHome { padding: 0; }
.host-app #listMyHome .noneHome .box { border: 1px solid #e4d8dc; border-radius: 20px; box-shadow: none; }
.host-inline-error { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 14px; width: 100%; padding: 16px 18px; border: 1px solid var(--color-danger-border); border-radius: 14px; color: var(--danger); background: var(--color-danger-surface); }
.host-inline-error strong { font-size: 12px; }
.host-inline-error span { color: var(--muted); font-size: 10px; }
.host-inline-error button { min-height: 38px; margin-inline-start: auto; padding: 0 14px; border: 1px solid currentColor; border-radius: 10px; color: inherit; background: transparent; cursor: pointer; font-size: 10px; font-weight: 700; }
.host-app #accountUser .userinfo,
.host-app #user_page_account .menus,
.host-app #manageReserve .card,
.host-app .listEarnest .box-content { border-radius: 18px; background: #fff; box-shadow: 0 12px 35px rgba(69,25,43,.05); }
select#host-reservation-sort {
    outline: none !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}
@media (max-width: 1080px) {
    .host-shell { grid-template-columns: 230px minmax(0, 1fr); }
    .host-sidebar { width: 230px; padding-inline: 16px; }
    .host-benefits { gap: 48px; }
    .host-onboarding { grid-template-columns: 250px minmax(0, 1fr); gap: 28px; }
    .host-property-grid { grid-template-columns: minmax(0, 1fr) 280px; }
    .host-dashboard-stats { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .host-dashboard-attention__list { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
    .host-landing__header { grid-template-columns: 1fr auto; width: calc(100% - 32px); min-height: 76px; }
    .host-landing__header nav { display: none; }
    .host-landing__brand img { width: 34px; height: 34px; }
    .host-hero { min-height: 720px; align-items: flex-end; }
    .host-hero__shade { background: linear-gradient(0deg, rgba(25,10,16,.94) 8%, rgba(25,10,16,.42) 74%, rgba(25,10,16,.28)); }
    .host-hero__content { width: calc(100% - 40px); margin: 0 auto 58px; }
    .host-hero__content h1 { font-size: clamp(38px, 10vw, 58px); }
    .host-steps__grid { grid-template-columns: repeat(2, 1fr); }
    .host-benefits { grid-template-columns: 1fr; padding-inline: 24px; }
    .host-benefits__visual { min-height: 380px; }

    .host-shell { display: block; }
    .host-sidebar { display: none; }
    .host-workspace { width: 100%; }
    .host-topbar { grid-template-columns: auto 1fr auto; min-height: 68px; padding: 0 16px; }
    .host-mobile-navigation { position: relative; z-index: 3; display: block; }
    .host-mobile-navigation summary { display: flex; align-items: center; gap: 6px; min-height: 42px; padding: 4px 6px; border-radius: 12px; color: var(--ink); cursor: pointer; font-size: 10px; font-weight: 700; list-style: none; }
    .host-mobile-navigation summary::-webkit-details-marker { display: none; }
    .host-mobile-navigation summary img { width: 32px; height: 32px; }
    .host-mobile-navigation summary svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.8; transition: transform 180ms ease; }
    .host-mobile-navigation[open] summary { color: var(--brand); background: var(--tint); }
    .host-mobile-navigation[open] summary svg { transform: rotate(180deg); }
    .host-mobile-navigation nav { position: absolute; top: calc(100% + 12px); right: 0; display: grid; width: min(310px, calc(100vw - 32px)); padding: 10px; border: 1px solid var(--border); border-radius: 18px; background: rgba(255,255,255,.98); box-shadow: 0 22px 55px rgba(51,21,34,.18); backdrop-filter: blur(18px); }
    .host-mobile-navigation nav a { display: flex; align-items: center; min-height: 48px; padding: 0 14px; border-radius: 11px; color: var(--muted); font-size: 12px; font-weight: 600; }
    .host-mobile-navigation nav a.active { color: var(--brand); background: var(--tint); }
    .host-topbar__title { padding-inline: 12px; }
    .host-support-link { display: none; }
    .host-primary-link { width: 42px; min-width: 42px; min-height: 42px; padding: 0; font-size: 0; }
    .host-primary-link svg { width: 20px; }
    .host-main { min-height: calc(100svh - 68px); padding: 24px 18px 36px; }
    .host-page-title > div span { display: none; }

    .host-onboarding { display: block; }
    .host-onboarding__aside { position: static; padding: 0 0 20px; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
    .host-onboarding__aside h1 { font-size: 22px; }
    .host-progress { display: none; }
    .host-draft-state { border-top: 0; }
    .host-onboarding__form { padding: 24px 20px calc(116px + env(safe-area-inset-bottom)); border-radius: 20px; }
    .host-onboarding__actions { position: fixed; inset: auto 0 0; z-index: 35; grid-template-columns: minmax(92px,auto) minmax(84px,1fr) minmax(92px,auto); min-height: 82px; padding: 12px max(16px,env(safe-area-inset-right)) max(12px,env(safe-area-inset-bottom)) max(16px,env(safe-area-inset-left)); border-radius: 0; background: rgba(255,255,255,.97); box-shadow: 0 -12px 35px rgba(56,26,37,.09); }
    .host-onboarding__actions > .host-onboarding__step-status { min-width: 84px; }
    .host-mobile-progress { display: block; width: 84px; height: 4px; margin-top: 5px; overflow: hidden; border-radius: 4px; background: #ebdfe4; }
    .host-mobile-progress i { display: block; width: 14.28%; height: 100%; border-radius: inherit; background: var(--brand); transition: width .25s ease; }
    .host-onboarding__actions .host-button { min-width: 92px; min-height: 46px; padding-inline: 16px; }

    .host-property-hero { grid-template-columns: 1fr; }
    .host-property-hero__photo { min-height: 250px; }
    .host-property-grid { grid-template-columns: 1fr; }
    .host-property-side { display: grid; grid-template-columns: repeat(2, 1fr); }

}

@media (max-width: 580px) {
    .host-landing__brand span { display: none; }
    .host-landing__login { min-width: 96px; padding-inline: 12px; font-size: 11px; }
    .host-hero { min-height: 690px; }
    .host-hero__photo { background-position: 43% center; }
    .host-hero__content { width: calc(100% - 32px); }
    .host-hero__content h1 { margin-top: 12px; font-size: 39px; letter-spacing: -1.5px; }
    .host-hero__content p { font-size: 13px; }
    .host-hero__actions { align-items: stretch; flex-direction: column; }
    .host-hero__primary,
    .host-hero__secondary { width: 100%; }
    .host-hero__proof { flex-direction: column; gap: 7px; margin-top: 20px; }
    .host-landing-section { width: calc(100% - 32px); padding: 72px 0; }
    .host-section-heading { text-align: right; }
    .host-steps__grid { grid-template-columns: 1fr; }
    .host-steps__grid article { display: flex; align-items: flex-start; gap: 16px; min-height: 0; padding: 22px; }
    .host-steps__grid h3 { margin: 2px 0 5px; }
    .host-benefits { width: 100%; padding: 72px 16px; }
    .host-benefits__visual { min-height: 330px; }
    .host-benefits__card--main { inset: 38px 20px auto; }
    .host-benefits__card--small { inset: auto 42px 24px auto; }
    .host-landing-cta { align-items: stretch; flex-direction: column; width: calc(100% - 32px); margin: 64px auto; padding: 28px; }
    .host-landing-cta h2 { font-size: 22px; }
    .host-landing__footer { grid-template-columns: 1fr auto; width: calc(100% - 32px); }
    .host-landing__footer p { grid-column: 1 / -1; grid-row: 2; }

    .host-topbar__title { overflow: hidden; }
    .host-main { padding-inline: 14px; }
    .host-back { width: 38px; height: 38px; flex-basis: 38px; }
    .host-onboarding__form { padding-inline: 16px; }
    .host-step__header { margin-bottom: 24px; }
    .host-step__header h2 { font-size: 24px; }
    .host-form-grid,
    .host-amenities { grid-template-columns: 1fr; }
    .host-amenity-toolbar { grid-template-columns: 1fr; align-items: stretch; }
    .host-amenity-toolbar label { grid-column: auto; }
    .host-amenity-toolbar span { white-space: normal; }
    .host-room-amenities > header { align-items: flex-start; flex-direction: column; }
    .host-room-beds,
    .host-room-features { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .host-search-select { grid-template-columns: 1fr; }
    .host-choice-grid { grid-template-columns: repeat(2, 1fr); }
    .host-location-card { grid-template-columns: 1fr; }
    .host-location-card button { width: 100%; }
    .host-rules > div { grid-template-columns: 1fr; }
    .host-upload > label { min-height: 230px; padding-inline: 20px; }
    .host-upload__preview { grid-template-columns: repeat(2, 1fr); }
    .host-existing-photos > div { grid-template-columns: repeat(3, 1fr); }
    .host-verification-methods > div { grid-template-columns: 1fr; }
    .host-verification-methods label { min-height: 132px; padding: 15px; }
    .host-verification-panel { padding: 16px 13px; }
    .host-verification-location { width: 100%; }
    .host-verification-upload > label { align-items: flex-start; flex-wrap: wrap; }
    .host-verification-upload > label > span { width: calc(100% - 44px); }
    .host-verification-upload > label > b { width: 100%; justify-content: center; }
    .host-live-recorder__stage,
    .host-live-recorder__stage video { min-height: 210px; }
    .host-live-recorder__controls button { width: 100%; }
    .host-onboarding__actions { grid-template-columns: minmax(76px,auto) minmax(56px,1fr) minmax(76px,auto); gap: 7px; }
    .host-onboarding__actions .host-button { min-width: 76px; padding-inline: 10px; font-size: 10px; }
    .host-onboarding__actions [data-step-submit] { max-width: 150px; white-space: normal; line-height: 1.6; text-align: center; }
    .host-onboarding__actions .host-button svg { width: 16px; height: 16px; flex-basis: 16px; }
    .host-mobile-progress { width: 64px; }
    .host-onboarding__actions > .host-onboarding__step-status { min-width: 56px; font-size: 8px; }
    .host-property-hero__content { padding: 24px 20px; }
    .host-property-hero__actions { flex-direction: column; }
    .host-property-hero__actions .host-button { width: 100%; }
    .host-panel { padding: 20px 16px; }
    .host-completion-list { grid-template-columns: 1fr; }
    .host-verification-summary__body { grid-template-columns: 44px minmax(0,1fr); }
    .host-verification-summary__body > span { width: 44px; height: 44px; }
    .host-verification-summary__body > a { grid-column: 1 / -1; justify-content: center; }
    .host-property-facts { grid-template-columns: repeat(2, 1fr); }
    .host-property-gallery { grid-template-columns: repeat(2, 1fr); }
    .host-property-side { display: flex; }
    .host-dashboard-head { align-items: stretch; flex-direction: column; padding: 24px 20px; }
    .host-dashboard-head h1 { font-size: 24px; }
    .host-dashboard-head .host-button { width: 100%; }
    .host-dashboard-stats { grid-template-columns: 1fr 1fr; }
    .host-dashboard-stats article,
    .host-dashboard-stats > a { min-height: 102px; padding: 14px; }
    .host-dashboard-attention { padding: 20px 15px; }
    .host-dashboard-attention > header { align-items: flex-start; flex-direction: column; }
    .host-dashboard-attention-row { grid-template-columns: 66px minmax(0,1fr); }
    .host-dashboard-attention-row__image { width: 66px; height: 66px; }
    .host-dashboard-attention-row__action { grid-column: 2; padding: 0; }
    .host-dashboard-finance { padding: 20px 15px; }
    .host-dashboard-finance > header { align-items: flex-start; flex-direction: column; }
    .host-dashboard-finance__layout { grid-template-columns: 1fr; }
    .host-finance-metrics { grid-template-columns: 1fr; }
    .host-finance-metric { min-height: 132px; }
    .host-dashboard-links { padding: 20px 15px; }
    .host-dashboard-links > header { align-items: flex-start; flex-direction: column; }
    .host-dashboard-links > div { grid-template-columns: 1fr; }
}

@media (max-height: 500px) and (orientation: landscape) {
    .host-sidebar__support { display: none; }
    .host-nav { margin-top: 10px; }
    .host-nav a { min-height: 40px; }
    .host-onboarding__aside { position: static; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
