:root {
    --font-body: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: "Margin", "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    --bg: #f7f1e6;
    --bg-soft: #efe5d2;
    --surface: #ffffff;
    --surface-soft: #fcf8ef;
    --text: #1d1d18;
    --muted: #5f5b4f;
    --primary: #2f7a4e;
    --primary-dark: #245f3d;
    --border: #d8ccb7;
    --border-soft: #e8ddcb;
    --danger: #b22525;
    --warning: #9b6a08;
    --radius: 14px;
    --shadow: 0 12px 28px rgba(36, 29, 20, 0.08);
}

* {
    box-sizing: border-box;
}

[hidden] {
    display: none !important;
}

body.app-body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    background:
        radial-gradient(circle at 12% 10%, #e7dcc6 0, transparent 30%),
        radial-gradient(circle at 92% 6%, #d8e7da 0, transparent 22%),
        var(--bg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1,
h2 {
    font-family: var(--font-heading);
}

a {
    color: inherit;
}

.container {
    width: min(1100px, calc(100% - 2rem));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(8px);
    background: rgba(247, 241, 230, 0.9);
    border-bottom: 1px solid rgba(29, 29, 24, 0.08);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 0;
}

.brand {
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0.4px;
    display: inline-flex;
    align-items: center;
}

.nav-toggle {
    border: 1px solid rgba(29, 29, 24, 0.2);
    background: var(--surface);
    border-radius: 10px;
    padding: 0.45rem 0.7rem;
    font-size: 0.9rem;
    display: none;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.nav-link {
    text-decoration: none;
    padding: 0.45rem 0.7rem;
    border-radius: 10px;
    color: var(--muted);
    font-weight: 600;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
    background: var(--bg-soft);
}
.nav-profile-menu {
    position: relative;
}

.nav-profile-link {
    width: 2.45rem;
    height: 2.45rem;
    padding: 0.2rem;
    border-radius: 999px;
    border: 1px solid var(--border-soft);
    background: var(--surface);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

button.nav-profile-link {
    cursor: pointer;
    font: inherit;
    border-width: 1px;
}

.nav-profile-link:hover,
.nav-profile-link.active {
    border-color: var(--border);
    background: var(--bg-soft);
}

.nav-profile-avatar {
    width: 100%;
    height: 100%;
    border-radius: 999px;
    object-fit: cover;
    display: block;
}

.nav-profile-avatar-placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.86rem;
    font-weight: 700;
    background: #e8f3ec;
}

.nav-profile-text {
    display: none;
}

.nav-profile-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 0.42rem);
    min-width: 205px;
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 12px 26px rgba(36, 29, 20, 0.12);
    padding: 0.36rem;
    z-index: 30;
    display: grid;
    gap: 0.2rem;
}

.nav-profile-dropdown[hidden] {
    display: none;
}

.nav-profile-dropdown-link {
    text-decoration: none;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.45rem 0.58rem;
    border-radius: 8px;
}

.nav-profile-dropdown-link:hover {
    background: #f8f3e8;
}

.nav-profile-dropdown-link.is-danger {
    color: #7a5757;
    background: #fdf6f6;
}

.nav-profile-dropdown-link.is-danger:hover {
    color: #6b4444;
    background: #f8ebeb;
}

.nav-cta {
    color: #fff;
    background: var(--primary);
}

.nav-cta:hover,
.nav-cta.active {
    color: #fff;
    background: var(--primary-dark);
}


.nav-inline-form {
    margin: 0;
}

.nav-link-button {
    border: 0;
    cursor: pointer;
    font: inherit;
}

.nav-user {
    font-size: 0.9rem;
    color: var(--muted);
    padding: 0 0.3rem;
}

.page-content {
    flex: 1;
    width: min(1100px, calc(100% - 2rem));
    padding: 1.4rem 0 2.5rem;
}

.card {
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: clamp(1rem, 2vw, 1.5rem);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.hero {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1rem;
    align-items: center;
}

.hero h1 {
    margin-top: 0;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.hero p {
    color: var(--muted);
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.btn {
    border: 0;
    border-radius: 10px;
    padding: 0.6rem 0.95rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-soft);
    color: var(--text);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.form-card {
    max-width: 520px;
    margin: 0 auto;
}

label {
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.6rem 0.7rem;
    margin-bottom: 0.9rem;
    font: inherit;
    background: #fff;
}

input:focus,
textarea:focus,
select:focus {
    outline: 2px solid rgba(47, 122, 78, 0.25);
    border-color: var(--primary);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

th,
td {
    text-align: left;
    padding: 0.7rem;
    border-bottom: 1px solid var(--border-soft);
}

.listing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.listing-card {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.listing-card h2 {
    margin: 0;
}

.listing-meta {
    color: var(--muted);
    font-size: 0.92rem;
    margin: 0;
}

.listing-bottom {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    align-items: center;
}

.listing-price {
    margin: 0;
    font-weight: 800;
}

.listing-detail {
    display: grid;
    gap: 1rem;
}

.listing-detail ul {
    margin: 0;
    padding-left: 1.2rem;
}

.listing-hero-head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.listing-hero-title {
    margin: 0;
    font-size: clamp(1.5rem, 3.2vw, 2.2rem);
    line-height: 1.14;
}

.listing-hero-location {
    margin: 0.38rem 0 0;
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 600;
}

.listing-hero-strong-badges {
    margin: 0.44rem 0 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.listing-hero-strong-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    padding: 0.28rem 0.62rem;
    border-radius: 999px;
    border: 1px solid #b7d7c4;
    background: #edf7f1;
    color: #205f41;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1;
}

.listing-hero-strong-badge-icon {
    width: 0.95rem;
    height: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.listing-hero-strong-badge-svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.listing-hero-rating {
    margin: 0.45rem 0 0;
    display: flex;
    align-items: center;
    gap: 0.38rem;
    flex-wrap: wrap;
    color: #213425;
    font-size: 0.95rem;
    font-weight: 700;
}

.listing-hero-rating-main {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
}

.listing-hero-rating-star {
    color: #e3a92d;
    font-size: 1rem;
}

.listing-hero-rating-count {
    color: #355841;
    font-size: 0.86rem;
}

.listing-hero-rating-sep {
    color: #8a877b;
}

.listing-hero-verified {
    color: #2f6f4c;
    font-size: 0.86rem;
    font-weight: 700;
}

.listing-hero-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.listing-hero-action-btn {
    border: 1px solid #ddd1bc;
    background: #fff;
    color: #2b2a24;
    font-weight: 700;
    padding: 0.52rem 0.74rem;
    border-radius: 10px;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.listing-hero-action-btn:hover {
    border-color: #cab89d;
    background: #faf6ee;
    transform: translateY(-1px);
}

.listing-hero-action-btn svg {
    width: 17px;
    height: 17px;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.listing-hero-favorite-btn svg path {
    fill: transparent;
    transition: fill 0.2s ease;
}

.listing-hero-favorite-btn.is-active {
    border-color: #e5bcc4;
    background: #fdeff1;
    color: #ad2f42;
}

.listing-hero-favorite-btn.is-active svg path {
    fill: currentColor;
}

.listing-hero-gallery {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 0.65rem;
}

.listing-hero-main-media,
.listing-hero-thumb {
    border-radius: 14px;
    overflow: hidden;
    background: #e9decc;
}

.listing-hero-main-image {
    width: 100%;
    height: 100%;
    min-height: 360px;
    max-height: 420px;
    display: block;
    object-fit: cover;
}

.listing-hero-side-media {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}

.listing-hero-thumb-image {
    width: 100%;
    height: 100%;
    min-height: 174px;
    display: block;
    object-fit: cover;
}

.listing-hero-media-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #635f53;
    font-size: 0.9rem;
    font-weight: 600;
}

.listing-hero-description {
    margin: 0;
    color: #373428;
    line-height: 1.55;
}

.listing-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(0, 3fr);
    gap: 1rem;
    align-items: start;
}

.listing-detail-main {
    min-width: 0;
    display: grid;
    gap: 1rem;
}

.listing-detail-main .review-card,
.listing-detail-main .availability-public-card {
    margin-top: 0;
}

.listing-detail-sidebar {
    position: sticky;
    top: 5.8rem;
}

.listing-detail-block h2,
.listing-map-card h2,
.listing-booking-card h2 {
    margin-top: 0;
}

.listing-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
}

.listing-info-item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    border: 1px solid #e7dcc8;
    border-radius: 11px;
    padding: 0.52rem 0.58rem;
    background: #fdfaf4;
    color: #2e2c24;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.25;
}

.listing-info-icon {
    width: 1.75rem;
    height: 1.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: #f2eadb;
    color: #2f7a4e;
}

.listing-info-icon-svg {
    width: 1rem;
    height: 1rem;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.listing-map-approx-line {
    margin: 0.3rem 0 0.55rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #245f3d;
    font-weight: 700;
    font-size: 0.9rem;
}

.listing-map-embed-wrap {
    width: 100%;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-soft);
    background: #ece3d2;
    position: relative;
}

.listing-map-embed {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: saturate(0.88) contrast(0.95);
}

.listing-map-embed-wrap::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 92px;
    height: 92px;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.62);
    backdrop-filter: blur(6px);
    pointer-events: none;
    z-index: 450;
}

.listing-map-privacy-note {
    margin: 0.58rem 0 0;
    color: #5f5a4f;
    font-size: 0.86rem;
}

.listing-map-card .btn {
    margin-top: 0.65rem;
}

.listing-booking-card {
    display: grid;
    gap: 0.72rem;
    border: 1px solid #e7dcc8;
    box-shadow: 0 14px 30px rgba(36, 29, 20, 0.1);
    container-type: inline-size;
}

.listing-booking-price {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #1a1813;
    line-height: 1.04;
}

.listing-booking-price-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #5f5a4f;
}

.listing-booking-price strong {
    font-size: 1.7rem;
    font-weight: 800;
    color: #15140f;
}

.listing-booking-price-unit {
    font-size: 0.86rem;
    font-weight: 700;
    color: #2f2b21;
}

.listing-booking-form {
    display: grid;
    gap: 0.58rem;
}

.listing-booking-form .booking-form-grid,
.listing-booking-dates {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
}

.listing-booking-dates > div {
    margin-bottom: 0;
    min-width: 0;
}

.listing-booking-dates label {
    margin-bottom: 0.18rem;
    font-size: 0.78rem;
    color: #5d5a4f;
}

.listing-booking-dates input {
    margin-bottom: 0;
    width: 100%;
    min-width: 0;
    min-height: 45px;
    padding: 0.48rem 0.55rem;
}

.listing-booking-guests label {
    margin-bottom: 0.18rem;
    font-size: 0.78rem;
    color: #5d5a4f;
}

.listing-booking-guests-select {
    margin-bottom: 0;
    min-height: 45px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: #fff;
    padding: 0.45rem 0.55rem;
}

.listing-booking-total {
    margin: 0;
    padding-top: 0.58rem;
    border-top: 1px dashed #d6cab3;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem;
    color: #39372e;
    font-weight: 700;
}

.listing-booking-total strong {
    font-size: 1.1rem;
    color: #16150f;
}

.listing-booking-submit {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    font-size: 0.95rem;
    border-radius: 11px;
}

.listing-host-card {
    display: grid;
    gap: 0.58rem;
}

.listing-host-head {
    display: flex;
    align-items: center;
    gap: 0.72rem;
}

.listing-host-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #d8ccb7;
    background: #fff;
}

.listing-host-avatar-placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ecf4ef;
    color: #2f6f4c;
    font-size: 1.1rem;
    font-weight: 800;
}

.listing-host-name {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
    color: #16150f;
}

.listing-host-meta {
    margin: 0.16rem 0 0;
    color: #5f5a4f;
    font-size: 0.86rem;
    font-weight: 600;
}

.listing-host-rating-line {
    margin: 0.08rem 0 0;
    color: #2f5d45;
    font-size: 0.92rem;
    font-weight: 700;
}

.listing-host-verified-line {
    margin: 0;
    color: #2f6f4c;
    font-size: 0.9rem;
    font-weight: 700;
}

.listing-host-contact-btn {
    width: 100%;
    margin-top: 0.18rem;
    justify-content: center;
}

@container (max-width: 430px) {
    .listing-booking-form .booking-form-grid,
    .listing-booking-dates {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {
    .listing-hero-gallery {
        grid-template-columns: 1fr;
    }

    .listing-hero-main-image {
        min-height: 280px;
        max-height: 340px;
    }

    .listing-hero-thumb-image {
        min-height: 140px;
    }

    .listing-detail-layout {
        grid-template-columns: 1fr;
    }

    .listing-detail-sidebar {
        position: static;
    }

    .listing-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .listing-hero-side-media {
        grid-template-columns: 1fr 1fr;
    }

    .listing-hero-actions {
        width: 100%;
    }

    .listing-hero-action-btn {
        flex: 1;
        justify-content: center;
    }
}

.image-upload-form {
    margin-top: 0.9rem;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 0.8rem;
}

.photo-card {
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.photo-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    display: block;
    object-fit: cover;
    background: #ede5d8;
}

.photo-actions {
    padding: 0.55rem;
    display: flex;
    justify-content: flex-end;
}

.photo-empty {
    color: var(--muted);
    margin: 0.6rem 0 0;
}

.flash {
    border-radius: 10px;
    padding: 0.65rem 0.8rem;
    margin-bottom: 0.7rem;
    border: 1px solid transparent;
    background: var(--surface-soft);
}

.flash-success {
    background: #e8f4eb;
    border-color: #b4d6c1;
}

.flash-error,
.flash-danger,
.flash-verify-email-error {
    background: #fdecec;
    border-color: #efb9b9;
    color: #712222;
}

.flash-warning {
    background: #fff7e6;
    border-color: #f0d8a1;
    color: #7a5209;
}

.site-footer {
    border-top: 1px solid rgba(29, 29, 24, 0.08);
    background: rgba(255, 255, 255, 0.84);
}

.footer-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.9rem 1.2rem;
    color: var(--muted);
    font-size: 0.9rem;
    padding: 1.05rem 0;
}

.footer-brand-block {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-brand-logo {
    display: block;
    width: auto;
    height: 72px;
    flex-shrink: 0;
}

.footer-brand-name {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
}

.footer-brand-text {
    margin: 0;
    line-height: 1.45;
    max-width: 620px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.45rem 0.9rem;
    padding-top: 0;
}

.footer-links a {
    text-decoration: none;
    color: var(--muted);
    font-weight: 600;
}

.footer-links a:hover {
    color: var(--primary-dark);
}

.footer-copy {
    margin: 0;
    grid-column: 1 / -1;
    border-top: 1px solid rgba(29, 29, 24, 0.1);
    padding-top: 0.7rem;
    font-size: 0.86rem;
}
@media (max-width: 980px) {
    .listing-grid,
    .photo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 880px) {
    .hero,
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .nav-toggle {
        display: inline-flex;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0.4rem;
        padding: 0.8rem 1rem 1rem;
        border-top: 1px solid rgba(29, 29, 24, 0.08);
        background: rgba(247, 241, 230, 0.98);
    }

    .main-nav.is-open {
        display: flex;
    }

    .nav-profile-menu {
        width: 100%;
    }

    .nav-profile-link {
        width: 100%;
        height: auto;
        justify-content: flex-start;
        gap: 0.55rem;
        border-radius: 10px;
        padding: 0.45rem 0.7rem;
    }

    .nav-profile-avatar {
        width: 1.9rem;
        height: 1.9rem;
    }

    .nav-profile-text {
        display: inline;
        font-weight: 600;
        color: var(--muted);
    }

    .nav-profile-dropdown {
        position: static;
        min-width: 0;
        width: 100%;
        margin-top: 0.4rem;
        box-shadow: none;
        border-radius: 10px;
        background: var(--surface);
    }

    .listing-grid,
    .photo-grid {
        grid-template-columns: 1fr;
    }

    .footer-wrap {
        grid-template-columns: 1fr;
    }

    .footer-brand-block {
        align-items: flex-start;
    }

    .footer-brand-logo {
        height: 58px;
    }

    .footer-links {
        justify-content: flex-start;
        padding-top: 0;
    }
}

.availability-form {
    margin-top: 0.8rem;
}

.availability-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.blocked-dates-list {
    display: grid;
    gap: 0.5rem;
    margin-top: 0.9rem;
}

.blocked-date-item {
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    padding: 0.55rem 0.7rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
    background: #fff;
}

.calendar-note {
    margin: 0.6rem 0 0;
    color: var(--muted);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.calendar-card {
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    padding: 0.7rem;
    background: #fff;
}

.calendar-card h3 {
    margin: 0 0 0.6rem;
    font-size: 1rem;
}

.calendar-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: none;
}

.calendar-table th,
.calendar-table td {
    text-align: center;
    padding: 0.35rem;
    border: 1px solid var(--border-soft);
}

.calendar-table th {
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 700;
}

.calendar-cell {
    height: 2rem;
    font-weight: 600;
    background: #fbf8f1;
}

.calendar-empty {
    background: #fff;
}

.calendar-past {
    color: #9f9788;
    background: #f2ece1;
}

.calendar-blocked {
    color: #721c24;
    background: #fdecee;
}

.availability-public-card .calendar-cell {
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.availability-public-card .calendar-cell.calendar-available {
    cursor: pointer;
    background: #f4f9f6;
}

.availability-public-card .calendar-cell.calendar-available:hover {
    background: #e0efe7;
    box-shadow: inset 0 0 0 1px #9fceb5;
}

.availability-public-card .calendar-cell.calendar-blocked {
    color: #5f0f17;
    background: #f8d1d6;
    font-weight: 700;
}

.availability-public-card .calendar-cell.is-selected {
    background: var(--primary);
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.availability-public-card .calendar-cell.is-selected span {
    color: #fff;
}

.calendar-availability-range {
    margin: 0.42rem 0 0;
    color: #245f3d;
    font-weight: 700;
}

.calendar-legend {
    margin: 0.9rem 0 0;
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 0.9rem;
}

.legend-dot {
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 50%;
    display: inline-block;
    margin-right: 0.35rem;
    vertical-align: middle;
}

.legend-blocked {
    background: #cf4d5a;
}

.legend-available {
    background: #b7d6c2;
}

.availability-public-card {
    margin-top: 1rem;
}

@media (max-width: 880px) {
    .availability-form-grid,
    .calendar-grid {
        grid-template-columns: 1fr;
    }
}

.booking-card {
    margin-top: 1rem;
}

.booking-form {
    margin-top: 0.6rem;
}

.booking-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.status-badge {
    display: inline-flex;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
}

.status-pending {
    color: #6f5a00;
    background: #fff4cc;
}

.status-confirmed {
    color: #245f3d;
    background: #e5f2e9;
}

.status-cancelled {
    color: #7c2020;
    background: #fde6e6;
}

@media (max-width: 880px) {
    .booking-form-grid {
        grid-template-columns: 1fr;
    }
}

.tourist-bookings-head h1 {
    margin: 0;
}

.tourist-booking-tabs {
    margin-top: 0.9rem;
    display: flex;
    gap: 1rem;
    border-bottom: 1px solid var(--border-soft);
}

.tourist-booking-tab {
    border: 0;
    border-bottom: 2px solid transparent;
    background: transparent;
    color: var(--muted);
    font: inherit;
    font-weight: 700;
    padding: 0.45rem 0.2rem 0.52rem;
    cursor: pointer;
}

.tourist-booking-tab:hover {
    color: var(--text);
}

.tourist-booking-tab.is-active {
    color: var(--primary-dark);
    border-bottom-color: var(--primary);
}

.tourist-booking-tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.45rem;
    padding: 0 0.38rem;
    margin-left: 0.32rem;
    border-radius: 999px;
    background: #efe8da;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.35;
}

.tourist-booking-tab.is-active .tourist-booking-tab-count {
    background: #e5f2e9;
    color: var(--primary-dark);
}

.tourist-booking-panel {
    margin-top: 1rem;
}

.tourist-booking-grid {
    display: grid;
    gap: 0.85rem;
}

.tourist-booking-card {
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    background: linear-gradient(160deg, #ffffff 0%, var(--surface-soft) 100%);
    padding: 0.7rem;
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 0.8rem;
    align-items: stretch;
}

.tourist-booking-media-wrap {
    border-radius: 12px;
    overflow: hidden;
}

.tourist-booking-media {
    width: 100%;
    height: 100%;
    min-height: 145px;
    object-fit: cover;
    display: block;
    background: #ede4d3;
}

.tourist-booking-media-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 0.88rem;
    border: 1px dashed #ccbca2;
}

.tourist-booking-content {
    min-width: 0;
    display: grid;
    gap: 0.34rem;
    align-content: start;
}

.tourist-booking-content h2 {
    margin: 0;
    font-size: 1.06rem;
}

.tourist-booking-city,
.tourist-booking-dates {
    margin: 0;
    color: var(--muted);
}

.tourist-booking-status-row {
    margin: 0.2rem 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.tourist-booking-price {
    font-weight: 700;
    color: var(--text);
}

.tourist-booking-actions {
    margin-top: 0.35rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tourist-booking-note {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid var(--border-soft);
    background: #f9f3e8;
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 600;
    padding: 0.35rem 0.65rem;
}

.tourist-bookings-empty,
.tourist-booking-empty-tab {
    color: var(--muted);
}

.tourist-bookings-empty .btn {
    margin-top: 0.5rem;
}

@media (max-width: 920px) {
    .tourist-booking-card {
        grid-template-columns: 1fr;
    }

    .tourist-booking-media {
        min-height: 190px;
    }
}

@media (max-width: 640px) {
    .tourist-booking-tabs {
        gap: 0.7rem;
    }

    .tourist-booking-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .tourist-booking-actions .btn {
        width: 100%;
    }

    .tourist-booking-note {
        justify-content: center;
    }
}

.payment-card {
    margin-top: 1rem;
}

.payment-card .grid-2 {
    margin-top: 1rem;
}

.host-workspace {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
}

.host-sidebar {
    position: sticky;
    top: 1rem;
    padding: 0.95rem;
}

.host-sidebar-title {
    margin: 0 0 0.7rem;
    font-size: 1rem;
}

.host-nav {
    display: grid;
    gap: 0.35rem;
}

.host-nav-link {
    text-decoration: none;
    padding: 0.5rem 0.65rem;
    border-radius: 10px;
    color: var(--muted);
    font-weight: 600;
    border: 1px solid transparent;
}

.host-nav-link:hover {
    color: var(--text);
    background: var(--surface-soft);
    border-color: var(--border-soft);
}

.host-nav-link.is-active {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
}

.host-content {
    min-width: 0;
    display: grid;
    gap: 1rem;
}

.dashboard-stats {
    margin-top: 0.95rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.stat-card {
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    padding: 0.8rem;
    background: linear-gradient(165deg, #ffffff 0%, var(--surface-soft) 100%);
}

.stat-label {
    margin: 0;
    color: var(--muted);
    font-weight: 700;
    font-size: 0.9rem;
}

.stat-value {
    margin: 0.35rem 0 0;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text);
}

.stat-note {
    margin: 0.28rem 0 0;
    color: var(--muted);
    font-size: 0.84rem;
}

.admin-settings-card {
    margin-top: 0.95rem;
}

.admin-settings-form {
    margin-top: 0.62rem;
    display: grid;
    gap: 0.55rem;
    max-width: 440px;
}

.admin-settings-form label {
    margin: 0;
}

.admin-settings-form input {
    margin-bottom: 0;
}

.admin-settings-form select {
    margin-bottom: 0;
}

.admin-settings-inline {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 0.55rem;
}

@media (max-width: 640px) {
    .admin-settings-inline {
        grid-template-columns: 1fr;
    }
}

.stat-inline-link {
    margin-top: 0.38rem;
    display: inline-flex;
    font-size: 0.83rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.stat-inline-link:hover {
    color: var(--primary);
}

.host-overview-greeting {
    margin: 0;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.95rem;
}

.host-overview h1 {
    margin: 0.25rem 0 0;
}

.host-overview-intro {
    margin: 0.45rem 0 0;
    color: var(--muted);
}

.host-overview-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1180px) {
    .host-overview-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
     .host-overview-head {
        align-items: stretch;
    }

    .host-overview-profile {
        align-self: flex-start;
    }
   .host-overview-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {
    .host-workspace {
        grid-template-columns: 1fr;
    }

    .host-sidebar {
        position: static;
    }

    .host-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .host-nav {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 980px) {
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
}

.message-thread {
    display: grid;
    gap: 0.7rem;
    margin: 0.8rem 0 1rem;
}

.message-item {
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    padding: 0.65rem 0.75rem;
    background: #fff;
}

.message-me {
    border-color: #b9d8c3;
    background: #edf6f0;
}

.message-other {
    border-color: var(--border-soft);
    background: #fff;
}

.message-meta {
    margin: 0;
    font-size: 0.82rem;
    color: var(--muted);
}

.message-body {
    margin: 0.45rem 0 0;
    line-height: 1.45;
}

.message-form {
    margin-top: 0.6rem;
}
.table-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.table-actions form {
    margin: 0;
}

.inline-note {
    display: inline-flex;
    align-items: center;
    color: var(--muted);
    font-size: 0.82rem;
    padding: 0.2rem 0.3rem;
}
.pagination-wrap {
    margin-top: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.pagination-info {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.pagination-nav {
    display: flex;
}

.pagination-links {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: wrap;
}

.pagination-current {
    color: var(--muted);
    font-size: 0.88rem;
    padding: 0 0.2rem;
}

.btn-disabled {
    opacity: 0.55;
    pointer-events: none;
    cursor: default;
}
.listing-filter-card {
    margin-top: 1rem;
}

.listing-filter-form {
    margin-top: 0.6rem;
}

.listing-filter-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.8rem;
}

.listing-filter-actions {
    margin-top: 0.35rem;
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.listing-results-card {
    margin-top: 1rem;
}

.similar-listings-card {
    margin-top: 1rem;
}

.similar-listings-head h2 {
    margin: 0;
}

.similar-listings-head p {
    margin: 0.38rem 0 0;
    color: var(--muted);
}

.similar-listings-grid {
    margin-top: 0.92rem;
}

.listing-results-meta {
    margin: 0 0 0.9rem;
    color: var(--muted);
    font-weight: 600;
}

.listing-load-more {
    margin-top: 1rem;
    display: grid;
    justify-items: center;
    gap: 0.45rem;
}

.listing-load-more-note {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.listing-cover {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    background: #ece3d2;
}

.listing-cover-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 0.9rem;
    border: 1px dashed #cfc2aa;
}

.listing-results-grid {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
}

.listing-discovery-card {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border-soft);
    background: linear-gradient(160deg, #ffffff 0%, var(--surface-soft) 100%);
    box-shadow: 0 8px 20px rgba(36, 29, 20, 0.08);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.listing-discovery-card:hover {
    transform: translateY(-4px);
    border-color: #cbbba0;
    box-shadow: 0 14px 28px rgba(36, 29, 20, 0.13);
}

.listing-discovery-media {
    position: relative;
}

.listing-discovery-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 12, 10, 0.04) 52%, rgba(8, 12, 10, 0.5) 100%);
    pointer-events: none;
    z-index: 1;
}

.listing-discovery-card .listing-cover {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 0;
    background: #ece3d2;
}

.listing-discovery-card .listing-cover-placeholder {
    border: 0;
    font-size: 0.9rem;
}

.listing-card-badges {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    z-index: 3;
}

.listing-favorite-btn {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.52);
    background: rgba(13, 20, 16, 0.42);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    backdrop-filter: blur(4px);
    transition: background 0.2s ease, transform 0.2s ease;
}

.listing-favorite-btn:hover {
    background: rgba(13, 20, 16, 0.6);
    transform: translateY(-1px);
}

.listing-favorite-btn svg {
    width: 17px;
    height: 17px;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.listing-favorite-btn svg path {
    fill: transparent;
    transition: fill 0.2s ease;
}

.listing-favorite-btn.is-active {
    background: rgba(193, 55, 79, 0.88);
    border-color: rgba(255, 224, 230, 0.72);
}

.listing-favorite-btn.is-active svg path {
    fill: currentColor;
}

.listing-favorite-btn:disabled {
    opacity: 0.72;
    cursor: wait;
}

.listing-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.22rem;
    padding: 0.24rem 0.58rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    background: rgba(13, 20, 16, 0.44);
    color: #fff;
    font-size: 0.74rem;
    font-weight: 700;
    line-height: 1;
    backdrop-filter: blur(2px);
}

.listing-badge-icon {
    font-size: 0.78rem;
    line-height: 1;
}

.listing-badge-verified {
    background: rgba(47, 122, 78, 0.78);
    border-color: rgba(194, 232, 210, 0.55);
    color: #fff;
}

.listing-badge-top-rated {
    background: rgba(236, 188, 66, 0.86);
    border-color: rgba(255, 239, 178, 0.62);
    color: #2f2600;
}

.listing-badge-highlight {
    background: rgba(47, 122, 78, 0.72);
    border-color: rgba(201, 235, 213, 0.45);
    color: #fff;
}

.listing-card-content {
    padding: 0.85rem 0.9rem 0.95rem;
    display: flex;
    flex-direction: column;
    gap: 0.42rem;
    flex: 1;
}

.listing-card-title {
    margin: 0;
    font-size: 1.03rem;
    line-height: 1.3;
}

.listing-card-location {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.listing-card-quick-info {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    color: #4e594f;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.2;
}

.listing-card-quick-sep {
    opacity: 0.5;
}

.listing-card-rating {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.listing-card-rating-main {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    color: var(--text);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
}

.listing-card-rating-star {
    color: #e3a92d;
    margin-right: 0;
}

.listing-card-rating-value {
    letter-spacing: 0.01em;
}

.listing-card-rating-count {
    display: inline-flex;
    align-items: center;
    padding: 0.16rem 0.52rem;
    border-radius: 999px;
    border: 1px solid #d9e8df;
    background: #f4faf6;
    color: #2f5d45;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.1;
}

.listing-card-trust {
    margin-top: 0.2rem;
    display: flex;
    gap: 0.38rem;
    flex-wrap: wrap;
}

.listing-card-trust-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.18rem 0.56rem;
    border-radius: 999px;
    background: #eef7f1;
    border: 1px solid #d5e8dc;
    color: #2f6f4c;
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.1;
}

.listing-card-trust-badge-verified {
    background: #ecf3ff;
    border-color: #d8e4fb;
    color: #335f9f;
}

.listing-card-footer {
    margin-top: auto;
    padding-top: 0.68rem;
    border-top: 1px solid var(--border-soft);
    display: grid;
    align-items: stretch;
    gap: 0.65rem;
}

.listing-card-price {
    margin: 0;
    margin-left: auto;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    line-height: 1.06;
    color: #1a1813;
}

.listing-card-price-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #5f5a4f;
}

.listing-card-price strong {
    font-size: 1.34rem;
    font-weight: 800;
    color: #15140f;
}

.listing-card-price-unit {
    font-size: 0.82rem;
    font-weight: 700;
    color: #2f2b21;
}

.listing-card-footer .btn {
    padding: 0.46rem 0.78rem;
    border-radius: 9px;
    font-size: 0.86rem;
}

.listing-card-cta {
    width: 100%;
    justify-content: center;
}

@media (max-width: 1140px) {
    .listing-results-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .listing-results-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1140px) {
    .listing-filter-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 880px) {
    .listing-filter-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .listing-filter-grid {
        grid-template-columns: 1fr;
    }
}
.listing-card-compact {
    padding: 0.75rem;
}

.listing-card-compact h2 {
    margin: 0.65rem 0 0.2rem;
    font-size: 1.08rem;
}

.listing-city {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.listing-rating {
    margin: 0.38rem 0 0.55rem;
    font-weight: 700;
    font-size: 0.92rem;
}

.listing-card-compact .listing-bottom {
    margin-top: 0.4rem;
}
.listing-rating-large {
    margin-top: -0.25rem;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.review-card {
    margin-top: 1rem;
}

.review-list {
    display: grid;
    gap: 0.65rem;
    margin-top: 0.65rem;
}

.review-item {
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    padding: 0.65rem 0.75rem;
    background: #fff;
}

.review-meta {
    margin: 0;
    color: var(--muted);
    font-size: 0.86rem;
}

.review-comment {
    margin: 0.45rem 0 0;
    line-height: 1.42;
}

.review-form-wrap {
    margin-top: 0.9rem;
    border-top: 1px solid var(--border-soft);
    padding-top: 0.9rem;
}

.review-form {
    margin-top: 0.35rem;
}

.rating-widget {
    margin-bottom: 0.8rem;
}

.rating-select-enhanced {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.rating-stars {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.25rem;
}

.rating-star {
    border: none;
    background: transparent;
    color: #cdc3b0;
    cursor: pointer;
    font-size: 1.7rem;
    line-height: 1;
    padding: 0;
}

.rating-star:hover,
.rating-star:focus-visible {
    color: #e6a82b;
    outline: none;
}

.rating-star.is-active {
    color: #f0b330;
}

.rating-value-text {
    margin-left: 0.35rem;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.listing-header-light {
    padding: 0.85rem 1rem;
}

.listing-header-light h1 {
    margin: 0;
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
    line-height: 1.2;
}

.listing-quick-search-form {
    margin-top: 0.55rem;
}

.listing-quick-search-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 0.9fr auto;
    gap: 0.55rem;
    align-items: end;
}

.listing-quick-search-grid label {
    margin-bottom: 0.15rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--muted);
}

.listing-quick-search-grid input {
    margin-bottom: 0;
    min-height: 50px;
    padding: 0.45rem 0.58rem;
    font-size: 0.92rem;
    border-radius: 8px;
}

.listing-quick-search-action {
    display: flex;
    align-items: end;
}

.listing-quick-search-action .btn {
    width: 100%;
    min-height: 50px;
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    font-size: 0.9rem;
}

.listing-date-error {
    margin-top: 0.8rem;
    margin-bottom: 0;
}

@media (max-width: 980px) {
    .listing-quick-search-grid {
        grid-template-columns: 1fr 1fr;
    }

    .listing-quick-search-action {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .listing-quick-search-grid {
        grid-template-columns: 1fr;
    }
}

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

.listing-discovery-layout {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
}

.listing-sidebar {
    position: sticky;
    top: 5.4rem;
}

.listing-sidebar h2 {
    margin: 0 0 0.8rem;
}

.listing-sidebar-form {
    display: grid;
    gap: 0.8rem;
}

.listing-sidebar input,
.listing-sidebar select {
    margin-bottom: 0;
}

.filter-block {
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    padding: 0.75rem;
    background: var(--surface-soft);
}

.filter-block h3 {
    margin: 0 0 0.6rem;
    font-size: 0.95rem;
}

.filter-inline-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
}

.filter-check-list {
    display: grid;
    gap: 0.4rem;
}

.filter-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.92rem;
    color: var(--text);
}

.filter-check input {
    width: auto;
}

.listing-sidebar-actions {
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
}

@media (max-width: 980px) {
    .listing-discovery-layout {
        grid-template-columns: 1fr;
    }

    .listing-sidebar {
        position: static;
    }
}

@media (max-width: 640px) {
    .filter-inline-fields {
        grid-template-columns: 1fr;
    }
}

input[type="checkbox"] {
    width: auto;
    margin-bottom: 0;
}

.host-listing-wizard-form {
    display: grid;
    gap: 0.92rem;
}

.host-wizard-hero {
    border: 1px solid #d8e9df;
    border-radius: 13px;
    padding: 0.75rem 0.85rem;
    background: linear-gradient(160deg, #f6fbf8 0%, #ffffff 100%);
}

.host-wizard-hero h2 {
    margin: 0;
    font-size: clamp(1.22rem, 2.5vw, 1.55rem);
}

.host-wizard-hero p {
    margin: 0.3rem 0 0;
    color: #3a6950;
    font-weight: 600;
}

.host-wizard-mini-progress {
    margin-top: 0.62rem;
    display: grid;
    gap: 0.34rem;
}

.host-wizard-mini-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.host-wizard-mini-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #275f41;
}

.host-wizard-mini-percent {
    font-size: 0.86rem;
    font-weight: 800;
    color: #2f7a4e;
}

.host-wizard-mini-bar {
    height: 0.5rem;
    border-radius: 999px;
    background: #e4ede8;
    overflow: hidden;
    border: 1px solid #d4e3da;
}

.host-wizard-mini-bar > span {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #2f7a4e 0%, #32845c 100%);
    transition: width 0.24s ease;
}

.host-wizard-mini-dots {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
    gap: 0.4rem;
}

.host-wizard-mini-dots > span {
    height: 0.28rem;
    border-radius: 999px;
    background: #d7e3dc;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.host-wizard-mini-dots > span.is-complete {
    background: #7eb093;
}

.host-wizard-mini-dots > span.is-active {
    background: #2f7a4e;
    transform: scaleY(1.2);
}

.host-wizard-progress {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.55rem;
}

.host-wizard-indicator {
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    padding: 0.5rem 0.58rem;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #595446;
}

.host-wizard-indicator-mark {
    display: grid;
    gap: 0.28rem;
    justify-items: center;
    align-items: center;
    flex-shrink: 0;
}

.host-wizard-indicator-icon {
    width: 1.72rem;
    height: 1.72rem;
    border-radius: 50%;
    border: 1px solid #cfc3ae;
    background: #f8f2e7;
    color: #5a5346;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.host-wizard-indicator-icon svg {
    width: 0.96rem;
    height: 0.96rem;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.host-wizard-indicator p {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.1;
    color: #797360;
}

.host-wizard-indicator strong {
    display: block;
    margin-top: 0.1rem;
    font-size: 0.81rem;
    line-height: 1.2;
    color: #2d2a21;
}

.host-wizard-indicator-index {
    min-width: 1.22rem;
    height: 1.22rem;
    border-radius: 999px;
    border: 1px solid #d5cab7;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.74rem;
    font-weight: 800;
    color: #5a5346;
    padding: 0 0.28rem;
}

.host-wizard-indicator.is-active {
    border-color: #9dc8b0;
    background: #edf6f0;
}

.host-wizard-indicator.is-active .host-wizard-indicator-icon {
    border-color: #32845c;
    background: #32845c;
    color: #fff;
}

.host-wizard-indicator.is-active .host-wizard-indicator-index {
    border-color: #32845c;
    color: #2d744f;
}

.host-wizard-indicator.is-complete .host-wizard-indicator-icon {
    border-color: #32845c;
    background: #dff0e6;
    color: #2d744f;
}

.host-wizard-indicator.is-complete .host-wizard-indicator-index {
    border-color: #8dbda3;
    color: #2d744f;
}

.host-wizard-step {
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    padding: 0.85rem;
    background: #fff;
}

.host-wizard-step h3 {
    margin: 0 0 0.7rem;
    font-size: 1.05rem;
}

.host-wizard-step-lead {
    margin: -0.15rem 0 0.62rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #2d6648;
    font-weight: 700;
}

.host-wizard-step-lead-icon {
    width: 1.55rem;
    height: 1.55rem;
    border-radius: 50%;
    border: 1px solid #b8d8c6;
    background: #ecf5f0;
    color: #2f7a4e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.host-wizard-step-lead-icon svg {
    width: 0.92rem;
    height: 0.92rem;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.host-capacity-slider-card {
    border: 1px solid #d7e7de;
    border-radius: 12px;
    background: linear-gradient(180deg, #f5faf7 0%, #ffffff 100%);
    padding: 0.68rem 0.72rem;
    margin: 0.1rem 0 0.55rem;
}

.host-capacity-slider-value {
    margin: 0 0 0.45rem;
    color: #2e6649;
    font-weight: 700;
}

.host-capacity-slider-value strong {
    font-size: 1.18rem;
    color: #1f4f37;
}

.host-capacity-slider-input {
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    -webkit-appearance: none;
    appearance: none;
    accent-color: #32845c;
}

.host-capacity-slider-input::-webkit-slider-runnable-track {
    height: 0.45rem;
    border-radius: 999px;
    background: #dfe9e3;
}

.host-capacity-slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #32845c;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(36, 95, 61, 0.24);
    margin-top: -6px;
}

.host-capacity-slider-input::-moz-range-track {
    height: 0.45rem;
    border-radius: 999px;
    background: #dfe9e3;
}

.host-capacity-slider-input::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #32845c;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(36, 95, 61, 0.24);
}

.host-capacity-slider-scale {
    margin-top: 0.32rem;
    display: flex;
    justify-content: space-between;
    color: #6a665a;
    font-size: 0.8rem;
    font-weight: 600;
}

.host-capacity-field-wrap {
    max-width: 210px;
}

.host-listing-wizard-form.is-enhanced .host-capacity-field-wrap {
    display: none;
}

.host-wizard-grid {
    display: grid;
    gap: 0.4rem;
}

.host-wizard-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem 0.75rem;
}

.host-field-hint {
    margin: -0.35rem 0 0.62rem;
    color: #686356;
    font-size: 0.82rem;
    font-weight: 500;
}

.host-field-label-icon {
    width: 1.1rem;
    height: 1.1rem;
    margin-right: 0.24rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #2f7a4e;
    vertical-align: text-bottom;
}

.host-field-label-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.host-location-picker {
    grid-column: 1 / -1;
    border: 1px solid #d8e8de;
    border-radius: 12px;
    background: linear-gradient(170deg, #f6fbf8 0%, #ffffff 100%);
    padding: 0.74rem 0.78rem;
    margin: 0.05rem 0 0.62rem;
}

.host-location-picker-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.host-location-picker-head h4 {
    margin: 0;
    font-size: 0.98rem;
}

.host-location-clear-btn {
    border: 1px solid #d4c6af;
    border-radius: 999px;
    background: #f8f2e8;
    color: #4f4a3f;
    font: inherit;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    cursor: pointer;
}

.host-location-clear-btn:hover {
    border-color: #c3b195;
    background: #f2eadc;
}

.host-location-picker-help {
    margin: 0.42rem 0 0;
    color: #5f5a4f;
    font-size: 0.85rem;
}

.host-location-actions {
    margin-top: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.host-location-auto-btn,
.host-location-map-toggle-btn {
    border: 1px solid #9ec5ae;
    border-radius: 999px;
    background: #edf7f1;
    color: #1f5e40;
    font: inherit;
    font-size: 0.79rem;
    font-weight: 700;
    padding: 0.28rem 0.64rem;
    cursor: pointer;
}

.host-location-auto-btn:hover,
.host-location-map-toggle-btn:hover {
    border-color: #7ea78f;
    background: #e3f2e9;
}

.host-location-map-wrap {
    margin-top: 0.52rem;
}

.host-location-map {
    width: 100%;
    height: 240px;
    border-radius: 12px;
    border: 1px solid #d4e1d8;
    overflow: hidden;
    background: #e7e0d2;
}

.host-location-picker-summary {
    margin: 0.45rem 0 0;
    color: #255e42;
    font-size: 0.84rem;
    font-weight: 700;
}

.host-location-coordinates {
    margin-top: 0.42rem;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.48rem 0.72rem;
}

.host-location-coordinates > div {
    margin: 0;
}

.host-location-coordinates input[readonly] {
    background: #f8faf8;
    color: #3e3a31;
}

.host-photo-guide-card {
    border: 1px solid #d8e8de;
    border-radius: 12px;
    background: linear-gradient(170deg, #f6fbf8 0%, #ffffff 100%);
    padding: 0.74rem 0.78rem;
    margin: 0.05rem 0 0.72rem;
}

.host-photo-guide-card h4 {
    margin: 0;
    font-size: 1rem;
}

.host-photo-guide-list {
    margin: 0.48rem 0 0;
    padding-left: 1.05rem;
    color: #4f4a3f;
}

.host-photo-guide-list li {
    margin: 0.22rem 0;
}

.host-photo-guide-counter {
    margin: 0.56rem 0 0;
    padding: 0.42rem 0.54rem;
    border-radius: 10px;
    border: 1px solid #d8ccb7;
    background: #fff9ef;
    color: #504b40;
    font-weight: 700;
}

.host-photo-guide-counter strong {
    color: #21583b;
}

.host-photo-guide-counter.is-ready {
    border-color: #93c3a7;
    background: #eaf6ef;
    color: #255e42;
}

.host-photo-upload-field {
    margin-top: 0.58rem;
}

.host-photo-existing-head {
    margin: 0.45rem 0 0.35rem;
    color: #3a6950;
    font-size: 0.86rem;
    font-weight: 700;
}

.host-photo-existing-grid {
    margin-bottom: 0.58rem;
}

.host-photo-dropzone {
    margin: 0.2rem 0 0.5rem;
    border: 1px dashed #9ec5ae;
    border-radius: 12px;
    background: linear-gradient(170deg, #eff8f3 0%, #ffffff 100%);
    min-height: 118px;
    padding: 0.72rem 0.8rem;
    display: grid;
    justify-items: center;
    align-content: center;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.host-photo-dropzone:hover,
.host-photo-dropzone:focus-visible,
.host-photo-dropzone.is-dragover {
    border-color: #32845c;
    box-shadow: 0 8px 18px rgba(27, 82, 54, 0.12);
    background: #f4fbf7;
    transform: translateY(-1px);
}

.host-photo-dropzone.has-files {
    border-style: solid;
    border-color: #8fbfa1;
}

.host-photo-dropzone-icon {
    margin: 0;
    font-size: 1.35rem;
    line-height: 1;
}

.host-photo-dropzone-title {
    margin: 0.24rem 0 0;
    font-size: 0.98rem;
    font-weight: 700;
    color: #1f4f37;
}

.host-photo-dropzone-subtitle {
    margin: 0.1rem 0 0;
    font-size: 0.88rem;
    color: #5f5a4f;
}

.host-photo-input-native {
    background: #fff;
    border: 1px dashed #bfcfbf;
    border-radius: 10px;
    padding: 0.58rem;
}

.host-listing-wizard-form.is-enhanced .host-photo-input-native {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    border: 0;
}

.host-photo-preview-grid {
    margin-top: 0.58rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
}

.host-photo-preview-card {
    border: 1px solid #d8ccb7;
    border-radius: 12px;
    background: #fff;
    padding: 0.42rem;
    display: grid;
    gap: 0.35rem;
    cursor: grab;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.host-photo-preview-card:hover {
    transform: translateY(-2px);
    border-color: #b8c9bd;
    box-shadow: 0 9px 18px rgba(33, 50, 40, 0.11);
}

.host-photo-preview-card.is-main {
    border-color: #89b69e;
    box-shadow: inset 0 0 0 1px rgba(50, 132, 92, 0.2);
}

.host-photo-preview-card.is-dragging {
    opacity: 0.7;
}

.host-photo-preview-card.is-drop-target {
    border-color: #32845c;
}

.host-photo-preview-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    object-fit: cover;
    display: block;
    background: #f0e9da;
}

.host-photo-preview-badge {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 700;
    color: #2f7a4e;
}

.host-photo-preview-name {
    margin: 0;
    font-size: 0.8rem;
    color: #4f4a3f;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.host-photo-preview-actions {
    display: flex;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.host-photo-preview-main-btn,
.host-photo-preview-remove-btn {
    border-radius: 8px;
    border: 1px solid #d6c9b4;
    background: #faf6ed;
    color: #3f3b33;
    font: inherit;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.24rem 0.42rem;
    cursor: pointer;
}

.host-photo-preview-main-btn:hover {
    border-color: #8fba9f;
    background: #edf7f1;
    color: #1f5e40;
}

.host-photo-preview-remove-btn:hover {
    border-color: #dcb6b6;
    background: #faefef;
    color: #7d3434;
}

.host-photo-preview-note {
    margin: 0.48rem 0 0;
    color: #5a5549;
    font-size: 0.85rem;
}

.host-wizard-publication-note {
    margin: 0.15rem 0 0;
    border: 1px solid #d8e9df;
    border-radius: 10px;
    background: #f3f8f5;
    color: #2b6145;
    font-weight: 600;
    padding: 0.58rem 0.65rem;
}

.host-wizard-actions {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 0.6rem;
}

.host-wizard-secondary-btn {
    border: 1px solid #d9d4c9;
    background: #f0ede6;
    color: #4f4a3f;
}

.host-wizard-secondary-btn:hover {
    background: #e8e3d8;
    color: #3f3b31;
}

.host-wizard-fallback-submit {
    background: #f7efe0;
    color: #2f2b21;
}

.host-wizard-step-count {
    margin: 0;
    justify-self: center;
    color: #5f5a4f;
    font-size: 0.88rem;
    font-weight: 700;
}

.host-form-page-actions {
    margin-top: 0.72rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.host-form-delete-inline {
    margin: 0;
}

.host-delete-btn {
    border: 1px solid #e6cbcb;
    background: #faf1f1;
    color: #8e3737;
    padding: 0.45rem 0.8rem;
    font-size: 0.86rem;
    font-weight: 700;
}

.host-delete-btn:hover {
    border-color: #dcaeae;
    background: #f5e5e5;
    color: #792e2e;
}

.host-amenity-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.6rem;
}

.host-amenity-card {
    display: block;
    position: relative;
    cursor: pointer;
}

.host-amenity-checkbox {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    pointer-events: none;
}

.host-amenity-card-ui {
    border: 1px solid #d8ccb7;
    border-radius: 12px;
    background: #fff;
    min-height: 66px;
    padding: 0.58rem 0.62rem;
    display: flex;
    align-items: center;
    gap: 0.52rem;
    transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
    will-change: transform;
}

.host-amenity-card:hover .host-amenity-card-ui {
    transform: translateY(-2px);
    border-color: #bfcfbf;
    box-shadow: 0 6px 14px rgba(23, 40, 30, 0.08);
}

.host-amenity-card-icon {
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 50%;
    background: #f2eadb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.host-amenity-card-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #29261f;
}

@keyframes hostAmenitySelectPop {
    0% { transform: translateY(0) scale(1); }
    55% { transform: translateY(-1px) scale(1.03); }
    100% { transform: translateY(-1px) scale(1.015); }
}

.host-amenity-checkbox:checked + .host-amenity-card-ui {
    border-color: #32845c;
    background: #edf7f1;
    box-shadow: inset 0 0 0 1px rgba(50, 132, 92, 0.16);
    transform: translateY(-1px) scale(1.015);
    animation: hostAmenitySelectPop 0.24s ease-out;
}

.host-amenity-card:hover .host-amenity-checkbox:checked + .host-amenity-card-ui {
    transform: translateY(-2px) scale(1.02);
}

.host-amenity-checkbox:checked + .host-amenity-card-ui .host-amenity-card-icon {
    background: #d9ecdf;
    transform: scale(1.08);
}

.host-amenity-checkbox:checked + .host-amenity-card-ui .host-amenity-card-title {
    color: #1f5e40;
}

.host-amenity-checkbox:focus-visible + .host-amenity-card-ui {
    outline: 2px solid rgba(47, 122, 78, 0.28);
    outline-offset: 2px;
}

.host-amenity-helper-text {
    margin: 0.72rem 0 0.6rem;
    color: #5f5a4f;
    font-size: 0.88rem;
}

.host-equipments-block {
    margin: 0.2rem 0 1rem;
}

.host-equipments-block h3 {
    margin: 0 0 0.55rem;
    font-size: 1rem;
}

.host-equipments-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem 0.75rem;
}

.host-equipments-grid > div {
    margin: 0;
    padding: 0.45rem 0.55rem;
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    background: var(--surface-soft);
}

.host-equipments-grid label {
    margin-bottom: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.host-badges-block {
    margin: 0.2rem 0 1rem;
}

.host-badges-helper-text {
    margin: 0 0 0.35rem;
    color: #6a665a;
    font-size: 0.84rem;
}

.host-badges-optional-title {
    margin: 0 0 0.5rem;
    color: #5f5a4f;
    font-size: 0.86rem;
    font-weight: 700;
}

.host-badges-optional-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.6rem;
}

.host-badge-card {
    margin: 0;
}

.host-badges-block > div > label {
    margin-bottom: 0.55rem;
    font-size: 1rem;
}

.host-badges-block [id$="_badges"] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem 0.75rem;
}

.host-badges-block [id$="_badges"] > div {
    margin: 0;
    padding: 0.45rem 0.55rem;
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    background: var(--surface-soft);
}

.host-badges-block [id$="_badges"] label {
    margin-bottom: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

@media (max-width: 640px) {
    .host-location-map {
        height: 210px;
    }

    .host-location-coordinates {
        grid-template-columns: 1fr;
    }

    .host-location-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .host-wizard-progress {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .host-wizard-grid-2 {
        grid-template-columns: 1fr;
    }

    .host-wizard-actions {
        grid-template-columns: 1fr;
    }

    .host-wizard-secondary-btn {
        justify-self: start;
    }

    .host-wizard-step-count {
        justify-self: start;
    }

    .host-badges-block [id$="_badges"] {
        grid-template-columns: 1fr;
    }

    .host-badges-optional-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .host-amenity-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .host-photo-preview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .host-equipments-grid {
        grid-template-columns: 1fr;
    }
}




.home-hero {
    position: relative;
    min-height: clamp(420px, 62vh, 620px);
    border-radius: calc(var(--radius) + 8px);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: clamp(1rem, 2.5vw, 2rem);
    background:
        linear-gradient(160deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.30)),
        var(--hero-image) center / cover no-repeat,
        linear-gradient(140deg, #88a180 0%, #5d7a64 100%);
    box-shadow: var(--shadow);
}

.home-hero-content {
    width: min(920px, 100%);
    margin: 0 auto;
    color: #fff;
}

.home-hero-kicker {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.9;
}

.home-hero h1 {
    margin: 0.45rem 0 0;
    max-width: 18ch;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.15;
    color: #fff;
}

.home-hero-search {
    margin-top: 0.75rem;
    padding: 0.62rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(4px);
}

.home-hero-search label {
    color: var(--text);
    font-size: 0.78rem;
    margin-bottom: 0.14rem;
}

.home-hero-search input {
    margin-bottom: 0;
    min-height: 38px;
    padding: 0.46rem 0.58rem;
    border-radius: 9px;
}

.home-hero-search-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr 1fr auto;
    gap: 0.48rem;
    align-items: end;
}

.home-hero-search-action {
    display: flex;
    align-items: end;
}

.home-hero-search-action .btn {
    width: 100%;
    min-height: 38px;
    padding: 0.5rem 0.85rem;
}

.home-hero-search-action .btn-primary {
    background: #32845C;
    color: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 14px rgba(50, 132, 92, 0.25);
}

.home-hero-search-action .btn-primary:hover {
    background: #2b7350;
    box-shadow: 0 8px 18px rgba(50, 132, 92, 0.32);
}

@media (max-width: 980px) {
    .home-hero-search-grid {
        grid-template-columns: 1fr 1fr;
    }

    .home-hero-search-action {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .home-hero {
        min-height: 380px;
        align-items: center;
    }

    .home-hero h1 {
        max-width: none;
    }

    .home-hero-search-grid {
        grid-template-columns: 1fr;
    }
}
.brand-logo {
    display: block;
    width: 160px;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

@media (max-width: 720px) {
    .brand-logo {
        width: 140px;
    }
}

.home-trust-strip {
    margin-top: 0.85rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
    padding: 0.8rem;
}

.home-trust-item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    padding: 0.62rem 0.68rem;
    background: linear-gradient(160deg, #ffffff 0%, var(--surface-soft) 100%);
}

.home-trust-icon {
    font-size: 1.06rem;
    line-height: 1;
}

.home-trust-item p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.3;
}

.home-trust-item strong {
    color: var(--text);
}

@media (max-width: 960px) {
    .home-trust-strip {
        grid-template-columns: 1fr;
    }
}

.home-categories {
    margin-top: 1rem;
}

.home-categories-header h2 {
    margin: 0;
    font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.home-categories-header p {
    margin: 0.4rem 0 0;
    color: var(--muted);
}

.home-categories-grid {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.8rem;
}

.home-category-card {
    text-decoration: none;
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    padding: 0.85rem;
    background: linear-gradient(160deg, #ffffff 0%, var(--surface-soft) 100%);
    min-height: 178px;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.home-category-card:hover {
    transform: translateY(-2px);
    border-color: #cdbfa7;
    box-shadow: 0 10px 24px rgba(36, 29, 20, 0.08);
}

.home-category-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-soft);
    background: #fff;
    color: var(--primary-dark);
}

.home-category-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-category-card h3 {
    margin: 0;
    font-size: 1rem;
}

.home-category-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.42;
}

.home-category-link {
    margin-top: auto;
    color: var(--primary-dark);
    font-size: 0.86rem;
    font-weight: 700;
}

@media (max-width: 1180px) {
    .home-categories-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .home-categories-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .home-categories-grid {
        grid-template-columns: 1fr;
    }
}



.home-destinations {
    margin-top: 1rem;
    background: #fff;
    border: 1px solid #dfd0b6;
    box-shadow: 0 10px 22px rgba(20, 54, 36, 0.08);
}

.home-destinations-header {
    max-width: 760px;
}

.home-destinations-eyebrow {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.36rem;
    padding: 0.28rem 0.64rem;
    border-radius: 999px;
    border: 1px solid rgba(50, 132, 92, 0.24);
    background: rgba(255, 255, 255, 0.62);
    color: #2f7a4e;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.home-destinations-header h2 {
    margin: 0.6rem 0 0;
    font-size: clamp(1.35rem, 2.6vw, 2.05rem);
    line-height: 1.2;
}

.home-destinations-subtitle {
    margin: 0.5rem 0 0;
    color: #405a4a;
    line-height: 1.5;
}

.home-destinations-grid {
    margin-top: 1.05rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.95rem;
}

.home-destination-card {
    position: relative;
    display: block;
    overflow: hidden;
    text-decoration: none;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    aspect-ratio: 4 / 3;
    background: #dbe2dd;
    isolation: isolate;
    box-shadow: 0 8px 20px rgba(15, 45, 30, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-destination-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 12, 9, 0.08) 26%, rgba(6, 12, 9, 0.9) 100%);
    z-index: 1;
}

.home-destination-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
    filter: saturate(1.05) contrast(1.04);
    transition: transform 0.35s ease, filter 0.35s ease;
    image-rendering: auto;
}

.home-destination-moroni .home-destination-image {
    object-position: center 44%;
}

.home-destination-mitsamiouli .home-destination-image {
    object-position: center 58%;
}

.home-destination-anjouan .home-destination-image {
    object-position: center 44%;
}

.home-destination-moheli .home-destination-image {
    object-position: center 50%;
}

.home-destination-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 14px 30px rgba(15, 45, 30, 0.2);
}

.home-destination-card:hover .home-destination-image {
    transform: scale(1.05);
    filter: saturate(1.1) contrast(1.06);
}

.home-destination-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 0.95rem;
    color: #fff;
}

.home-destination-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 0.72rem;
}

.home-destination-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.24rem;
    border-radius: 999px;
    padding: 0.22rem 0.56rem;
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1;
    backdrop-filter: blur(2px);
}

.home-destination-overlay h3 {
    margin: 0;
    font-size: clamp(1.26rem, 2.3vw, 1.62rem);
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.34);
}

.home-destination-overlay p {
    margin: 0.35rem 0 0;
    font-size: 0.9rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.94);
    max-width: 26ch;
}

@media (max-width: 900px) {
    .home-destinations-grid {
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: minmax(250px, 74%);
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
        padding-bottom: 0.35rem;
    }

    .home-destination-card {
        scroll-snap-align: start;
    }
}

@media (max-width: 560px) {
    .home-destinations-grid {
        grid-auto-columns: minmax(225px, 84%);
    }
}


.home-why {
    margin-top: 1rem;
    background: #fff;
    border: 1px solid #e7efe9;
}

.home-why-header {
    max-width: 760px;
}

.home-why-eyebrow {
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 0.28rem 0.62rem;
    border-radius: 999px;
    border: 1px solid #d9eadf;
    background: #f1f8f4;
    color: #2f7a4e;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.home-why-header h2 {
    margin: 0.62rem 0 0;
    font-size: clamp(1.32rem, 2.5vw, 1.95rem);
    line-height: 1.2;
}

.home-why-subtitle {
    margin: 0.5rem 0 0;
    color: var(--muted);
    line-height: 1.5;
}

.home-why-grid {
    margin-top: 1.05rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.home-why-item {
    border: 1px solid #E3EEE8;
    border-radius: 16px;
    padding: 1rem;
    background: #fff;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.72rem 0.9rem;
    align-items: start;
    box-shadow: 0 4px 12px rgba(17, 42, 30, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.home-why-item:hover {
    transform: translateY(-3px);
    border-color: #d5e8de;
    box-shadow: 0 10px 22px rgba(17, 42, 30, 0.1);
}

.home-why-icon {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    border: 1px solid #d2e8dc;
    background: #edf7f1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #32845C;
}

.home-why-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.home-why-item h3 {
    margin: 0.2rem 0 0;
    font-size: 1rem;
    font-weight: 700;
}

.home-why-item p {
    grid-column: 2;
    margin: 0;
    color: var(--muted);
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 820px) {
    .home-why-grid {
        grid-template-columns: 1fr;
    }

    .home-why-item p {
        grid-column: 1 / -1;
    }
}

.home-host-cta {
    margin-top: 1rem;
    background:
        radial-gradient(circle at 92% 10%, rgba(50, 132, 92, 0.08), transparent 42%),
        linear-gradient(145deg, #ffffff 0%, #fcf8f0 100%);
    border: 1px solid #e7dcc9;
}

.home-host-cta-inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 1.1rem;
    align-items: stretch;
}

.home-host-cta-content {
    display: grid;
    gap: 0.92rem;
}

.home-host-cta-kicker {
    margin: 0;
    font-size: 0.79rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #2f7a4e;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.3rem 0.62rem;
    border-radius: 999px;
    border: 1px solid #d5e8dc;
    background: #eef8f2;
    gap: 0.34rem;
}

.home-host-cta-kicker-icon {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.home-host-cta h2 {
    margin: 0.08rem 0 0;
    font-size: clamp(1.35rem, 2.5vw, 2.02rem);
    line-height: 1.18;
}

.home-host-cta-subtitle {
    margin: 0;
    color: var(--muted);
    line-height: 1.52;
}

.home-host-cta-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
}

.home-host-benefit-item {
    border: 1px solid #e4eee8;
    border-radius: 14px;
    background: #fff;
    padding: 0.75rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.62rem;
    align-items: start;
    box-shadow: 0 4px 10px rgba(20, 46, 32, 0.05);
}

.home-host-benefit-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #edf7f1;
    border: 1px solid #d7e9de;
    color: #32845c;
}

.home-host-benefit-icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-host-benefit-item h3 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
}

.home-host-benefit-item p {
    margin: 0.22rem 0 0;
    color: var(--muted);
    line-height: 1.4;
    font-size: 0.86rem;
}

.home-host-cta-sim {
    border: 1px solid #dcece3;
    background: linear-gradient(150deg, #f4faf7 0%, #eef7f2 100%);
    border-radius: 14px;
    padding: 0.7rem 0.82rem;
}

.home-host-cta-sim-title {
    margin: 0;
    color: #2f7a4e;
    font-weight: 700;
    font-size: 0.84rem;
    display: inline-flex;
    align-items: center;
    gap: 0.32rem;
}

.home-host-cta-sim-title-icon {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.home-host-cta-sim-value {
    margin: 0.3rem 0 0;
    color: #123323;
    font-weight: 700;
    line-height: 1.35;
}

.home-host-cta-actions {
    display: grid;
    gap: 0.6rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
}

.home-host-cta-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
}

.home-host-cta-form {
    margin: 0;
}

.home-host-cta-visual {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #dbe5db;
    min-height: 100%;
    box-shadow: 0 12px 24px rgba(20, 46, 32, 0.14);
}

.home-host-cta-visual img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    object-position: center;
}

.home-host-cta-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 12, 9, 0.12) 28%, rgba(4, 12, 9, 0.86) 100%);
}

.home-host-cta-visual-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 1rem;
    color: #fff;
}

.home-host-cta-visual-kicker {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
}

.home-host-cta-visual-title {
    margin: 0.35rem 0 0;
    line-height: 1.35;
    font-weight: 700;
}

.home-host-cta-visual-tags {
    margin-top: 0.58rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.home-host-cta-visual-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.32rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    padding: 0.23rem 0.55rem;
    background: rgba(255, 255, 255, 0.16);
    font-size: 0.75rem;
    font-weight: 700;
}

.home-host-cta-visual-tag-icon {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

@media (max-width: 980px) {
    .home-host-cta-inner {
        grid-template-columns: 1fr;
    }

    .home-host-cta-visual img {
        min-height: 290px;
    }
}

@media (max-width: 700px) {
    .home-host-cta-benefits,
    .home-host-cta-actions {
        grid-template-columns: 1fr;
    }
}

.form-host-intro {
    margin: 0 0 0.8rem;
    color: var(--muted);
}

.become-host-hero {
    background: linear-gradient(155deg, #f2f9f5 0%, #ffffff 100%);
}

.become-host-kicker {
    margin: 0;
    display: inline-flex;
    align-items: center;
    padding: 0.24rem 0.58rem;
    border-radius: 999px;
    border: 1px solid #b9d8c8;
    background: #ecf7f1;
    color: #245f3d;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.become-host-hero h1 {
    margin: 0.58rem 0 0;
    font-size: clamp(1.65rem, 3.2vw, 2.35rem);
}

.become-host-lead {
    margin: 0.56rem 0 0;
    color: #3f3a30;
    max-width: 680px;
}

.become-host-actions {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    align-items: center;
}

.become-host-actions form {
    margin: 0;
}

.become-host-primary {
    min-width: 280px;
    min-height: 46px;
    font-size: 0.96rem;
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(31, 83, 55, 0.2);
}

.become-host-whatsapp {
    border: 1px solid #9cc5ae;
    background: #edf7f1;
    color: #1f5e40;
    min-height: 46px;
    font-weight: 700;
}

.become-host-whatsapp:hover {
    border-color: #82b195;
    background: #e3f2ea;
}

.become-host-section-head h2 {
    margin: 0;
}

.become-host-section-head p {
    margin: 0.32rem 0 0;
    color: var(--muted);
}

.become-host-compare {
    margin-top: 0.85rem;
    border: 1px solid #dae7df;
    border-radius: 14px;
    overflow: hidden;
}

.become-host-compare-row {
    margin: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.6rem;
    padding: 0.66rem 0.85rem;
    align-items: center;
    border-bottom: 1px solid #e5efe8;
    background: #fff;
    font-weight: 600;
}

.become-host-compare-row:last-child {
    border-bottom: 0;
}

.become-host-compare-row:first-child {
    background: #f7faf8;
    color: #5f5a4d;
    font-weight: 700;
}

.become-host-compare-row.is-highlight {
    background: #eff8f3;
    color: #225f3e;
    font-weight: 800;
}

.become-host-pill-list {
    margin-top: 0.78rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.become-host-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    border-radius: 999px;
    border: 1px solid #c8ddd1;
    background: #f5faf7;
    padding: 0.28rem 0.6rem;
    font-size: 0.84rem;
    font-weight: 700;
    color: #275f41;
}

.become-host-pill::before {
    content: '✔';
    color: #2f7a4e;
    font-size: 0.78rem;
}

.become-host-steps-grid {
    margin-top: 0.95rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
}

.become-host-step-card {
    border: 1px solid #e2ebe4;
    border-radius: 12px;
    background: linear-gradient(165deg, #ffffff 0%, #f8fbf9 100%);
    padding: 0.82rem;
}

.become-host-step-index {
    margin: 0;
    width: 1.55rem;
    height: 1.55rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    font-weight: 800;
    color: #1f5e40;
    border: 1px solid #bcd8ca;
    background: #ecf7f1;
}

.become-host-step-card h3 {
    margin: 0.42rem 0 0;
    font-size: 1.03rem;
}

.become-host-step-card p {
    margin: 0.35rem 0 0;
    color: #585245;
}

.become-host-step-note {
    color: #245f3d;
    font-weight: 600;
}

.become-host-checklist {
    margin: 0.72rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.42rem;
}

.become-host-checklist li {
    border: 1px solid #d5e4da;
    border-radius: 10px;
    background: #f6fbf8;
    padding: 0.5rem 0.66rem;
    font-weight: 700;
    color: #265f41;
}

.become-host-checklist li::before {
    content: '✔';
    margin-right: 0.45rem;
}

.become-host-final {
    text-align: center;
    display: grid;
    justify-items: center;
    gap: 0.7rem;
}

.become-host-final h2 {
    margin: 0;
}

.become-host-flow-grid {
    margin-top: 0.8rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.become-host-flow-card {
    border: 1px solid #e3eade;
    border-radius: 12px;
    background: linear-gradient(160deg, #ffffff 0%, #fbfaf6 100%);
    padding: 0.85rem;
}

.become-host-flow-step {
    margin: 0;
    color: #2f7a4e;
    font-weight: 800;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.become-host-flow-card h3 {
    margin: 0.38rem 0 0;
}

.become-host-flow-card ul {
    margin: 0.55rem 0 0;
    padding-left: 1.1rem;
}

.become-host-flow-card li {
    margin: 0.22rem 0;
}

.become-host-flow-card p {
    margin: 0.5rem 0 0;
    color: #585245;
}

.become-host-flow-action {
    font-weight: 700;
    color: #245f3d;
}

.become-host-flow-note {
    font-weight: 600;
    color: #245f3d;
}

.become-host-flow-actions {
    margin-top: 0.62rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.52rem;
}

.become-host-flow-actions form {
    margin: 0;
}

.host-onboarding-welcome {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.host-onboarding-kicker {
    margin: 0;
    color: #2f7a4e;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.78rem;
}

.host-onboarding-welcome h1 {
    margin: 0.5rem 0 0;
}

.host-onboarding-text {
    margin: 0.55rem auto 0;
    color: var(--muted);
    max-width: 560px;
}

.host-onboarding-actions {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
}

@media (max-width: 980px) {
    .become-host-steps-grid {
        grid-template-columns: 1fr;
    }

    .become-host-flow-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .become-host-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .become-host-primary,
    .become-host-whatsapp {
        width: 100%;
        min-width: 0;
    }
}



.host-listing-section h1 {
    margin: 0;
}

.host-listing-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.host-listing-subtitle {
    margin: 0.4rem 0 0;
    color: var(--muted);
}

.host-listing-empty {
    margin-top: 0.85rem;
    padding: 1rem;
    border-radius: 12px;
    border: 1px dashed var(--border);
    background: var(--surface-soft);
    display: flex;
    gap: 0.8rem;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.host-listings-grid {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.95rem;
}

.host-listing-card {
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(160deg, #ffffff 0%, var(--surface-soft) 100%);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.host-listing-cover {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: #ece3d2;
    display: block;
}

.host-listing-cover-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 0.9rem;
}

.host-listing-content {
    padding: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.host-listing-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.65rem;
}

.host-listing-top h2 {
    margin: 0;
    font-size: 1.05rem;
}

.host-listing-location {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.host-listing-price {
    margin: 0;
    font-size: 0.94rem;
}

.host-listing-actions {
    margin-top: auto;
    padding-top: 0.68rem;
    border-top: 1px solid var(--border-soft);
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.host-listing-actions .btn {
    padding: 0.48rem 0.75rem;
    font-size: 0.86rem;
}

.host-listing-actions form {
    margin: 0;
}

@media (max-width: 980px) {
    .host-listings-grid {
        grid-template-columns: 1fr;
    }
}


.host-reservations-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.host-reservations-head h2 {
    margin: 0;
}

.host-reservations-upcoming-count {
    display: inline-flex;
    align-items: center;
    padding: 0.24rem 0.62rem;
    border-radius: 999px;
    border: 1px solid #bfd7c7;
    background: #edf6f0;
    color: #245f3d;
    font-size: 0.84rem;
    font-weight: 700;
}

.host-reservations-upcoming-grid {
    margin-top: 0.95rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.host-upcoming-card {
    border: 1px solid #c9dfd1;
    border-radius: 12px;
    padding: 0.8rem;
    background: linear-gradient(165deg, #f8fcf9 0%, #edf6f0 100%);
    display: grid;
    gap: 0.38rem;
}

.host-upcoming-card-kicker {
    margin: 0;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #245f3d;
}

.host-upcoming-card-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
}

.host-upcoming-card-meta {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
}

.host-upcoming-card .btn {
    margin-top: 0.4rem;
}

.host-reservations-table-wrap {
    margin-top: 0.95rem;
}

.host-reservation-row-upcoming {
    background: #f6fbf8;
}

.host-reservation-row-upcoming td {
    border-bottom-color: #d5e8dc;
}

.host-booking-detail h1 {
    margin: 0;
}

.host-booking-detail-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.host-booking-detail-subtitle {
    margin: 0.38rem 0 0;
    color: var(--muted);
}

.host-booking-detail-grid {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.host-booking-detail-card {
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    padding: 0.75rem;
    background: linear-gradient(160deg, #ffffff 0%, var(--surface-soft) 100%);
}

.host-booking-detail-card h2 {
    margin: 0 0 0.55rem;
    font-size: 1rem;
}

.host-booking-detail-card p {
    margin: 0.35rem 0 0;
}

.host-booking-detail-actions {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

@media (max-width: 1140px) {
    .host-reservations-upcoming-grid,
    .host-booking-detail-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .host-reservations-upcoming-grid,
    .host-booking-detail-grid {
        grid-template-columns: 1fr;
    }
}
.host-calendar-page h1 {
    margin: 0;
}

.host-calendar-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.host-calendar-subtitle {
    margin: 0.4rem 0 0;
    color: var(--muted);
}

.host-calendar-nav {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.host-calendar-month {
    margin: 0;
    min-width: 10rem;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
}

.host-calendar-legend {
    margin-top: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 0.9rem;
}

.host-calendar-legend-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.host-calendar-legend-dot {
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 50%;
    display: inline-block;
    border: 1px solid var(--border);
}

.host-calendar-legend-dot-reserved {
    background: #98c9ad;
    border-color: #7ab48f;
}

.host-calendar-legend-dot-available {
    background: #ffffff;
}

.host-calendar-table-wrap {
    margin-top: 0.95rem;
}

.host-calendar-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: none;
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    overflow: hidden;
}

.host-calendar-table th,
.host-calendar-table td {
    text-align: center;
    border: 1px solid var(--border-soft);
    padding: 0.3rem;
}

.host-calendar-table th {
    background: #f8f3e8;
    color: var(--muted);
    font-size: 0.82rem;
}

.host-calendar-cell {
    height: 3.1rem;
    font-weight: 700;
}

.host-calendar-cell-empty {
    background: #fbf8f1;
}

.host-calendar-cell-available {
    background: #ffffff;
    color: var(--text);
}

.host-calendar-cell-reserved {
    background: #e5f2e9;
    color: #245f3d;
}

.host-calendar-cell-today {
    outline: 2px solid rgba(47, 122, 78, 0.4);
    outline-offset: -2px;
}

@media (max-width: 760px) {
    .host-calendar-nav {
        width: 100%;
        justify-content: space-between;
    }

    .host-calendar-month {
        min-width: auto;
        width: 100%;
        order: -1;
        text-align: left;
    }
}
.message-inbox-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.message-inbox-head h1 {
    margin: 0;
}

.message-inbox-subtitle {
    margin: 0.4rem 0 0;
    color: var(--muted);
}

.message-notification-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.62rem;
    border-radius: 999px;
    border: 1px solid #bfd7c7;
    background: #edf6f0;
    color: #245f3d;
    font-size: 0.84rem;
    font-weight: 700;
}

.message-notification-pill-muted {
    border-color: var(--border-soft);
    background: var(--surface-soft);
    color: var(--muted);
}

.message-conversation-list {
    margin-top: 1rem;
    display: grid;
    gap: 0.7rem;
}

.message-conversation-card {
    text-decoration: none;
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    padding: 0.8rem;
    background: linear-gradient(160deg, #ffffff 0%, var(--surface-soft) 100%);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    display: grid;
    gap: 0.35rem;
}

.message-conversation-card:hover {
    transform: translateY(-2px);
    border-color: #cbbba0;
    box-shadow: 0 10px 22px rgba(36, 29, 20, 0.08);
}

.message-conversation-card.is-unread {
    border-color: #a9cfb6;
    box-shadow: inset 3px 0 0 #2f7a4e;
}

.message-conversation-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.6rem;
}

.message-conversation-top h2 {
    margin: 0;
    font-size: 1.02rem;
}

.message-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: #2f7a4e;
    color: #fff;
    font-size: 0.74rem;
    font-weight: 700;
    padding: 0.2rem 0.48rem;
}

.message-conversation-context {
    margin: 0;
    color: var(--muted);
    font-size: 0.86rem;
}

.message-conversation-preview {
    margin: 0;
    color: var(--text);
    line-height: 1.38;
}

.message-conversation-time {
    margin: 0.1rem 0 0;
    color: var(--muted);
    font-size: 0.82rem;
}

.message-chat-layout {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 0.9rem;
    align-items: start;
}

.message-chat-sidebar h2 {
    margin: 0;
    font-size: 1rem;
}

.message-chat-empty {
    margin: 0.75rem 0 0;
    color: var(--muted);
}

.message-chat-list {
    margin-top: 0.7rem;
    display: grid;
    gap: 0.48rem;
}

.message-chat-link {
    text-decoration: none;
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    padding: 0.5rem;
    background: #fff;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 0.56rem;
    align-items: start;
}

.message-chat-link:hover {
    border-color: #ccbda4;
    background: var(--surface-soft);
}

.message-chat-link.is-active {
    border-color: #2f7a4e;
    background: #edf6f0;
}

.message-chat-link.is-unread {
    box-shadow: inset 3px 0 0 #2f7a4e;
}

.message-chat-link-media {
    width: 58px;
    height: 58px;
    border-radius: 10px;
    overflow: hidden;
    background: #ede4d3;
    border: 1px solid #ddcfb7;
}

.message-chat-link-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.message-chat-link-photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 600;
}

.message-chat-link-content {
    min-width: 0;
    display: grid;
    gap: 0.24rem;
}

.message-chat-link-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.55rem;
}

.message-chat-link-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
}

.message-chat-link-time {
    color: var(--muted);
    font-size: 0.78rem;
    white-space: nowrap;
}

.message-chat-link-listing {
    margin: 0;
    color: var(--text);
    font-size: 0.84rem;
    font-weight: 600;
    line-height: 1.25;
}

.message-chat-link-preview {
    margin: 0;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.35;
}

.message-chat-thread-wrap {
    min-width: 0;
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    background: #fff;
    padding: 0.8rem;
}

.message-chat-head h2 {
    margin: 0;
}

.message-chat-head-listing,
.message-chat-head-dates {
    margin: 0.35rem 0 0;
    color: var(--muted);
}

.message-chat-thread {
    margin-top: 0.9rem;
    max-height: 430px;
    overflow-y: auto;
    padding-right: 0.2rem;
    gap: 0.58rem;
}

.message-chat-thread .message-item {
    max-width: min(78%, 520px);
    border-radius: 14px;
    padding: 0.58rem 0.7rem;
}

.message-chat-thread .message-me {
    margin-left: auto;
    border-color: #b9d8c3;
    background: #edf6f0;
}

.message-chat-thread .message-other {
    margin-right: auto;
    border-color: var(--border-soft);
    background: #fff;
}

.message-chat-empty-state {
    min-height: 280px;
    display: grid;
    place-content: center;
    text-align: center;
    color: var(--muted);
}

.message-chat-empty-state h2 {
    margin: 0;
    color: var(--text);
}

.message-chat-empty-state p {
    margin: 0.4rem 0 0;
}

.message-form {
    margin-top: 0.8rem;
}

.message-form-field textarea {
    margin-bottom: 0;
    min-height: 88px;
    resize: vertical;
}

.message-chat-actions {
    margin-top: 0.55rem;
    display: flex;
    justify-content: flex-end;
    gap: 0.55rem;
    flex-wrap: wrap;
}

@media (max-width: 980px) {
    .message-chat-layout {
        grid-template-columns: 1fr;
    }

    .message-chat-thread-wrap {
        padding: 0.7rem;
    }
}

@media (max-width: 640px) {
    .message-chat-link {
        grid-template-columns: 52px minmax(0, 1fr);
    }

    .message-chat-link-media {
        width: 52px;
        height: 52px;
    }

    .message-chat-thread .message-item {
        max-width: 92%;
    }

    .message-chat-actions {
        justify-content: flex-start;
    }

    .message-chat-actions .btn {
        width: 100%;
    }
}
.host-payment-page h1 {
    margin: 0;
}

.host-payment-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.host-payment-subtitle {
    margin: 0.38rem 0 0;
    color: var(--muted);
}

.host-payment-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.host-payment-history-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.host-payment-history-head h2 {
    margin: 0;
}

.host-payment-table-wrap {
    margin-top: 0.95rem;
    overflow-x: auto;
}

.host-payment-table-wrap table {
    min-width: 860px;
}

.host-payment-reference {
    font-family: "Consolas", "Courier New", monospace;
    font-size: 0.8rem;
    color: var(--muted);
}

.host-payment-action .btn {
    padding: 0.42rem 0.7rem;
    font-size: 0.84rem;
}

@media (max-width: 1140px) {
    .host-payment-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .host-payment-stats {
        grid-template-columns: 1fr;
    }
}
/* Host UX refresh */
.host-workspace {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 1.35rem;
    align-items: start;
    padding: 0.2rem;
}

.host-workspace::before {
    content: "";
    position: absolute;
    inset: -0.35rem;
    border-radius: 22px;
    border: 1px solid #e9ddc9;
    background: linear-gradient(160deg, #f8f2e7 0%, #f3ebde 100%);
    z-index: -1;
}

.host-workspace .card {
    background: #fff;
    border: 1px solid #eadfcd;
    border-radius: 16px;
    box-shadow: 0 10px 22px rgba(36, 29, 20, 0.08);
}

.host-sidebar {
    position: sticky;
    top: 1rem;
    padding: 1.05rem;
}

.host-sidebar-title {
    margin: 0 0 0.85rem;
    font-size: 1rem;
    color: var(--text);
}

.host-content {
    min-width: 0;
    display: grid;
    gap: 1.2rem;
}

.host-nav {
    display: grid;
    gap: 0.4rem;
}

.host-nav-link {
    text-decoration: none;
    padding: 0.58rem 0.7rem;
    border-radius: 10px;
    color: var(--muted);
    font-weight: 600;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    gap: 0.58rem;
}

.host-nav-link:hover {
    color: var(--text);
    background: #f8f3e8;
    border-color: var(--border-soft);
}

.host-nav-link.is-active {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
}

.host-nav-icon {
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 9px;
    border: 1px solid #cfe0d3;
    background: #edf6f0;
    color: var(--primary-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.host-nav-icon svg {
    width: 0.95rem;
    height: 0.95rem;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.host-nav-link:hover .host-nav-icon {
    border-color: #bdd6c8;
    background: #eff8f3;
}

.host-nav-link.is-active .host-nav-icon {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}
.host-nav-logout-group {
    margin-top: 0.45rem;
    padding-top: 0.45rem;
    border-top: 1px solid #eadfcd;
}

.host-nav-link-logout {
    color: #7a5757;
    border-color: #ead4d4;
    background: #fdf6f6;
}

.host-nav-link-logout:hover {
    color: #6b4444;
    border-color: #e1bebe;
    background: #f8ebeb;
}

.host-content .btn {
    border: 1px solid transparent;
}

.host-content .btn:not(.btn-primary) {
    background: #f3ecdd;
    color: #2f2a20;
}

.host-content .btn:not(.btn-primary):hover {
    background: #eadfca;
}

.host-content .btn-primary {
    background: var(--primary);
    color: #fff;
}

.host-content .btn-primary:hover {
    background: var(--primary-dark);
}

.host-overview-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.host-overview-profile-wrap {
    position: relative;
}

.host-overview-profile {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.28rem 0.55rem 0.28rem 0.28rem;
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    background: #fff;
    color: var(--text);
    font: inherit;
    cursor: pointer;
}

.host-overview-profile:hover {
    border-color: #d6c7af;
    background: #fcfaf4;
}

.host-overview-profile:focus-visible {
    outline: 2px solid rgba(47, 122, 78, 0.3);
    outline-offset: 2px;
}

.host-overview-caret {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 6px solid #7c7566;
    margin-left: 0.1rem;
}

.host-profile-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 0.42rem);
    min-width: 180px;
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 14px 28px rgba(36, 29, 20, 0.12);
    padding: 0.36rem;
    z-index: 30;
    display: grid;
    gap: 0.2rem;
}

.host-profile-dropdown[hidden] {
    display: none;
}

.host-profile-dropdown-link {
    text-decoration: none;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.45rem 0.58rem;
    border-radius: 8px;
}

.host-profile-dropdown-link:hover {
    background: #f8f3e8;
}

.host-profile-dropdown-link.is-danger {
    color: #7a5757;
    background: #fdf6f6;
}

.host-profile-dropdown-link.is-danger:hover {
    color: #6b4444;
    background: #f8ebeb;
}

.host-overview-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #d8ccb7;
    object-fit: cover;
    flex-shrink: 0;
    background: #f7f1e6;
}

.host-overview-avatar-placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary-dark);
    background: #edf6f0;
}

.host-overview-name {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
}
.host-overview-actions {
    margin-top: 1rem;
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.host-active-context {
    margin: 0.95rem 0 0;
    border: 1px solid #d3e4da;
    border-radius: 12px;
    background: #f4faf7;
    color: #2a6044;
    font-weight: 600;
    padding: 0.56rem 0.68rem;
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
}

.host-inline-icon {
    width: 1.05rem;
    height: 1.05rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: currentColor;
}

.host-inline-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.host-empty-state {
    margin-top: 1rem;
    border: 1px solid #cee1d5;
    border-radius: 14px;
    background: linear-gradient(165deg, #f6fbf8 0%, #ffffff 100%);
    padding: 1rem;
    display: grid;
    gap: 0.42rem;
}

.host-empty-kicker {
    margin: 0;
    font-weight: 800;
    color: #1f5e40;
}

.host-empty-state-draft {
    border-color: #e3d3b6;
    background: linear-gradient(165deg, #fffaf1 0%, #ffffff 100%);
}

.host-empty-kicker-warning {
    color: #8a6020;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.host-empty-state h2 {
    margin: 0.08rem 0 0.14rem;
    font-size: clamp(1.18rem, 2.2vw, 1.38rem);
}

.host-empty-text {
    margin: 0;
    color: #5b5649;
}

.host-empty-actions {
    margin-top: 0.42rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.58rem;
}

.host-content .btn.host-empty-primary {
    width: min(100%, 360px);
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    padding: 0.72rem 1.02rem;
    box-shadow: 0 12px 20px rgba(39, 93, 63, 0.16);
}

.host-empty-help {
    margin: 0.1rem 0 0;
    color: #4f4a3f;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.host-empty-help .host-inline-icon {
    color: #2f7a4e;
}

.host-empty-help a {
    color: #1f5e40;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.host-stat-head {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.host-icon-pill {
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 9px;
    border: 1px solid #cfe0d3;
    background: #edf6f0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.host-icon-pill svg {
    width: 0.95rem;
    height: 0.95rem;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.host-simple-head h2 {
    margin: 0;
}

.host-simple-head p {
    margin: 0.35rem 0 0;
    color: var(--muted);
}

.host-quick-grid {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.host-quick-card {
    border: 1px solid var(--border-soft);
    border-radius: 13px;
    padding: 0.82rem;
    background: linear-gradient(160deg, #ffffff 0%, #fdf9f1 100%);
    text-decoration: none;
    color: var(--text);
    display: grid;
    gap: 0.42rem;
    transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.host-quick-card:hover {
    transform: translateY(-2px);
    border-color: #cebda3;
    box-shadow: 0 10px 22px rgba(36, 29, 20, 0.08);
}

.host-quick-card h3 {
    margin: 0;
    font-size: 1rem;
}

.host-quick-card p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.4;
    color: var(--muted);
}

.host-quick-card-muted {
    opacity: 0.86;
}

.host-quick-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 10px;
    border: 1px solid #cfe0d3;
    background: #edf6f0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.host-quick-icon svg {
    width: 1.08rem;
    height: 1.08rem;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.host-upcoming-list {
    margin-top: 0.9rem;
    display: grid;
    gap: 0.62rem;
}

.host-upcoming-list-item {
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    padding: 0.7rem;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.host-upcoming-list-main {
    margin: 0;
    font-weight: 700;
}

.host-upcoming-list-meta {
    margin: 0.22rem 0 0;
    color: var(--muted);
    font-size: 0.88rem;
}

@media (max-width: 1180px) {
    .host-quick-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .host-workspace {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .host-workspace::before {
        display: none;
    }

    .host-sidebar {
        position: static;
    }

    .host-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .host-quick-grid,
    .host-nav,
    .host-overview-stats {
        grid-template-columns: 1fr;
    }

    .host-overview-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .host-upcoming-list-item .btn {
        width: 100%;
    }
}
/* Host settings pages */
.host-settings-page h1 {
    margin: 0;
}

.host-settings-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.host-settings-subtitle {
    margin: 0.4rem 0 0;
    color: var(--muted);
}

.host-settings-tabs {
    margin-top: 0.9rem;
    display: inline-flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.host-settings-tab {
    text-decoration: none;
    color: var(--muted);
    font-weight: 600;
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    background: #f9f4e9;
    padding: 0.38rem 0.72rem;
}

.host-settings-tab:hover {
    color: var(--text);
    background: #f2e9d8;
}

.host-settings-tab.is-active {
    color: #fff;
    border-color: var(--primary);
    background: var(--primary);
}

.host-settings-layout {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 0.9rem;
    align-items: start;
}

.host-profile-card {
    border: 1px solid var(--border-soft);
    border-radius: 13px;
    padding: 0.9rem;
    background: linear-gradient(160deg, #ffffff 0%, #fcf7ec 100%);
}

.host-profile-avatar-wrap {
    margin-bottom: 0.7rem;
}

.host-profile-avatar,
.host-profile-avatar-placeholder {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    border: 1px solid #d8ccb7;
}

.host-profile-avatar {
    object-fit: cover;
    display: block;
    background: #fff;
}

.host-profile-avatar-placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #edf6f0;
    color: var(--primary-dark);
    font-size: 1.45rem;
    font-weight: 700;
}

.host-profile-card h2 {
    margin: 0;
    font-size: 1.12rem;
}

.host-profile-meta {
    margin: 0.38rem 0 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.host-profile-note {
    margin: 0.55rem 0 0;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.42;
}

.host-settings-form-card {
    border: 1px solid var(--border-soft);
    border-radius: 13px;
    padding: 0.95rem;
    background: #fff;
}

.host-settings-form {
    display: grid;
    gap: 0.2rem;
}

.host-settings-form textarea {
    min-height: 120px;
    resize: vertical;
}

.host-settings-actions {
    margin-top: 0.65rem;
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.host-security-card h2 {
    margin: 0;
}

.host-security-tips {
    margin: 0.7rem 0 0;
    padding-left: 1rem;
    display: grid;
    gap: 0.3rem;
    color: var(--muted);
}

@media (max-width: 980px) {
    .host-settings-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .host-settings-actions {
        flex-direction: column;
        align-items: stretch;
    }
}


/* Tourist profile */
.tourist-profile-page {
    display: grid;
    gap: 1rem;
}

.tourist-profile-head h1 {
    margin: 0;
    font-size: clamp(1.55rem, 2.2vw, 2rem);
}

.tourist-profile-head p {
    margin: 0.4rem 0 0;
    color: var(--muted);
}

.tourist-profile-form {
    display: grid;
    gap: 1rem;
}

.tourist-profile-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 0.95rem;
    align-items: start;
}

.tourist-profile-summary {
    border: 1px solid var(--border-soft);
    border-radius: 13px;
    background: linear-gradient(160deg, #ffffff 0%, #fcf7ec 100%);
    padding: 0.95rem;
}

.tourist-profile-avatar-wrap {
    margin-bottom: 0.65rem;
}

.tourist-profile-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    border: 1px solid #d8ccb7;
    object-fit: cover;
    background: #fff;
    display: block;
}

.tourist-profile-avatar-placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #edf6f0;
    color: var(--primary-dark);
    font-size: 1.4rem;
    font-weight: 700;
}

.tourist-profile-summary h2 {
    margin: 0;
    font-size: 1.08rem;
}

.tourist-profile-summary-email {
    margin: 0.35rem 0 0;
    color: var(--muted);
    font-size: 0.92rem;
    word-break: break-word;
}

.tourist-profile-summary-note {
    margin: 0.55rem 0 0;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.42;
}

.tourist-profile-blocks {
    display: grid;
    gap: 0.85rem;
}

.tourist-profile-block {
    border: 1px solid var(--border-soft);
    border-radius: 13px;
    background: #fff;
    padding: 0.95rem;
}

.tourist-profile-block h2 {
    margin: 0;
    font-size: 1.05rem;
}

.tourist-profile-block-note {
    margin: 0.4rem 0 0.65rem;
    color: var(--muted);
    line-height: 1.45;
    font-size: 0.93rem;
}

.tourist-profile-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.25rem 0.65rem;
}

.tourist-profile-grid > div:first-child {
    grid-column: 1 / -1;
}

.tourist-profile-grid > div:last-child {
    grid-column: 1 / -1;
}

.tourist-profile-verify-list {
    list-style: none;
    margin: 0.65rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}

.tourist-profile-verify-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
    padding: 0.6rem 0.7rem;
    border: 1px solid var(--border-soft);
    background: #faf8f2;
}

.tourist-profile-verify-item span {
    font-weight: 600;
}

.tourist-profile-verify-item strong {
    font-size: 0.9rem;
}

.tourist-profile-verify-item.is-verified strong {
    color: #1f8a52;
}

.tourist-profile-verify-item.is-pending strong {
    color: #9b6a4b;
}

.tourist-profile-toggles {
    margin-top: 0.65rem;
    display: grid;
    gap: 0.45rem;
}

.tourist-profile-toggle {
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    background: #faf8f2;
    padding: 0.55rem 0.65rem;
}

.tourist-profile-toggle > div {
    margin: 0;
}

.tourist-profile-toggle label {
    margin: 0;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.tourist-profile-actions {
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 980px) {
    .tourist-profile-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .tourist-profile-grid {
        grid-template-columns: 1fr;
    }

    .tourist-profile-actions {
        justify-content: stretch;
    }

    .tourist-profile-actions .btn {
        width: 100%;
    }
}

/* Tourist settings */
.tourist-settings-page {
    display: grid;
    gap: 0.95rem;
}

.tourist-settings-head h1 {
    margin: 0;
    font-size: clamp(1.5rem, 2vw, 1.95rem);
}

.tourist-settings-head p {
    margin: 0.42rem 0 0;
    color: var(--muted);
}

.tourist-settings-anchor-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.tourist-settings-anchor-nav a {
    text-decoration: none;
    color: var(--muted);
    font-weight: 600;
    border: 1px solid var(--border-soft);
    background: #f9f4e9;
    border-radius: 999px;
    padding: 0.36rem 0.72rem;
}

.tourist-settings-anchor-nav a:hover {
    color: var(--text);
    background: #f1e7d4;
}

.tourist-settings-section {
    border: 1px solid var(--border-soft);
    border-radius: 13px;
    background: #fff;
    padding: 0.95rem;
}

.tourist-settings-section h2 {
    margin: 0;
    font-size: 1.07rem;
}

.tourist-settings-note {
    margin: 0.38rem 0 0.75rem;
    color: var(--muted);
    line-height: 1.45;
}

.tourist-settings-form {
    display: grid;
    gap: 0.2rem;
}

.tourist-settings-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.25rem 0.65rem;
}

.tourist-settings-actions {
    margin-top: 0.5rem;
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.tourist-settings-toggle-list {
    display: grid;
    gap: 0.55rem;
}

.tourist-settings-toggle-item {
    border: 1px solid var(--border-soft);
    background: #faf8f2;
    border-radius: 10px;
    padding: 0.58rem 0.7rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
}

.tourist-settings-toggle-title {
    margin: 0;
    font-weight: 600;
}

.tourist-switch {
    position: relative;
    width: 48px;
    height: 28px;
    display: inline-flex;
    flex-shrink: 0;
}

.tourist-switch input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.tourist-switch-slider {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: #d8d2c7;
    transition: background 0.18s ease;
}

.tourist-switch-slider::before {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    left: 3px;
    top: 3px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    transition: transform 0.18s ease;
}

.tourist-switch input:checked + .tourist-switch-slider {
    background: var(--primary);
}

.tourist-switch input:checked + .tourist-switch-slider::before {
    transform: translateX(20px);
}

.tourist-switch input:focus-visible + .tourist-switch-slider {
    outline: 2px solid rgba(47, 122, 78, 0.35);
    outline-offset: 2px;
}

.tourist-settings-danger {
    border-color: #ead5d5;
    background: #fffdfd;
}

.tourist-settings-delete-form {
    display: grid;
    gap: 0.3rem;
    max-width: 420px;
}

.tourist-settings-delete-btn {
    background: #f6efef;
    color: #7b4f4f;
    border: 1px solid #e5d2d2;
}

.tourist-settings-delete-btn:hover {
    background: #f2e4e4;
    color: #6a3e3e;
}

@media (max-width: 760px) {
    .tourist-settings-grid {
        grid-template-columns: 1fr;
    }

    .tourist-settings-toggle-item {
        align-items: flex-start;
    }
}
