* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}:root {
    --primary: #0f766e;
    --primary-dark: #115e59;
    --dark: #102a2a;
    --text: #334155;
    --muted: #64748b;
    --light: #f8fafc;
    --border: #e2e8f0;
    --white: #ffffff;
}body {
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color: var(--text);

    background: #ffffff;

    line-height: 1.6;
}a {
    color: inherit;
    text-decoration: none;
}button,
input,
select {
    font: inherit;
}.container {
    width: min(1180px, calc(100% - 40px));

    margin: 0 auto;
}.site-header {
    background: var(--white);

    border-bottom: 1px solid var(--border);
}.header-inner {
    min-height: 76px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}.logo {
    font-size: 25px;

    font-weight: 800;

    color: var(--dark);

    letter-spacing: -0.5px;
}.logo span {
    color: var(--primary);
}.main-nav {
    display: flex;

    align-items: center;

    gap: 28px;

    font-size: 15px;

    font-weight: 600;
}.main-nav a {
    color: var(--text);

    transition: color 0.2s ease;
}.main-nav a:hover {
    color: var(--primary);
}.nav-cta {
    background: var(--primary);

    color: white !important;

    padding: 10px 18px;

    border-radius: 7px;
}.logout-form {
    margin: 0;
}.nav-button {
    border: none;

    background: transparent;

    color: var(--text);

    cursor: pointer;

    font-weight: 600;
}.hero {
    background:
        linear-gradient(
            135deg,
            #ecfdf5 0%,
            #f8fafc 55%,
            #ffffff 100%
        );

    padding: 90px 0 110px;
}.hero-content {
    max-width: 720px;

    margin-bottom: 40px;
}.hero-label,
.eyebrow {
    display: inline-block;

    color: var(--primary);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 14px;
}.hero h1 {
    color: var(--dark);

    font-size: clamp(42px, 6vw, 68px);

    line-height: 1.05;

    letter-spacing: -2.5px;

    margin-bottom: 24px;
}.hero p {
    color: var(--muted);

    font-size: 19px;

    max-width: 600px;
}.search-card {
    background: white;

    padding: 24px;

    border-radius: 14px;

    box-shadow:
        0 20px 50px rgba(15, 23, 42, 0.10);

    border: 1px solid var(--border);
}.search-card form {
    display: grid;

    grid-template-columns:
        1.4fr
        1fr
        1fr
        0.8fr
        auto;

    gap: 14px;

    align-items: end;
}.search-field {
    display: flex;

    flex-direction: column;

    gap: 7px;
}.search-field label,
.form-group label {
    font-size: 13px;

    font-weight: 700;

    color: var(--dark);
}.search-field input,
.search-field select,
.form-group input,
.form-group select {
    width: 100%;

    height: 46px;

    border: 1px solid var(--border);

    border-radius: 7px;

    padding: 0 13px;

    background: white;

    color: var(--text);

    outline: none;
}.search-field input:focus,
.search-field select:focus,
.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary);

    box-shadow:
        0 0 0 3px rgba(15, 118, 110, 0.10);
}.search-button,
.primary-button {
    height: 46px;

    border: none;

    border-radius: 7px;

    padding: 0 22px;

    background: var(--primary);

    color: white;

    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}.search-button:hover,
.primary-button:hover {
    background: var(--primary-dark);

    transform: translateY(-1px);
}.intro-section {
    padding: 100px 0;
}.section-heading {
    max-width: 650px;

    margin-bottom: 45px;
}.section-heading > span {
    color: var(--primary);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.5px;
}.section-heading h2 {
    color: var(--dark);

    font-size: 40px;

    line-height: 1.15;

    margin: 10px 0 14px;
}.section-heading p {
    color: var(--muted);
}.feature-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 24px;
}.feature-card,
.dashboard-card {
    border: 1px solid var(--border);

    border-radius: 12px;

    padding: 30px;

    background: white;
}.feature-icon,
.card-number {
    color: var(--primary);

    font-weight: 800;

    font-size: 13px;

    margin-bottom: 25px;

    display: block;
}.feature-card h3,
.dashboard-card h3 {
    color: var(--dark);

    font-size: 21px;

    margin-bottom: 10px;
}.feature-card p,
.dashboard-card p {
    color: var(--muted);

    font-size: 15px;
}.auth-section {
    min-height: calc(100vh - 150px);

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 60px 20px;

    background: var(--light);
}.auth-card {
    width: min(470px, 100%);

    background: white;

    border: 1px solid var(--border);

    border-radius: 14px;

    padding: 38px;

    box-shadow:
        0 15px 40px rgba(15, 23, 42, 0.06);
}.auth-card.wide {
    width: min(680px, 100%);
}.auth-header {
    margin-bottom: 28px;
}.auth-header span {
    color: var(--primary);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.4px;
}.auth-header h1 {
    color: var(--dark);

    font-size: 30px;

    line-height: 1.2;

    margin: 8px 0 10px;
}.auth-header p {
    color: var(--muted);

    font-size: 14px;
}.form-group {
    margin-bottom: 18px;
}.form-group ul.errorlist,
.errorlist {
    list-style: none;

    color: #b91c1c;

    font-size: 13px;

    margin-top: 5px;
}.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 16px;
}.account-type-options {
    padding-top: 7px;
}.account-type-options ul {
    list-style: none;

    display: flex;

    gap: 20px;

    flex-wrap: wrap;
}.account-type-options li {
    display: flex;

    align-items: center;

    gap: 7px;
}.account-type-options input {
    width: auto;
}.full-width {
    width: 100%;
}.auth-footer {
    text-align: center;

    color: var(--muted);

    font-size: 14px;

    margin-top: 24px;
}.auth-footer a {
    color: var(--primary);

    font-weight: 700;
}.dashboard-section {
    padding: 70px 0 100px;

    background: var(--light);

    min-height: calc(100vh - 150px);
}.dashboard-header {
    margin-bottom: 35px;
}.dashboard-header h1 {
    color: var(--dark);

    font-size: 36px;

    line-height: 1.15;

    margin-bottom: 8px;
}.dashboard-header p {
    color: var(--muted);
}.dashboard-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}.dashboard-card {
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}.dashboard-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 35px rgba(15, 23, 42, 0.08);
}.dashboard-card a {
    display: inline-block;

    color: var(--primary);

    font-weight: 700;

    margin-top: 22px;

    font-size: 14px;
}.messages {
    padding-top: 20px;
}.message {
    padding: 12px 15px;

    border-radius: 7px;

    margin-bottom: 10px;

    background: #ecfdf5;

    color: #166534;

    border: 1px solid #bbf7d0;
}.site-footer {
    padding: 30px 0;

    border-top: 1px solid var(--border);

    color: var(--muted);

    font-size: 14px;
}@media (max-width: 900px) {.search-card form {
        grid-template-columns: 1fr 1fr;
    }.search-button {
        width: 100%;
    }.feature-grid,
    .dashboard-grid {
        grid-template-columns: 1fr;
    }}@media (max-width: 650px) {.container {
        width: min(100% - 28px, 1180px);
    }.header-inner {
        min-height: 68px;
    }.main-nav {
        gap: 12px;

        font-size: 13px;
    }.main-nav > a:not(.nav-cta) {
        display: none;
    }.hero {
        padding: 65px 0 75px;
    }.hero h1 {
        font-size: 42px;

        letter-spacing: -1.5px;
    }.search-card {
        padding: 18px;
    }.search-card form {
        grid-template-columns: 1fr;
    }.intro-section {
        padding: 70px 0;
    }.section-heading h2 {
        font-size: 32px;
    }.auth-card {
        padding: 25px 20px;
    }.form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }.dashboard-header h1 {
        font-size: 30px;
    }}.page-header {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 35px;
}.page-header h1 {
    color: var(--dark);

    font-size: 38px;

    line-height: 1.15;

    margin-bottom: 8px;
}.page-header p {
    color: var(--muted);
}.page-actions {
    display: flex;

    gap: 10px;

    align-items: center;
}.primary-button,
.secondary-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 46px;

    padding: 0 20px;

    border-radius: 7px;

    font-weight: 700;

    cursor: pointer;

    text-decoration: none;
}.primary-button {
    background: var(--primary);

    color: white;

    border: 1px solid var(--primary);
}.primary-button:hover {
    background: var(--primary-dark);

    color: white;
}.secondary-button {
    background: white;

    color: var(--dark);

    border: 1px solid var(--border);
}.secondary-button:hover {
    border-color: var(--primary);

    color: var(--primary);
}.hotel-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 22px;
}.hotel-card {
    background: white;

    border: 1px solid var(--border);

    border-radius: 12px;

    overflow: hidden;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}.hotel-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 35px rgba(15, 23, 42, 0.08);
}.hotel-card-placeholder {
    height: 150px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #ecfdf5;

    color: var(--primary);

    font-size: 50px;

    font-weight: 800;
}.hotel-card-content {
    padding: 25px;
}.hotel-card-top {
    display: flex;

    justify-content: space-between;

    gap: 15px;

    align-items: flex-start;
}.hotel-card h2 {
    color: var(--dark);

    font-size: 21px;

    margin-bottom: 4px;
}.hotel-card-top p {
    color: var(--muted);

    font-size: 14px;
}.hotel-description {
    color: var(--muted);

    font-size: 14px;

    margin: 20px 0;
}.hotel-meta {
    display: flex;

    gap: 10px;

    flex-wrap: wrap;
}.hotel-meta span,
.amenity {
    display: inline-flex;

    align-items: center;

    padding: 6px 10px;

    background: var(--light);

    border: 1px solid var(--border);

    border-radius: 6px;

    color: var(--text);

    font-size: 12px;

    font-weight: 600;
}.hotel-actions {
    display: flex;

    gap: 20px;

    margin-top: 22px;

    padding-top: 18px;

    border-top: 1px solid var(--border);
}.hotel-actions a {
    color: var(--primary);

    font-size: 14px;

    font-weight: 700;
}.status-badge {
    display: inline-flex;

    padding: 5px 9px;

    border-radius: 20px;

    font-size: 11px;

    font-weight: 700;

    white-space: nowrap;
}.status-pending {
    background: #fef3c7;

    color: #92400e;
}.status-verified {
    background: #dcfce7;

    color: #166534;
}.status-rejected {
    background: #fee2e2;

    color: #991b1b;
}.empty-state {
    text-align: center;

    background: white;

    border: 1px dashed var(--border);

    border-radius: 12px;

    padding: 70px 25px;
}.empty-icon {
    width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 20px;

    border-radius: 50%;

    background: #ecfdf5;

    color: var(--primary);

    font-size: 25px;

    font-weight: 700;
}.empty-state h2 {
    color: var(--dark);

    margin-bottom: 8px;
}.empty-state p {
    color: var(--muted);

    margin-bottom: 25px;
}.detail-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 2fr)
        minmax(250px, 1fr);

    gap: 22px;
}.detail-main {
    display: flex;

    flex-direction: column;

    gap: 22px;
}.detail-sidebar {
    display: flex;

    flex-direction: column;

    gap: 22px;
}.content-card {
    background: white;

    border: 1px solid var(--border);

    border-radius: 12px;

    padding: 28px;
}.content-card h2 {
    color: var(--dark);

    font-size: 21px;

    margin-bottom: 15px;
}.content-card h3 {
    color: var(--dark);

    font-size: 16px;

    margin-bottom: 10px;
}.content-card p {
    color: var(--muted);

    font-size: 14px;

    margin-bottom: 8px;
}.amenity-list {
    display: flex;

    gap: 8px;

    flex-wrap: wrap;
}@media (max-width: 800px) {.hotel-grid,
    .detail-grid {
        grid-template-columns: 1fr;
    }.page-header {
        align-items: flex-start;

        flex-direction: column;
    }}@media (max-width: 550px) {.hotel-card-top {
        flex-direction: column;
    }.page-header h1 {
        font-size: 30px;
    }.page-actions {
        width: 100%;

        flex-direction: column;

        align-items: stretch;
    }}.room-type-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 22px;
}.room-type-card {
    background: white;

    border: 1px solid var(--border);

    border-radius: 12px;

    padding: 26px;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}.room-type-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 35px rgba(15, 23, 42, 0.07);
}.room-type-card-header {
    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    gap: 20px;

    margin-bottom: 18px;
}.room-type-card h2 {
    color: var(--dark);

    font-size: 21px;

    margin-bottom: 8px;
}.room-price {
    text-align: right;

    white-space: nowrap;
}.room-price strong {
    display: block;

    color: var(--primary);

    font-size: 20px;
}.room-price span {
    color: var(--muted);

    font-size: 11px;
}.room-status {
    display: inline-flex;

    padding: 4px 8px;

    border-radius: 15px;

    font-size: 11px;

    font-weight: 700;
}.room-status.active {
    background: #dcfce7;

    color: #166534;
}.room-status.inactive {
    background: #f1f5f9;

    color: #64748b;
}.room-description {
    color: var(--muted);

    font-size: 14px;

    margin-bottom: 20px;
}.room-specs {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin-bottom: 20px;
}.room-specs span {
    padding: 6px 9px;

    background: var(--light);

    border: 1px solid var(--border);

    border-radius: 6px;

    color: var(--text);

    font-size: 12px;
}.room-inventory-summary {
    display: flex;

    align-items: baseline;

    gap: 6px;

    padding: 15px;

    background: #f8fafc;

    border-radius: 8px;

    margin-bottom: 18px;
}.room-inventory-summary strong {
    color: var(--dark);

    font-size: 22px;
}.room-inventory-summary span {
    color: var(--muted);

    font-size: 13px;
}.checkbox-label {
    display: flex;

    align-items: center;

    gap: 9px;

    cursor: pointer;
}.checkbox-label input {
    width: 18px;

    height: 18px;
}.content-card-heading {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 20px;
}.content-card-heading h2 {
    margin-bottom: 5px;
}.content-card-heading p {
    margin: 0;
}.room-table-wrapper {
    width: 100%;

    overflow-x: auto;
}.room-table {
    width: 100%;

    border-collapse: collapse;

    min-width: 600px;
}.room-table th {
    text-align: left;

    color: var(--muted);

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: 0.5px;

    padding: 12px 10px;

    border-bottom: 1px solid var(--border);
}.room-table td {
    padding: 16px 10px;

    border-bottom: 1px solid var(--border);

    color: var(--text);

    font-size: 14px;
}.room-table tbody tr:last-child td {
    border-bottom: none;
}.room-table td strong {
    color: var(--dark);
}.room-status-available {
    background: #dcfce7;

    color: #166534;
}.room-status-maintenance {
    background: #fef3c7;

    color: #92400e;
}.room-status-out_of_service {
    background: #fee2e2;

    color: #991b1b;
}.room-table .room-status {
    padding: 5px 9px;

    border-radius: 15px;

    font-size: 11px;

    font-weight: 700;
}.table-action {
    color: var(--primary);

    font-weight: 700;

    font-size: 13px;
}.large-price {
    color: var(--primary);

    font-size: 28px;

    font-weight: 800;

    line-height: 1.2;
}.mini-empty {
    padding: 35px 10px;

    text-align: center;

    border: 1px dashed var(--border);

    border-radius: 8px;
}.mini-empty p {
    margin-bottom: 18px;
}@media (max-width: 800px) {.room-type-grid {
        grid-template-columns: 1fr;
    }}@media (max-width: 550px) {.room-type-card-header {
        flex-direction: column;
    }.room-price {
        text-align: left;
    }}.booking-search-hero {
    padding: 70px 0;
    background: linear-gradient(
        135deg,
        var(--dark),
        var(--primary-dark)
    );
    color: #fff;
}.booking-search-heading {
    max-width: 700px;
    margin-bottom: 35px;
}.booking-search-heading h1 {
    margin: 10px 0;
    font-size: clamp(2rem, 5vw, 3.5rem);
}.booking-search-heading p {
    color: rgba(255,255,255,.8);
}.availability-search-form {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr .7fr .7fr auto;
    gap: 12px;
    align-items: end;
    background: #fff;
    padding: 18px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,.2);
}.search-field label {
    display: block;
    margin-bottom: 7px;
    color: var(--text);
    font-size: .85rem;
    font-weight: 700;
}.search-field input {
    width: 100%;
    min-height: 46px;
    box-sizing: border-box;
}.search-button {
    min-height: 46px;
    white-space: nowrap;
}.booking-results-section {
    padding-top: 55px;
    padding-bottom: 70px;
}.hotel-search-results {
    display: grid;
    gap: 24px;
}.booking-hotel-card {
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fff;
    overflow: hidden;
}.booking-hotel-content {
    padding: 28px;
}.booking-hotel-content h3 {
    margin: 6px 0 10px;
    font-size: 1.6rem;
}.hotel-location {
    color: var(--muted);
    font-size: .9rem;
}.booking-room-options {
    margin-top: 25px;
    border-top: 1px solid var(--border);
}.booking-room-option {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
}.booking-room-option:last-child {
    border-bottom: 0;
}.booking-room-option h4 {
    margin: 0 0 8px;
}.room-option-details {
    color: var(--muted);
    font-size: .9rem;
}.availability-label {
    margin-top: 10px;
    font-size: .85rem;
    font-weight: 700;
}.room-option-price {
    min-width: 170px;
    text-align: right;
}.room-option-price strong {
    display: block;
    font-size: 1.3rem;
}.room-option-price span {
    display: block;
    color: var(--muted);
    font-size: .8rem;
    margin-bottom: 12px;
}.small-button {
    padding: 10px 15px;
    font-size: .85rem;
}.booking-intro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}.booking-intro-grid > div {
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: 16px;
}.booking-intro-grid h2 {
    margin-top: 0;
}.booking-intro-grid p {
    color: var(--muted);
}.booking-page {
    padding-top: 55px;
    padding-bottom: 80px;
}.booking-page-header {
    max-width: 700px;
    margin-bottom: 35px;
}.booking-page-header h1 {
    margin: 8px 0;
}.booking-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(300px, .8fr);
    gap: 30px;
    align-items: start;
}.booking-form-card,
.booking-summary-card,
.booking-detail-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 30px;
}.booking-form-card h2,
.booking-summary-card h2,
.booking-detail-card h2 {
    margin-top: 0;
}.form-group {
    margin-bottom: 20px;
}.form-group label {
    display: block;
    margin-bottom: 7px;
    font-weight: 700;
}.form-group input,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;
}.form-errors {
    padding: 14px;
    margin-bottom: 20px;
    border-radius: 10px;
    background: #fff1f1;
    color: #a11;
}.field-error {
    display: block;
    margin-top: 5px;
    color: #b42318;
}.booking-summary-card {
    position: sticky;
    top: 100px;
}.booking-summary-card h2 {
    margin: 5px 0 20px;
}.booking-summary-card h3 {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}.booking-summary-row,
.detail-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}.booking-summary-row span,
.detail-row span {
    color: var(--muted);
}.booking-total {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 22px;
    margin-top: 10px;
    font-size: 1.2rem;
}.booking-note {
    margin-top: 25px;
    padding: 15px;
    border-radius: 10px;
    background: var(--light);
    color: var(--muted);
    font-size: .9rem;
}.booking-confirmation-header {
    text-align: center;
    margin-bottom: 40px;
}.booking-confirmation-header h1 {
    margin: 8px 0;
    font-size: 2.3rem;
}.booking-status {
    display: inline-block;
    margin-top: 12px;
    padding: 7px 13px;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
}.booking-status.pending {
    background: #fff4cc;
    color: #805b00;
}.booking-status.confirmed {
    background: #e6f8ed;
    color: #167344;
}.booking-status.cancelled,
.booking-status.expired {
    background: #fcebea;
    color: #a33a32;
}.booking-status.completed {
    background: #e8f0ff;
    color: #2856a6;
}.booking-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}.booking-room-summary {
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
}.booking-room-summary:last-child {
    border-bottom: 0;
}.booking-room-summary h3 {
    margin-top: 0;
}.booking-room-summary p {
    color: var(--muted);
}.payment-status {
    margin-top: 18px;
    color: var(--muted);
}.booking-actions {
    margin-top: 30px;
}.danger-button {
    border: 0;
    background: #b42318;
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
}.my-bookings-list {
    display: grid;
    gap: 18px;
}.my-booking-card {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    padding: 25px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
}.my-booking-card h2 {
    margin: 8px 0;
}.booking-reference {
    font-size: .8rem;
    color: var(--muted);
    font-weight: 700;
}.my-booking-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: flex-end;
}@media (max-width: 1050px) {.availability-search-form {
        grid-template-columns: repeat(3, 1fr);
    }.search-button {
        grid-column: span 3;
    }}@media (max-width: 800px) {.availability-search-form {
        grid-template-columns: 1fr 1fr;
    }.search-button {
        grid-column: span 2;
    }.booking-layout {
        grid-template-columns: 1fr;
    }.booking-summary-card {
        position: static;
    }.booking-detail-grid {
        grid-template-columns: 1fr;
    }.booking-intro-grid {
        grid-template-columns: 1fr;
    }.my-booking-card {
        flex-direction: column;
    }.my-booking-meta {
        justify-content: flex-start;
    }}@media (max-width: 550px) {.availability-search-form {
        grid-template-columns: 1fr;
    }.search-button {
        grid-column: auto;
    }.booking-room-option {
        flex-direction: column;
    }.room-option-price {
        min-width: 0;
        text-align: left;
    }.booking-form-card,
    .booking-summary-card,
    .booking-detail-card {
        padding: 20px;
    }.booking-summary-row,
    .detail-row {
        flex-direction: column;
        gap: 5px;
    }}.dashboard-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 42px 24px 80px;
}.dashboard-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}.dashboard-eyebrow,
.section-eyebrow {
    display: block;
    margin-bottom: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}.dashboard-eyebrow {
    opacity: 0.7;
}.dashboard-header h1 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
}.dashboard-header p {
    max-width: 650px;
    margin: 12px 0 0;
    opacity: 0.72;
    line-height: 1.7;
}.dashboard-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}.dashboard-filter-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 22px;
    margin-bottom: 36px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    background: var(--surface-color, #ffffff);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}.dashboard-filter-card > div:first-child {
    display: flex;
    flex-direction: column;
    gap: 5px;
}.dashboard-filter-card > div:first-child span {
    font-size: 0.9rem;
    opacity: 0.65;
}.dashboard-filter-form {
    display: flex;
    align-items: center;
    gap: 10px;
}.dashboard-filter-form label {
    font-size: 0.85rem;
    font-weight: 700;
}.dashboard-filter-form select {
    min-width: 220px;
    height: 44px;
    padding: 0 38px 0 13px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    background: #fff;
    font: inherit;
    cursor: pointer;
}.clear-filter {
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
}.dashboard-section {
    margin-top: 42px;
}.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}.section-heading h2 {
    margin: 0;
    font-size: 1.45rem;
}.section-description {
    margin: 6px 0 0;
    font-size: 0.9rem;
    opacity: 0.62;
}.section-link {
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}.revenue-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}.revenue-card {
    min-height: 180px;
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 18px;
    background: var(--surface-color, #ffffff);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.035);
}.revenue-card-highlight {
    border-color: rgba(22, 163, 74, 0.25);
}.revenue-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}.revenue-card-label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    opacity: 0.62;
}.revenue-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.045);
    font-weight: 800;
}.revenue-card-value {
    margin-top: 25px;
    font-size: clamp(1.35rem, 2vw, 2rem);
    font-weight: 800;
    line-height: 1.2;
}.revenue-card-description {
    margin-top: 10px;
    font-size: 0.82rem;
    line-height: 1.5;
    opacity: 0.58;
}.payout-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}.payout-summary-card {
    padding: 23px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 16px;
    background: var(--surface-color, #ffffff);
}.payout-label {
    display: block;
    margin-bottom: 12px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.6;
}.payout-summary-card strong {
    display: block;
    font-size: 1.55rem;
}.payout-summary-card small {
    display: block;
    margin-top: 8px;
    font-size: 0.8rem;
    opacity: 0.55;
}.dashboard-table-wrapper,
.monthly-revenue-table-wrapper {
    overflow-x: auto;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 16px;
    background: var(--surface-color, #ffffff);
}.dashboard-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}.dashboard-table th,
.dashboard-table td {
    padding: 15px 17px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    vertical-align: middle;
}.dashboard-table th {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.58;
    background: rgba(0, 0, 0, 0.018);
}.dashboard-table td {
    font-size: 0.88rem;
}.dashboard-table tbody tr:last-child td {
    border-bottom: 0;
}.dashboard-table tbody tr:hover {
    background: rgba(0, 0, 0, 0.018);
}.table-value-highlight {
    font-weight: 800;
}.status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.06);
    font-size: 0.72rem;
    font-weight: 800;
    white-space: nowrap;
}.status-confirmed,
.status-paid {
    background: rgba(22, 163, 74, 0.1);
}.status-completed {
    background: rgba(37, 99, 235, 0.1);
}.status-pending {
    background: rgba(234, 179, 8, 0.13);
}.status-processing {
    background: rgba(59, 130, 246, 0.1);
}.status-failed {
    background: rgba(220, 38, 38, 0.1);
}.empty-dashboard-card,
.dashboard-empty-state {
    padding: 55px 25px;
    text-align: center;
    border: 1px dashed rgba(0, 0, 0, 0.14);
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.015);
}.empty-dashboard-card {
    margin-top: 20px;
}.empty-dashboard-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin: 0 auto 18px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.05);
    font-size: 1.5rem;
}.empty-dashboard-card h2,
.dashboard-empty-state h3 {
    margin: 0;
}.empty-dashboard-card p,
.dashboard-empty-state p {
    max-width: 520px;
    margin: 10px auto 22px;
    line-height: 1.7;
    opacity: 0.62;
}@media (max-width: 1050px) {.revenue-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }}@media (max-width: 760px) {.dashboard-page {
        padding: 28px 16px 60px;
    }.dashboard-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }.dashboard-header-actions {
        width: 100%;
    }.dashboard-header-actions a {
        flex: 1;
        text-align: center;
    }.dashboard-filter-card {
        align-items: stretch;
        flex-direction: column;
        gap: 18px;
    }.dashboard-filter-form {
        align-items: stretch;
        flex-wrap: wrap;
    }.dashboard-filter-form select {
        flex: 1;
        min-width: 0;
    }.revenue-card-grid {
        grid-template-columns: 1fr;
    }.payout-summary-grid {
        grid-template-columns: 1fr;
    }.section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }.section-link {
        font-size: 0.84rem;
    }}.marketplace-home {
    background: #ffffff;
}.marketplace-hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(
            115deg,
            rgba(10, 27, 24, 0.94),
            rgba(10, 27, 24, 0.72)
        ),
        linear-gradient(
            135deg,
            #173d35,
            #0b2520
        );
}.marketplace-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 80% 25%,
            rgba(255, 255, 255, 0.12),
            transparent 32%
        ),
        radial-gradient(
            circle at 20% 90%,
            rgba(255, 255, 255, 0.06),
            transparent 30%
        );
}.marketplace-hero-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.12),
            transparent
        );
}.marketplace-hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 90px;
    padding-bottom: 80px;
}.marketplace-hero-content {
    max-width: 760px;
    margin-bottom: 46px;
}.hero-eyebrow,
.section-eyebrow,
.search-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}.hero-eyebrow {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.72);
}.marketplace-hero h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(3rem, 6vw, 5.8rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
    font-weight: 800;
}.marketplace-hero h1 span {
    color: #d9b56d;
}.marketplace-hero-content p {
    max-width: 620px;
    margin: 25px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.12rem;
    line-height: 1.75;
}.marketplace-search-card {
    width: 100%;
    max-width: 1180px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.25);
}.marketplace-search-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}.search-label {
    color: #7c6a4d;
    margin-bottom: 5px;
}.marketplace-search-heading h2 {
    margin: 0;
    color: #17211f;
    font-size: 1.35rem;
}.search-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #f4efe6;
    color: #786343;
    font-size: 1.35rem;
}.marketplace-search-form {
    display: grid;
    grid-template-columns:
        1.45fr
        1fr
        1fr
        1.05fr
        auto;
    gap: 12px;
    align-items: end;
}.search-field {
    min-width: 0;
}.search-field label {
    display: block;
    margin-bottom: 8px;
    color: #56615e;
    font-size: 0.78rem;
    font-weight: 700;
}.search-input-wrapper {
    position: relative;
}.search-input-wrapper input,
.search-input-wrapper select {
    width: 100%;
    min-height: 54px;
    padding: 0 14px 0 39px;
    border: 1px solid #dce1de;
    border-radius: 11px;
    background: #ffffff;
    color: #17211f;
    font-size: 0.92rem;
    outline: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}.search-input-wrapper input:focus,
.search-input-wrapper select:focus {
    border-color: #52786d;
    box-shadow: 0 0 0 3px rgba(82, 120, 109, 0.1);
}.field-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    color: #7b8884;
    font-size: 0.85rem;
}.guest-summary {
    min-height: 54px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 14px;
    border: 1px solid #dce1de;
    border-radius: 11px;
    background: #ffffff;
    color: #34413d;
    font-size: 0.9rem;
}.guest-summary .field-icon {
    position: static;
    transform: none;
    margin-right: 3px;
}.guest-separator {
    color: #a2aaa7;
}.marketplace-search-button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 0 24px;
    border: 0;
    border-radius: 11px;
    background: #173d35;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 800;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}.marketplace-search-button:hover {
    transform: translateY(-2px);
    background: #245448;
    box-shadow: 0 10px 25px rgba(23, 61, 53, 0.2);
}.button-arrow {
    font-size: 1.15rem;
}.destination-strip {
    border-bottom: 1px solid #e8ecea;
    background: #ffffff;
}.destination-strip-inner {
    min-height: 94px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}.destination-intro {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}.destination-intro span {
    color: #8b7655;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.13em;
}.destination-intro strong {
    margin-top: 3px;
    color: #17211f;
    font-size: 0.95rem;
}.destination-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}.destination-pill {
    padding: 9px 15px;
    border: 1px solid #e1e6e3;
    border-radius: 100px;
    color: #53615c;
    background: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}.destination-pill:hover {
    border-color: #b9cbc5;
    background: #f3f7f5;
    color: #173d35;
}.featured-hotels-section {
    padding: 95px 0;
    background: #ffffff;
}.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 38px;
}.section-heading.centered {
    display: block;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}.section-eyebrow {
    margin-bottom: 9px;
    color: #8b7655;
}.section-heading h2 {
    margin: 0;
    color: #17211f;
    font-size: clamp(2rem, 3vw, 3rem);
    letter-spacing: -0.035em;
}.section-heading p {
    max-width: 600px;
    margin: 11px 0 0;
    color: #6b7672;
    line-height: 1.7;
}.section-heading.centered p {
    margin-left: auto;
    margin-right: auto;
}.section-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    flex-shrink: 0;
    color: #173d35;
    font-size: 0.88rem;
    font-weight: 800;
    text-decoration: none;
}.section-link span {
    transition: transform 0.2s ease;
}.section-link:hover span {
    transform: translateX(4px);
}.featured-hotel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}.featured-hotel-card {
    overflow: hidden;
    border: 1px solid #e5e9e7;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 35px rgba(21, 42, 36, 0.05);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}.featured-hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(21, 42, 36, 0.1);
}.hotel-card-image {
    position: relative;
    display: block;
    height: 245px;
    overflow: hidden;
    background: #e9efec;
}.hotel-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}.featured-hotel-card:hover .hotel-card-image img {
    transform: scale(1.04);
}.hotel-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 7px 10px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.94);
    color: #245448;
    font-size: 0.68rem;
    font-weight: 800;
}.hotel-image-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background:
        linear-gradient(
            135deg,
            #dfe9e5,
            #f2f5f3
        );
    color: #83908b;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.15em;
}.featured-hotel-content {
    padding: 21px;
}.hotel-card-location {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #8a7656;
    font-size: 0.72rem;
    font-weight: 700;
}.featured-hotel-content h3 {
    margin: 8px 0 7px;
    font-size: 1.2rem;
    line-height: 1.25;
}.featured-hotel-content h3 a {
    color: #17211f;
    text-decoration: none;
}.hotel-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #7a8581;
    font-size: 0.74rem;
}.stars {
    color: #b78b3d;
    letter-spacing: 1px;
    font-size: 0.82rem;
}.hotel-card-description {
    min-height: 47px;
    margin: 14px 0 17px;
    color: #6e7975;
    font-size: 0.84rem;
    line-height: 1.65;
}.hotel-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid #edf0ef;
}.hotel-card-type {
    color: #68746f;
    font-size: 0.72rem;
    font-weight: 700;
}.hotel-card-arrow {
    color: #173d35;
    font-size: 1.15rem;
}.marketplace-empty-state {
    padding: 70px 25px;
    border: 1px dashed #ccd6d2;
    border-radius: 18px;
    background: #f8faf9;
    text-align: center;
}.empty-state-icon {
    margin-bottom: 15px;
    font-size: 2.5rem;
}.marketplace-empty-state h3 {
    margin: 0;
    color: #17211f;
}.marketplace-empty-state p {
    margin: 9px 0 22px;
    color: #717c78;
}.why-book-section {
    padding: 95px 0;
    background: #f7f9f8;
}.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 52px;
}.benefit-card {
    padding: 28px;
    border: 1px solid #e3e9e6;
    border-radius: 17px;
    background: #ffffff;
}.benefit-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 12px;
    background: #edf4f1;
    color: #245448;
    font-weight: 800;
}.benefit-card h3 {
    margin: 0 0 10px;
    color: #17211f;
    font-size: 1rem;
}.benefit-card p {
    margin: 0;
    color: #707b77;
    font-size: 0.83rem;
    line-height: 1.7;
}.hotel-owner-cta {
    padding: 70px 0;
    background: #173d35;
}.hotel-owner-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}.hotel-owner-cta .section-eyebrow {
    color: #d9b56d;
}.hotel-owner-cta h2 {
    max-width: 680px;
    margin: 7px 0 10px;
    color: #ffffff;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    letter-spacing: -0.035em;
}.hotel-owner-cta p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.7;
}.hotel-owner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex-shrink: 0;
}.cta-primary,
.cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 19px;
    border-radius: 9px;
    font-size: 0.82rem;
    font-weight: 800;
    text-decoration: none;
}.cta-primary {
    background: #ffffff;
    color: #173d35;
}.cta-secondary {
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #ffffff;
    background: transparent;
}@media (max-width: 1050px) {.marketplace-search-form {
        grid-template-columns: repeat(2, 1fr);
    }.marketplace-search-button {
        width: 100%;
    }.featured-hotel-grid {
        grid-template-columns: repeat(2, 1fr);
    }.benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }}@media (max-width: 760px) {.marketplace-hero {
        min-height: auto;
    }.marketplace-hero-container {
        padding-top: 65px;
        padding-bottom: 55px;
    }.marketplace-hero-content {
        margin-bottom: 30px;
    }.marketplace-hero h1 {
        font-size: clamp(2.8rem, 13vw, 4.3rem);
    }.marketplace-hero-content p {
        font-size: 0.98rem;
    }.marketplace-search-card {
        padding: 20px;
        border-radius: 17px;
    }.marketplace-search-form {
        grid-template-columns: 1fr;
    }.destination-strip-inner {
        align-items: flex-start;
        flex-direction: column;
        padding-top: 24px;
        padding-bottom: 24px;
        gap: 18px;
    }.destination-links {
        justify-content: flex-start;
    }.section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }.featured-hotels-section,
    .why-book-section {
        padding: 65px 0;
    }.featured-hotel-grid {
        grid-template-columns: 1fr;
    }.benefit-grid {
        grid-template-columns: 1fr;
        margin-top: 35px;
    }.hotel-owner-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }.hotel-owner-actions {
        width: 100%;
    }}@media (max-width: 480px) {.marketplace-hero-container {
        padding-left: 18px;
        padding-right: 18px;
    }.marketplace-search-heading h2 {
        font-size: 1.15rem;
    }.hotel-card-image {
        height: 220px;
    }.hotel-owner-actions {
        flex-direction: column;
    }.cta-primary,
    .cta-secondary {
        width: 100%;
    }}.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 8px;
    border: 0;
    background: transparent;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border-radius: 8px;
}.mobile-menu-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
}.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition:
        transform 0.25s ease,
        opacity 0.2s ease;
}.site-header.menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}.site-header.menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
}.site-header.menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}.mobile-navigation {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1001;

    width: min(340px, 88vw);
    height: 100vh;

    background: #ffffff;

    box-shadow:
        -10px 0 35px rgba(0, 0, 0, 0.12);

    transform: translateX(100%);
    visibility: hidden;

    transition:
        transform 0.3s ease,
        visibility 0.3s ease;

    overflow-y: auto;
}.site-header.menu-open .mobile-navigation {
    transform: translateX(0);
    visibility: visible;
}.mobile-navigation-header {
    min-height: 72px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 22px;

    border-bottom: 1px solid #eeeeee;
}.mobile-menu-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
}.mobile-menu-close {
    width: 40px;
    height: 40px;

    border: 0;
    border-radius: 50%;

    background: #f3f4f6;

    color: #111827;

    font-size: 1.8rem;
    line-height: 1;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}.mobile-menu-close:hover {
    background: #e5e7eb;
    transform: rotate(90deg);
}.mobile-nav-links {
    display: flex;
    flex-direction: column;

    padding: 18px;
}.mobile-nav-links > a,
.mobile-logout-form button {
    width: 100%;

    min-height: 52px;

    display: flex;
    align-items: center;

    padding: 0 16px;

    border-radius: 10px;

    color: #1f2937;

    text-decoration: none;

    font-size: 0.98rem;
    font-weight: 600;

    background: transparent;

    border: 0;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        padding-left 0.2s ease;
}.mobile-nav-links > a:hover,
.mobile-logout-form button:hover {
    background: #f3f4f6;
    color: #111827;
    padding-left: 21px;
}.mobile-nav-links .mobile-nav-cta {
    margin-top: 8px;

    justify-content: center;

    background: #111827;
    color: #ffffff;
}.mobile-nav-links .mobile-nav-cta:hover {
    background: #000000;
    color: #ffffff;
    padding-left: 16px;
}.mobile-logout-form {
    margin: 0;
    padding: 0;
}.mobile-logout-form button {
    text-align: left;
    font-family: inherit;
}.mobile-menu-overlay {
    position: fixed;
    inset: 0;

    z-index: 1000;

    background: rgba(0, 0, 0, 0.45);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}.site-header.menu-open ~ .mobile-menu-overlay {
    opacity: 1;
    visibility: visible;
}body.mobile-menu-active {
    overflow: hidden;
}@media (max-width: 768px) {.site-header .header-inner {
        min-height: 68px;
    }.main-nav {
        display: none !important;
    }.mobile-menu-toggle {
        display: flex;
    }.logo {
        position: relative;
        z-index: 1002;
    }}@media (max-width: 480px) {.mobile-navigation {
        width: 90vw;
    }.mobile-navigation-header {
        padding: 0 18px;
    }.mobile-nav-links {
        padding: 14px;
    }}.home-hero {
    position: relative;

    padding: 90px 0 120px;

    background:
        linear-gradient(
            135deg,
            #101827 0%,
            #17243a 50%,
            #243653 100%
        );

    color: #ffffff;

    overflow: hidden;
}.home-hero::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -180px;
    top: -200px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.05);
}.home-hero::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    left: -150px;
    bottom: -200px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.04);
}.hero-content {
    position: relative;
    z-index: 2;

    max-width: 760px;

    margin: 0 auto;

    text-align: center;
}.hero-eyebrow,
.section-eyebrow {
    display: inline-block;

    margin-bottom: 14px;

    font-size: 0.72rem;
    font-weight: 800;

    letter-spacing: 0.14em;

    text-transform: uppercase;

    opacity: 0.75;
}.hero-content h1 {
    margin: 0;

    font-size: clamp(2.5rem, 6vw, 4.8rem);

    line-height: 1.04;

    letter-spacing: -0.045em;
}.hero-content h1 span {
    display: block;
}.hero-description {
    max-width: 610px;

    margin: 22px auto 0;

    font-size: 1.08rem;

    line-height: 1.7;

    color: rgba(255, 255, 255, 0.78);
}.hotel-search-card {
    position: relative;
    z-index: 5;

    max-width: 1100px;

    margin: 52px auto 24px;

    padding: 14px;

    background: #ffffff;

    border-radius: 18px;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.2);
}.hotel-search-form {
    display: grid;

    grid-template-columns:
        1.4fr
        1fr
        1fr
        0.8fr
        auto;

    align-items: end;

    gap: 10px;
}.search-field {
    min-width: 0;

    padding: 10px 14px;

    border-right: 1px solid #e5e7eb;
}.search-field label {
    display: block;

    margin-bottom: 6px;

    font-size: 0.72rem;

    font-weight: 700;

    color: #6b7280;

    text-transform: uppercase;

    letter-spacing: 0.04em;
}.search-input-wrapper {
    display: flex;

    align-items: center;

    gap: 7px;
}.search-icon {
    flex: 0 0 auto;

    color: #6b7280;
}.search-input-wrapper input,
.search-input-wrapper select {
    width: 100%;

    min-width: 0;

    padding: 5px 0;

    border: 0;

    outline: none;

    background: transparent;

    color: #111827;

    font-size: 0.92rem;
}.hotel-search-button {
    min-height: 58px;

    padding: 0 23px;

    border: 0;

    border-radius: 12px;

    background: #111827;

    color: #ffffff;

    font-family: inherit;

    font-weight: 700;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    white-space: nowrap;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}.hotel-search-button:hover {
    background: #000000;

    transform: translateY(-2px);
}.search-arrow {
    font-size: 1.2rem;
}.popular-destinations,
.featured-hotels,
.why-hotelbook,
.hotel-owner-section {
    padding: 110px 0 80px;
}.popular-destinations {
    padding-top: 90px;
    background: #ffffff;
}.featured-hotels {
    background: #f8fafc;
}.section-heading.centered {
    display: block;

    max-width: 650px;

    margin-left: auto;
    margin-right: auto;

    text-align: center;
}.section-heading h2 {
    margin: 0;

    color: #111827;

    font-size: clamp(1.8rem, 3vw, 2.5rem);

    letter-spacing: -0.03em;
}.section-heading p {
    margin: 10px 0 0;

    color: #6b7280;
}.section-link {
    flex: 0 0 auto;

    color: #111827;

    font-size: 0.9rem;

    font-weight: 700;

    text-decoration: none;
}.section-link:hover {
    text-decoration: underline;
}.destination-grid {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 14px;
}.destination-card {
    position: relative;

    min-height: 210px;

    padding: 22px;

    display: flex;

    align-items: flex-end;

    overflow: hidden;

    border-radius: 16px;

    text-decoration: none;

    background:
        linear-gradient(
            145deg,
            #1f2937,
            #374151
        );

    color: #ffffff;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}.destination-card::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.65),
            transparent 65%
        );
}.destination-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 35px rgba(0, 0, 0, 0.16);
}.destination-card > div {
    position: relative;
    z-index: 2;
}.destination-card h3 {
    margin: 0 0 4px;

    font-size: 1.35rem;
}.destination-card span {
    font-size: 0.78rem;

    opacity: 0.8;
}.destination-lagos {
    background:
        linear-gradient(
            135deg,
            #0f172a,
            #334155
        );
}.destination-abuja {
    background:
        linear-gradient(
            135deg,
            #172554,
            #1e40af
        );
}.destination-port-harcourt {
    background:
        linear-gradient(
            135deg,
            #14532d,
            #166534
        );
}.destination-enugu {
    background:
        linear-gradient(
            135deg,
            #3f1d0b,
            #78350f
        );
}.destination-owerri {
    background:
        linear-gradient(
            135deg,
            #3b0764,
            #6b21a8
        );
}.hotel-card-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px;
}.hotel-card {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e5e7eb;

    border-radius: 16px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}.hotel-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 40px rgba(15, 23, 42, 0.1);
}.hotel-card-image {
    position: relative;

    display: block;

    height: 230px;

    overflow: hidden;

    background: #e5e7eb;
}.hotel-card-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.4s ease;
}.hotel-card:hover .hotel-card-image img {
    transform: scale(1.04);
}.hotel-badge {
    position: absolute;

    top: 14px;
    left: 14px;

    padding: 7px 10px;

    border-radius: 7px;

    background: rgba(255, 255, 255, 0.95);

    color: #166534;

    font-size: 0.72rem;

    font-weight: 800;
}.hotel-image-placeholder {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #e5e7eb;

    color: #6b7280;

    font-weight: 800;
}.hotel-card-content {
    padding: 20px;
}.hotel-card-location {
    margin-bottom: 6px;

    color: #6b7280;

    font-size: 0.78rem;
}.hotel-card-title {
    margin: 0;

    font-size: 1.15rem;
}.hotel-card-title a {
    color: #111827;

    text-decoration: none;
}.hotel-card-title a:hover {
    text-decoration: underline;
}.hotel-rating {
    display: flex;

    align-items: center;

    gap: 8px;

    margin-top: 9px;

    color: #6b7280;

    font-size: 0.78rem;
}.rating-stars {
    color: #111827;

    letter-spacing: 1px;
}.hotel-card-description {
    min-height: 42px;

    margin: 13px 0;

    color: #6b7280;

    font-size: 0.85rem;

    line-height: 1.55;
}.hotel-card-footer {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    padding-top: 14px;

    border-top: 1px solid #f0f0f0;
}.hotel-card-price-label {
    color: #6b7280;

    font-size: 0.78rem;
}.hotel-card-button {
    padding: 9px 13px;

    border-radius: 8px;

    background: #111827;

    color: #ffffff;

    font-size: 0.78rem;

    font-weight: 700;

    text-decoration: none;
}.hotel-card-button:hover {
    background: #000000;
}.empty-hotels {
    padding: 60px 25px;

    border: 1px dashed #d1d5db;

    border-radius: 16px;

    text-align: center;

    background: #ffffff;
}.empty-hotels-icon {
    margin-bottom: 14px;

    font-size: 2.5rem;
}.empty-hotels h3 {
    margin: 0 0 8px;
}.empty-hotels p {
    margin: 0 0 22px;

    color: #6b7280;
}.why-hotelbook {
    background: #ffffff;
}.benefits-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

    margin-top: 45px;
}.benefit-card {
    padding: 28px 24px;

    border: 1px solid #e5e7eb;

    border-radius: 14px;

    background: #ffffff;
}.benefit-icon {
    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border-radius: 12px;

    background: #f3f4f6;

    color: #111827;

    font-size: 1.2rem;

    font-weight: 800;
}.benefit-card h3 {
    margin: 0 0 9px;

    font-size: 1rem;
}.benefit-card p {
    margin: 0;

    color: #6b7280;

    font-size: 0.87rem;

    line-height: 1.65;
}.hotel-owner-section {
    padding-top: 40px;

    padding-bottom: 100px;

    background: #f8fafc;
}.hotel-owner-card {
    display: grid;

    grid-template-columns: 1.5fr 1fr;

    gap: 40px;

    align-items: center;

    padding: 55px;

    overflow: hidden;

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            #111827,
            #26364f
        );

    color: #ffffff;
}.hotel-owner-content h2 {
    max-width: 650px;

    margin: 0;

    font-size: clamp(2rem, 4vw, 3rem);

    line-height: 1.1;

    letter-spacing: -0.035em;
}.hotel-owner-content p {
    max-width: 590px;

    margin: 18px 0 25px;

    color: rgba(255, 255, 255, 0.72);

    line-height: 1.7;
}.hotel-owner-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;
}.owner-primary-button,
.owner-secondary-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 46px;

    padding: 0 18px;

    border-radius: 9px;

    font-size: 0.88rem;

    font-weight: 700;

    text-decoration: none;
}.owner-primary-button {
    background: #ffffff;

    color: #111827;
}.owner-secondary-button {
    border: 1px solid rgba(255, 255, 255, 0.25);

    color: #ffffff;
}.owner-primary-button:hover {
    background: #f3f4f6;
}.owner-secondary-button:hover {
    background: rgba(255, 255, 255, 0.08);
}.hotel-owner-visual {
    display: flex;

    align-items: center;
    justify-content: center;
}.owner-visual-card {
    width: min(280px, 100%);

    padding: 32px;

    border: 1px solid rgba(255, 255, 255, 0.14);

    border-radius: 18px;

    background: rgba(255, 255, 255, 0.07);

    text-align: center;
}.owner-visual-icon {
    display: block;

    margin-bottom: 15px;

    font-size: 3rem;
}.owner-visual-card strong {
    display: block;

    margin-bottom: 6px;

    font-size: 1rem;
}.owner-visual-card span:last-child {
    color: rgba(255, 255, 255, 0.6);

    font-size: 0.78rem;
}@media (max-width: 1000px) {.hotel-search-form {
        grid-template-columns: repeat(2, 1fr);
    }.search-field {
        border-right: 0;
    }.hotel-search-button {
        grid-column: span 2;
    }.destination-grid {
        grid-template-columns: repeat(3, 1fr);
    }.destination-card {
        min-height: 180px;
    }.hotel-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }.benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }.hotel-owner-card {
        grid-template-columns: 1fr;
    }}@media (max-width: 700px) {.home-hero {
        padding: 65px 0 95px;
    }.hero-content h1 {
        font-size: 2.65rem;
    }.hero-description {
        font-size: 0.95rem;
    }.hotel-search-card {
        margin-top: 35px;
        margin-bottom: -100px;
    }.hotel-search-form {
        grid-template-columns: 1fr;
    }.hotel-search-button {
        grid-column: auto;

        width: 100%;
    }.popular-destinations {
        padding-top: 135px;
    }.section-heading {
        align-items: flex-start;

        flex-direction: column;

        gap: 12px;
    }.destination-grid {
        grid-template-columns: repeat(2, 1fr);
    }.destination-card {
        min-height: 160px;
    }.hotel-card-grid {
        grid-template-columns: 1fr;
    }.benefits-grid {
        grid-template-columns: 1fr;
    }.hotel-owner-card {
        padding: 35px 25px;
    }}@media (max-width: 480px) {.hero-content h1 {
        font-size: 2.25rem;
    }.hero-description {
        font-size: 0.9rem;
    }.destination-grid {
        grid-template-columns: 1fr;
    }.destination-card {
        min-height: 145px;
    }.popular-destinations,
    .featured-hotels,
    .why-hotelbook {
        padding-top: 75px;
        padding-bottom: 60px;
    }.hotel-owner-section {
        padding-bottom: 70px;
    }.hotel-owner-actions {
        flex-direction: column;
    }.owner-primary-button,
    .owner-secondary-button {
        width: 100%;
    }}.booking-search-hero {
    padding: 72px 0 56px;
    background:
        linear-gradient(
            135deg,
            rgba(15, 23, 42, 0.98),
            rgba(30, 64, 175, 0.92)
        );
    color: #ffffff;
}.booking-search-heading {
    max-width: 760px;
    margin-bottom: 32px;
}.booking-search-heading .eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.8;
}.booking-search-heading h1 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.05;
}.booking-search-heading p {
    margin: 0;
    max-width: 650px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
}.availability-search-form {
    display: grid;
    grid-template-columns:
        minmax(180px, 1.5fr)
        repeat(4, minmax(110px, 1fr))
        repeat(4, minmax(130px, 1fr))
        auto;
    gap: 12px;
    align-items: end;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}.search-field {
    min-width: 0;
}.search-field label {
    display: block;
    margin-bottom: 7px;
    color: #334155;
    font-size: 0.78rem;
    font-weight: 700;
}.search-field input,
.search-field select {
    width: 100%;
    min-height: 46px;
    padding: 10px 12px;
    border: 1px solid #dbe2ea;
    border-radius: 10px;
    background: #ffffff;
    color: #172033;
    font: inherit;
    box-sizing: border-box;
}.search-field input:focus,
.search-field select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}.search-form-errors {
    margin-top: 14px;
    padding: 12px 16px;
    border-radius: 10px;
    background: #fee2e2;
    color: #991b1b;
}.search-form-errors p {
    margin: 0;
}.booking-results-section {
    padding-top: 58px;
    padding-bottom: 80px;
}.booking-results-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 30px;
}.booking-results-header .section-heading {
    margin-bottom: 0;
}.booking-results-header .section-heading h2 {
    margin-bottom: 8px;
}.results-count {
    flex-shrink: 0;
    padding: 9px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    background: #ffffff;
    color: #475569;
    font-size: 0.88rem;
    font-weight: 700;
}.hotel-search-results {
    display: grid;
    gap: 26px;
}.booking-hotel-card {
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.07);
}.booking-hotel-image {
    position: relative;
    height: 270px;
    overflow: hidden;
    background: #e2e8f0;
}.booking-hotel-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}.hotel-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        #dbeafe,
        #e2e8f0
    );
    color: #64748b;
    font-size: 1.1rem;
    font-weight: 800;
}.verified-hotel-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.95);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 800;
}.booking-hotel-content {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    padding: 24px;
}.booking-hotel-main {
    flex: 1;
    min-width: 0;
}.hotel-card-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}.hotel-location {
    display: block;
    margin-bottom: 7px;
    color: #64748b;
    font-size: 0.84rem;
    font-weight: 600;
}.booking-hotel-main h3 {
    margin: 0;
    color: #0f172a;
    font-size: 1.5rem;
}.hotel-description {
    max-width: 760px;
    margin: 12px 0 0;
    color: #64748b;
    line-height: 1.65;
}.hotel-stars {
    flex-shrink: 0;
    color: #b45309;
    font-weight: 800;
    white-space: nowrap;
}.hotel-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 18px;
    color: #475569;
    font-size: 0.84rem;
    font-weight: 600;
}.hotel-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 15px;
}.hotel-amenities span {
    padding: 5px 9px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #475569;
    font-size: 0.76rem;
    font-weight: 600;
}.booking-hotel-side {
    min-width: 160px;
    text-align: right;
}.starting-label,
.price-note {
    display: block;
    color: #64748b;
    font-size: 0.78rem;
}.starting-price {
    display: block;
    margin: 5px 0;
    color: #0f172a;
    font-size: 1.45rem;
}.booking-room-options {
    border-top: 1px solid #e5e7eb;
}.room-options-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px 12px;
}.room-options-heading h4 {
    margin: 0;
    color: #0f172a;
}.room-options-heading span {
    color: #64748b;
    font-size: 0.82rem;
}.booking-room-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 18px 24px;
    border-top: 1px solid #eef2f7;
}.room-option-information {
    min-width: 0;
}.room-option-information h4 {
    margin: 0 0 8px;
    color: #172033;
    font-size: 1rem;
}.room-option-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #64748b;
    font-size: 0.82rem;
}.room-option-details span:not(:last-child)::after {
    content: "·";
    margin-left: 8px;
}.availability-label {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 9px;
    color: #15803d;
    font-size: 0.8rem;
    font-weight: 700;
}.availability-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #16a34a;
}.room-option-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    min-width: 145px;
}.room-option-price strong {
    color: #0f172a;
    font-size: 1.1rem;
}.room-option-price > span {
    margin-bottom: 10px;
    color: #64748b;
    font-size: 0.75rem;
}.booking-empty-state {
    padding: 70px 24px;
    border: 1px dashed #cbd5e1;
    border-radius: 20px;
    background: #f8fafc;
    text-align: center;
}.booking-empty-state h3 {
    margin: 0 0 10px;
    color: #0f172a;
}.booking-empty-state p {
    max-width: 520px;
    margin: 0 auto 24px;
    color: #64748b;
}.booking-intro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}.booking-intro-card {
    padding: 28px;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    background: #ffffff;
}.booking-intro-card .intro-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 18px;
    border-radius: 10px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 0.8rem;
    font-weight: 800;
}.booking-intro-card h2 {
    margin: 0 0 10px;
    color: #0f172a;
    font-size: 1.15rem;
}.booking-intro-card p {
    margin: 0;
    color: #64748b;
    line-height: 1.65;
}.booking-search-tips {
    margin-top: 26px;
    padding: 32px;
    border-radius: 20px;
    background: #f8fafc;
}.booking-search-tips h2 {
    margin: 7px 0 10px;
    color: #0f172a;
}.booking-search-tips p {
    max-width: 750px;
    margin: 0;
    color: #64748b;
    line-height: 1.7;
}@media (max-width: 1200px) {.availability-search-form {
        grid-template-columns: repeat(4, 1fr);
    }.search-field-destination {
        grid-column: span 2;
    }.search-button {
        grid-column: span 2;
    }}@media (max-width: 900px) {.availability-search-form {
        grid-template-columns: repeat(2, 1fr);
    }.search-field-destination,
    .search-button {
        grid-column: span 2;
    }.booking-hotel-content {
        flex-direction: column;
    }.booking-hotel-side {
        min-width: 0;
        text-align: left;
    }.booking-intro-grid {
        grid-template-columns: 1fr;
    }}@media (max-width: 700px) {.booking-search-hero {
        padding: 48px 0 38px;
    }.availability-search-form {
        grid-template-columns: 1fr;
        padding: 14px;
        border-radius: 15px;
    }.search-field-destination,
    .search-button {
        grid-column: span 1;
    }.booking-results-section {
        padding-top: 40px;
        padding-bottom: 55px;
    }.booking-results-header {
        display: block;
    }.results-count {
        display: inline-block;
        margin-top: 12px;
    }.booking-hotel-image {
        height: 220px;
    }.booking-hotel-content {
        padding: 18px;
    }.hotel-card-top {
        display: block;
    }.hotel-stars {
        margin-top: 10px;
    }.booking-room-option {
        display: block;
        padding: 18px;
    }.room-option-price {
        align-items: flex-start;
        margin-top: 15px;
    }.room-option-price .primary-button {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }.room-options-heading {
        padding: 16px 18px 10px;
    }.booking-search-tips {
        padding: 24px;
    }}@media (max-width: 480px) {.booking-search-heading h1 {
        font-size: 2rem;
    }.booking-hotel-image {
        height: 190px;
    }.booking-hotel-main h3 {
        font-size: 1.25rem;
    }.hotel-card-meta {
        display: block;
    }.hotel-card-meta span {
        display: block;
        margin-bottom: 6px;
    }.room-option-details {
        display: block;
    }.room-option-details span {
        display: block;
        margin-bottom: 4px;
    }.room-option-details span::after {
        display: none !important;
    }}.hotel-detail-page {
    padding: 32px 0 70px;
    background: #f7f8fa;
    min-height: 100vh;
}.hotel-detail-back {
    margin-bottom: 22px;
}.hotel-detail-back a {
    color: #475467;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}.hotel-detail-back a:hover {
    color: #111827;
}.hotel-detail-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 28px;
}.hotel-detail-heading {
    min-width: 0;
}.hotel-detail-title-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 8px;
}.hotel-detail-title-row h1 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #101828;
}.hotel-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #ecfdf3;
    color: #027a48;
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
}.hotel-detail-location {
    color: #667085;
    font-size: 1rem;
    margin-bottom: 10px;
}.hotel-detail-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #475467;
    font-size: 0.9rem;
    font-weight: 600;
}.hotel-stars {
    color: #f59e0b;
    letter-spacing: 2px;
    font-size: 1.05rem;
}.hotel-management-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex-shrink: 0;
}.hotel-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 230px 230px;
    gap: 10px;
    margin-bottom: 34px;
    overflow: hidden;
    border-radius: 18px;
}.hotel-gallery-item {
    position: relative;
    overflow: hidden;
    background: #eaecf0;
}.hotel-gallery-item:first-child {
    grid-row: span 2;
}.hotel-gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.35s ease;
}.hotel-gallery-item:hover img {
    transform: scale(1.035);
}.hotel-gallery-placeholder {
    min-height: 280px;
    border-radius: 18px;
    background: #eaecf0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #667085;
    margin-bottom: 34px;
}.hotel-gallery-placeholder span {
    font-size: 3rem;
    margin-bottom: 10px;
}.hotel-gallery-placeholder p {
    margin: 0;
}.hotel-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    align-items: start;
}.hotel-detail-main {
    min-width: 0;
}.hotel-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 95px;
}.hotel-detail-card {
    background: #ffffff;
    border: 1px solid #eaecf0;
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 22px;
    box-shadow: 0 4px 18px rgba(16, 24, 40, 0.04);
}.hotel-sidebar-card {
    margin-bottom: 0;
}.hotel-detail-card > h3 {
    margin: 0 0 20px;
    font-size: 1.05rem;
    color: #101828;
}.hotel-section-heading {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 22px;
}.hotel-section-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f2f4f7;
    color: #344054;
    font-weight: 700;
    flex-shrink: 0;
}.hotel-section-heading h2 {
    margin: 0 0 4px;
    font-size: 1.35rem;
    color: #101828;
}.hotel-section-heading p {
    margin: 0;
    color: #667085;
    font-size: 0.9rem;
}.hotel-description {
    color: #475467;
    line-height: 1.75;
    font-size: 0.97rem;
}.hotel-description p {
    margin: 0 0 12px;
}.hotel-description p:last-child {
    margin-bottom: 0;
}.muted-text {
    color: #98a2b3;
}.hotel-amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}.hotel-amenity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 14px;
    border: 1px solid #eaecf0;
    border-radius: 10px;
    color: #344054;
    font-size: 0.92rem;
}.hotel-amenity-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ecfdf3;
    color: #027a48;
    font-size: 0.75rem;
    font-weight: 800;
    flex-shrink: 0;
}.hotel-location-box {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 18px;
    background: #f9fafb;
    border: 1px solid #eaecf0;
    border-radius: 12px;
    color: #475467;
    line-height: 1.6;
}.hotel-location-box strong {
    color: #101828;
}.hotel-room-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}.hotel-room-card {
    border: 1px solid #eaecf0;
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
    transition:
        box-shadow 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}.hotel-room-card:hover {
    border-color: #d0d5dd;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.07);
    transform: translateY(-1px);
}.hotel-room-card-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 22px;
}.hotel-room-info {
    min-width: 0;
}.hotel-room-info h3 {
    margin: 0 0 8px;
    color: #101828;
    font-size: 1.1rem;
}.hotel-room-info p {
    margin: 0 0 15px;
    color: #667085;
    line-height: 1.6;
    font-size: 0.9rem;
}.hotel-room-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}.hotel-room-meta span {
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    border-radius: 7px;
    background: #f9fafb;
    border: 1px solid #eaecf0;
    color: #475467;
    font-size: 0.78rem;
}.hotel-room-price {
    min-width: 145px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}.hotel-room-price-label {
    color: #667085;
    font-size: 0.78rem;
}.hotel-room-price strong {
    color: #101828;
    font-size: 1.35rem;
    line-height: 1.3;
    margin: 2px 0;
}.hotel-room-price > span:last-of-type {
    color: #667085;
    font-size: 0.75rem;
    margin-bottom: 13px;
}.hotel-room-price .primary-button {
    white-space: nowrap;
}.hotel-empty-rooms {
    padding: 30px 20px;
    text-align: center;
    border: 1px dashed #d0d5dd;
    border-radius: 12px;
    background: #f9fafb;
}.hotel-empty-rooms h3 {
    margin: 0 0 7px;
    color: #344054;
}.hotel-empty-rooms p {
    margin: 0;
    color: #667085;
    font-size: 0.9rem;
}.hotel-info-list {
    display: flex;
    flex-direction: column;
}.hotel-info-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 13px 0;
    border-bottom: 1px solid #eaecf0;
}.hotel-info-row:first-child {
    padding-top: 0;
}.hotel-info-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}.hotel-info-row span {
    color: #667085;
    font-size: 0.84rem;
}.hotel-info-row strong {
    color: #344054;
    font-size: 0.86rem;
    text-align: right;
}.hotel-status-text {
    color: #027a48 !important;
}.hotel-contact-item {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 0;
    color: #344054;
    text-decoration: none;
    border-bottom: 1px solid #eaecf0;
    font-size: 0.9rem;
    word-break: break-word;
}.hotel-contact-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}.hotel-contact-item:first-of-type {
    padding-top: 0;
}.hotel-contact-item:hover {
    color: #111827;
}.hotel-contact-item span:first-child {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #f2f4f7;
    flex-shrink: 0;
}.hotel-booking-cta {
    padding: 26px;
    border-radius: 16px;
    background: #101828;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 10px 28px rgba(16, 24, 40, 0.15);
}.hotel-booking-cta-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 1.4rem;
}.hotel-booking-cta h3 {
    margin: 0 0 8px;
    font-size: 1.15rem;
}.hotel-booking-cta p {
    margin: 0 0 20px;
    color: #d0d5dd;
    font-size: 0.87rem;
    line-height: 1.6;
}.hotel-cta-button {
    display: block;
    width: 100%;
    box-sizing: border-box;
}.hotel-back-button {
    display: block;
    padding: 13px;
    border: 1px solid #d0d5dd;
    border-radius: 10px;
    background: #ffffff;
    color: #344054;
    text-align: center;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
}.hotel-back-button:hover {
    background: #f9fafb;
}@media (max-width: 1000px) {.hotel-detail-layout {
        grid-template-columns: minmax(0, 1fr);
    }.hotel-detail-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: start;
    }.hotel-booking-cta {
        grid-column: span 2;
    }.hotel-back-button {
        grid-column: span 2;
    }}@media (max-width: 800px) {.hotel-detail-page {
        padding-top: 22px;
    }.hotel-detail-header {
        flex-direction: column;
        gap: 18px;
    }.hotel-management-actions {
        width: 100%;
    }.hotel-management-actions a {
        flex: 1;
        text-align: center;
    }.hotel-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 250px 160px;
    }.hotel-gallery-item:first-child {
        grid-column: span 2;
        grid-row: auto;
    }.hotel-room-card-content {
        flex-direction: column;
        align-items: stretch;
    }.hotel-room-price {
        align-items: flex-start;
        text-align: left;
        min-width: 0;
        padding-top: 15px;
        border-top: 1px solid #eaecf0;
    }}@media (max-width: 600px) {.hotel-detail-page {
        padding-bottom: 45px;
    }.hotel-detail-title-row h1 {
        font-size: 1.8rem;
    }.hotel-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: 260px;
        border-radius: 12px;
    }.hotel-gallery-item:first-child {
        grid-column: auto;
        grid-row: auto;
    }.hotel-gallery-item:not(:first-child) {
        display: none;
    }.hotel-gallery-placeholder {
        min-height: 220px;
        border-radius: 12px;
    }.hotel-detail-card {
        padding: 20px;
        border-radius: 13px;
    }.hotel-amenities-grid {
        grid-template-columns: 1fr;
    }.hotel-detail-sidebar {
        grid-template-columns: 1fr;
    }.hotel-booking-cta,
    .hotel-back-button {
        grid-column: auto;
    }.hotel-management-actions {
        flex-direction: column;
    }.hotel-management-actions a {
        width: 100%;
        box-sizing: border-box;
    }.hotel-room-card-content {
        padding: 18px;
    }.hotel-room-meta {
        flex-direction: column;
    }.hotel-room-meta span {
        width: 100%;
        box-sizing: border-box;
    }.hotel-info-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }.hotel-info-row strong {
        text-align: left;
    }}.hotel-view-button {
    margin-top: 14px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}.booking-room-view-hotel {
    display: flex;
    justify-content: flex-end;
    padding-top: 15px;
    margin-top: 5px;
    border-top: 1px solid #eaecf0;
}.booking-room-view-hotel a {
    font-size: 0.88rem;
}@media (max-width: 600px) {.hotel-view-button {
        width: 100%;
    }.booking-room-view-hotel {
        justify-content: stretch;
    }.booking-room-view-hotel a {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }}.form-section-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 32px 0 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e5e7eb;
}.form-section-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #f3f4f6;
    font-size: 20px;
    flex-shrink: 0;
}.form-section-heading h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}.form-section-heading p {
    margin: 4px 0 0;
    color: #6b7280;
    font-size: 13px;
}.hotel-image-upload {
    margin-top: 8px;
}.hotel-image-upload input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}.hotel-image-upload-box {
    min-height: 190px;
    border: 2px dashed #d1d5db;
    border-radius: 16px;
    background: #f9fafb;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 20px;
    cursor: pointer;
    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}.hotel-image-upload-box:hover {
    border-color: #2563eb;
    background: #f8fbff;
    transform: translateY(-1px);
}.hotel-image-upload-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eaf2ff;
    font-size: 25px;
    margin-bottom: 14px;
}.hotel-image-upload-box strong {
    font-size: 16px;
    color: #111827;
}.hotel-image-upload-box span {
    margin-top: 6px;
    color: #6b7280;
    font-size: 14px;
}.hotel-image-upload-box small {
    margin-top: 8px;
    color: #9ca3af;
    font-size: 12px;
}.selected-image-count {
    margin-top: 10px;
    color: #2563eb;
    font-size: 14px;
    font-weight: 600;
}.form-actions {
    margin-top: 30px;
}@media (max-width: 700px) {.form-section-heading {
        margin-top: 26px;
    }.hotel-image-upload-box {
        min-height: 170px;
        padding: 25px 15px;
    }}.hotel-card-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f1f5f9;
}.hotel-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}.hotel-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        #e2e8f0,
        #cbd5e1
    );
    color: #475569;
    font-size: 4rem;
    font-weight: 700;
}.hotel-card {
    overflow: hidden;
}.hotel-card-content {
    position: relative;
}@media (max-width: 768px) {.hotel-card-image {
        height: 200px;
    }}


/* ==========================================================
   PASS 7A — SHARED SHELL / NAVIGATION / FOOTER
   ========================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
}

.site-main {
    min-height: calc(100vh - 160px);
}

.main-nav {
    min-width: 0;
}

.main-nav a,
.nav-button {
    white-space: nowrap;
}

.nav-button {
    padding: 8px 0;
}

.nav-button:hover {
    color: var(--primary);
}

.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--white);
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    border-radius: 999px;
    background: var(--dark);
}

.mobile-navigation {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1200;
    width: min(390px, 88vw);
    height: 100dvh;
    padding: 0 22px 28px;
    overflow-y: auto;
    background: var(--white);
    box-shadow: -20px 0 50px rgba(15, 23, 42, 0.16);
    transform: translateX(105%);
    visibility: hidden;
    transition:
        transform 0.25s ease,
        visibility 0.25s ease;
}

.mobile-navigation.active,
.mobile-navigation.is-open,
.mobile-navigation.open {
    transform: translateX(0);
    visibility: visible;
}

.mobile-navigation-header {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid var(--border);
}

.mobile-menu-brand,
.footer-logo {
    color: var(--dark);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.4px;
}

.mobile-menu-brand span,
.footer-logo span {
    color: var(--primary);
}

.mobile-menu-close {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 10px;
    background: var(--light);
    color: var(--dark);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.mobile-user-summary {
    display: flex;
    align-items: center;
    gap: 13px;
    margin: 20px 0 8px;
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--light);
}

.mobile-user-avatar {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-weight: 800;
}

.mobile-user-details {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.mobile-user-details strong {
    overflow: hidden;
    color: var(--dark);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mobile-user-details span {
    margin-top: 2px;
    color: var(--muted);
    font-size: 12px;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    padding-top: 14px;
}

.mobile-nav-links > a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 12px;
    border-radius: 9px;
    color: var(--text);
    font-weight: 650;
}

.mobile-nav-links > a:hover {
    background: var(--light);
    color: var(--primary);
}

.mobile-nav-section-label {
    margin: 18px 12px 7px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.mobile-nav-cta {
    margin-top: 8px;
    justify-content: center;
    background: var(--primary) !important;
    color: var(--white) !important;
}

.mobile-logout-form {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.mobile-logout-form button {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--border);
    border-radius: 9px;
    background: var(--white);
    color: var(--dark);
    font-weight: 700;
    cursor: pointer;
}

.mobile-logout-form button:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: rgba(15, 23, 42, 0.48);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.mobile-menu-overlay.active,
.mobile-menu-overlay.is-open,
.mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

body.mobile-menu-open,
body.menu-open {
    overflow: hidden;
}

/* Flash messages */
.messages {
    padding-top: 18px;
}

.message {
    position: relative;
    padding: 13px 16px;
    border-radius: 9px;
    margin-bottom: 10px;
    border: 1px solid #bbf7d0;
    background: #ecfdf5;
    color: #166534;
    font-size: 14px;
    font-weight: 600;
}

.message.error {
    border-color: #fecaca;
    background: #fef2f2;
    color: #991b1b;
}

.message.warning {
    border-color: #fde68a;
    background: #fffbeb;
    color: #92400e;
}

.message.info {
    border-color: #bfdbfe;
    background: #eff6ff;
    color: #1e40af;
}

/* Shared footer */
.site-footer {
    padding: 0;
    border-top: 1px solid var(--border);
    background: #f8fafc;
    color: var(--muted);
    font-size: 14px;
}

.footer-inner {
    min-height: 130px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding-top: 30px;
    padding-bottom: 30px;
}

.footer-brand p {
    max-width: 390px;
    margin-top: 8px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

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

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

.footer-bottom {
    padding-top: 18px;
    padding-bottom: 18px;
    border-top: 1px solid var(--border);
}

/* Keyboard accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(15, 118, 110, 0.22);
    outline-offset: 2px;
}

/* ==========================================================
   RESPONSIVE SHARED SHELL
   ========================================================== */

@media (max-width: 1080px) {
    .main-nav {
        gap: 17px;
        font-size: 14px;
    }
}

@media (max-width: 900px) {
    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }
}

@media (max-width: 650px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .header-inner {
        min-height: 68px;
    }

    .logo {
        font-size: 23px;
    }

    .footer-inner {
        min-height: 0;
        align-items: flex-start;
        flex-direction: column;
        gap: 22px;
        padding-top: 35px;
        padding-bottom: 30px;
    }

    .footer-links {
        gap: 14px 20px;
    }
}

@media (max-width: 420px) {
    .mobile-navigation {
        width: 92vw;
        padding-left: 18px;
        padding-right: 18px;
    }

    .footer-links {
        align-items: flex-start;
        flex-direction: column;
    }
}



.room-type-photo {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.danger-button {
    border-color: #dc3545;
}

.danger-button:hover,
.danger-button:focus {
    background: #dc3545;
    border-color: #dc3545;
    color: #fff;
}



.review-action-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.5rem;
    margin-top: 1.5rem;
    border: 1px solid var(--border-color, #e5e7eb);
    border-radius: 16px;
    background: #fff;
}

.review-action-card h3 {
    margin-top: 0;
    margin-bottom: 0.4rem;
}

.review-action-card p {
    margin: 0;
}

.guest-rating-summary {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 0.75rem;
}

.guest-rating-summary strong {
    font-size: 1.15rem;
}

.hotel-reviews-section {
    margin-top: 3rem;
}

.review-average {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.review-average strong {
    font-size: 1.5rem;
}

.reviews-grid {
    display: grid;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.review-card {
    padding: 1.5rem;
    border: 1px solid var(--border-color, #e5e7eb);
    border-radius: 16px;
    background: #fff;
}

.review-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-rating {
    flex-shrink: 0;
    padding: 0.4rem 0.7rem;
    border-radius: 10px;
    font-weight: 700;
    background: #f3f4f6;
}

.verified-stay {
    margin-top: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.review-date {
    margin-top: 1rem;
    font-size: 0.875rem;
    opacity: 0.75;
}

.owner-response {
    margin-top: 1.25rem;
    padding: 1rem;
    border-radius: 12px;
    background: #f8f9fa;
}

.owner-response p {
    margin-bottom: 0.5rem;
}

@media (max-width: 700px) {
    .review-action-card {
        align-items: stretch;
        flex-direction: column;
    }

    .review-action-card .primary-button,
    .review-action-card .secondary-button {
        width: 100%;
        text-align: center;
    }

    .review-header {
        gap: 0.75rem;
    }
}


.review-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.review-filters a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    text-decoration: none;
    background: #fff;
}

.review-filters a.active {
    font-weight: 700;
    border-color: currentColor;
}

.review-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    margin-top: 1rem;
    font-size: 0.875rem;
    opacity: 0.8;
}


/* ==========================================================
   PASS 9G-1 — FINAL GLOBAL UI/UX POLISH
   ========================================================== */

:root {
    --primary: #0f766e;
    --primary-dark: #115e59;
    --primary-soft: #ecfdf5;
    --dark: #0f172a;
    --text: #334155;
    --muted: #64748b;
    --light: #f8fafc;
    --border: #e2e8f0;
    --white: #ffffff;
    --danger: #b42318;
    --warning: #92400e;
    --success: #166534;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 12px 30px rgba(15, 23, 42, 0.07);
    --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.12);
    --header-height: 76px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.site-main {
    flex: 1 0 auto;
}

img {
    max-width: 100%;
}

button,
a,
input,
select,
textarea {
    -webkit-tap-highlight-color: transparent;
}

button,
input,
select,
textarea {
    font: inherit;
}

input,
select,
textarea {
    color: var(--text);
}

::selection {
    background: rgba(15, 118, 110, 0.16);
}

/* Keyboard-only skip link */
.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 5000;
    padding: 10px 14px;
    border-radius: 8px;
    background: var(--dark);
    color: #fff;
    font-weight: 700;
    transform: translateY(-160%);
    transition: transform 0.18s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1200;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(226, 232, 240, 0.92);
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.header-inner {
    min-height: var(--header-height);
}

.logo,
.mobile-menu-brand,
.footer-logo {
    letter-spacing: -0.7px;
}

.main-nav {
    gap: 8px;
}

.main-nav > a,
.nav-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 11px;
    border-radius: 8px;
    transition:
        color 0.18s ease,
        background-color 0.18s ease;
}

.main-nav > a:hover,
.nav-button:hover,
.main-nav > a.active {
    background: #f1f5f9;
    color: var(--primary);
}

.main-nav > a.active::after {
    content: "";
    position: absolute;
    left: 11px;
    right: 11px;
    bottom: 3px;
    height: 2px;
    border-radius: 999px;
    background: var(--primary);
}

.main-nav .nav-cta {
    margin-left: 3px;
    padding: 0 17px;
    background: var(--primary);
    color: #fff !important;
}

.main-nav .nav-cta:hover {
    background: var(--primary-dark);
    color: #fff !important;
}

.logout-form {
    display: flex;
}

/* Mobile navigation */
.mobile-menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 10px;
}

.mobile-navigation {
    width: min(390px, 90vw);
    overflow-y: auto;
    overscroll-behavior: contain;
}

.mobile-nav-links a {
    border-radius: 10px;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    background: var(--primary-soft);
    color: var(--primary-dark);
}

.mobile-nav-section-label {
    margin-top: 8px;
    padding: 15px 12px 7px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.mobile-user-summary {
    border: 1px solid var(--border);
    background: var(--light);
}

body.mobile-menu-active {
    overflow: hidden;
}

.site-header.menu-open ~ .mobile-menu-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Shared interactive states */
.primary-button,
.secondary-button,
.search-button,
.danger-button,
.nav-cta {
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        background-color 0.18s ease,
        border-color 0.18s ease,
        color 0.18s ease;
}

.primary-button:hover,
.search-button:hover {
    box-shadow: 0 8px 18px rgba(15, 118, 110, 0.16);
}

.primary-button:active,
.secondary-button:active,
.search-button:active,
.danger-button:active {
    transform: translateY(0);
}

button:disabled,
input:disabled,
select:disabled,
textarea:disabled,
.primary-button.disabled,
.secondary-button.disabled {
    cursor: not-allowed;
    opacity: 0.58;
    transform: none;
    box-shadow: none;
}

/* Forms */
input,
select,
textarea {
    border-color: var(--border);
    border-radius: var(--radius-sm);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

input::placeholder,
textarea::placeholder {
    color: #94a3b8;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
}

.errorlist,
.field-error,
.form-errors {
    line-height: 1.45;
}

/* Cards and tables */
.content-card,
.hotel-card,
.room-type-card,
.booking-form-card,
.booking-summary-card,
.booking-detail-card,
.my-booking-card,
.review-card,
.revenue-card,
.payout-summary-card {
    box-shadow: var(--shadow-sm);
}

.dashboard-table-wrapper,
.monthly-revenue-table-wrapper,
.room-table-wrapper {
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
}

/* Messages */
.messages {
    position: relative;
    z-index: 20;
}

.message {
    box-shadow: var(--shadow-sm);
}

/* Footer */
.site-footer {
    flex-shrink: 0;
}

.footer-logo {
    display: inline-block;
    color: var(--dark);
    font-size: 22px;
    font-weight: 800;
}

.footer-logo span {
    color: var(--primary);
}

/* Mobile refinements */
@media (max-width: 1080px) {
    .main-nav {
        gap: 3px;
        font-size: 13px;
    }

    .main-nav > a,
    .nav-button {
        padding-left: 8px;
        padding-right: 8px;
    }
}

@media (max-width: 900px) {
    :root {
        --header-height: 68px;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
}

@media (max-width: 650px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .page-header,
    .dashboard-header {
        gap: 18px;
    }

    .page-header h1,
    .dashboard-header h1 {
        overflow-wrap: anywhere;
    }

    .primary-button,
    .secondary-button,
    .search-button {
        min-height: 46px;
    }

    .content-card {
        padding: 22px 18px;
    }

    .footer-inner {
        gap: 24px;
    }
}

@media (max-width: 420px) {
    .mobile-navigation {
        width: 94vw;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}



/* ==========================================================
   PASS 9G-1 — REFINED MOBILE HAMBURGER
   ========================================================== */

.mobile-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;

    border: 0;
    border-radius: 8px;

    background: transparent;
    box-shadow: none;

    cursor: pointer;
    flex-shrink: 0;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 5px;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}


/* Hamburger lines */

.mobile-menu-toggle span {
    display: block;

    width: 24px;
    height: 2.5px;

    margin: 0;
    padding: 0;

    border: 0;
    border-radius: 999px;

    background: #0f172a;

    transition:
        transform 0.22s ease,
        opacity 0.18s ease,
        background-color 0.2s ease;
}


/* Hover */

.mobile-menu-toggle:hover {
    background: #f1f5f9;
}

.mobile-menu-toggle:hover span {
    background: #0f766e;
}


/* Keyboard focus */

.mobile-menu-toggle:focus {
    outline: none;
}

.mobile-menu-toggle:focus-visible {
    background: #f1f5f9;

    outline: 3px solid rgba(15, 118, 110, 0.18);
    outline-offset: 2px;
}


/* ==========================================================
   OPEN STATE — HAMBURGER BECOMES X
   ========================================================== */

.site-header.menu-open
.mobile-menu-toggle span:nth-child(1) {
    transform:
        translateY(7.5px)
        rotate(45deg);
}

.site-header.menu-open
.mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.site-header.menu-open
.mobile-menu-toggle span:nth-child(3) {
    transform:
        translateY(-7.5px)
        rotate(-45deg);
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 900px) {

    .mobile-menu-toggle {
        display: inline-flex;
    }

}


/* Small phones */

@media (max-width: 480px) {

    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
    }

    .mobile-menu-toggle span {
        width: 23px;
    }

}


/* ==========================================================
   PASS 9G-2 — HOMEPAGE FINAL POLISH
   Add to the END of static/css/style.css
   ========================================================== */

.marketplace-home {
    overflow: hidden;
}

.home-hero {
    position: relative;
    isolation: isolate;
    padding: clamp(82px, 10vw, 128px) 0 0;
    background:
        radial-gradient(circle at 78% 12%, rgba(15,118,110,.18), transparent 31%),
        linear-gradient(135deg, #0f172a 0%, #162238 55%, #1e293b 100%);
    color: #fff;
}

.home-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .24;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.hero-content {
    width: min(760px, 100%);
    margin: 0 auto;
    text-align: center;
}

.hero-eyebrow {
    display: inline-flex;
    margin-bottom: 22px;
    color: #99f6e4;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
}

.hero-content h1 {
    max-width: 760px;
    margin: 0 auto;
    color: #fff;
    font-size: clamp(42px, 6vw, 70px);
    line-height: 1.02;
    letter-spacing: -.045em;
}

.hero-content h1 span {
    color: #fff;
}

.hero-description {
    max-width: 670px;
    margin: 24px auto 0;
    color: #dbe4ef;
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.7;
}

.hotel-search-card {
    position: relative;
    z-index: 3;
    width: min(1120px, 100%);
    margin: 54px auto 0;
    padding: 22px;
    border: 1px solid rgba(226,232,240,.9);
    border-radius: 20px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 24px 60px rgba(2,6,23,.22);
}

.hotel-search-form {
    display: grid;
    grid-template-columns: minmax(210px, 1.45fr) repeat(3, minmax(135px, .85fr)) auto;
    gap: 12px;
    align-items: end;
}

.search-field label {
    display: block;
    margin: 0 0 8px;
    color: #334155;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .055em;
    text-transform: uppercase;
}

.search-input-wrapper {
    position: relative;
}

.search-input-wrapper .search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    z-index: 1;
    color: #64748b;
    font-size: 17px;
    transform: translateY(-50%);
    pointer-events: none;
}

.search-input-wrapper input,
.search-input-wrapper select {
    width: 100%;
    min-height: 52px;
    padding: 0 13px 0 42px;
    border: 1px solid #dbe3ec;
    border-radius: 11px;
    background: #fff;
}

.hotel-search-button {
    min-height: 52px;
    padding: 0 21px;
    border: 0;
    border-radius: 11px;
    background: #0f766e;
    color: #fff;
    font-weight: 800;
    white-space: nowrap;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(15,118,110,.18);
}

.hotel-search-button:hover {
    background: #115e59;
}

.search-arrow {
    margin-left: 7px;
}

.popular-destinations {
    padding-top: 126px;
}

.popular-destinations,
.featured-hotels,
.why-hotelbook,
.hotel-owner-section {
    padding-bottom: clamp(72px, 8vw, 108px);
}

.section-heading {
    margin-bottom: 32px;
}

.section-heading h2 {
    margin-top: 7px;
    color: #0f172a;
    font-size: clamp(29px, 4vw, 40px);
    letter-spacing: -.035em;
}

.section-heading p {
    max-width: 620px;
    color: #64748b;
}

.section-eyebrow {
    color: #0f766e;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .13em;
}

.section-link {
    font-weight: 750;
}

.destination-card,
.hotel-card,
.benefit-card {
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.destination-card:hover,
.hotel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(15,23,42,.12);
}

.hotel-card-image {
    overflow: hidden;
}

.hotel-card-image img {
    transition: transform .4s ease;
}

.hotel-card:hover .hotel-card-image img {
    transform: scale(1.035);
}

.hotel-badge {
    box-shadow: 0 5px 16px rgba(15,23,42,.12);
}

.hotel-card-title a {
    text-decoration: none;
}

.hotel-card-button {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.why-hotelbook {
    background: #f8fafc;
}

.benefit-card {
    border: 1px solid #e8edf3;
    background: #fff;
}

.benefit-card:hover {
    border-color: #cbd5e1;
    transform: translateY(-3px);
}

.benefit-icon {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: #ecfdf5;
    color: #0f766e;
    font-size: 22px;
}

.hotel-owner-card {
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(15,23,42,.12);
}

.owner-primary-button,
.owner-secondary-button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1050px) {
    .hotel-search-form {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
    .destination-field {
        grid-column: span 2;
    }
    .hotel-search-button {
        grid-column: span 2;
    }
}

@media (max-width: 650px) {
    .home-hero {
        padding-top: 64px;
    }
    .hero-content h1 {
        font-size: clamp(40px, 12vw, 54px);
    }
    .hero-description {
        font-size: 17px;
        line-height: 1.65;
    }
    .hotel-search-card {
        margin-top: 38px;
        margin-bottom: 0;
        padding: 18px;
        border-radius: 18px;
    }
    .hotel-search-form {
        display: grid;
        grid-template-columns: 1fr;
    }
    .destination-field,
    .hotel-search-button {
        grid-column: auto;
    }
    .hotel-search-button {
        width: 100%;
        margin-top: 3px;
    }
    .popular-destinations {
        padding-top: 94px;
    }
    .section-heading {
        align-items: flex-start;
    }
    .destination-grid {
        gap: 14px;
    }
    .hotel-card-grid {
        gap: 20px;
    }
    .hotel-owner-actions {
        width: 100%;
    }
    .owner-primary-button,
    .owner-secondary-button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .destination-card,
    .hotel-card,
    .hotel-card-image img,
    .benefit-card {
        transition: none;
    }
}


/* ==========================================================
   PASS 9G-3 — SEARCH RESULTS + HOTEL DETAIL POLISH
   Add to END of static/css/style.css
   ========================================================== */

/* ---------- SEARCH ---------- */
.booking-search-hero {
    padding: clamp(54px, 7vw, 82px) 0 42px;
    background:
        radial-gradient(circle at 82% 8%, rgba(15,118,110,.12), transparent 28%),
        #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.booking-search-heading {
    max-width: 720px;
    margin-bottom: 30px;
}

.booking-search-heading h1 {
    margin: 6px 0 10px;
    color: #0f172a;
    font-size: clamp(34px, 5vw, 50px);
    line-height: 1.08;
    letter-spacing: -.04em;
}

.booking-search-heading p {
    color: #64748b;
    font-size: 17px;
}

.availability-search-form {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 14px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 35px rgba(15,23,42,.07);
}

.availability-search-form .search-field { grid-column: span 2; }
.availability-search-form .search-field-destination { grid-column: span 4; }
.availability-search-form .search-button {
    grid-column: span 2;
    align-self: end;
    min-height: 48px;
}

.availability-search-form label {
    display: block;
    margin-bottom: 7px;
    color: #475569;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
}

.availability-search-form input,
.availability-search-form select {
    width: 100%;
    min-height: 48px;
    border-radius: 10px;
}

.booking-results-section {
    padding-top: 54px;
    padding-bottom: 90px;
}

.booking-results-header {
    align-items: end;
    margin-bottom: 28px;
}

.results-count {
    flex-shrink: 0;
    padding: 8px 12px;
    border: 1px solid #dbe3ec;
    border-radius: 999px;
    background: #fff;
    color: #475569;
    font-size: 13px;
    font-weight: 700;
}

.booking-hotel-card {
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 5px 18px rgba(15,23,42,.05);
    transition: box-shadow .2s ease, transform .2s ease;
}

.booking-hotel-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 38px rgba(15,23,42,.09);
}

.booking-hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.verified-hotel-badge {
    box-shadow: 0 5px 14px rgba(15,23,42,.12);
}

.booking-hotel-content {
    gap: 24px;
}

.booking-hotel-main h3 {
    color: #0f172a;
    letter-spacing: -.02em;
}

.search-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.search-summary span,
.hotel-card-meta span,
.hotel-amenities span {
    border-radius: 999px;
}

.booking-hotel-side {
    min-width: 190px;
    padding-left: 24px;
    border-left: 1px solid #e2e8f0;
}

.starting-price {
    color: #0f172a;
    letter-spacing: -.025em;
}

.booking-room-options {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.booking-room-option {
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #fff;
}

.room-option-price {
    min-width: 215px;
}

.stay-price {
    color: #0f766e;
}

/* ---------- HOTEL DETAIL ---------- */
.hotel-detail-page {
    padding-top: 34px;
    padding-bottom: 90px;
    background: #f8fafc;
}

.hotel-detail-back {
    margin-bottom: 22px;
}

.hotel-detail-back a,
.hotel-back-button {
    color: #475569;
    font-weight: 700;
    text-decoration: none;
}

.hotel-detail-back a:hover,
.hotel-back-button:hover {
    color: #0f766e;
}

.hotel-detail-header {
    gap: 24px;
    margin-bottom: 28px;
}

.hotel-detail-heading h1 {
    color: #0f172a;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.06;
    letter-spacing: -.04em;
}

.hotel-detail-location {
    color: #64748b;
}

.guest-rating-summary {
    flex-wrap: wrap;
}

.hotel-gallery {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(15,23,42,.08);
}

.hotel-gallery-item {
    overflow: hidden;
    background: #e2e8f0;
}

.hotel-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.hotel-gallery-item:hover img {
    transform: scale(1.025);
}

.hotel-detail-layout {
    align-items: start;
    gap: 28px;
    margin-top: 30px;
}

.hotel-detail-card {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 3px 12px rgba(15,23,42,.035);
}

.hotel-section-heading {
    padding-bottom: 18px;
    border-bottom: 1px solid #eef2f6;
}

.hotel-section-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #ecfdf5;
    color: #0f766e;
}

.hotel-amenity-item {
    border: 1px solid #edf1f5;
    border-radius: 10px;
    background: #fbfdfe;
}

.hotel-room-card {
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.hotel-room-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 8px 22px rgba(15,23,42,.06);
}

.hotel-room-price {
    min-width: 190px;
}

.hotel-detail-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 22px);
}

.hotel-booking-cta {
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(15,23,42,.08);
}

.review-card {
    border: 1px solid #e2e8f0;
    border-radius: 14px;
}

.verified-stay {
    color: #0f766e;
    font-weight: 700;
}

.owner-response {
    border-left: 3px solid #0f766e;
    background: #f8fafc;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1050px) {
    .availability-search-form .search-field,
    .availability-search-form .search-field-destination {
        grid-column: span 4;
    }

    .availability-search-form .search-button {
        grid-column: span 4;
    }

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

@media (max-width: 760px) {
    .booking-search-hero {
        padding-top: 40px;
    }

    .availability-search-form {
        grid-template-columns: repeat(2, minmax(0,1fr));
        padding: 16px;
    }

    .availability-search-form .search-field,
    .availability-search-form .search-field-destination,
    .availability-search-form .search-button {
        grid-column: span 1;
    }

    .availability-search-form .search-field-destination,
    .availability-search-form .search-button {
        grid-column: 1 / -1;
    }

    .booking-hotel-content {
        display: block;
    }

    .booking-hotel-side {
        min-width: 0;
        margin-top: 22px;
        padding: 20px 0 0;
        border-top: 1px solid #e2e8f0;
        border-left: 0;
    }

    .booking-hotel-side .hotel-view-button {
        width: 100%;
    }

    .booking-room-option {
        display: block;
    }

    .room-option-price {
        min-width: 0;
        margin-top: 20px;
        padding-top: 18px;
        border-top: 1px solid #e2e8f0;
    }

    .room-option-price .primary-button {
        width: 100%;
    }

    .hotel-detail-header {
        display: block;
    }

    .hotel-management-actions {
        margin-top: 20px;
    }

    .hotel-gallery {
        border-radius: 14px;
    }

    .hotel-room-card-content {
        display: block;
    }

    .hotel-room-price {
        min-width: 0;
        margin-top: 20px;
        padding-top: 18px;
        border-top: 1px solid #e2e8f0;
    }

    .hotel-room-price .primary-button {
        width: 100%;
    }
}

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

    .availability-search-form .search-field,
    .availability-search-form .search-field-destination,
    .availability-search-form .search-button {
        grid-column: auto;
    }

    .booking-results-section {
        padding-top: 38px;
    }

    .booking-results-header {
        align-items: flex-start;
    }

    .results-count {
        margin-top: 8px;
    }

    .hotel-detail-page {
        padding-top: 22px;
    }

    .hotel-detail-title-row {
        align-items: flex-start;
    }

    .hotel-detail-heading h1 {
        font-size: 34px;
    }

    .hotel-detail-card {
        padding: 20px 17px;
    }

    .hotel-room-meta {
        align-items: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    .booking-hotel-card,
    .hotel-gallery-item img,
    .hotel-room-card {
        transition: none;
    }
}


/* ==========================================================
   PASS 9G-4 — BOOKING + CUSTOMER ACCOUNT UI/UX
   Add to END of static/css/style.css
   ========================================================== */

.booking-page {
    padding-top: clamp(42px, 6vw, 72px);
    padding-bottom: 92px;
}

.booking-page-header,
.booking-confirmation-header,
.page-header {
    max-width: 760px;
    margin-bottom: 32px;
}

.booking-page-header h1,
.booking-confirmation-header h1,
.page-header h1 {
    margin: 7px 0 10px;
    color: #0f172a;
    font-size: clamp(34px, 5vw, 48px);
    line-height: 1.08;
    letter-spacing: -.04em;
}

.booking-page-header p,
.booking-confirmation-header p,
.page-header p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.65;
}

/* ---------- Booking creation ---------- */

.booking-layout {
    align-items: start;
    gap: 28px;
}

.booking-form-card,
.booking-summary-card,
.booking-detail-card,
.review-action-card {
    border: 1px solid #e2e8f0;
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 5px 18px rgba(15,23,42,.045);
}

.booking-form-card {
    padding: clamp(22px, 4vw, 34px);
}

.booking-card-heading {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eef2f6;
}

.booking-card-heading h2 {
    margin: 0 0 5px;
    color: #0f172a;
}

.booking-card-heading p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
}

.booking-step {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #0f766e;
    color: #fff;
    font-weight: 800;
}

.booking-guest-form .form-group {
    margin-bottom: 20px;
}

.booking-guest-form label {
    display: block;
    margin-bottom: 7px;
    color: #334155;
    font-size: 13px;
    font-weight: 750;
}

.booking-guest-form input,
.booking-guest-form select,
.booking-guest-form textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    background: #fff;
}

.booking-guest-form input,
.booking-guest-form select {
    min-height: 48px;
}

.booking-guest-form textarea {
    min-height: 112px;
    padding: 12px 14px;
    resize: vertical;
}

.booking-guest-form input:focus,
.booking-guest-form select:focus,
.booking-guest-form textarea:focus {
    border-color: #0f766e;
    outline: 3px solid rgba(15,118,110,.11);
    outline-offset: 0;
}

.form-help {
    margin-top: 8px;
    color: #64748b;
    font-size: 13px;
    line-height: 1.55;
}

.field-error,
.form-errors {
    color: #b91c1c;
}

.booking-summary-card {
    position: sticky;
    top: calc(var(--header-height) + 22px);
    overflow: hidden;
    padding: 26px;
}

.booking-summary-card .hotel-location {
    color: #0f766e;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.booking-summary-card > h2 {
    margin: 7px 0 4px;
    color: #0f172a;
    font-size: 25px;
    letter-spacing: -.025em;
}

.booking-summary-card > h3 {
    margin: 0 0 23px;
    color: #64748b;
    font-size: 15px;
    font-weight: 650;
}

.booking-summary-row,
.detail-row {
    gap: 18px;
    padding: 12px 0;
    border-bottom: 1px solid #eef2f6;
}

.booking-summary-row span,
.detail-row span {
    color: #64748b;
}

.booking-summary-row strong,
.detail-row strong {
    color: #0f172a;
    text-align: right;
}

.booking-total {
    margin-top: 14px;
    padding-top: 18px;
    border-top: 2px solid #e2e8f0;
}

.booking-total strong {
    color: #0f172a;
    font-size: 23px;
    letter-spacing: -.025em;
}

.booking-note {
    margin-top: 17px;
    padding: 13px 14px;
    border-radius: 10px;
    background: #f8fafc;
    color: #64748b;
    font-size: 13px;
    line-height: 1.6;
}

/* ---------- Booking detail ---------- */

.booking-confirmation-header {
    position: relative;
}

.booking-confirmation-header .booking-status {
    display: inline-flex;
    margin-top: 12px;
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.booking-detail-grid {
    gap: 20px;
}

.booking-detail-card {
    padding: 25px;
}

.booking-detail-card > h2 {
    margin: 0 0 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #eef2f6;
    color: #0f172a;
    font-size: 19px;
}

.booking-room-summary {
    padding: 15px 0;
    border-bottom: 1px solid #eef2f6;
}

.booking-room-summary:last-child {
    border-bottom: 0;
}

.booking-room-summary h3 {
    color: #0f172a;
}

.payment-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 17px;
    padding: 12px 14px;
    border-radius: 10px;
    background: #f8fafc;
    color: #64748b;
}

.payment-status strong {
    color: #0f172a;
}

.review-action-card {
    margin-top: 24px;
    padding: 22px 24px;
}

.review-action-card h3 {
    color: #0f172a;
}

.booking-actions {
    margin-top: 24px;
    padding: 20px 22px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #fff;
}

.booking-actions-paid {
    align-items: center;
}

.danger-button {
    min-height: 44px;
}

/* ---------- My bookings ---------- */

.my-bookings-list {
    display: grid;
    gap: 16px;
}

.my-booking-card {
    gap: 24px;
    padding: 24px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 4px 14px rgba(15,23,42,.04);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.my-booking-card:hover {
    transform: translateY(-2px);
    border-color: #cbd5e1;
    box-shadow: 0 12px 28px rgba(15,23,42,.075);
}

.booking-reference {
    display: inline-flex;
    margin-bottom: 8px;
    color: #0f766e;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .06em;
}

.my-booking-card h2 {
    margin: 0 0 7px;
    color: #0f172a;
    font-size: 22px;
    letter-spacing: -.025em;
}

.my-booking-card p {
    color: #64748b;
}

.my-booking-guests {
    margin-top: 6px;
    font-size: 14px;
}

.my-booking-meta {
    min-width: 220px;
}

.my-booking-statuses {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 7px;
}

.my-booking-statuses .booking-status,
.my-booking-statuses .payment-status {
    width: auto;
    margin: 0;
    padding: 6px 9px;
    border-radius: 999px;
    font-size: 12px;
}

.my-booking-total {
    margin: 14px 0;
}

.my-booking-total span {
    color: #64748b;
    font-size: 12px;
}

.my-booking-total strong {
    color: #0f172a;
    font-size: 21px;
}

.empty-state {
    padding: clamp(40px, 7vw, 70px) 24px;
    border: 1px dashed #cbd5e1;
    border-radius: 17px;
    background: #f8fafc;
    text-align: center;
}

.empty-state h2,
.empty-state h3 {
    color: #0f172a;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
    .booking-summary-card {
        position: static;
    }
}

@media (max-width: 700px) {
    .booking-page {
        padding-top: 36px;
        padding-bottom: 68px;
    }

    .booking-layout,
    .booking-detail-grid {
        display: block;
    }

    .booking-summary-card,
    .booking-detail-card {
        margin-top: 18px;
    }

    .my-booking-card {
        display: block;
    }

    .my-booking-meta {
        min-width: 0;
        margin-top: 20px;
        padding-top: 18px;
        border-top: 1px solid #eef2f6;
    }

    .my-booking-statuses {
        justify-content: flex-start;
    }

    .my-booking-meta .secondary-button {
        width: 100%;
    }

    .review-action-card {
        display: block;
    }

    .review-action-card .primary-button,
    .review-action-card .secondary-button {
        width: 100%;
        margin-top: 16px;
    }

    .booking-actions,
    .booking-actions-paid {
        display: block;
    }

    .booking-actions .primary-button,
    .booking-actions .danger-button,
    .booking-actions form,
    .booking-actions form button {
        width: 100%;
    }

    .booking-actions form {
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .booking-page-header h1,
    .booking-confirmation-header h1,
    .page-header h1 {
        font-size: 33px;
    }

    .booking-form-card,
    .booking-summary-card,
    .booking-detail-card {
        padding: 19px 16px;
    }

    .booking-summary-row,
    .detail-row {
        align-items: flex-start;
    }

    .booking-summary-row strong,
    .detail-row strong {
        max-width: 58%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .my-booking-card {
        transition: none;
    }
}


/* ==========================================================
   PASS 9G-5A — OWNER DASHBOARD + HOTEL LIST
   Add to END of static/css/style.css
   ========================================================== */

.dashboard-page,
.dashboard-section {
    padding-top: clamp(38px, 5vw, 62px);
    padding-bottom: 88px;
}

.dashboard-page {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.dashboard-header,
.page-header {
    gap: 24px;
}

.dashboard-header h1,
.dashboard-section .page-header h1 {
    margin: 7px 0 9px;
    color: #0f172a;
    font-size: clamp(32px, 4.5vw, 46px);
    line-height: 1.08;
    letter-spacing: -.04em;
}

.dashboard-header p,
.dashboard-section .page-header p {
    max-width: 680px;
    color: #64748b;
    line-height: 1.65;
}

.dashboard-header-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Hotel selector */
.dashboard-filter-card {
    gap: 24px;
    margin-top: 28px;
    padding: 19px 21px;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 4px 14px rgba(15,23,42,.04);
}

.dashboard-filter-card > div {
    display: grid;
    gap: 3px;
}

.dashboard-filter-card span {
    color: #64748b;
    font-size: 13px;
}

.dashboard-filter-form {
    display: flex;
    align-items: end;
    gap: 10px;
}

.dashboard-filter-form label {
    color: #475569;
    font-size: 12px;
    font-weight: 800;
}

.dashboard-filter-form select {
    min-width: 210px;
    min-height: 43px;
    border: 1px solid #cbd5e1;
    border-radius: 9px;
    background: #fff;
}

.clear-filter {
    padding-bottom: 11px;
    color: #0f766e;
    font-size: 13px;
    font-weight: 750;
}

/* Dashboard sections */
.dashboard-page .dashboard-section {
    padding: 0;
    margin-top: 44px;
}

.dashboard-page .section-heading {
    align-items: end;
    margin-bottom: 18px;
}

.dashboard-page .section-heading h2 {
    margin: 4px 0 0;
    color: #0f172a;
    font-size: 24px;
    letter-spacing: -.025em;
}

.section-description {
    margin-top: 5px;
    color: #64748b;
    font-size: 13px;
}

.section-link {
    color: #0f766e;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.section-link:hover {
    text-decoration: underline;
}

/* Revenue */
.revenue-card-grid {
    gap: 15px;
}

.revenue-card {
    min-width: 0;
    padding: 21px;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 4px 14px rgba(15,23,42,.035);
}

.revenue-card-highlight {
    border-color: #99f6e4;
    background: linear-gradient(145deg, #f0fdfa, #fff);
}

.revenue-card-label {
    color: #64748b;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .08em;
}

.revenue-card-icon {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: #f1f5f9;
}

.revenue-card-value {
    margin-top: 17px;
    overflow-wrap: anywhere;
    color: #0f172a;
    font-size: clamp(23px, 2.4vw, 31px);
    font-weight: 850;
    letter-spacing: -.035em;
}

.revenue-card-description {
    margin-top: 6px;
    color: #64748b;
    font-size: 12px;
    line-height: 1.5;
}

/* Payout cards */
.payout-summary-grid {
    gap: 15px;
}

.payout-summary-card {
    padding: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #fff;
}

.payout-summary-card strong {
    display: block;
    margin: 8px 0 5px;
    color: #0f172a;
    font-size: 23px;
}

.payout-summary-card small {
    color: #64748b;
}

/* Tables */
.dashboard-table-wrapper,
.monthly-revenue-table-wrapper {
    overflow-x: auto;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #fff;
    -webkit-overflow-scrolling: touch;
}

.dashboard-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
}

.dashboard-table th {
    padding: 13px 15px;
    background: #f8fafc;
    color: #64748b;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .055em;
    text-align: left;
    text-transform: uppercase;
}

.dashboard-table td {
    padding: 15px;
    border-top: 1px solid #eef2f6;
    color: #475569;
    vertical-align: middle;
}

.dashboard-table tbody tr:hover {
    background: #fbfdfe;
}

.table-value-highlight {
    color: #0f766e !important;
    font-weight: 800;
}

/* Empty states */
.empty-dashboard-card,
.dashboard-empty-state {
    padding: 42px 24px;
    border: 1px dashed #cbd5e1;
    border-radius: 16px;
    background: #f8fafc;
    text-align: center;
}

.empty-dashboard-icon {
    margin-bottom: 10px;
    font-size: 30px;
}

/* ---------- Hotel management cards ---------- */
.dashboard-section > .container > .page-header {
    margin-bottom: 28px;
}

.hotel-grid {
    gap: 20px;
}

.hotel-card {
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 5px 17px rgba(15,23,42,.045);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.hotel-card:hover {
    transform: translateY(-2px);
    border-color: #cbd5e1;
    box-shadow: 0 14px 30px rgba(15,23,42,.075);
}

.hotel-card-image {
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #e2e8f0;
}

.hotel-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.hotel-card:hover .hotel-card-image img {
    transform: scale(1.025);
}

.hotel-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #e2e8f0, #f8fafc);
    color: #64748b;
    font-size: 48px;
    font-weight: 850;
}

.hotel-card-content {
    padding: 20px;
}

.hotel-card-top {
    align-items: flex-start;
    gap: 12px;
}

.hotel-card h2 {
    margin: 0 0 4px;
    color: #0f172a;
    font-size: 20px;
    letter-spacing: -.025em;
}

.hotel-card-top p {
    margin: 0;
    color: #64748b;
    font-size: 13px;
}

.hotel-description {
    color: #64748b;
    line-height: 1.6;
}

.hotel-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.hotel-meta span {
    padding: 6px 9px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #475569;
    font-size: 11px;
    font-weight: 700;
}

.hotel-actions {
    display: flex;
    gap: 9px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid #eef2f6;
}

.hotel-actions a {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    padding: 8px 13px;
    border: 1px solid #cbd5e1;
    border-radius: 9px;
    color: #334155;
    font-size: 13px;
    font-weight: 750;
    text-decoration: none;
}

.hotel-actions .hotel-action-primary {
    border-color: #0f766e;
    background: #0f766e;
    color: #fff;
}

.hotel-actions a:hover {
    border-color: #0f766e;
    color: #0f766e;
}

.hotel-actions .hotel-action-primary:hover {
    background: #115e59;
    color: #fff;
}

/* ---------- Responsive ---------- */
@media (max-width: 850px) {
    .dashboard-page {
        width: min(100% - 30px, 1180px);
    }

    .dashboard-header,
    .dashboard-filter-card {
        align-items: flex-start;
    }

    .dashboard-filter-card {
        display: block;
    }

    .dashboard-filter-form {
        margin-top: 15px;
    }
}

@media (max-width: 620px) {
    .dashboard-page,
    .dashboard-section {
        padding-top: 30px;
        padding-bottom: 65px;
    }

    .dashboard-header,
    .dashboard-section .page-header {
        display: block;
    }

    .dashboard-header-actions,
    .dashboard-section .page-header > .primary-button {
        margin-top: 18px;
    }

    .dashboard-header-actions a,
    .dashboard-section .page-header > .primary-button {
        width: 100%;
    }

    .dashboard-filter-form {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: end;
    }

    .dashboard-filter-form label {
        grid-column: 1 / -1;
    }

    .dashboard-filter-form select {
        width: 100%;
        min-width: 0;
    }

    .clear-filter {
        padding: 11px 3px;
    }

    .dashboard-page .section-heading {
        display: block;
    }

    .section-link {
        display: inline-block;
        margin-top: 8px;
    }

    .revenue-card-grid,
    .payout-summary-grid {
        grid-template-columns: 1fr;
    }

    .hotel-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .hotel-actions a {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hotel-card,
    .hotel-card-image img {
        transition: none;
    }
}


/* ==========================================================
   PASS 9G-5B — ROOMS & INVENTORY UI/UX
   Add to END of static/css/style.css
   ========================================================== */

/* ---------- Shared owner forms ---------- */
.auth-section {
    padding-top: clamp(38px, 5vw, 62px);
    padding-bottom: 82px;
}

.auth-card,
.auth-card.wide {
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(15,23,42,.065);
}

.auth-card {
    padding: clamp(22px, 4vw, 34px);
}

.auth-header {
    margin-bottom: 26px;
    padding-bottom: 21px;
    border-bottom: 1px solid #eef2f6;
}

.auth-header > span {
    color: #0f766e;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .08em;
}

.auth-header h1 {
    margin: 6px 0 7px;
    color: #0f172a;
    font-size: clamp(28px, 4vw, 38px);
    letter-spacing: -.035em;
}

.auth-header p {
    margin: 0;
    color: #64748b;
    line-height: 1.6;
}

.owner-management-form .form-group {
    margin-bottom: 20px;
}

.owner-management-form label {
    display: block;
    margin-bottom: 7px;
    color: #334155;
    font-size: 13px;
    font-weight: 750;
}

.owner-management-form input:not([type="checkbox"]),
.owner-management-form select,
.owner-management-form textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    background: #fff;
}

.owner-management-form input:not([type="checkbox"]),
.owner-management-form select {
    min-height: 47px;
}

.owner-management-form textarea {
    min-height: 115px;
    resize: vertical;
}

.owner-management-form input:focus,
.owner-management-form select:focus,
.owner-management-form textarea:focus {
    border-color: #0f766e;
    outline: 3px solid rgba(15,118,110,.11);
    outline-offset: 0;
}

.owner-management-form .errorlist {
    margin: 7px 0 0;
    padding: 0;
    list-style: none;
    color: #b91c1c;
    font-size: 12px;
}

.checkbox-label {
    display: flex !important;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    margin: 0 !important;
    padding: 10px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #f8fafc;
}

.checkbox-label input {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: #0f766e;
}

.owner-form-actions {
    justify-content: flex-end;
    gap: 10px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid #eef2f6;
}

/* ---------- Room type list ---------- */
.page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.room-type-grid {
    gap: 20px;
}

.room-type-card {
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 5px 17px rgba(15,23,42,.04);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.room-type-card:hover {
    transform: translateY(-2px);
    border-color: #cbd5e1;
    box-shadow: 0 13px 28px rgba(15,23,42,.07);
}

.room-type-card-header {
    gap: 18px;
}

.room-type-card h2 {
    margin: 0 0 8px;
    color: #0f172a;
    font-size: 21px;
    letter-spacing: -.025em;
}

.room-price {
    text-align: right;
}

.room-price strong {
    display: block;
    color: #0f172a;
    font-size: 21px;
    letter-spacing: -.025em;
}

.room-price span {
    color: #64748b;
    font-size: 11px;
}

.room-description {
    color: #64748b;
    line-height: 1.6;
}

.room-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.room-specs > span {
    padding: 6px 9px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #475569;
    font-size: 12px;
}

.room-inventory-summary {
    margin-top: 16px;
    padding: 13px 14px;
    border-radius: 11px;
    background: #f8fafc;
}

.room-inventory-summary strong {
    color: #0f766e;
}

.room-inventory-summary span {
    color: #64748b;
    font-size: 12px;
}

/* ---------- Room type detail ---------- */
.room-inventory-stats {
    gap: 14px;
    margin-bottom: 24px;
}

.room-inventory-stats .content-card {
    min-height: 105px;
    padding: 18px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #fff;
    box-shadow: none;
}

.room-inventory-stats .content-card span {
    color: #64748b;
    font-size: 12px;
    font-weight: 750;
}

.room-inventory-stats .content-card strong {
    display: block;
    margin-top: 8px;
    color: #0f172a;
    font-size: 27px;
}

.detail-grid {
    align-items: start;
    gap: 20px;
}

.detail-main > .content-card,
.detail-sidebar .content-card,
.dashboard-section > .container > .content-card {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(15,23,42,.035);
}

.content-card-heading h2 {
    color: #0f172a;
    letter-spacing: -.02em;
}

.content-card-heading p {
    color: #64748b;
}

.detail-sidebar .content-card h3 {
    margin-top: 0;
    color: #334155;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .055em;
}

.detail-sidebar .content-card p {
    color: #64748b;
}

.large-price {
    color: #0f172a;
    font-size: 27px;
    font-weight: 850;
    letter-spacing: -.035em;
}

.room-table-wrapper {
    overflow-x: auto;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    -webkit-overflow-scrolling: touch;
}

.room-table-wrapper:focus-visible {
    outline: 3px solid rgba(15,118,110,.18);
    outline-offset: 2px;
}

.room-table {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
}

.room-table th {
    padding: 12px 14px;
    background: #f8fafc;
    color: #64748b;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .05em;
    text-align: left;
    text-transform: uppercase;
}

.room-table td {
    padding: 14px;
    border-top: 1px solid #eef2f6;
    color: #475569;
}

.room-table tbody tr:hover {
    background: #fbfdfe;
}

.table-action {
    color: #0f766e;
    font-weight: 750;
    text-decoration: none;
}

.table-action:hover {
    text-decoration: underline;
}

/* ---------- Photos ---------- */
.room-type-card .room-type-photo {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.dashboard-section > .container > .content-card .room-type-grid {
    margin-top: 18px;
}

.room-photo-delete {
    min-height: 40px;
}

.room-photo-upload-form {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) 130px auto;
    gap: 12px;
    align-items: end;
    margin-top: 15px;
}

.room-photo-upload-form .form-group {
    margin: 0;
}

.room-photo-upload-form label {
    display: block;
    margin-bottom: 6px;
    color: #475569;
    font-size: 12px;
    font-weight: 750;
}

.room-photo-upload-form input {
    width: 100%;
    min-height: 44px;
    border: 1px solid #cbd5e1;
    border-radius: 9px;
    background: #fff;
}

.mini-empty {
    padding: 30px 20px;
    border: 1px dashed #cbd5e1;
    border-radius: 12px;
    background: #f8fafc;
    text-align: center;
}

.mini-empty p {
    color: #64748b;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .room-photo-upload-form {
        grid-template-columns: 1fr 1fr;
    }

    .room-photo-upload-form .primary-button {
        width: 100%;
    }
}

@media (max-width: 700px) {
    .page-actions {
        width: 100%;
        margin-top: 17px;
    }

    .page-actions a {
        flex: 1 1 180px;
    }

    .room-type-card-header {
        display: block;
    }

    .room-price {
        margin-top: 14px;
        text-align: left;
    }

    .room-inventory-stats {
        grid-template-columns: 1fr 1fr;
    }

    .detail-grid {
        display: block;
    }

    .detail-sidebar {
        margin-top: 18px;
    }

    .room-photo-upload-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .auth-section {
        padding-top: 28px;
        padding-bottom: 60px;
    }

    .auth-card,
    .auth-card.wide {
        padding: 20px 16px;
        border-radius: 14px;
    }

    .owner-management-form .form-row:not(.owner-form-actions) {
        display: block;
    }

    .owner-form-actions {
        display: flex;
        flex-direction: column-reverse;
    }

    .owner-form-actions .primary-button,
    .owner-form-actions .secondary-button {
        width: 100%;
    }

    .room-inventory-stats {
        grid-template-columns: 1fr 1fr;
    }

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

@media (prefers-reduced-motion: reduce) {
    .room-type-card {
        transition: none;
    }
}


/* ==========================================================
   PASS 9G-5C — REVIEWS, REVENUE & PAYOUTS UI/UX
   Add to END of static/css/style.css
   ========================================================== */

.page-section {
    padding-top: clamp(38px, 5vw, 62px);
    padding-bottom: 82px;
}

.page-section .page-header {
    margin-bottom: 26px;
}

.page-section .page-header h1 {
    margin: 6px 0 8px;
    color: #0f172a;
    font-size: clamp(31px, 4.5vw, 43px);
    line-height: 1.1;
    letter-spacing: -.035em;
}

.page-section .page-header p:not(.eyebrow) {
    max-width: 680px;
    color: #64748b;
    line-height: 1.65;
}

/* Reviews */
.review-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 24px;
    padding: 5px;
    width: fit-content;
    max-width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
}

.review-filters a {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    padding: 7px 13px;
    border-radius: 8px;
    color: #64748b;
    font-size: 13px;
    font-weight: 750;
    text-decoration: none;
}

.review-filters a:hover {
    color: #0f766e;
    background: #fff;
}

.review-filters a.active {
    background: #fff;
    color: #0f766e;
    box-shadow: 0 1px 4px rgba(15,23,42,.08);
}

.owner-reviews-grid {
    gap: 18px;
}

.review-card,
.form-card {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 5px 18px rgba(15,23,42,.04);
}

.review-card {
    padding: clamp(20px, 3vw, 26px);
}

.review-header {
    gap: 18px;
    align-items: flex-start;
}

.review-header strong {
    color: #0f172a;
    font-size: 16px;
}

.review-header p,
.verified-stay {
    margin-top: 4px;
    color: #0f766e;
    font-size: 12px;
    font-weight: 750;
}

.review-rating {
    flex: 0 0 auto;
    padding: 7px 10px;
    border-radius: 9px;
    background: #ecfdf5;
    color: #047857;
    font-size: 13px;
    font-weight: 850;
}

.review-card > h2,
.review-card > h3 {
    margin: 18px 0 8px;
    color: #0f172a;
}

.review-card > p {
    color: #475569;
    line-height: 1.7;
}

.review-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-top: 18px;
    padding-top: 15px;
    border-top: 1px solid #eef2f6;
    color: #64748b;
    font-size: 12px;
}

.owner-response {
    margin-top: 18px;
    padding: 15px 17px;
    border-left: 3px solid #0f766e;
    border-radius: 0 10px 10px 0;
    background: #f0fdfa;
}

.owner-response strong,
.owner-response h3 {
    color: #115e59;
}

.owner-response p {
    margin-bottom: 0;
    color: #475569;
    line-height: 1.65;
}

.review-card .form-actions {
    margin-top: 18px;
}

/* Review submission/response forms */
.form-card {
    max-width: 820px;
    padding: clamp(21px, 4vw, 32px);
}

.form-card > h2 {
    margin-top: 0;
    color: #0f172a;
}

.form-card > p {
    color: #64748b;
    line-height: 1.6;
}

.booking-summary {
    margin-bottom: 25px;
    padding: 17px 18px;
    border: 1px solid #dbeafe;
    border-radius: 12px;
    background: #f8fbff;
}

.booking-summary h2 {
    margin-top: 0;
    color: #0f172a;
    font-size: 17px;
}

.booking-summary p {
    margin: 7px 0;
    color: #475569;
}

.review-submission-form .form-group,
.review-response-form .form-group {
    margin-bottom: 20px;
}

.review-submission-form label,
.review-response-form label {
    display: block;
    margin-bottom: 7px;
    color: #334155;
    font-size: 13px;
    font-weight: 750;
}

.review-submission-form input,
.review-submission-form select,
.review-submission-form textarea,
.review-response-form textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    background: #fff;
}

.review-submission-form input,
.review-submission-form select {
    min-height: 47px;
}

.review-submission-form textarea,
.review-response-form textarea {
    min-height: 150px;
    resize: vertical;
}

.review-submission-form input:focus,
.review-submission-form select:focus,
.review-submission-form textarea:focus,
.review-response-form textarea:focus {
    border-color: #0f766e;
    outline: 3px solid rgba(15,118,110,.11);
    outline-offset: 0;
}

/* Finance pages */
.dashboard-page .payout-summary-card {
    position: relative;
    overflow: hidden;
}

.dashboard-page .payout-summary-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: #cbd5e1;
}

.dashboard-page .payout-summary-card strong {
    overflow-wrap: anywhere;
}

.dashboard-page .dashboard-table-wrapper:focus-visible,
.dashboard-page .monthly-revenue-table-wrapper:focus-visible {
    outline: 3px solid rgba(15,118,110,.18);
    outline-offset: 2px;
}

.dashboard-page .status-badge {
    white-space: nowrap;
}

.dashboard-page .status-paid,
.dashboard-page .status-completed,
.dashboard-page .status-confirmed {
    font-weight: 800;
}

/* Finance readability */
.dashboard-page .revenue-card-value,
.dashboard-page .payout-summary-card strong,
.dashboard-table td {
    font-variant-numeric: tabular-nums;
}

.dashboard-table td strong {
    color: #0f172a;
}

@media (max-width: 700px) {
    .page-section {
        padding-top: 30px;
        padding-bottom: 65px;
    }

    .review-filters {
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .review-filters a {
        flex: 0 0 auto;
    }

    .review-header {
        display: flex;
    }

    .form-card {
        padding: 20px 16px;
    }

    .form-card .form-actions {
        display: flex;
        flex-direction: column;
        gap: 9px;
    }

    .form-card .form-actions .primary-button,
    .form-card .form-actions .secondary-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .review-card {
        padding: 18px 15px;
    }

    .review-meta {
        display: grid;
        gap: 7px;
    }

    .owner-reviews-grid .form-actions .secondary-button {
        width: 100%;
    }
}



/* ==========================================================
   HOME SEARCH — ICON/TEXT OVERLAP FIX
   ========================================================== */

.hotel-search-card .search-field {
    position: relative;
}

/* Icon */
.hotel-search-card .search-field-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    pointer-events: none;
    z-index: 2;
}

/* Give the actual controls enough room for the icon */
.hotel-search-card .search-field input,
.hotel-search-card .search-field select {
    padding-left: 64px !important;
}

/* Keep text away from the right edge too */
.hotel-search-card .search-field input {
    padding-right: 14px;
}

/* Date inputs need room for the browser's calendar icon */
.hotel-search-card .search-field input[type="date"] {
    padding-right: 38px;
}

/* Mobile */
@media (max-width: 650px) {
    .hotel-search-card .search-field-icon {
        left: 14px;
        width: 36px;
        height: 36px;
    }

    .hotel-search-card .search-field input,
    .hotel-search-card .search-field select {
        padding-left: 60px !important;
    }
}



/* ==========================================================
   HOME SEARCH — CHECK-IN / CHECK-OUT DATE FIX
   ========================================================== */

/* Give date text enough room between our left icon
   and the browser's calendar icon on the right */
.hotel-search-card .search-field input[type="date"] {
    padding-left: 58px !important;
    padding-right: 42px !important;

    font-size: 15px;
    min-width: 0;
    width: 100%;
}

/* Make our decorative icon slightly smaller on date fields */
.hotel-search-card .search-field:has(input[type="date"])
.search-field-icon {
    left: 12px;
    width: 34px;
    height: 34px;
}

/* Keep browser calendar control at the far right */
.hotel-search-card
input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    right: 12px;

    width: 18px;
    height: 18px;

    margin: 0;
    padding: 0;

    cursor: pointer;
}

/* Give date fields more width on the desktop search bar */
@media (min-width: 1051px) {
    .hotel-search-card .hotel-search-form {
        grid-template-columns:
            minmax(220px, 1.5fr)
            minmax(190px, 1fr)
            minmax(190px, 1fr)
            minmax(140px, 0.75fr)
            auto;
    }
}

/* Tablet/mobile — date fields get full available width */
@media (max-width: 1050px) {
    .hotel-search-card .search-field input[type="date"] {
        padding-left: 60px !important;
        padding-right: 44px !important;
    }
}

@media (max-width: 650px) {
    .hotel-search-card .search-field:has(input[type="date"])
    .search-field-icon {
        left: 14px;
    }

    .hotel-search-card .search-field input[type="date"] {
        padding-left: 62px !important;
        padding-right: 44px !important;
        font-size: 16px;
    }
}




/* ==========================================================
   FINAL HOME DATE FIELD WIDTH FIX
   ========================================================== */

@media (min-width: 1051px) {

    .hotel-search-card .hotel-search-form {
        grid-template-columns:
            minmax(230px, 1.4fr)   /* Destination */
            minmax(225px, 1fr)     /* Check-in */
            minmax(225px, 1fr)     /* Check-out */
            minmax(145px, 0.7fr)   /* Guests */
            minmax(150px, auto);   /* Search */
    }

    .hotel-search-card .search-field input[type="date"] {
        padding-left: 54px !important;
        padding-right: 34px !important;
        font-size: 14px;
        letter-spacing: -0.15px;
    }

    .hotel-search-card
    .search-field:has(input[type="date"])
    .search-field-icon {
        left: 10px;
        width: 32px;
        height: 32px;
    }

    .hotel-search-card
    input[type="date"]::-webkit-calendar-picker-indicator {
        right: 8px;
        width: 16px;
        height: 16px;
    }
}
/* ==========================================================
   PASS 9G-6 — FINAL SYSTEM-WIDE UI/UX CONSISTENCY
   Consolidation layer. Keep at end of stylesheet.
   ========================================================== */

/* Accessible keyboard focus */
:where(a, button, input, select, textarea, [tabindex]):focus-visible {
    outline: 3px solid rgba(15, 118, 110, 0.22);
    outline-offset: 2px;
}

/* Disabled controls */
:where(button, .primary-button, .secondary-button, .danger-button, .search-button):disabled,
:where(button, .primary-button, .secondary-button, .danger-button, .search-button)[aria-disabled="true"] {
    opacity: .55;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* Consistent text controls */
:where(.form-group, .owner-management-form, .review-submission-form, .review-response-form)
:where(input:not([type="checkbox"]):not([type="radio"]), select, textarea) {
    max-width: 100%;
    color: var(--text);
}

textarea { font: inherit; }

::placeholder {
    color: #94a3b8;
    opacity: 1;
}

/* Validation and error presentation */
.form-errors,
.errorlist:not(:empty) {
    border-radius: 10px;
}

.form-errors {
    border: 1px solid #fecaca;
    background: #fff7f7;
    color: #991b1b;
}

.field-error,
.errorlist {
    color: #b91c1c;
}

:where(input, select, textarea)[aria-invalid="true"] {
    border-color: #dc2626 !important;
}

:where(input, select, textarea)[aria-invalid="true"]:focus {
    outline-color: rgba(220, 38, 38, .18);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, .10);
}

/* Unified button interaction */
:where(.primary-button, .secondary-button, .danger-button, .search-button, .small-button) {
    line-height: 1.2;
    text-align: center;
}

.danger-button:hover {
    background: #991b1b;
}

/* Status system */
.status-badge,
.booking-status,
.room-status {
    line-height: 1.2;
}

.status-cancelled,
.status-rejected,
.status-failed,
.status-refund_failed,
.status-refunded-failed {
    background: #fee2e2;
    color: #991b1b;
}

.status-refunded,
.status-success,
.status-verified,
.status-paid,
.status-confirmed {
    background: #dcfce7;
    color: #166534;
}

.status-processing,
.status-refund_processing,
.status-refund_pending,
.status-completed {
    background: #dbeafe;
    color: #1e40af;
}

.status-pending,
.status-requires_action,
.status-abandoned {
    background: #fef3c7;
    color: #92400e;
}

/* Empty states */
:where(.empty-state, .mini-empty, .empty-dashboard-card, .dashboard-empty-state) h2,
:where(.empty-state, .mini-empty, .empty-dashboard-card, .dashboard-empty-state) h3 {
    color: var(--dark);
}

:where(.empty-state, .mini-empty, .empty-dashboard-card, .dashboard-empty-state) p {
    color: var(--muted);
    line-height: 1.65;
}

/* Horizontal tables remain usable with keyboard and touch */
:where(.dashboard-table-wrapper, .monthly-revenue-table-wrapper, .room-table-wrapper) {
    max-width: 100%;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
}

:where(.dashboard-table-wrapper, .monthly-revenue-table-wrapper, .room-table-wrapper):focus-visible {
    outline: 3px solid rgba(15, 118, 110, .18);
    outline-offset: 2px;
}

/* Protect cards/content from long references, email addresses and money values */
:where(.content-card, .booking-detail-card, .booking-summary-card, .review-card,
       .hotel-card, .room-type-card, .revenue-card, .payout-summary-card) {
    min-width: 0;
}

:where(.booking-reference, .revenue-card-value, .payout-summary-card strong,
       .dashboard-table td, .detail-row strong) {
    overflow-wrap: anywhere;
}

/* Numeric financial values align more cleanly */
:where(.revenue-card-value, .payout-summary-card strong, .dashboard-table td,
       .booking-total, .large-price, .room-price) {
    font-variant-numeric: tabular-nums;
}

/* Homepage search: preserve final icon/date correction */
.hotel-search-card .search-field {
    position: relative;
    min-width: 0;
}

.hotel-search-card .search-field-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    z-index: 2;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    pointer-events: none;
}

.hotel-search-card .search-field input,
.hotel-search-card .search-field select {
    min-width: 0;
    padding-left: 64px !important;
}

.hotel-search-card .search-field input[type="date"] {
    width: 100%;
    min-width: 0;
    padding-left: 54px !important;
    padding-right: 34px !important;
    font-size: 14px;
    letter-spacing: -.15px;
}

.hotel-search-card .search-field:has(input[type="date"]) .search-field-icon {
    left: 10px;
    width: 32px;
    height: 32px;
}

.hotel-search-card input[type="date"]::-webkit-calendar-picker-indicator {
    width: 16px;
    height: 16px;
    margin: 0;
    padding: 0;
    cursor: pointer;
}

@media (min-width: 1051px) {
    .hotel-search-card .hotel-search-form {
        grid-template-columns:
            minmax(230px, 1.4fr)
            minmax(225px, 1fr)
            minmax(225px, 1fr)
            minmax(145px, .7fr)
            minmax(150px, auto);
    }
}

/* General mobile resilience */
@media (max-width: 700px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    :where(.primary-button, .secondary-button, .danger-button, .search-button) {
        min-height: 44px;
    }

    .hotel-search-card .search-field-icon {
        left: 14px;
        width: 36px;
        height: 36px;
    }

    .hotel-search-card .search-field input,
    .hotel-search-card .search-field select {
        padding-left: 60px !important;
    }

    .hotel-search-card .search-field input[type="date"] {
        padding-left: 60px !important;
        padding-right: 42px !important;
        font-size: 16px;
    }

    .hotel-search-card .search-field:has(input[type="date"]) .search-field-icon {
        left: 14px;
    }
}

/* Avoid motion for users who request it */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}



/* ==========================================================
   REGISTER PAGE — CHECKBOX / RADIO BUTTON FIX
   ========================================================== */

.auth-card .account-type-options {
    margin-top: 6px;
}

.auth-card .account-type-options ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.auth-card .account-type-options li {
    margin: 0;
    padding: 0;
}

/* Make each option a clean selectable card */
.auth-card .account-type-options label {
    min-height: 52px;
    display: flex;
    align-items: center;
    gap: 11px;

    margin: 0;
    padding: 12px 14px;

    border: 1px solid #cbd5e1;
    border-radius: 10px;

    background: #ffffff;
    color: #334155;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

/* IMPORTANT: stop checkbox/radio controls inheriting
   the normal full-width input styling */
.auth-card .account-type-options input[type="checkbox"],
.auth-card .account-type-options input[type="radio"] {
    appearance: auto;
    -webkit-appearance: auto;

    flex: 0 0 auto;

    width: 18px !important;
    height: 18px !important;
    min-width: 18px;
    min-height: 18px;

    margin: 0 !important;
    padding: 0 !important;

    border: 0;
    border-radius: 0;

    box-shadow: none !important;

    accent-color: #0f766e;

    cursor: pointer;
}

/* Highlight the option when selected */
.auth-card .account-type-options label:has(
    input[type="checkbox"]:checked
),
.auth-card .account-type-options label:has(
    input[type="radio"]:checked
) {
    border-color: #0f766e;
    background: #f0fdfa;
    box-shadow: 0 0 0 1px rgba(15, 118, 110, 0.08);
}

/* Hover */
.auth-card .account-type-options label:hover {
    border-color: #94a3b8;
    background: #f8fafc;
}

/* Keyboard accessibility */
.auth-card .account-type-options label:has(
    input[type="checkbox"]:focus-visible
),
.auth-card .account-type-options label:has(
    input[type="radio"]:focus-visible
) {
    border-color: #0f766e;
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.14);
}

/* Mobile */
@media (max-width: 550px) {
    .auth-card .account-type-options ul {
        grid-template-columns: 1fr;
    }

    .auth-card .account-type-options label {
        min-height: 50px;
        padding: 11px 13px;
    }
}