﻿@import url("../../css/property-detail-pd2.css");

:root {
    --brand-primary: #0f7ad8;
    --brand-light: #eaf3fa;
    --brand-soft: #f4f9fd;
    --brand-dark: #1e2f45;
    --text-main: #1e2f45;
    --text-muted: #64748b;
    --white: #ffffff;
    --border: #dbe8f4;
    --shadow: 0 8px 24px rgba(15, 122, 216, 0.09);
}

body {
    font-family: "Poppins", Arial, sans-serif;
    color: var(--text-main);
}

a {
    color: var(--brand-primary);
}

a:hover {
    color: #0a67bb;
}

body.login-split-page {
    margin: 0;
    font-family: "Poppins", Arial, sans-serif;
    background: #eff2f7;
    color: #223249;
}

.login-shell {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.login-panel {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    overflow: hidden;
}

.panel-left {
    padding: 48px 48px 28px;
    position: relative;
    background: #edf2f8;
    grid-column: 1;
}

.panel-left h1 {
    margin: 0;
    line-height: 1.22;
    font-size: 38px;
    font-weight: 700;
    color: #1e2f45;
    max-width: 560px;
}

.panel-left h1 span {
    color: #006ac3;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 26px 0 38px;
}

.feature-list li {
    margin-bottom: 12px;
    font-size: 18px;
    color: #344a67;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list li::before {
    content: "\2713";
    color: #10a66d;
    font-weight: 700;
    font-size: 20px;
}

.promo-art {
    width: 100%;
    min-height: 290px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.promo-art img {
    width: 100%;
    max-width: 320px;
    object-fit: contain;
}

.promo-art::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    margin: auto;
    width: 100%;
    height: 38px;
    border-bottom: 2px dashed #cfdcec;
    border-radius: 0 0 60% 60%;
}

.panel-right {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 48px 40px 48px 24px;
    background: #edf2f8;
    grid-column: 2;
}

.login-card {
    width: 100%;
    max-width: 450px;
    background: #fff;
    border: 1px solid #e1e8f2;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(36, 70, 112, 0.08);
    padding: 26px 28px;
}

.brand-wrap {
    text-align: center;
    margin-bottom: 14px;
}

.brand-wrap img {
    height: 72px;
    width: auto;
}

/* Login/register: coloured logo by default; white logo only on narrow screens over brand strip */
.auth-logo-mark {
    width: auto;
    height: 72px;
    vertical-align: middle;
}

.login-split-page .auth-logo-white {
    display: none;
}

.verify-brand-logo {
    width: auto;
    height: 72px;
    vertical-align: middle;
}

.login-title {
    margin: 0 0 20px;
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    color: #172b43;
}

.form-group label {
    color: #203b5c;
    font-weight: 600;
    font-size: 14px;
}

.form-control {
    height: 48px;
    border-radius: 10px;
    border: 1px solid #d8e4f2;
    background: #f9fbff;
    font-size: 14px;
    padding: 10px 14px;
    color: #1a2c44;
}

.form-control:focus {
    border-color: #1f7ed7;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(31, 126, 215, 0.15);
}

.forgot-link {
    text-align: right;
    margin: 5px 0 16px;
    font-size: 14px;
}

.forgot-link a {
    color: #1f7ed7;
    font-weight: 500;
}

.btn-login {
    height: 50px;
    border-radius: 10px;
    border: none;
    width: 100%;
    background: #0f7ad8;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-login:hover {
    background: #0b69be;
}

.new-account {
    margin-top: 16px;
    text-align: center;
    color: #4d6482;
    font-size: 14px;
}

.new-account a {
    color: #0f7ad8;
    font-weight: 600;
}

@media (max-width: 1080px) {
    .login-panel {
        grid-template-columns: 1fr;
        max-width: none;
    }

    .panel-left,
    .panel-right {
        grid-column: 1;
    }

    .panel-right {
        order: 1;
        padding: 20px 14px;
    }

    .panel-left {
        order: 2;
        padding-bottom: 22px;
    }
}

@media (max-width: 767px) {
    .login-shell {
        padding: 14px;
    }

    .panel-left {
        padding: 32px 22px 20px;
    }

    .panel-left h1 {
        font-size: 33px;
    }

    .feature-list li {
        font-size: 16px;
    }

    .panel-right {
        padding: 20px 14px;
    }

    .login-card {
        padding: 24px 18px;
    }

    /* White logo on brand strip â€” matches forgot / reset / mobile verification */
    .login-split-page .brand-wrap {
        background: linear-gradient(150deg, #0c4f9d, #1f7fda);
        margin: -24px -18px 16px;
        padding: 22px 16px;
        border-radius: 10px 10px 0 0;
    }

    .login-split-page .brand-wrap img.auth-logo-colored {
        display: none !important;
    }

    .login-split-page .brand-wrap img.auth-logo-white {
        display: inline-block !important;
    }
}

.register-card {
    max-width: 520px;
    width: 100%;
}

@media (min-width: 1081px) {
    .login-panel .panel-right .register-card {
        max-width: none;
    }
}

.register-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.register-form-grid .full-span {
    grid-column: 1 / -1;
}

.register-form-grid .form-group {
    margin-bottom: 0;
}

.register-form-grid .red {
    margin: 6px 0 0;
    min-height: 16px;
    color: #dd3f4f;
    font-size: 12px;
}

.register-form-grid .action-wrap {
    margin-top: 6px;
}

@media (max-width: 767px) {
    .register-form-grid {
        grid-template-columns: 1fr;
    }
}

/* Shared styles for verify/forgot/reset auth pages */
body.verify-page {
    margin: 0;
    min-height: 100vh;
    font-family: "Poppins", Arial, sans-serif;
    background: radial-gradient(circle at 10% 20%, #d6e4ff 0%, #eef4ff 40%, #f6f9ff 100%);
    color: #24364d;
}

.verify-shell {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.verify-card {
    width: 100%;
    max-width: 940px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 20px 45px rgba(32, 62, 103, 0.12);
    border: 1px solid #e3ebf7;
}

.verify-left {
    background: linear-gradient(150deg, #0c4f9d, #1f7fda);
    color: #fff;
    padding: 42px 34px;
    position: relative;
}

.verify-left::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    top: -60px;
    right: -80px;
}

.verify-left::after {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    bottom: -65px;
    left: -55px;
}

.verify-left img {
    width: 120px;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.verify-left h2 {
    margin: 0 0 12px;
    font-size: 30px;
    line-height: 1.25;
    position: relative;
    z-index: 2;
}

.verify-left p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #d6e7ff;
    max-width: 330px;
    position: relative;
    z-index: 2;
}

.verify-right {
    padding: 44px 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.verify-form-wrap {
    width: 100%;
    max-width: 390px;
}

.verify-form-wrap h4 {
    margin: 0 0 8px;
    color: #1f3250;
    font-size: 28px;
    font-weight: 600;
}

.verify-form-wrap .subtext {
    margin: 0 0 24px;
    color: #6d7f97;
    font-size: 14px;
}

.field-label,
.otp-label {
    color: #203b5c;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    display: inline-block;
}

.field-input {
    width: 100%;
    max-width: 100%;
    display: block;
    box-sizing: border-box;
    height: 56px;
    border-radius: 14px;
    border: 1px solid #c5d8ef;
    background: linear-gradient(180deg, #fafdff 0%, #f2f8ff 100%);
    padding: 12px 16px;
    font-size: 16px;
    color: #12335d;
    outline: none;
    transition: all 0.2s ease;
    box-shadow: inset 0 1px 2px rgba(17, 48, 87, 0.08);
}

.field-input.password-input {
    margin-bottom: 14px;
}

.field-input:focus {
    border-color: #1f7ed7;
    box-shadow: 0 0 0 4px rgba(31, 126, 215, 0.18), inset 0 1px 2px rgba(17, 48, 87, 0.08);
    background: #fff;
}

.otp-input {
    width: 100%;
    max-width: 100%;
    display: block;
    box-sizing: border-box;
    height: 60px;
    border-radius: 14px;
    border: 1px solid #c5d8ef;
    background: linear-gradient(180deg, #fafdff 0%, #f2f8ff 100%);
    padding: 12px 18px;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.4em;
    text-align: center;
    color: #12335d;
    outline: none;
    transition: all 0.2s ease;
    box-shadow: inset 0 1px 2px rgba(17, 48, 87, 0.08);
}

.otp-input:focus {
    border-color: #1f7ed7;
    box-shadow: 0 0 0 4px rgba(31, 126, 215, 0.18), inset 0 1px 2px rgba(17, 48, 87, 0.08);
    background: #fff;
}

.otp-input::placeholder {
    letter-spacing: 0.2em;
    font-size: 16px;
    font-weight: 500;
    color: #89a3c2;
}

.verify-btn {
    width: 100%;
    border: none;
    border-radius: 12px;
    height: 52px;
    margin-top: 18px;
    background: linear-gradient(135deg, #0f7ad8, #0a67bb);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.verify-btn.btn-tight {
    margin-top: 4px;
}

.verify-btn:hover {
    filter: brightness(0.98);
}

.resend,
.links {
    margin-top: 16px;
    text-align: center;
    font-size: 14px;
}

.links {
    color: #6d7f97;
}

.resend a,
.links a {
    color: #0f7ad8;
    font-weight: 600;
    text-decoration: none;
}

@media (max-width: 900px) {
    .verify-card {
        grid-template-columns: 1fr;
    }

    .verify-left,
    .verify-right {
        padding: 30px 20px;
    }

    .verify-left h2 {
        font-size: 24px;
    }

    .otp-input {
        font-size: 21px;
        letter-spacing: 0.28em;
    }
}

/* Step-by-step post property basic details */
.basic-step-card {
    border: 1px solid #e8edf5;
    border-radius: 14px;
    padding: 20px;
    background: #fff;
}

.step-title {
    font-size: 38px;
    font-weight: 600;
    color: #062a55;
    margin-bottom: 16px;
    line-height: 1.2;
}

.choice-row {
    margin-bottom: 20px;
}

.choice-row .choice-label {
    font-size: 16px;
    font-weight: 600;
    color: #2e4563;
    display: block;
    margin-bottom: 10px;
}

.radio-choices {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

.radio-choices label {
    display: inline-flex;
    align-items: center;
    font-size: 20px;
    color: #203b5c;
    gap: 10px;
    margin: 0;
    cursor: pointer;
}

.radio-choices input[type="radio"] {
    width: 22px;
    height: 22px;
    accent-color: #0077d9;
    cursor: pointer;
}

.type-chip-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.type-chip {
    border: 2px solid #d7dce4;
    border-radius: 999px;
    background: #fff;
    color: #2f4f75;
    padding: 12px 24px;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    transition: all .2s ease;
}

.type-chip:hover {
    border-color: #8dbbe8;
    color: #0f5fa8;
}

.type-chip.active {
    border-color: #1280da;
    background: #eaf4ff;
    color: #0f5fa8;
}

#property_type {
    display: none;
}

@media (max-width: 767px) {
    .step-title {
        font-size: 28px;
    }

    .radio-choices label,
    .type-chip {
        font-size: 16px;
    }
}

/* Dashboard page styles */
:root {
    --brand-primary: #0f7ad8;
    --brand-light: #eaf3fa;
    --brand-soft: #f4f9fd;
    --brand-dark: #1e2f45;
    --text-main: #1e2f45;
    --text-muted: #64748b;
    --white: #ffffff;
    --border: #dbe8f4;
    --shadow: 0 8px 24px rgba(15, 122, 216, 0.09);
}

* {
    box-sizing: border-box;
}

body.dashboard-page {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background: var(--brand-soft);
    color: var(--text-main);
}

.topbar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 30;
}

.topbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--brand-primary);
    font-weight: 700;
    white-space: nowrap;
}

.brand img {
    width: 60px;
    /* height: 38px; */
    /* border-radius: 8px; */
}

.h-nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
    color: #23486b;
    cursor: pointer;
    flex: 0 0 auto;
}

.h-nav-toggle:focus-visible {
    outline: 2px solid var(--brand-primary);
    outline-offset: 2px;
}

.h-nav-toggle__icon,
.h-nav-toggle__icon::before,
.h-nav-toggle__icon::after {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}

.h-nav-toggle__icon {
    position: relative;
}

.h-nav-toggle__icon::before,
.h-nav-toggle__icon::after {
    content: "";
    position: absolute;
    left: 0;
}

.h-nav-toggle__icon::before {
    top: -6px;
}

.h-nav-toggle__icon::after {
    top: 6px;
}

.topbar.is-nav-open .h-nav-toggle__icon {
    background: transparent;
}

.topbar.is-nav-open .h-nav-toggle__icon::before {
    top: 0;
    transform: rotate(45deg);
}

.topbar.is-nav-open .h-nav-toggle__icon::after {
    top: 0;
    transform: rotate(-45deg);
}

.h-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.h-nav .nav-link {
    text-decoration: none;
    color: #23486b;
    font-size: 14px;
    font-weight: 600;
    padding: 9px 14px;
    border-radius: 9px;
    border: 1px solid transparent;
}

.h-nav .nav-link:hover {
    background: #eef5fd;
}

.h-nav .nav-link.active {
    color: var(--brand-primary);
    border-color: #bdd7ee;
    background: #eaf3fa;
}

/* Packages â€” classic hover submenu (desktop), tap toggle (mobile); like multi-level service nav */
.h-nav .nav-packages-dd.nav-submenu {
    position: relative;
}

.h-nav .nav-submenu__trigger.nav-packages-toggle {
    position: relative;
    border: none;
    background: transparent;
    padding: 9px 30px 9px 14px;
    /* Match .h-nav .nav-link (do not use font: inherit â€” it overrides nav-link size/weight) */
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: inherit;
    letter-spacing: inherit;
    cursor: pointer;
    text-align: left;
}

.h-nav .nav-submenu__trigger.nav-packages-toggle::after {
    content: "";
    position: absolute;
    right: 14px;
    top: 50%;
    width: 6px;
    height: 6px;
    margin-top: -5px;
    border-right: 2px solid #23486b;
    border-bottom: 2px solid #23486b;
    transform: rotate(45deg);
    transition: transform 0.2s ease, margin-top 0.2s ease;
}

.h-nav .nav-submenu.nav-submenu--open .nav-submenu__trigger.nav-packages-toggle::after {
    margin-top: -2px;
    transform: rotate(-135deg);
}

.h-nav .nav-submenu__panel {
    position: absolute;
    left: 0;
    top: calc(100% + 4px);
    min-width: 12.5rem;
    margin: 0;
    padding: 8px;
    list-style: none;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--white);
    box-shadow: 0 14px 38px rgba(15, 122, 216, 0.14);
    z-index: 1055;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    pointer-events: none;
    transition:
        opacity 0.22s ease,
        transform 0.22s ease,
        visibility 0.22s;
}

/* Invisible bridge so moving pointer from label to panel does not close (hover gap) */
.h-nav .nav-submenu__panel::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -8px;
    height: 8px;
}

@media (min-width: 769px) and (hover: hover) {
    .h-nav .nav-packages-dd:hover .nav-submenu__panel,
    .h-nav .nav-packages-dd:focus-within .nav-submenu__panel {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
}

.h-nav .nav-submenu.nav-submenu--open .nav-submenu__panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.h-nav .nav-submenu__link {
    display: block;
    text-decoration: none;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: inherit;
    letter-spacing: inherit;
    padding: 10px 14px;
    border-radius: 9px;
    color: #23486b;
    border: 1px solid transparent;
}

.h-nav .nav-submenu__link:hover {
    background: #eef5fd;
    color: #0f5fa8;
}

.h-nav .nav-submenu__link.active {
    color: var(--brand-primary);
    border-color: #bdd7ee;
    background: #eaf3fa;
}

.h-nav .nav-submenu__trigger.nav-packages-toggle:focus-visible {
    outline: 2px solid var(--brand-primary);
    outline-offset: 2px;
    border-radius: 9px;
}

@media (max-width: 768px) {
    .h-nav .nav-submenu__panel {
        position: static;
        width: 100%;
        margin-top: 0;
        box-shadow: none;
        transform: none;
        transition: opacity 0.2s ease, visibility 0.2s;
    }

    .h-nav .nav-submenu:not(.nav-submenu--open) .nav-submenu__panel {
        display: none;
    }

    .h-nav .nav-submenu.nav-submenu--open .nav-submenu__panel {
        display: block;
        margin-top: 6px;
        padding: 6px 0 6px 8px;
    }

    .h-nav .nav-submenu__panel::before {
        display: none;
    }
}

.top-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn {
    border: none;
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--brand-primary);
    color: var(--white);
}

.top-actions .btn-visit-site {
    background: #fff;
    color: var(--brand-primary, #0f7ad8);
    border: 2px solid #bdd7ee;
}

.top-actions .btn-visit-site:hover {
    background: #f0f7ff;
    color: var(--brand-primary, #0f7ad8);
}

.page-wrap {
    max-width: 1280px;
    margin: 24px auto 40px;
    padding: 0 16px;
}

.welcome {
    margin-bottom: 18px;
}

.welcome h1 {
    margin: 0 0 6px;
    font-size: 24px;
    color: var(--brand-dark);
}

.welcome p {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin-bottom: 18px;
    align-items: stretch;
}

.stat-card {
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    border-radius: 14px;
    padding: 16px;
}

.stat-title {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--brand-primary);
    margin: 0;
    line-height: 1.1;
}

.card-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 16px;
    margin-bottom: 18px;
}

.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 16px;
}

.card h3 {
    margin: 0 0 14px;
    font-size: 17px;
    color: var(--brand-dark);
}

.table-wrap {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 750px;
}

th,
td {
    border-bottom: 1px solid #edf3f9;
    text-align: left;
    padding: 11px 9px;
    font-size: 13px;
}

th {
    color: var(--brand-dark);
    background: var(--brand-light);
    font-weight: 600;
}

.badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 9px;
    border-radius: 999px;
    color: var(--white);
    background: var(--brand-primary);
}

.badge.rent {
    background: #0f766e;
}

.badge.pg {
    background: #7c3aed;
}

.query-box {
    background: #0f172a;
    color: #d1d5db;
    border-radius: 12px;
    padding: 14px;
    overflow: auto;
    font-size: 12px;
    line-height: 1.6;
    white-space: pre-wrap;
}

.chart-holder {
    height: 300px;
}

@media (max-width: 992px) {
    .card-grid {
        grid-template-columns: 1fr;
    }
}


/* Post property step form */
.post-step-wrap {
    max-width: 980px;
    margin: 0 auto;
}

.step-indicator {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #eaf3fa;
    color: #014f8a;
    font-size: 13px;
    font-weight: 600;
}

.required {
    color: #dc2626;
}

.step-action-row {
    margin-top: 20px;
}

.helper-muted {
    color: #64748b;
    font-size: 14px;
}

.field-error {
    display: none;
    margin-top: 6px;
    color: #dc2626;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
}

.step-preview {
    margin-top: 16px;
    padding: 14px;
    border-radius: 10px;
    border: 1px dashed #bdd7ee;
    background: #f8fbff;
    color: #23486b;
    font-weight: 500;
}

/* Smaller and cleaner typography for post property step 1 */
.post-step-wrap .step-title {
    font-size: 24px;
    margin-bottom: 14px;
    line-height: 1.25;
}

.post-step-wrap .choice-label {
    font-size: 14px;
    margin-bottom: 8px;
}

.post-step-wrap .radio-choices label {
    font-size: 14px;
    gap: 8px;
}

.post-step-wrap .radio-choices input[type="radio"] {
    width: 16px;
    height: 16px;
}

.post-step-wrap .type-chip-wrap {
    gap: 10px;
}

.post-step-wrap .type-chip {
    font-size: 13px;
    padding: 8px 14px;
    border-radius: 999px;
}

.post-step-layout {
    display: grid;
    grid-template-columns: minmax(300px, 340px) minmax(0, 1fr);
    gap: 22px;
    align-items: stretch;
}

.post-left-panel {
    display: grid;
    gap: 18px;
    height: 100%;
}

.stepper-card,
.score-card {
    background: #f3f5f9;
    border-radius: 18px;
    padding: 24px 22px;
    border: 1px solid #e1e8f2;
}

.stepper-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 0 0 18px;
}

.stepper-item:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 17px;
    width: 2px;
    height: calc(100% + 2px);
    background: #cfd6e0;
}

.stepper-item.active:not(:last-child)::after {
    background: linear-gradient(#1e86d8 0 42%, #c8ccd5 42% 100%);
}

.stepper-item .dot {
    width: 15px;
    height: 15px;
    min-width: 15px;
    border-radius: 50%;
    border: 2px solid #a7b1c1;
    background: #fff;
    margin-top: 2px;
    z-index: 1;
}

.stepper-item.active .dot {
    border-color: #0f7ad8;
    box-shadow: inset 0 0 0 3px #fff;
    background: #0f7ad8;
}

.stepper-item.done .dot {
    border-color: #0f7ad8;
    background: #0f7ad8;
}

.stepper-item.done h4 {
    color: #0f7ad8;
}

.stepper-item.done:not(:last-child)::after {
    background: #0f7ad8;
}

.stepper-item h4 {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.18;
}

.stepper-item p {
    margin: 4px 0 0;
    font-size: 13px;
    color: var(--text-muted);
}

.score-card {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 135px;
}

.score-ring {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: conic-gradient(#2eb24e 0 8%, #d7d9df 8% 100%);
    display: grid;
    place-items: center;
}

.score-ring span {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #f3f5f9;
    display: grid;
    place-items: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
}

.score-text h4 {
    margin: 0;
    font-size: 18px;
    line-height: 1.1;
    color: var(--text-main);
}

.score-text p {
    margin: 4px 0 0;
    font-size: 12px;
    line-height: 1.35;
    color: var(--text-muted);
    max-width: 190px;
}

.post-step-wrap.card {
    height: 100%;
    min-height: 560px;
    max-width: none;
    width: 100%;
    margin: 0;
}

.post-step-wrap .basic-step-card {
    min-height: 460px;
    border: 1px solid #e1e8f2;
}

.post-step-wrap .step-indicator {
    margin-bottom: 18px;
}

.post-step-wrap form {
    width: 100%;
}

.form-grid-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.step-select,
.step-input {
    width: 100%;
    height: 42px;
    border-radius: 10px;
    border: 1px solid #d4deea;
    background: #fff;
    font-size: 14px;
    color: #24384f;
    padding: 9px 12px;
    outline: none;
}

.step-select:focus,
.step-input:focus {
    border-color: #1f7ed7;
    box-shadow: 0 0 0 3px rgba(31, 126, 215, 0.12);
}

.btn-light-step {
    background: #e8edf4;
    color: #203650;
    margin-right: 8px;
}

.compact-radio {
    gap: 18px;
}

.compact-radio label {
    font-size: 13px;
}

.select-badge-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.select-badge {
    font-size: 12px;
    padding: 7px 12px;
}

.check-choices {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    color: #2a3f58;
}

.check-choices label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.inline-checks {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
}

.input-group-rupee {
    display: flex;
    align-items: stretch;
}

.rupee-symbol {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border: 1px solid #d4deea;
    border-right: 0;
    border-radius: 10px 0 0 10px;
    background: #f4f8fd;
    color: #345271;
    font-size: 13px;
    font-weight: 600;
    min-width: 46px;
}

.input-group-rupee .step-input {
    border-radius: 0 10px 10px 0;
}

.mt-6 {
    margin-top: 6px;
}

.btn-link-additional {
    border: none;
    background: transparent;
    color: #0f7ad8;
    padding: 0;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.additional-pricing-wrap {
    border: 1px dashed #c7d9ea;
    border-radius: 10px;
    padding: 12px;
    background: #f8fbff;
}

.inline-add-wrap {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 8px;
}

.inline-add-wrap .step-input {
    flex: 1;
}

.input-group-split {
    display: grid;
    grid-template-columns: 1fr 110px;
}

.input-group-split .step-input {
    border-radius: 10px 0 0 10px;
    border-right: 0;
}

.input-group-split .step-select {
    border-radius: 0 10px 10px 0;
}

.road-width-wrap {
    max-width: 360px;
}

.step-input-file {
    width: 100%;
    border-radius: 10px;
    border: 1px dashed #c7d9ea;
    background: #f8fbff;
    padding: 10px 12px;
    font-size: 14px;
    color: #24384f;
}

.image-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
    margin: 10px 0 18px;
}

.image-preview-card {
    border: 1px solid #e1e8f2;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
}

.image-preview-card img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    display: block;
}

.image-preview-meta {
    padding: 8px 10px;
    font-size: 12px;
    color: #2a3f58;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.image-remove-btn {
    width: 100%;
    border: 0;
    border-top: 1px solid #edf3f9;
    padding: 8px 10px;
    background: #f8fafc;
    cursor: pointer;
    font-weight: 600;
    color: #b42318;
    font-size: 12px;
}

.step-textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #d4deea;
    background: #fff;
    font-size: 14px;
    color: #24384f;
    padding: 10px 12px;
    outline: none;
    resize: vertical;
}

.step-textarea:focus {
    border-color: #1f7ed7;
    box-shadow: 0 0 0 3px rgba(31, 126, 215, 0.12);
}

.success-wrap {
    padding: 6px 2px 2px;
}

.success-page {
    max-width: 980px;
    margin: 0 auto;
}

.success-shell {
    border: 1px solid #e1e8f2;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    box-shadow: 0 14px 35px rgba(15, 122, 216, 0.10);
    padding: 26px 22px;
}

.success-shell--sale {
    --success-accent: #0f7ad8;
    --success-soft: rgba(15, 122, 216, 0.12);
}

.success-shell--rent {
    --success-accent: #0f9f6a;
    --success-soft: rgba(15, 159, 106, 0.12);
}

.success-shell--pg {
    --success-accent: #8f56d9;
    --success-soft: rgba(143, 86, 217, 0.12);
}

.success-badge {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--success-soft, rgba(15, 122, 216, 0.12));
    color: var(--success-accent, #0f7ad8);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 10px;
}

.success-hero-head {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: center;
}

.success-hero-copy {
    min-width: 0;
}

.success-hero-icon {
    color: var(--success-accent, #0f7ad8);
}

.success-hero {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 14px;
}

.success-title {
    margin: 0;
    font-size: 20px;
    color: #12335d;
}

.success-sub {
    margin: 4px 0 0;
    color: #64748b;
    font-size: 13px;
}

.success-feature {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 14px;
    align-items: start;
    border: 1px solid #e6eff9;
    background: #fff;
    border-radius: 16px;
    padding: 16px 14px;
    margin-top: 14px;
}

.success-feature-redesign {
    grid-template-columns: 300px 1fr;
    gap: 16px;
}

.success-preview {
    border: 1px solid #e6eff9;
    border-radius: 14px;
    min-height: 232px;
    overflow: hidden;
    background: #f7fbff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-preview img {
    width: 100%;
    height: 100%;
    min-height: 232px;
    object-fit: cover;
    display: block;
}

.success-preview-fallback {
    min-height: 232px;
    width: 100%;
    background: linear-gradient(145deg, #f8fbff 0%, #eef4fd 100%);
    color: #64748b;
    font-weight: 600;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-kv {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
}

.kv-item-wide {
    grid-column: 1 / -1;
}

.kv-item {
    padding: 10px 12px;
    border: 1px solid #edf3f9;
    border-radius: 12px;
    background: #fbfdff;
}

.kv-item span {
    display: block;
    font-size: 12px;
    color: #64748b;
    margin-bottom: 4px;
}

.kv-item strong {
    display: block;
    font-size: 13px;
    color: #12335d;
    line-height: 1.25;
    word-break: break-word;
}

.success-actions {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.success-banner-cta {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid #e6eff9;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.success-banner-cta .success-badge {
    margin-bottom: 2px;
}

.success-banner-cta-lead {
    margin: 0 0 2px !important;
    max-width: 520px;
}

@media (max-width: 640px) {
    .success-hero-head {
        grid-template-columns: 1fr;
    }
    .success-hero-icon {
        display: none;
    }
    .success-feature-redesign {
        grid-template-columns: 1fr;
    }
    .success-preview,
    .success-preview-fallback,
    .success-preview img {
        min-height: 190px;
    }
    .success-feature {
        grid-template-columns: 1fr;
    }
    .success-kv {
        grid-template-columns: 1fr;
    }
}

.success-package-details {
    margin-top: 20px;
    padding: 20px 22px;
    border: 1px solid var(--border, #e2e8f0);
    border-radius: 16px;
    background: #f8fafc;
}

.success-package-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
}

.success-package-title {
    margin: 0 0 4px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--brand-dark, #0f172a);
}

.success-package-tag {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: #1563a8;
}

.success-package-pricebox {
    text-align: right;
    flex-shrink: 0;
}

.success-package-price {
    display: block;
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f7ad8;
    line-height: 1.1;
}

.success-package-days {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: #64748b;
}

.success-package-note {
    margin: 0 0 14px !important;
}

.success-package-feats {
    margin-bottom: 0 !important;
}

.pp-package-pick {
    margin-top: 8px;
}

.pp-package-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 12px;
    align-items: stretch;
}

@media (max-width: 900px) {
    .pp-package-detail-grid {
        grid-template-columns: 1fr;
    }
    .success-package-head {
        flex-direction: column;
    }
    .success-package-pricebox {
        text-align: left;
    }
}

.pp-package-detail {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 22px 20px 18px;
    border: 2px solid var(--border, #dbe3ee);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    cursor: pointer;
    text-align: left;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.pp-package-detail:hover {
    border-color: #9ec9f5;
}

.pp-package-detail.is-selected {
    border-color: #0f7ad8;
    box-shadow: 0 0 0 3px rgba(15, 122, 216, 0.12), 0 12px 28px rgba(15, 122, 216, 0.1);
}

.pp-package-detail--premium {
    background: linear-gradient(180deg, #f8fbff 0%, #fff 48%);
}

.pp-package-detail--premium.is-selected {
    border-color: #0f7ad8;
}

.pp-package-detail__ribbon {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #0f7ad8, #0858a8);
    padding: 5px 10px;
    border-radius: 999px;
}

.pp-package-detail__head {
    margin-bottom: 6px;
    padding-right: 72px;
}

.pp-package-detail__plan {
    margin: 0 0 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
}

.pp-package-detail__price {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand-dark, #0f172a);
    line-height: 1.1;
}

.pp-package-detail__meta {
    margin: 8px 0 0;
    font-size: 13px;
    line-height: 1.45;
    color: #64748b;
}

.pp-package-detail__tag {
    margin: 0 0 14px;
    font-size: 13px;
    font-weight: 600;
    color: #1563a8;
}

.pp-package-detail__feats {
    flex: 1 1 auto;
    margin-bottom: 16px !important;
}

.pp-package-detail__foot {
    margin-top: auto;
    padding-top: 4px;
}

.pp-package-detail__pick {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #0f7ad8;
    background: rgba(15, 122, 216, 0.08);
    border: 1px solid rgba(15, 122, 216, 0.18);
}

.pp-package-detail.is-selected .pp-package-detail__pick {
    color: #fff;
    background: #0f7ad8;
    border-color: #0f7ad8;
}

/* Property details page */
.pd-hero {
    margin-bottom: 14px;
}

.pd-hero-top {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 16px;
    align-items: start;
}

.pd-pill {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(15, 122, 216, 0.12);
    color: #0f7ad8;
    font-size: 12px;
    font-weight: 700;
}

.pd-title {
    margin: 10px 0 6px;
    font-size: 24px;
    color: #12335d;
}

.pd-sub {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: #64748b;
    font-size: 13px;
}

.pd-sub-item {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.pd-price {
    border: 1px solid #e1e8f2;
    border-radius: 16px;
    background: #fff;
    padding: 14px 14px;
    box-shadow: 0 10px 26px rgba(15, 122, 216, 0.08);
}

.pd-price-label {
    font-size: 12px;
    color: #64748b;
}

.pd-price-value {
    margin-top: 6px;
    font-size: 22px;
    font-weight: 700;
    color: #0f7ad8;
}

.pd-price-id {
    margin-top: 8px;
    font-size: 12px;
    color: #64748b;
}

.pd-tabs.card {
    padding: 0;
    overflow: hidden;
}

.pd-tabbar {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    padding: 12px 12px;
    border-bottom: 1px solid #edf3f9;
    background: #fbfdff;
}

.pd-tab {
    border: 1px solid transparent;
    background: transparent;
    border-radius: 12px;
    padding: 10px 12px;
    cursor: pointer;
    font-weight: 700;
    font-size: 13px;
    color: #23486b;
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.pd-tab.active {
    background: #eaf3fa;
    border-color: #bdd7ee;
    color: #0f7ad8;
}

.pd-panel {
    display: none;
    padding: 14px 14px 16px;
}

.pd-panel.active {
    display: block;
}

.pd-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.pd-item {
    border: 1px solid #edf3f9;
    border-radius: 12px;
    background: #fbfdff;
    padding: 10px 12px;
}

.pd-item span {
    display: block;
    font-size: 12px;
    color: #64748b;
    margin-bottom: 4px;
}

.pd-item strong {
    display: block;
    font-size: 13px;
    color: #12335d;
    line-height: 1.25;
    word-break: break-word;
}

.pd-pill-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 10px;
    align-items: start;
    margin-top: 10px;
}

.pd-pill-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    border-radius: 10px;
    border: 1px solid #e6eff9;
    background: #fbfdff;
    color: #23486b;
    font-weight: 700;
    font-size: 12px;
}

.pd-badges {
    border: 1px solid #e6eff9;
    background: #fff;
    border-radius: 12px;
    padding: 10px 12px;
    color: #23486b;
    font-size: 13px;
    line-height: 1.45;
}

.pd-desc {
    margin-top: 12px;
    border: 1px solid #e6eff9;
    border-radius: 14px;
    background: #fff;
    padding: 12px 12px;
}

.pd-desc h4 {
    margin: 0 0 8px;
    font-size: 14px;
    color: #12335d;
}

.pd-desc p {
    margin: 0;
    color: #23486b;
    font-size: 13px;
    line-height: 1.6;
}

.pd-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
}

.pd-img {
    border: 1px solid #e1e8f2;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
}

.pd-img img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}

.pd-actions {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

@media (max-width: 980px) {
    .pd-hero-top {
        grid-template-columns: 1fr;
    }
    .pd-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .pd-grid {
        grid-template-columns: 1fr;
    }
    .pd-pill-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .post-step-layout {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .stepper-item h4 {
        font-size: 16px;
    }

    .stepper-item p {
        font-size: 12px;
    }

    .post-step-wrap.card {
        min-height: auto;
    }

    .post-step-wrap .basic-step-card {
        min-height: auto;
    }

    .form-grid-two {
        grid-template-columns: 1fr;
    }
}

/* â”€â”€â”€ User dashboard â€” matches post-property: Poppins + brand blues (#0f7ad8, #eaf3fa, #e1e8f2) â”€â”€â”€ */
body.dashboard-dash.dashboard-page {
    font-family: "Poppins", Arial, sans-serif;
    background:
        radial-gradient(ellipse 100% 80% at 0% -10%, rgba(15, 122, 216, 0.09), transparent 42%),
        radial-gradient(ellipse 80% 60% at 100% 0%, rgba(15, 122, 216, 0.06), transparent 40%),
        var(--brand-soft, #f4f9fd);
    color: var(--text-main, #1e2f45);
    min-height: 100vh;
    overflow-x: clip;
    max-width: 100%;
}

.dashboard-dash .dash-ambient {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(circle at 85% 20%, rgba(15, 122, 216, 0.05) 0%, transparent 32%),
        radial-gradient(circle at 15% 80%, rgba(15, 122, 216, 0.04) 0%, transparent 28%);
}

/* Same top bar treatment as body.dashboard-page (post-property shares this) */

.dashboard-dash .dash-shell {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 18px 56px;
    min-width: 0;
}

.dashboard-dash .dash-shell > * {
    min-width: 0;
    max-width: 100%;
}

/* Hero */
.dashboard-dash .dash-hero {
    display: grid;
    grid-template-columns: 1.15fr auto;
    gap: 28px;
    align-items: center;
    margin-bottom: 28px;
}

.dashboard-dash .dash-hero__core {
    padding: 8px 4px 8px 0;
}

.dashboard-dash .dash-eyebrow {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #014f8a;
}

.dashboard-dash .dash-hero__title {
    margin: 0 0 12px;
    font-size: clamp(1.65rem, 3.5vw, 2.35rem);
    font-weight: 700;
    line-height: 1.15;
    color: #062a55;
}

.dashboard-dash .dash-hero__name {
    color: var(--brand-primary, #0f7ad8);
}

.dashboard-dash .dash-hero__sub {
    color: #23486b;
    font-weight: 600;
}

.dashboard-dash .dash-hero__lead {
    margin: 0 0 22px;
    max-width: 36em;
    font-size: 15px;
    line-height: 1.55;
    color: var(--text-muted, #64748b);
}

.dashboard-dash .dash-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.dashboard-dash .dash-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dashboard-dash .dash-btn--solid {
    color: #fff;
    background: linear-gradient(135deg, #0f7ad8, #0a67bb);
    box-shadow: 0 8px 24px rgba(15, 122, 216, 0.32);
}

.dashboard-dash .dash-btn--solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(15, 122, 216, 0.38);
}

.dashboard-dash .dash-btn--line {
    color: var(--brand-primary, #0f7ad8);
    background: #fff;
    border: 2px solid #bdd7ee;
}

.dashboard-dash .dash-btn--line:hover {
    border-color: var(--brand-primary, #0f7ad8);
    background: var(--brand-light, #eaf3fa);
    transform: translateY(-1px);
}

.dashboard-dash .dash-btn--sm {
    padding: 8px 14px;
    font-size: 13px;
    border-radius: 12px;
}

.dashboard-dash .dash-hero__aside {
    text-align: center;
    padding: 12px;
}

.dashboard-dash .dash-orbit {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 8px;
}

.dashboard-dash .dash-orbit__ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px dashed rgba(15, 122, 216, 0.35);
    animation: dash-orbit-spin 24s linear infinite;
}

.dashboard-dash .dash-orbit__ring--b {
    inset: 12px;
    border-color: rgba(31, 126, 215, 0.38);
    animation-duration: 18s;
    animation-direction: reverse;
}

.dashboard-dash .dash-orbit__ring--c {
    inset: 24px;
    border-color: rgba(15, 118, 110, 0.32);
    animation-duration: 30s;
}

@keyframes dash-orbit-spin {
    to {
        transform: rotate(360deg);
    }
}

.dashboard-dash .dash-orbit__hub {
    position: absolute;
    inset: 36px;
    border-radius: 50%;
    background: linear-gradient(145deg, #0f7ad8, #1f7ed7);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: 800;
    box-shadow: 0 12px 36px rgba(15, 122, 216, 0.4);
}

.dashboard-dash .dash-orbit__caption {
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted, #64748b);
}

/* Stat bento */
.dashboard-dash .dash-bento {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
    align-items: stretch;
}

.dashboard-dash .dash-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 168px;
    border-radius: 18px;
    padding: 20px 20px 22px;
    overflow: hidden;
    border: 1px solid #e1e8f2;
    box-shadow: var(--shadow, 0 8px 24px rgba(15, 122, 216, 0.09));
    color: var(--text-main, #1e2f45);
    background: #fff;
}

.dashboard-dash .dash-tile--featured {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    grid-column: span 1;
}

.dashboard-dash .dash-tile--sale {
    background: linear-gradient(160deg, #f8fbff 0%, #eaf3fa 45%, #fff 100%);
}

.dashboard-dash .dash-tile--rent {
    background: linear-gradient(160deg, #f7fcfa 0%, #e8f5f3 42%, #fff 100%);
}

.dashboard-dash .dash-tile--pg {
    background: linear-gradient(160deg, #faf8ff 0%, #efe8ff 40%, #fff 100%);
}

.dashboard-dash .dash-tile__label {
    margin: 0 0 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #23486b;
}

.dashboard-dash .dash-tile__value {
    margin: 0;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1;
    color: #062a55;
}

.dashboard-dash .dash-tile__hint {
    margin: auto 0 0;
    min-height: 2.9em;
    font-size: 12px;
    line-height: 1.45;
    color: var(--text-muted, #64748b);
}

/* Spark tiles (sale/rent/pg) have no hint â€” reserve equal footer space */
.dashboard-dash .dash-tile:has(.dash-tile__spark):not(:has(.dash-tile__hint))::after {
    content: "";
    display: block;
    margin-top: auto;
    min-height: 2.9em;
    flex-shrink: 0;
}

.dashboard-dash .dash-tile__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: #fff;
}

.dashboard-dash .dash-tile__icon--indigo {
    background: linear-gradient(135deg, #0f7ad8, #1f7ed7);
}

.dashboard-dash .dash-tile__icon--sky {
    background: linear-gradient(135deg, #0e6ec8, #0f7ad8);
}

.dashboard-dash .dash-tile__icon--teal {
    background: linear-gradient(135deg, #0d9488, #14b8a6);
}

.dashboard-dash .dash-tile__icon--violet {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.dashboard-dash .dash-tile--live {
    background: linear-gradient(160deg, #f0fdf4 0%, #dcfce7 38%, #fff 100%);
}

.dashboard-dash .dash-tile--pending {
    background: linear-gradient(160deg, #fffbeb 0%, #fef3c7 40%, #fff 100%);
}

.dashboard-dash .dash-tile--package-premium {
    background: linear-gradient(160deg, #fffbeb 0%, #fde68a 35%, #fff 100%);
}

.dashboard-dash .dash-tile--package-free {
    background: linear-gradient(160deg, #f8fafc 0%, #e2e8f0 40%, #fff 100%);
}

.dashboard-dash .dash-tile--leads {
    background: linear-gradient(160deg, #fff1f2 0%, #ffe4e6 38%, #fff 100%);
}

.dashboard-dash .dash-tile__icon--emerald {
    background: linear-gradient(135deg, #059669, #34d399);
}

.dashboard-dash .dash-tile__icon--amber {
    background: linear-gradient(135deg, #d97706, #fbbf24);
}

.dashboard-dash .dash-tile__icon--gold {
    background: linear-gradient(135deg, #b45309, #eab308);
}

.dashboard-dash .dash-tile__icon--slate {
    background: linear-gradient(135deg, #475569, #64748b);
}

.dashboard-dash .dash-tile__icon--rose {
    background: linear-gradient(135deg, #e11d48, #fb7185);
}

.dashboard-dash .dash-tile__footlink {
    display: inline-block;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--brand-primary, #0f7ad8);
    text-decoration: none;
    flex-shrink: 0;
}

.dashboard-dash .dash-tile__footlink:hover {
    text-decoration: underline;
}

.dashboard-dash .dash-prop-card__pkg {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.dashboard-dash .dash-prop-card__pkg--premium {
    background: rgba(180, 83, 9, 0.93);
    color: #fff;
}

.dashboard-dash .dash-prop-card__pkg--free {
    background: rgba(71, 85, 105, 0.92);
    color: #fff;
}

.dashboard-dash .dash-prop-card__catalog-expired {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-align: center;
    background: rgba(127, 29, 29, 0.92);
    color: #fff;
    backdrop-filter: blur(8px);
}

.dashboard-dash .dash-tile__spark {
    position: absolute;
    right: 16px;
    bottom: 14px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: conic-gradient(from 180deg, rgba(15, 122, 216, 0.35) calc(var(--pct, 0) * 1%), #d7d9df 0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    color: #014f8a;
}

.dashboard-dash .dash-tile__spark::after {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    background: #f3f5f9;
}

.dashboard-dash .dash-tile__spark--teal::after {
    background: #f3f5f9;
}

.dashboard-dash .dash-tile__spark--violet {
    background: conic-gradient(from 180deg, rgba(124, 58, 237, 0.38) calc(var(--pct, 0) * 1%), #d7d9df 0);
    color: #6d28d9;
}

.dashboard-dash .dash-tile__spark--teal {
    background: conic-gradient(from 180deg, rgba(15, 118, 110, 0.42) calc(var(--pct, 0) * 1%), #d7d9df 0);
    color: #0f766e;
}

/* Charts row */
.dashboard-dash .dash-studio {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 18px;
    margin-bottom: 24px;
    align-items: start;
}

.dashboard-dash .dash-panel {
    border-radius: 18px;
    background: #fff;
    border: 1px solid #e1e8f2;
    box-shadow: var(--shadow, 0 8px 24px rgba(15, 122, 216, 0.09));
    padding: 22px 22px 18px;
    min-width: 0;
    max-width: 100%;
}

.dashboard-dash .dash-panel--accent {
    background: linear-gradient(165deg, #ffffff 0%, #f8fbff 50%, #f3f5f9 100%);
}

.dashboard-dash .dash-panel--wide {
    padding: 22px 22px 26px;
}

.dashboard-dash .dash-panel__head {
    margin-bottom: 16px;
}

.dashboard-dash .dash-panel__head--row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
}

.dashboard-dash .dash-panel__title {
    margin: 0 0 4px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #062a55;
}

.dashboard-dash .dash-panel__meta {
    margin: 0;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted, #64748b);
}

/* Listing performance / Premium ROI */
.dashboard-dash .dash-panel--performance {
    margin-bottom: 24px;
}
.dashboard-dash .dash-perf-summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}
.dashboard-dash .dash-perf-stat {
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid #e1e8f2;
    background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}
.dashboard-dash .dash-perf-stat__label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 6px;
}
.dashboard-dash .dash-perf-stat__value {
    display: block;
    font-size: 1.65rem;
    line-height: 1.1;
    font-weight: 800;
    color: #062a55;
}
.dashboard-dash .dash-perf-stat__hint {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: #64748b;
}
.dashboard-dash .dash-perf-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 18px;
    align-items: start;
    min-width: 0;
}
.dashboard-dash .dash-perf-chart-wrap,
.dashboard-dash .dash-perf-table-wrap {
    min-width: 0;
    max-width: 100%;
}
.dashboard-dash .dash-perf-chart-wrap {
    overflow: hidden;
}
.dashboard-dash .dash-perf-subtitle {
    margin: 0 0 10px;
    font-size: 13px;
    font-weight: 700;
    color: #062a55;
}
.dashboard-dash .dash-chart--compact {
    min-height: 260px;
}
.dashboard-dash .dash-perf-table-scroll {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid #e1e8f2;
    border-radius: 14px;
    background: #fff;
}
.dashboard-dash .dash-perf-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    min-width: 420px;
}
.dashboard-dash .dash-perf-table th,
.dashboard-dash .dash-perf-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #eef3f8;
    text-align: left;
    vertical-align: top;
}
.dashboard-dash .dash-perf-table thead th {
    background: #f4f9fd;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #062a55;
}
.dashboard-dash .dash-perf-table__link {
    display: block;
    font-weight: 600;
    color: #014f8a;
    text-decoration: none;
}
.dashboard-dash .dash-perf-table__link:hover {
    text-decoration: underline;
}
.dashboard-dash .dash-perf-table__id {
    display: block;
    font-size: 11px;
    color: #64748b;
    margin-top: 2px;
}
.dashboard-dash .dash-perf-pkg {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
}
.dashboard-dash .dash-perf-pkg--premium {
    background: #fff7e6;
    color: #9a6700;
}
.dashboard-dash .dash-perf-pkg--free {
    background: #f1f5f9;
    color: #475569;
}
.dashboard-dash .dash-perf-empty,
.dashboard-dash .dash-perf-upgrade {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: #64748b;
}
.dashboard-dash .dash-perf-upgrade {
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 12px;
    background: #f0f7ff;
    border: 1px solid #dbeafe;
}
@media (max-width: 991px) {
    .dashboard-dash .dash-panel--performance {
        min-width: 0;
    }

    .dashboard-dash .dash-perf-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dashboard-dash .dash-perf-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Banner slots booked (user dashboard) */
.dashboard-dash .dash-panel--banner-slots {
    margin-bottom: 24px;
}

.dashboard-dash .dash-banner-slots-empty {
    text-align: center;
    padding: 28px 20px;
    border-radius: 14px;
    background: #f8fbff;
    border: 1px dashed #bdd7ee;
}

.dashboard-dash .dash-banner-slots-empty__text {
    margin: 0 auto 16px;
    font-size: 14px;
    color: var(--text-muted, #64748b);
    line-height: 1.55;
    max-width: 440px;
}

.dashboard-dash .dash-slot-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 14px;
    border: 1px solid #e1e8f2;
    background: #fff;
}

.dashboard-dash .dash-slot-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    font-size: 13px;
    min-width: 760px;
}

.dashboard-dash .dash-slot-table thead th {
    background: #f4f9fd;
    font-weight: 600;
    color: #062a55;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 11px 12px;
    border-bottom: 1px solid #dbe8f4;
    text-align: left;
    white-space: nowrap;
}

.dashboard-dash .dash-slot-table tbody td {
    padding: 11px 12px;
    border-bottom: 1px solid #edf3f9;
    vertical-align: top;
    line-height: 1.4;
    color: #1e293b;
}

.dashboard-dash .dash-slot-table tbody tr:hover {
    background: #fafcff;
}

.dashboard-dash .dash-slot-table tbody tr:last-child td {
    border-bottom: none;
}

.dashboard-dash .dash-slot-table__num {
    width: 2.5rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: #64748b;
}

.dashboard-dash .dash-slot-table__nowrap {
    white-space: nowrap;
}

.dashboard-dash .dash-slot-table__ref code {
    font-size: 11px;
    word-break: break-all;
    color: #334155;
    background: #f1f5f9;
    padding: 2px 6px;
    border-radius: 6px;
}

.dashboard-dash .dash-banner-slots-foot {
    margin: 14px 0 0;
    font-size: 12px;
    color: var(--text-muted, #64748b);
}

.dashboard-dash .dash-banner-slots-foot a {
    color: var(--brand-primary, #0f7ad8);
    font-weight: 600;
    text-decoration: none;
}

.dashboard-dash .dash-banner-slots-foot a:hover {
    text-decoration: underline;
}

.dashboard-dash .dash-chart {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 300px;
}

.dashboard-dash .dash-chart--donut {
    min-height: 300px;
}

.dashboard-dash .dash-chart-fallback {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    border-radius: 14px;
    background: #f8fbff;
    border: 1px dashed #bdd7ee;
}

.dashboard-dash .dash-chart-fallback__t {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 600;
    color: #062a55;
}

.dashboard-dash .dash-chart-fallback__d {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-muted, #64748b);
    max-width: 260px;
}

/* Listing grid */
.dashboard-dash .dash-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.dashboard-dash .dash-prop-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e1e8f2;
    box-shadow: var(--shadow, 0 8px 24px rgba(15, 122, 216, 0.09));
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.dashboard-dash .dash-prop-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(15, 122, 216, 0.14);
}

.dashboard-dash .dash-prop-card:focus-visible {
    outline: 3px solid var(--brand-primary, #0f7ad8);
    outline-offset: 2px;
}

.dashboard-dash .dash-prop-card--sale {
    border-top: 4px solid var(--brand-primary, #0f7ad8);
}

.dashboard-dash .dash-prop-card--rent {
    border-top: 4px solid #0d9488;
}

.dashboard-dash .dash-prop-card--pg {
    border-top: 4px solid #7c3aed;
}

.dashboard-dash .dash-prop-card__visual {
    position: relative;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, var(--brand-light, #eaf3fa), #f4f9fd);
    overflow: hidden;
}

.dashboard-dash .dash-prop-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dashboard-dash .dash-prop-card__ph {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
}

.dashboard-dash .dash-prop-card__ph svg {
    opacity: 0.55;
}

.dashboard-dash .dash-prop-card__ribbon {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    background: rgba(15, 23, 42, 0.88);
    color: #fff;
    backdrop-filter: blur(8px);
}

.dashboard-dash .dash-prop-card--sale .dash-prop-card__ribbon {
    background: rgba(15, 122, 216, 0.95);
}

.dashboard-dash .dash-prop-card--rent .dash-prop-card__ribbon {
    background: rgba(13, 148, 136, 0.95);
}

.dashboard-dash .dash-prop-card--pg .dash-prop-card__ribbon {
    background: rgba(124, 58, 237, 0.95);
}

.dashboard-dash .dash-prop-card__body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.dashboard-dash .dash-prop-card__title {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    color: #062a55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dashboard-dash .dash-prop-card__loc {
    margin: 0;
    font-size: 13px;
    font-weight: 500;
    color: #23486b;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dashboard-dash .dash-prop-card__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.dashboard-dash .dash-prop-card__type {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
}

.dashboard-dash .dash-prop-card__date {
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
}

.dashboard-dash .dash-prop-card__price {
    margin: 4px 0 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--brand-dark, #1e2f45);
}

.dashboard-dash .dash-prop-card__id {
    font-size: 11px;
    font-weight: 700;
    font-family: ui-monospace, monospace;
    color: var(--brand-primary, #0f7ad8);
    margin-top: auto;
    padding-top: 4px;
}

.dashboard-dash .dash-list-empty {
    text-align: center;
    padding: 48px 24px;
    border-radius: 18px;
    background: #f8fbff;
    border: 2px dashed #bdd7ee;
}

.dashboard-dash .dash-list-empty__icon {
    color: #94a3b8;
    margin-bottom: 12px;
}

.dashboard-dash .dash-list-empty__title {
    margin: 0 0 8px;
    font-size: 1.25rem;
    font-weight: 600;
    color: #062a55;
}

.dashboard-dash .dash-list-empty__text {
    margin: 0 0 20px;
    font-size: 14px;
    color: #64748b;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.55;
}

@media (max-width: 1024px) {
    .dashboard-dash .dash-hero {
        grid-template-columns: 1fr;
    }

    .dashboard-dash .dash-hero__aside {
        justify-self: center;
    }

    .dashboard-dash .dash-bento {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .dashboard-dash .dash-studio {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1200px) {
    .dashboard-dash .dash-bento {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .dashboard-dash .dash-shell {
        padding: 18px 14px 40px;
    }

    .dashboard-dash .dash-bento {
        grid-template-columns: 1fr;
    }

    .dashboard-dash .dash-list-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-dash .dash-perf-summary {
        grid-template-columns: 1fr;
    }

    .dashboard-dash .dash-hero__title {
        font-size: 1.45rem;
    }

    .dashboard-dash .dash-tile {
        min-height: 0;
    }

    .dashboard-dash .dash-tile__value {
        font-size: 1.85rem;
    }

    .dashboard-dash .dash-panel {
        padding: 16px 14px;
    }

    .dashboard-dash .dash-chart--compact {
        min-height: 220px;
    }
}

@media (max-width: 767px) {
    .dashboard-dash .dash-hero {
        gap: 16px;
        margin-bottom: 22px;
    }

    .dashboard-dash .dash-hero__core {
        padding: 0;
    }

    .dashboard-dash .dash-hero__lead {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .dashboard-dash .dash-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .dashboard-dash .dash-hero__actions .dash-btn {
        width: 100%;
        justify-content: center;
    }

    .dashboard-dash .dash-bento {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .dashboard-dash .dash-panel__head--row {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .dashboard-dash .dash-panel__head--row .dash-btn {
        width: 100%;
        justify-content: center;
    }

    .dashboard-dash .dash-panel--wide.dash-panel--performance {
        padding: 16px 14px;
    }

    .dashboard-dash .dash-perf-summary {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .dashboard-dash .dash-perf-stat {
        padding: 12px 14px;
    }

    .dashboard-dash .dash-perf-stat__value {
        font-size: 1.35rem;
    }

    .dashboard-dash .dash-perf-table {
        min-width: 0;
        width: 100%;
        font-size: 12px;
    }

    .dashboard-dash .dash-perf-table-scroll {
        overflow-x: visible;
    }

    .dashboard-dash .dash-perf-table thead {
        display: none;
    }

    .dashboard-dash .dash-perf-table tbody tr {
        display: block;
        padding: 12px 14px;
        border-bottom: 1px solid #eef3f8;
    }

    .dashboard-dash .dash-perf-table tbody tr:last-child {
        border-bottom: none;
    }

    .dashboard-dash .dash-perf-table td {
        display: grid;
        grid-template-columns: minmax(72px, 34%) 1fr;
        gap: 8px 10px;
        align-items: start;
        padding: 5px 0;
        border-bottom: none;
    }

    .dashboard-dash .dash-perf-table td::before {
        content: attr(data-label);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        color: #64748b;
    }

    .dashboard-dash .dash-perf-table td[data-label="Listing"] {
        display: block;
        padding-bottom: 10px;
        margin-bottom: 4px;
        border-bottom: 1px solid #eef3f8;
    }

    .dashboard-dash .dash-perf-table td[data-label="Listing"]::before {
        display: none;
    }

    .dashboard-dash .dash-perf-table__link {
        word-break: break-word;
    }

    .dashboard-dash .dash-perf-table__id {
        display: block;
        margin-top: 2px;
        font-size: 11px;
    }

    .dashboard-dash .dash-chart--compact {
        min-height: 200px;
    }
}

/* â”€â”€â”€ User property list (reference-style horizontal cards, own listings only) â”€â”€â”€ */
.prop-list-page {
    background: var(--brand-soft, #f4f9fd);
    font-family: "Poppins", Arial, sans-serif;
    color: var(--text-main, #1e2f45);
    min-height: 100vh;
}

.pl-page {
    max-width: 1320px;
    margin: 0 auto;
    padding: 24px 16px 48px;
}

.pl-layout {
    display: grid;
    grid-template-columns: minmax(280px, 320px) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.pl-sidebar {
    position: sticky;
    top: 88px;
    background: #fff;
    border: 1px solid #e1e8f2;
    border-radius: 18px;
    box-shadow: var(--shadow, 0 8px 24px rgba(15, 122, 216, 0.09));
    overflow: hidden;
}

.pl-side-block {
    padding: 18px 20px;
    border-bottom: 1px solid #edf2f8;
}

.pl-side-block:last-of-type {
    border-bottom: none;
}

.pl-side-block--head {
    background: linear-gradient(180deg, #f8fbff 0%, #fff 100%);
}

.pl-side-title {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 600;
    color: #062a55;
}

.pl-side-lead {
    margin: 0;
    font-size: 13px;
    color: var(--text-muted, #64748b);
    line-height: 1.45;
}

.pl-filter-label {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #23486b;
}

.pl-hint {
    margin: 8px 0 0;
    font-size: 12px;
    color: var(--text-muted, #64748b);
    line-height: 1.4;
}

.pl-input,
.pl-select {
    width: 100%;
    height: 44px;
    border-radius: 10px;
    border: 1px solid #d4deea;
    background: #fff;
    font-size: 14px;
    font-family: inherit;
    padding: 0 12px;
    color: #24384f;
    outline: none;
}

.pl-input:focus,
.pl-select:focus {
    border-color: #1f7ed7;
    box-shadow: 0 0 0 3px rgba(31, 126, 215, 0.12);
}

.pl-input-wide {
    max-width: 100%;
}

.pl-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.pl-pill-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.pl-pill-grid.pl-pill-grid--stack {
    grid-template-columns: 1fr;
}

.pl-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.pl-pill input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.pl-pill span {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px 8px;
    border-radius: 999px;
    border: 1px solid #d4deea;
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    color: #23486b;
    transition: border-color 0.15s, background 0.15s;
}

.pl-pill input:checked + span {
    border-color: var(--brand-primary, #0f7ad8);
    background: var(--brand-light, #eaf3fa);
    color: var(--brand-primary, #0f7ad8);
}

.pl-toggle-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    cursor: pointer;
    margin: 0;
}

.pl-toggle-row input {
    position: absolute;
    opacity: 0;
}

.pl-toggle-ui {
    width: 42px;
    height: 24px;
    border-radius: 999px;
    background: #d4deea;
    position: relative;
    flex-shrink: 0;
    transition: background 0.2s;
}

.pl-toggle-ui::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    top: 2px;
    left: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s;
}

.pl-toggle-row input:checked + .pl-toggle-ui {
    background: var(--brand-primary, #0f7ad8);
}

.pl-toggle-row input:checked + .pl-toggle-ui::after {
    transform: translateX(18px);
}

.pl-toggle-text {
    font-size: 14px;
    font-weight: 600;
    color: #23486b;
}

.pl-applied-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.pl-chip-remove {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 11px;
    border-radius: 999px;
    background: var(--brand-light, #eaf3fa);
    border: 1px solid #bdd7ee;
    color: #014f8a;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

.pl-chip-remove:hover {
    background: #dfeef9;
}

.pl-clear-all {
    font-size: 12px;
    font-weight: 600;
    color: var(--brand-primary, #0f7ad8);
}

.pl-side-actions {
    padding: 0 20px 20px;
}

.pl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.pl-btn-primary {
    background: linear-gradient(135deg, #0f7ad8, #0a67bb);
    color: #fff;
    box-shadow: 0 8px 22px rgba(15, 122, 216, 0.28);
    width: 100%;
}

.pl-btn-primary:hover {
    transform: translateY(-1px);
}

.pl-btn-ghost {
    background: #fff;
    border: 1px solid #d4deea;
    color: var(--brand-primary, #0f7ad8);
}

/* Main column */
.pl-main {
    min-width: 0;
}

.pl-bc {
    font-size: 13px;
    color: var(--text-muted, #64748b);
    margin-bottom: 16px;
}

.pl-bc a {
    color: var(--brand-primary, #0f7ad8);
    text-decoration: none;
    font-weight: 600;
}

.pl-bc-sep {
    margin: 0 6px;
    color: #94a3b8;
}

.pl-main-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.pl-main-head .pl-flash {
    flex: 1 0 100%;
    margin: 0 0 6px;
}

.pl-flash {
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
}

.pl-flash--ok {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.pl-flash--danger {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.pl-flash--info {
    background: #eff6ff;
    color: #1e40af;
    border: 1px solid #bfdbfe;
}

.pl-title {
    margin: 0 0 6px;
    font-size: clamp(1.35rem, 2.8vw, 1.85rem);
    font-weight: 600;
    color: #062a55;
}

.pl-title-accent {
    color: var(--brand-primary, #0f7ad8);
    font-weight: 700;
}

.pl-sub {
    margin: 0;
    font-size: 14px;
    color: var(--text-muted, #64748b);
}

.pl-toolbar-right label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #23486b;
}

.pl-select-inline {
    width: auto;
    min-width: 160px;
}

.pl-quick-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
    padding-bottom: 4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.pl-quick-pill {
    display: inline-flex;
    align-items: center;
    padding: 9px 16px;
    border-radius: 999px;
    border: 1px solid #d4deea;
    background: #fff;
    color: #23486b;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-decoration: none;
    white-space: nowrap;
}

.pl-quick-pill:hover {
    border-color: var(--brand-primary, #0f7ad8);
    color: var(--brand-primary, #0f7ad8);
}

.pl-quick-pill.is-on {
    border-color: var(--brand-primary, #0f7ad8);
    background: var(--brand-light, #eaf3fa);
    color: var(--brand-primary, #0f7ad8);
}

.pl-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 16px;
    margin-top: 28px;
    padding: 18px 16px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.pl-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid #cbd5e1;
    background: #fff;
    color: #1e293b;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.pl-page-btn:hover:not(.pl-page-btn--disabled) {
    border-color: var(--brand-primary, #0f7ad8);
    color: var(--brand-primary, #0f7ad8);
}

.pl-page-btn--disabled {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
    background: #f1f5f9;
}

.pl-page-numbers {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pl-page-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 40px;
    padding: 0 8px;
    border-radius: 10px;
    border: 1px solid transparent;
    background: transparent;
    color: #475569;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.pl-page-num:hover {
    background: #fff;
    border-color: #cbd5e1;
}

.pl-page-num.is-active {
    border-color: var(--brand-primary, #0f7ad8);
    background: #fff;
    color: var(--brand-primary, #0f7ad8);
    box-shadow: 0 2px 10px rgba(15, 122, 216, 0.15);
}

.pl-page-ellipsis {
    padding: 0 4px;
    font-weight: 700;
    color: #94a3b8;
    user-select: none;
}

.pl-swal-popup {
    font-family: 'Poppins', system-ui, sans-serif;
    border-radius: 16px;
}

.pl-empty-card {
    background: #fff;
    border: 1px dashed #bdd7ee;
    border-radius: 18px;
    padding: 40px 24px;
    text-align: center;
}

.pl-empty-card h2 {
    margin: 0 0 8px;
    font-size: 1.2rem;
    color: #062a55;
}

.pl-empty-card p {
    margin: 0 0 20px;
    color: var(--text-muted, #64748b);
}

.pl-empty-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.pl-empty-actions .pl-btn-primary {
    width: auto;
}

.pl-card-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pl-prop-card {
    display: grid;
    grid-template-columns: minmax(260px, 40%) minmax(0, 1fr);
    background: #fff;
    border-radius: 18px;
    border: 1px solid #e1e8f2;
    box-shadow: 0 10px 32px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.pl-prop-card:hover {
    box-shadow: 0 14px 40px rgba(15, 122, 216, 0.12);
}

.pl-prop-card__media {
    position: relative;
    display: block;
    min-height: 220px;
    background: linear-gradient(135deg, var(--brand-light, #eaf3fa), #f4f9fd);
}

.pl-prop-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 220px;
}

.pl-prop-card__placeholder {
    height: 100%;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-muted, #64748b);
    font-size: 13px;
    font-weight: 600;
}

.pl-prop-card__placeholder svg {
    opacity: 0.45;
}

.pl-prop-card__media-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    z-index: 2;
}

.pl-img-badge {
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: rgba(6, 42, 85, 0.92);
    color: #fff;
}

.pl-img-badge--green {
    background: rgba(15, 118, 110, 0.95);
}

.pl-img-badge--amber {
    background: rgba(180, 130, 20, 0.95);
}

.pl-img-badge--expired {
    background: rgba(127, 29, 29, 0.95);
}

.pl-prop-card__media-foot {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: linear-gradient(180deg, transparent, rgba(15, 24, 40, 0.82));
    color: rgba(255, 255, 255, 0.95);
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.pl-prop-card__body {
    padding: 22px 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pl-prop-card__top-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.pl-prop-card__name {
    margin: 0;
    font-size: clamp(17px, 2vw, 22px);
    font-weight: 600;
    line-height: 1.28;
}

.pl-prop-card__name a {
    color: var(--brand-primary, #0f7ad8);
    text-decoration: none;
}

.pl-prop-card__name a:hover {
    text-decoration: underline;
}

.pl-ribbon-tag {
    flex-shrink: 0;
    padding: 7px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    background: var(--brand-light, #eaf3fa);
    color: var(--brand-primary, #0f7ad8);
}

.pl-prop-card__sub {
    margin: -4px 0 0;
    font-size: 14px;
    color: #23486b;
    line-height: 1.45;
}

.pl-price-row {
    padding: 14px 0;
    border-top: 1px solid #eef2f8;
    border-bottom: 1px solid #eef2f8;
}

.pl-price-main {
    font-size: 17px;
    font-weight: 700;
    color: #062a55;
}

.pl-price-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
    align-items: center;
}

.pl-prop-id {
    font-size: 12px;
    font-weight: 700;
    font-family: ui-monospace, monospace;
    color: var(--brand-primary, #0f7ad8);
}

.pl-cat-chip {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    background: #f3f5f9;
    color: #475569;
    text-transform: uppercase;
}

.pl-meta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.pl-near-label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted, #64748b);
}

.pl-soft-tag {
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 8px;
    background: #f3f5f9;
    color: #475569;
    font-weight: 500;
}

.pl-soft-tag--expired {
    background: #fef2f2;
    color: #991b1b;
    font-weight: 600;
    border: 1px solid #fecaca;
}

.pl-prop-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
    padding-top: 4px;
}

.pl-builder {
    font-size: 14px;
    color: var(--text-muted, #64748b);
}

.pl-foot-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
}

.pl-delete-inline {
    display: inline;
    margin: 0;
}

.pl-btn-delete {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: #fff;
    color: #b91c1c !important;
    border: 2px solid #f87171;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
}

.pl-btn-delete:hover {
    background: #fef2f2;
}

.pl-btn-upgrade {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    border-radius: 999px;
    background: var(--white, #fff);
    color: #0f7ad8 !important;
    border: 2px solid #0f7ad8;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.pl-btn-upgrade:hover {
    background: #eaf3fa;
}

.pl-btn-detail {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0f7ad8, #0a67bb);
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(15, 122, 216, 0.28);
}

.pl-btn-detail:hover {
    transform: translateY(-1px);
}

@media (max-width: 1024px) {
    .pl-layout {
        grid-template-columns: 1fr;
    }

    .pl-sidebar {
        position: static;
        top: auto;
    }
}

@media (max-width: 900px) {
    .pl-prop-card {
        grid-template-columns: 1fr;
    }

    .pl-prop-card__media {
        max-height: 280px;
    }

    .pl-prop-card__media img {
        max-height: 280px;
    }
}

@media (max-width: 768px) {
    .pl-main-head {
        flex-direction: column;
        align-items: stretch;
    }

    .pl-select-inline {
        width: 100%;
    }

    .pl-row-2 {
        grid-template-columns: 1fr;
    }
}

/* -------- Plans & upgrade (listing + banner checkout & receipts) --------
   Match .page-wrap / leads / transactions (1280 + 16px side padding). */
body.upgrade-page .up-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 16px 48px;
}

body.lead-page .up-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 16px 48px;
}

.lpk-highlight {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px 26px;
    box-shadow: var(--shadow);
    margin-bottom: 28px;
}

.lpk-highlight__title {
    margin: 0 0 16px;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--brand-dark);
}

.lpk-feat-list {
    margin: 0 !important;
}

.lpk-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 28px;
}

.lpk-meta-sep::before {
    content: ' Â· ';
}

.up-bc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.up-bc a {
    color: var(--brand-primary);
    text-decoration: none;
}

.up-bc a:hover {
    text-decoration: underline;
}

.up-bc-sep {
    margin: 0 8px;
    opacity: 0.6;
}

.up-hero {
    margin-bottom: 32px;
}

.up-title {
    margin: 0 0 10px;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 700;
    color: var(--brand-dark);
    letter-spacing: -0.02em;
}

.up-lead {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: var(--text-muted);
    max-width: 720px;
}

.up-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    align-items: stretch;
}

@media (max-width: 860px) {
    .up-cards {
        grid-template-columns: 1fr;
    }
}

.up-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px 26px 24px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.up-card--featured {
    border-color: #9ec9f5;
    background: linear-gradient(180deg, #f8fbff 0%, var(--white) 42%);
    box-shadow: 0 12px 40px rgba(15, 122, 216, 0.14);
}

.up-ribbon {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    background: linear-gradient(135deg, #0f7ad8, #0858a8);
    padding: 6px 12px;
    border-radius: 999px;
}

.up-card-head {
    margin-bottom: 8px;
    padding-right: 96px;
}

.up-card--featured .up-card-head {
    padding-right: 120px;
}

.up-plan-name {
    margin: 0 0 6px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.up-price {
    margin: 0;
    line-height: 1.1;
}

.up-price-amt {
    font-size: 2.15rem;
    font-weight: 700;
    color: var(--brand-dark);
}

.up-price-meta {
    margin: 8px 0 0;
    font-size: 13px;
    color: var(--text-muted);
}

.up-card-tag {
    margin: 0 0 18px;
    font-size: 13px;
    font-weight: 600;
    color: #1563a8;
}

.up-feat-list {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.up-feat {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.4;
}

.up-feat--ok {
    color: var(--text-main);
}

.up-feat--off {
    color: #94a3b8;
    opacity: 0.85;
}

.up-feat--off span:last-child {
    text-decoration: line-through;
    text-decoration-color: rgba(148, 163, 184, 0.65);
}

.up-feat-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.up-feat-icon--yes {
    background: #dcfce7;
    color: #166534;
}

.up-feat-icon--no {
    background: #f1f5f9;
    color: #94a3b8;
}

.up-card-foot {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    margin-top: auto;
}

.up-btn-wide {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding-block: 12px;
}

.up-btn-disabled {
    pointer-events: none;
    opacity: 0.85;
}

.up-card-link {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
}

.up-note {
    margin-top: 32px;
    padding: 18px 20px;
    border-radius: 14px;
    background: var(--brand-light);
    border: 1px solid var(--border);
    font-size: 13px;
    line-height: 1.5;
    color: #334155;
}

.up-note strong {
    color: var(--brand-dark);
}

.up-note--warn {
    background: #fffbeb;
    border-color: #fde68a;
}

.up-pay-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 4px;
}

.up-pay-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.up-pay-select {
    width: 100%;
    padding: 11px 12px;
    border-radius: 10px;
    border: 1px solid var(--border);
    font-family: inherit;
    font-size: 14px;
    background: var(--white);
    color: var(--text-main);
}

.up-pay-select:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.up-pay-msg {
    margin: 0;
    font-size: 13px;
    min-height: 1.25em;
}

/* ----- Banner package (multi-line checkout) ----- */
.bn-pack-page .bn-pack-form {
    margin-top: 8px;
}

.bn-pack-page .bn-actions-bottom {
    margin-top: 16px;
}

.bn-pack-page .bn-actions-bottom .btn {
    width: 100%;
    text-align: center;
}

@media (min-width: 720px) {
    .bn-pack-page .bn-actions-bottom .btn {
        width: auto;
    }
}

.bn-pack-page .bn-lines {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bn-pack-page .bn-line-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    gap: 12px;
}

.bn-pack-page .bn-line-label {
    font-weight: 600;
    color: var(--brand-dark);
}

.bn-pack-page .bn-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
}

.bn-pack-page .bn-field--full {
    grid-column: 1 / -1;
}

/* Match post-property Step 1: labels + chips + radios (see .post-step-wrap) */
.bn-pack-page .post-step-wrap .choice-label {
    display: block;
    font-weight: 600;
    color: #2e4563;
}

.bn-pack-page .post-step-wrap .step-select {
    width: 100%;
}

.bn-pack-page .bn-purpose-row {
    margin-top: 2px;
}

.bn-pack-page .bn-line-money {
    font-size: 14px;
    color: #334155;
}

.bn-pack-page .bn-category-hint {
    margin-top: 6px;
}

.bn-pack-page .bn-summary {
    margin-top: 22px;
}

.bn-pack-page .bn-total-row {
    font-size: 16px;
    margin: 0 0 8px;
}

.bn-pack-page .bn-pay-msg {
    min-height: 1.25em;
    font-size: 13px;
    margin: 0 0 12px;
}

.bn-pack-page .bn-spec-reference {
    margin-bottom: 20px;
}

.bn-pack-page .bn-spec-list {
    margin: 0;
    padding-left: 1.2rem;
}

.bn-pack-page .bn-upload-block {
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
}

.bn-pack-page .bn-size-hint {
    margin: 4px 0 10px;
    font-weight: 500;
    color: #0f172a;
}

.bn-pack-page .bn-img-preview-wrap {
    margin-top: 12px;
}

.bn-pack-page .bn-img-preview {
    margin-top: 8px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px dashed #cbd5e1;
    background: #f8fafc;
    padding: 8px;
    text-align: center;
}

.bn-pack-page .bn-img-preview__img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

/* ----- Banner package v2 (checkout redesign) ----- */
.bn-pack-v2 .bn-pack-hero__lead {
    max-width: 720px;
}

.bn-pack-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
}

.bn-pack-steps__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    background: #ffffff;
    border: 1px solid #dce8f4;
}

.bn-pack-steps__item span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
    color: #64748b;
    background: #eef4fb;
}

.bn-pack-steps__item--active {
    color: #014f8a;
    border-color: #9ec5ea;
    background: linear-gradient(135deg, #f0f7ff, #ffffff);
}

.bn-pack-steps__item--active span {
    color: #fff;
    background: linear-gradient(135deg, #0f7ad8, #014f8a);
}

.bn-rate-showcase {
    margin: 28px 0 24px;
}

.bn-rate-showcase__title {
    margin: 0 0 14px;
    font-size: 18px;
    font-weight: 700;
    color: var(--brand-dark, #161e2d);
}

.bn-rate-showcase__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.bn-rate-card {
    padding: 18px 16px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #dce8f4;
    box-shadow: 0 8px 24px rgba(15, 40, 80, 0.06);
}

.bn-rate-card--featured {
    border-color: #0f7ad8;
    background: linear-gradient(165deg, #ffffff, #f0f7ff);
}

.bn-rate-card__head {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 10px;
}

.bn-rate-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, #e8f3fc, #d4e8fa);
    border: 1px solid #bdd7ee;
    flex-shrink: 0;
}

.bn-rate-card--top_banner .bn-rate-card__icon,
.bn-rate-card--featured .bn-rate-card__icon {
    background: linear-gradient(135deg, #0f7ad8, #014f8a);
}

.bn-rate-card__name {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #161e2d;
}

.bn-rate-card__size {
    margin: 2px 0 0;
    font-size: 12px;
    color: #64748b;
}

.bn-rate-card__from {
    margin: 0 0 10px;
    font-size: 13px;
    color: #64748b;
}

.bn-rate-card__from strong {
    font-size: 22px;
    color: #014f8a;
    margin-left: 4px;
}

.bn-rate-card__tiers {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bn-rate-card__tiers li {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 8px;
    background: #f4f9fd;
    font-size: 12px;
    color: #475569;
}

.bn-rate-card__tiers strong {
    color: #014f8a;
    font-weight: 800;
}

.bn-checkout {
    margin-top: 8px;
}

.bn-pack-v2 .bn-form-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 22px;
    align-items: start;
}

.bn-form-main__title {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 700;
    color: var(--brand-dark, #161e2d);
}

.bn-form-main__hint {
    margin: 0 0 16px;
    font-size: 14px;
    color: #64748b;
}

.bn-pack-v2 .bn-line {
    border: 1px solid #dce8f4;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(15, 40, 80, 0.05);
}

.bn-pack-v2 .bn-line-head {
    padding-bottom: 12px;
    margin-bottom: 16px;
    border-bottom: 1px solid #e8f0f8;
}

.bn-pack-v2 .bn-line-label {
    font-size: 15px;
    font-weight: 700;
    color: #014f8a;
}

.bn-form-aside {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bn-spec-panel {
    padding: 18px;
    border: 1px solid #dce8f4;
    border-radius: 16px;
}

.bn-spec-panel__title {
    margin: 0 0 12px;
    font-size: 14px;
    font-weight: 700;
    color: #161e2d;
}

.bn-spec-panel__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bn-spec-panel__list li {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #eef2f7;
    font-size: 13px;
}

.bn-spec-panel__list li:last-child {
    border-bottom: none;
}

.bn-spec-panel__list span {
    color: #014f8a;
    font-weight: 700;
    white-space: nowrap;
}

.bn-pack-v2 .bn-summary {
    padding: 22px 20px;
    border-radius: 16px;
    border: 1px solid #dce8f4;
    background: linear-gradient(165deg, #ffffff, #f8fbff);
    box-shadow: 0 12px 32px rgba(15, 122, 216, 0.1);
}

.bn-summary--sticky {
    position: sticky;
    top: 88px;
}

.bn-summary__title {
    margin: 0 0 14px;
    font-size: 16px;
    font-weight: 700;
    color: #161e2d;
}

.bn-pack-v2 .bn-total-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 15px;
    margin: 0 0 12px;
    color: #64748b;
}

.bn-pack-v2 .bn-total-row strong {
    font-size: 28px;
    font-weight: 800;
    color: #014f8a;
}

.bn-summary__pay {
    width: 100%;
    padding: 12px 16px;
    font-weight: 700;
}

.bn-summary__fine {
    margin: 12px 0 0;
    font-size: 11px;
    text-align: center;
    color: #94a3b8;
}

@media (max-width: 991px) {
    .bn-rate-showcase__grid {
        grid-template-columns: 1fr;
    }

    .bn-pack-v2 .bn-form-layout {
        grid-template-columns: 1fr;
    }

    .bn-summary--sticky {
        position: static;
    }
}

@media (max-width: 640px) {
    .bn-pack-v2 .bn-grid {
        grid-template-columns: 1fr;
    }
}

.pay-hist-muted {
    font-size: 12px;
    color: #64748b;
}

.pay-hist-code {
    font-size: 11px;
    word-break: break-all;
}

/* -------- Property leads (property-leads.php + DataTables) -------- */
body.leads-page {
    background: var(--brand-soft, #f4f9fd);
    min-height: 100vh;
}

.leads-page .leads-up-wrap.up-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 16px 48px;
}

.leads-page .leads-panel .card-header.leads-panel__head {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    border-bottom: 1px solid #e8eef4;
}

.leads-page .leads-empty-card {
    border-radius: 16px;
    overflow: hidden;
}

.leads-page .leads-table-shell {
    border-radius: 12px;
    border: 1px solid #e8eef4;
    background: #fff;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.leads-page .leads-table-shell .dataTables_wrapper {
    padding: 12px 12px 8px;
}

@media (min-width: 768px) {
    .leads-page .leads-table-shell .dataTables_wrapper {
        padding: 16px 16px 10px;
    }
}

.leads-page table.dataTable.leads-data-table {
    margin: 0 !important;
    width: 100% !important;
    min-width: 0 !important;
    table-layout: auto;
}

.leads-page table.dataTable.leads-data-table thead th {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #1e3a5f;
    border-bottom-width: 1px;
    white-space: nowrap;
}

.leads-page table.dataTable.leads-data-table thead th,
.leads-page table.dataTable.leads-data-table tbody td {
    padding: 11px 9px;
    vertical-align: middle;
}

.leads-page table.dataTable.leads-data-table tbody td.leads-col-msg {
    white-space: pre-wrap;
    word-break: break-word;
    max-width: min(320px, 28vw);
    min-width: 8rem;
    font-size: 13px;
    line-height: 1.45;
    color: #334155;
    vertical-align: top;
}

.leads-page table.dataTable.leads-data-table tbody td.leads-col-title {
    max-width: 14rem;
    word-break: break-word;
    vertical-align: top;
}

.leads-page table.dataTable.leads-data-table tbody td.leads-col-name {
    max-width: 10rem;
    word-break: break-word;
}

.leads-page table.dataTable.leads-data-table tbody td.leads-col-pid {
    white-space: nowrap;
    max-width: 10rem;
}

.leads-page .leads-pid-link {
    font-weight: 600;
    word-break: break-all;
    white-space: normal;
}

.leads-page table.dataTable.leads-data-table tbody td.leads-col-email {
    max-width: 14rem;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.leads-page table.dataTable.leads-data-table tbody td.leads-col-phone {
    max-width: 9.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-variant-numeric: tabular-nums;
}

.leads-page table.dataTable.leads-data-table tbody td.leads-col-status {
    vertical-align: middle;
}

.leads-page table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,
.leads-page table.dataTable.dtr-inline.collapsed > tbody > tr > th.child,
.leads-page table.dataTable > tbody > tr.child ul.dtr-details {
    width: 100%;
}

.leads-page table.dataTable > tbody > tr.child ul.dtr-details {
    list-style: none;
    margin: 0;
    padding: 12px 14px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.leads-page table.dataTable > tbody > tr.child ul.dtr-details > li {
    border-bottom: 1px solid #e8eef4;
    padding: 8px 0;
    font-size: 13px;
}

.leads-page table.dataTable > tbody > tr.child ul.dtr-details > li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Search + Export on one flex row (see DataTables dom fB inside .dt-toolbar-search-export) */
.leads-page .dataTables_wrapper .dt-toolbar-search-export,
.transactions-page .dataTables_wrapper .dt-toolbar-search-export {
    width: 100%;
}

.leads-page .dataTables_wrapper .dataTables_filter,
.transactions-page .dataTables_wrapper .dataTables_filter {
    float: none !important;
    margin: 0 !important;
    text-align: left;
}

.leads-page .dataTables_wrapper .dataTables_filter label,
.transactions-page .dataTables_wrapper .dataTables_filter label {
    display: inline-flex !important;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.leads-page .dataTables_wrapper .dataTables_filter input,
.transactions-page .dataTables_wrapper .dataTables_filter input {
    margin-left: 0;
    border-radius: 10px;
    border: 1px solid #cbd5e1;
    padding: 8px 12px;
    font-size: 14px;
    min-width: 200px;
    width: clamp(140px, 36vw, 320px);
    max-width: 100%;
}

.leads-page .dataTables_wrapper .dataTables_filter input:focus,
.transactions-page .dataTables_wrapper .dataTables_filter input:focus {
    outline: 2px solid rgba(15, 122, 216, 0.25);
    border-color: #0f7ad8;
}

.leads-page .dataTables_wrapper .dataTables_length,
.transactions-page .dataTables_wrapper .dataTables_length {
    margin: 0;
}

.leads-page .dataTables_wrapper .dataTables_length label,
.transactions-page .dataTables_wrapper .dataTables_length label {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    white-space: nowrap;
}

/* One chevron: `appearance: auto` drew the OS arrow on top of Bootstrap .form-selectâ€™s SVG caret. */
.leads-page .dataTables_wrapper .dataTables_length select,
.transactions-page .dataTables_wrapper .dataTables_length select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 10px;
    padding-right: 2.75rem !important;
    min-width: 5.75rem;
    font-size: 14px;
    line-height: 1.35;
    background-color: #fff;
}

.leads-page .dataTables_wrapper div.dt-buttons,
.transactions-page .dataTables_wrapper div.dt-buttons {
    float: none !important;
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center;
}

.leads-page .dataTables_wrapper div.dt-buttons .btn,
.transactions-page .dataTables_wrapper div.dt-buttons .btn {
    flex-shrink: 0;
}

.leads-page .dataTables_wrapper .dataTables_info {
    padding-top: 14px;
    font-size: 13px;
    color: #64748b;
}

.leads-page .dataTables_wrapper .dataTables_paginate {
    padding-top: 10px;
}

.leads-page .dataTables_wrapper .dataTables_paginate .pagination {
    gap: 4px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.leads-page .dataTables_wrapper div.dt-buttons .btn-success {
    font-weight: 600;
}

@media (max-width: 767px) {
    .leads-page .dataTables_wrapper .dt-toolbar-search-export,
    .transactions-page .dataTables_wrapper .dt-toolbar-search-export {
        justify-content: flex-start !important;
        flex-direction: column;
        align-items: stretch !important;
    }

    .leads-page .dataTables_wrapper .dataTables_filter label,
    .transactions-page .dataTables_wrapper .dataTables_filter label {
        flex-wrap: wrap;
        width: 100%;
    }

    .leads-page .dataTables_wrapper .dataTables_filter input,
    .transactions-page .dataTables_wrapper .dataTables_filter input {
        width: 100%;
        flex: 1 1 auto;
        min-width: 0;
    }

    .leads-page .dataTables_wrapper div.dt-buttons,
    .transactions-page .dataTables_wrapper div.dt-buttons {
        width: 100%;
        justify-content: stretch;
    }

    .leads-page .dataTables_wrapper div.dt-buttons .btn,
    .transactions-page .dataTables_wrapper div.dt-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

.leads-page table.dataTable thead th.dt-sno,
.transactions-page table.dataTable thead th.dt-sno {
    width: 3.25rem;
    text-align: center;
}

.leads-page table.dataTable tbody td.dt-sno,
.transactions-page table.dataTable tbody td.dt-sno {
    width: 3.25rem;
    text-align: center;
    font-weight: 600;
    color: #64748b;
    font-variant-numeric: tabular-nums;
}

/* -------- Transactions (payment-history.php + DataTables) -------- */
body.transactions-page {
    background: var(--brand-soft, #f4f9fd);
    min-height: 100vh;
}

.transactions-page .transactions-up-wrap.up-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 16px 48px;
}

.transactions-page .transactions-empty-card {
    border-radius: 16px;
    overflow: hidden;
}

.transactions-page .txn-panel .card-header.txn-panel__head {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    border-bottom: 1px solid #e8eef4;
}

/* Mirror leads-table-shell: border, scroll, inner DataTables padding */
.transactions-page .txn-table-shell {
    border-radius: 12px;
    border: 1px solid #e8eef4;
    background: #fff;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.transactions-page .txn-table-shell .dataTables_wrapper {
    padding: 12px 12px 8px;
}

@media (min-width: 768px) {
    .transactions-page .txn-table-shell .dataTables_wrapper {
        padding: 16px 16px 10px;
    }
}

.transactions-page table.dataTable.txn-data-table {
    margin: 0 !important;
    width: 100% !important;
    min-width: 0 !important;
    table-layout: auto;
}

.transactions-page table.dataTable.txn-data-table thead th {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #1e3a5f;
    border-bottom-width: 1px;
    white-space: nowrap;
}

.transactions-page table.dataTable.txn-data-table thead th,
.transactions-page table.dataTable.txn-data-table tbody td {
    padding: 11px 9px;
    vertical-align: middle;
}

.transactions-page table.dataTable.txn-data-table tbody td.txn-col-details {
    font-size: 13px;
    line-height: 1.45;
    max-width: 18rem;
    word-break: break-word;
    vertical-align: top;
}

.transactions-page .txn-detail-stack {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.transactions-page table.dataTable.txn-data-table tbody td.txn-col-action {
    vertical-align: middle;
    width: 1%;
    white-space: nowrap;
}

.transactions-page .txn-action-icon-btn {
    --bs-btn-padding-y: 0.2rem;
    --bs-btn-padding-x: 0.4rem;
    --bs-btn-font-size: 0;
    padding: 0.2rem 0.42rem;
    line-height: 1;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.transactions-page .txn-action-icon-btn .txn-view-icon {
    flex-shrink: 0;
    vertical-align: middle;
}

.transactions-page table.dataTable.txn-data-table tbody td.txn-col-amount {
    font-variant-numeric: tabular-nums;
}

.transactions-page table.dataTable.txn-data-table tbody td.txn-col-rzp code {
    display: inline-block;
    max-width: 100%;
}

.transactions-page table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,
.transactions-page table.dataTable.dtr-inline.collapsed > tbody > tr > th.child,
.transactions-page table.dataTable > tbody > tr.child ul.dtr-details {
    width: 100%;
}

.transactions-page table.dataTable > tbody > tr.child ul.dtr-details {
    list-style: none;
    margin: 0;
    padding: 12px 14px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.transactions-page table.dataTable > tbody > tr.child ul.dtr-details > li {
    border-bottom: 1px solid #e8eef4;
    padding: 8px 0;
    font-size: 13px;
}

.transactions-page table.dataTable > tbody > tr.child ul.dtr-details > li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.transactions-page .dataTables_wrapper .dataTables_info {
    padding-top: 14px;
    font-size: 13px;
    color: #64748b;
}

.transactions-page .dataTables_wrapper .dataTables_paginate {
    padding-top: 10px;
}

.transactions-page .dataTables_wrapper .dataTables_paginate .pagination {
    gap: 4px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.transactions-page .dataTables_wrapper div.dt-buttons .btn-success {
    font-weight: 600;
}

/* ----- Lead package / open-lead checkout (lead-package.php) ----- */
body.lm-pack-page {
    background: var(--brand-soft, #f4f9fd);
    min-height: 100vh;
}

body.lm-pack-page .lm-page-intro {
    margin: -2px 0 14px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-muted);
    max-width: 720px;
}

.lm-tier-showcase {
    margin-bottom: 28px;
}

.lm-tier-showcase__title {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 14px;
    color: var(--brand-dark, #0f172a);
}

.lm-tier-showcase__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

.lm-tier-card {
    background: #fff;
    border: 1px solid var(--border, #e2e8f0);
    border-radius: 14px;
    padding: 16px 14px;
    text-align: center;
    box-shadow: var(--shadow, 0 8px 24px rgba(15, 23, 42, 0.06));
}

.lm-tier-card__quota {
    margin: 0 0 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted, #64748b);
}

.lm-tier-card__price {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--brand-primary, #0f7ad8);
}

.lm-checkout__head {
    margin-bottom: 22px;
}

.lm-checkout .lpk-highlight__title.lm-checkout__title {
    margin-bottom: 8px;
}

.lm-checkout__intro {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-muted);
    max-width: 780px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
}

.lm-intro-lead {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
}

.lm-intro-sent {
    color: inherit;
}

.lm-quota-chip {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
}

.lm-quota-chip--ok {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}

.lm-quota-chip--warn {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.lbi-quota-line {
    margin-top: 12px;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
}

.lbi-quota-remain {
    display: inline-flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    padding: 6px 16px;
    border-radius: 12px;
}

.lbi-quota-remain--ok {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    color: #047857;
    border: 1px solid #6ee7b7;
    box-shadow: 0 2px 10px rgba(4, 120, 87, 0.14);
}

.lbi-quota-remain--warn {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.lbi-quota-note {
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 575px) {
    .lbi-quota-remain {
        font-size: 1.35rem;
        padding: 5px 14px;
    }
}

.lm-inbox-link {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    font-weight: 600;
    font-size: 13px;
    padding: 5px 12px;
    border-radius: 999px;
    border: 1px solid rgba(15, 122, 216, 0.35);
    background: rgba(255, 255, 255, 0.9);
    color: var(--brand-primary);
    text-decoration: none;
    white-space: nowrap;
    vertical-align: middle;
}

.lm-inbox-link::after {
    content: '';
    display: inline-block;
    margin-left: 5px;
    width: 0.35rem;
    height: 0.35rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
    opacity: 0.85;
    margin-bottom: 1px;
}

.lm-inbox-link:hover {
    background: var(--brand-light);
    border-color: var(--brand-primary);
}

@media (max-width: 420px) {
    .lm-inbox-link {
        width: auto;
        align-self: flex-start;
    }
}

.lm-form-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(272px, 326px);
    gap: clamp(18px, 3vw, 28px);
    align-items: start;
    margin-top: 12px;
}

@media (max-width: 991px) {
    .lm-form-layout {
        grid-template-columns: 1fr;
    }

    .lm-order-panel {
        order: -1;
    }

    .lm-order-card {
        position: relative;
        top: auto !important;
    }
}

.lm-field-hint {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0 0 18px;
    max-width: 640px;
    line-height: 1.55;
}

.lm-segments {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

body.lm-pack-page fieldset.lm-seg-card {
    margin: 0;
    border: 1px solid var(--border, #dbe8f4);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    background: #fafcfe;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

body.lm-pack-page fieldset.lm-seg-card.lm-seg-card--active {
    border-color: #7eb8f8;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.07);
    background: var(--white, #fff);
}

.lm-seg-card__head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
}

.lm-seg-card__label {
    flex: 1;
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--brand-dark);
    line-height: 1.35;
    cursor: pointer;
}

body.lm-pack-page .lm-seg-switch {
    padding-left: 0;
    margin: 0;
    min-height: 0;
}

body.lm-pack-page .lm-seg-switch .form-check-input {
    width: 2.65em;
    height: 1.35em;
    margin-top: 0;
    cursor: pointer;
}

body.lm-pack-page .lm-seg-switch .form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(15, 122, 216, 0.2);
}

body.lm-pack-page .lm-seg-switch .form-check-input:checked {
    background-color: var(--brand-primary);
    border-color: var(--brand-primary);
}

.lm-seg-card__body {
    border-top: 1px dashed #dbe5f2;
    padding: 14px 16px 17px;
    background: rgba(248, 250, 252, 0.55);
}

body.lm-pack-page fieldset.lm-seg-card.lm-seg-card--active .lm-seg-card__body {
    background: #f4f9fe;
}

.lm-row-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 12px;
}

body.lm-pack-page .lm-add-row {
    border: 1px dashed #aec8e8;
    border-radius: 10px;
    background: transparent;
    color: var(--brand-primary);
    font-weight: 600;
    padding: 8px 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

body.lm-pack-page .lm-add-row:hover {
    border-style: solid;
    background: var(--brand-light);
}

.lm-add-row__plus {
    font-size: 1.125rem;
    line-height: 1;
    font-weight: 700;
}

body.lm-pack-page .lm-geo-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 12px;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--white, #fff);
}

.lm-geo-fields {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 16px;
    min-width: 0;
}

@media (max-width: 576px) {
    .lm-geo-fields {
        grid-template-columns: 1fr;
    }

    body.lm-pack-page .lm-geo-row {
        align-items: stretch;
    }

    body.lm-pack-page .lm-remove-row {
        width: 100%;
        justify-content: flex-start;
    }
}

body.lm-pack-page .lm-geo-cell .form-select {
    border-radius: 10px;
    border-color: #cbd8e9;
}

.lm-geo-lbl {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    margin-bottom: 6px;
}

body.lm-pack-page button.lm-remove-row {
    align-self: center;
    font-size: 13px;
    padding: 6px 4px;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: #94a3b8;
    text-decoration: underline;
    flex-shrink: 0;
}

body.lm-pack-page button.lm-remove-row:hover {
    color: #dc2626;
}

.lm-order-panel {
    position: relative;
}

.lm-order-card {
    position: sticky;
    top: 14px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: linear-gradient(180deg, #ffffff 0%, #fafcff 100%);
    box-shadow: 0 14px 38px rgba(15, 23, 42, 0.09);
    padding: 22px 20px 20px;
}

.lm-order-card__title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin: 0 0 16px;
}

.lm-order-field {
    margin-bottom: 14px;
}

.lm-order-field__lbl {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-dark);
    margin-bottom: 8px;
}

body.lm-pack-page .lm-select-quota {
    border-radius: 12px;
    border-color: #c5d9ec;
    font-size: 0.8125rem; /* ~13px */
    line-height: 1.35;
    padding: 0.4rem 0.65rem;
    font-weight: 500;
}

.lm-price-block {
    min-height: 72px;
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: 12px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lm-price-block__lbl {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1d4ed8;
}

.lm-price-block__inr {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--brand-dark);
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.lm-price-block__sub {
    font-size: 12px;
    color: var(--text-muted);
}

body.lm-pack-page .lm-pay-btn.btn-lg {
    border-radius: 12px;
    font-weight: 700;
    padding-top: 0.62rem;
    padding-bottom: 0.62rem;
    box-shadow: 0 6px 16px rgba(15, 122, 216, 0.32);
}

body.lm-pack-page .lm-pay-btn:active {
    transform: translateY(1px);
}

body.lm-pack-page #lm-pay-msg.lm-pay-msg {
    margin: 12px 0 0;
    min-height: 1.35em;
    font-size: 13px;
    color: var(--text-muted);
}

body.lm-pack-page #lm-pay-msg.lm-pay-msg.is-error {
    color: #dc2626;
}

.lm-order-note {
    margin: 14px 0 0;
    font-size: 11px;
    line-height: 1.45;
    color: #94a3b8;
}

/* ----- Open leads inbox (lead-buyer-inbox.php) ----- */
body.lm-inbox-page {
    background: var(--brand-soft, #f4f9fd);
    min-height: 100vh;
}

body.lm-inbox-page .lm-page-intro {
    margin: -2px 0 14px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-muted);
    max-width: 720px;
}

.lbi-panel {
    margin-bottom: 2rem;
}

.lbi-panel__head {
    margin-bottom: 20px;
}

.lbi-panel__title-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px 16px;
    margin-bottom: 8px;
}

.lbi-panel__title {
    margin: 0;
}

.lbi-panel__intro {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-muted);
    max-width: 680px;
}

.lm-pack-link {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    font-weight: 600;
    font-size: 13px;
    padding: 5px 12px;
    border-radius: 999px;
    border: 1px solid rgba(15, 122, 216, 0.35);
    background: rgba(255, 255, 255, 0.9);
    color: var(--brand-primary);
    text-decoration: none;
    white-space: nowrap;
}

.lm-pack-link:hover {
    background: var(--brand-light);
    border-color: var(--brand-primary);
    color: var(--brand-primary);
}

.lbi-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 20px;
    margin-bottom: 22px;
    padding: 16px 18px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--border, #dbe8f4);
}

.lbi-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 120px;
}

.lbi-stat--quota {
    margin-left: auto;
    align-items: flex-end;
    text-align: right;
}

.lbi-stat__value {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--brand-navy, #0c2d4a);
}

.lbi-stat__label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
}

.lbi-banner {
    margin-bottom: 18px;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.lbi-banner--warn {
    background: #fffbeb;
    border: 1px solid #fde68a;
    color: #92400e;
}

.lbi-banner--warn a {
    font-weight: 600;
    color: #b45309;
}

.lbi-empty {
    text-align: center;
    padding: clamp(28px, 5vw, 48px) 20px;
    border-radius: 16px;
    background: #fafcfe;
    border: 1px dashed var(--border, #dbe8f4);
}

.lbi-empty__icon {
    color: var(--brand-primary);
    margin-bottom: 12px;
}

.lbi-empty__title {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 8px;
    color: var(--brand-navy, #0c2d4a);
}

.lbi-empty__text {
    margin: 0 auto 20px;
    max-width: 420px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-muted);
}

.lbi-empty__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.lbi-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lbi-card {
    border: 1px solid var(--border, #dbe8f4);
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(12, 45, 74, 0.06);
    transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

.lbi-card:hover {
    border-color: rgba(15, 122, 216, 0.25);
    box-shadow: 0 4px 14px rgba(12, 45, 74, 0.08);
}

.lbi-card__top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px 12px;
    padding: 12px 16px;
    background: linear-gradient(180deg, #f8fbfe 0%, #f4f9fd 100%);
    border-bottom: 1px solid var(--border, #e8f0f7);
}

.lbi-card__when {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
}

.lbi-card__segment {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.35;
    padding: 4px 10px;
    border-radius: 999px;
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
    text-align: right;
    max-width: 100%;
}

.lbi-card__body {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px 20px;
    padding: 16px 18px 18px;
}

.lbi-card__main {
    flex: 1 1 220px;
    min-width: 0;
}

@media (max-width: 575px) {
    .lbi-stat--quota {
        margin-left: 0;
        align-items: flex-start;
        text-align: left;
    }

    .lbi-card__body {
        flex-direction: column;
    }

    .lbi-card__actions {
        width: 100%;
    }

    .lbi-card__segment {
        text-align: left;
    }
}

.lbi-card__name {
    margin: 0 0 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--brand-navy, #0c2d4a);
}

.lbi-card__contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 0;
}

.lbi-contact {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    line-height: 1.4;
}

.lbi-contact--phone::before {
    content: 'Phone';
    display: inline-block;
    min-width: 3.25rem;
    margin-right: 8px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #94a3b8;
}

.lbi-contact--email::before {
    content: 'Email';
    display: inline-block;
    min-width: 3.25rem;
    margin-right: 8px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #94a3b8;
}

a.lbi-contact--phone,
a.lbi-contact--email {
    color: var(--brand-primary);
}

a.lbi-contact--phone:hover,
a.lbi-contact--email:hover {
    text-decoration: underline;
}

.lbi-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex-shrink: 0;
    align-self: flex-start;
}

.lbi-card__actions .btn {
    min-width: 7.5rem;
}

.lbi-card__actions .btn-success {
    background: #25d366;
    border-color: #25d366;
}

.lbi-card__actions .btn-success:hover {
    background: #1ebe57;
    border-color: #1ebe57;
}

.lbi-card__message {
    margin: 12px 0 0;
    padding: 10px 12px;
    font-size: 13px;
    line-height: 1.5;
    color: #475569;
    background: #f8fafc;
    border-left: 3px solid var(--brand-primary);
    border-radius: 0 8px 8px 0;
}

.lbi-card__body:has(.lbi-card__message) .lbi-card__actions {
    margin-top: 2px;
}

/* Post property â€” state / district / locality autocomplete */
.post-step-wrap .geo-ac-wrap {
    position: relative;
}

.post-step-wrap .geo-ac-input {
    padding-right: 40px;
}

.post-step-wrap .geo-ac-status {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    pointer-events: none;
}

.post-step-wrap .geo-ac-status--error::after {
    content: "!";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #dc2626;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.post-step-wrap .geo-ac-wrap--invalid .geo-ac-input {
    border-color: #dc2626;
    box-shadow: 0 0 0 1px rgba(220, 38, 38, 0.15);
}

.post-step-wrap .geo-ac-wrap--disabled .geo-ac-input {
    background: #f1f5f9;
    color: #94a3b8;
    cursor: not-allowed;
}

.post-step-wrap .geo-ac-label--invalid {
    color: #dc2626;
}

.post-step-wrap .geo-ac-label .required,
.post-step-wrap label.geo-ac-label > .required {
    color: #dc2626;
    font-weight: 600;
}

.post-step-wrap .geo-ac-label-hint {
    font-weight: 500;
}

.post-step-wrap .geo-ac-list {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 4px);
    z-index: 40;
    margin: 0;
    padding: 0;
    list-style: none;
    max-height: 260px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #d4deea;
    border-radius: 10px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.post-step-wrap .geo-ac-option {
    padding: 10px 14px;
    font-size: 14px;
    line-height: 1.35;
    color: #24384f;
    cursor: pointer;
    border-bottom: 1px solid #eef2f7;
}

.post-step-wrap .geo-ac-option:hover,
.post-step-wrap .geo-ac-option:focus {
    background: #f0f7ff;
}

.post-step-wrap .geo-ac-add-footer {
    border-top: 1px solid #e8edf4;
    padding: 0;
    cursor: default;
}

.post-step-wrap .geo-ac-add-footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    padding: 12px 14px;
    font-size: 13px;
    color: #475569;
    background: #fafbfc;
}

.post-step-wrap .geo-ac-bulb {
    font-size: 15px;
    line-height: 1;
}

.post-step-wrap .geo-ac-add-link {
    border: 0;
    background: none;
    padding: 0;
    color: #1f7ed7;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

.post-step-wrap .geo-ac-add-link:hover {
    text-decoration: underline;
}

.post-step-wrap .geo-ac-wrap--add-new .geo-ac-input {
    border-color: #1f7ed7;
    box-shadow: 0 0 0 1px rgba(31, 126, 215, 0.12);
}

/* Floating WhatsApp (left side) â€” matches public site */
.re-floating-whatsapp {
    position: fixed;
    left: 24px;
    bottom: 30px;
    z-index: 1050;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px 10px 12px;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.re-floating-whatsapp:hover {
    color: #fff;
    background: #1ebe57;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(37, 211, 102, 0.42);
}

.re-floating-whatsapp:focus-visible {
    outline: 2px solid #128c7e;
    outline-offset: 3px;
}

.re-floating-whatsapp__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
}

.re-floating-whatsapp__text {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

@media (max-width: 767px) {
    .re-floating-whatsapp {
        left: 16px;
        bottom: calc(20px + env(safe-area-inset-bottom, 0px));
        z-index: 1050;
        padding: 0;
        width: 54px;
        height: 54px;
        justify-content: center;
        border-radius: 50%;
    }

    .re-floating-whatsapp__text {
        display: none;
    }

    .re-floating-whatsapp__icon {
        width: 30px;
        height: 30px;
        background: transparent;
    }
}

/* â”€â”€ Responsive pass: user dashboard, listings, post-property wizard â”€â”€ */
@media (max-width: 991px) {
    .topbar-inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas:
            "brand toggle"
            "actions actions"
            "nav nav";
        align-items: center;
        gap: 10px 12px;
    }

    .brand {
        grid-area: brand;
        flex: initial;
        min-width: 0;
    }

    .h-nav-toggle {
        display: inline-flex;
        grid-area: toggle;
        order: unset;
    }

    .top-actions {
        grid-area: actions;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        order: unset;
    }

    .top-actions .btn {
        width: 100%;
        min-width: 0;
        text-align: center;
        justify-content: center;
        padding: 9px 10px;
        font-size: 13px;
    }

    .h-nav {
        display: none;
        grid-area: nav;
        order: unset;
        flex: initial;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 8px 0 4px;
        border-top: 1px solid var(--border);
        margin-top: 0;
    }

    .topbar.is-nav-open .h-nav {
        display: flex;
    }

    .h-nav .nav-link,
    .h-nav .nav-submenu__trigger.nav-packages-toggle {
        width: 100%;
        white-space: normal;
        font-size: 14px;
        padding: 10px 14px;
        text-align: left;
    }

    .h-nav .nav-packages-dd.nav-submenu {
        width: 100%;
    }

    .h-nav .nav-submenu__trigger.nav-packages-toggle {
        width: 100%;
    }

    .h-nav .nav-submenu__panel {
        position: static;
        width: 100%;
        margin-top: 0;
        box-shadow: none;
        transform: none;
        padding: 0;
        border: none;
        background: transparent;
    }

    .h-nav .nav-submenu:not(.nav-submenu--open) .nav-submenu__panel {
        display: none;
    }

    .h-nav .nav-submenu.nav-submenu--open .nav-submenu__panel {
        display: block;
        margin-top: 4px;
        padding: 6px 0 6px 8px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .h-nav .nav-submenu__panel::before {
        display: none;
    }

    .dashboard-dash .dash-bento {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .pl-prop-card__foot {
        flex-direction: column;
        align-items: stretch;
    }

    .pl-foot-actions {
        justify-content: flex-start;
    }

    .post-step-wrap .inline-checks {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .post-step-wrap .radio-choices.compact-radio {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .post-step-wrap .inline-add-wrap {
        flex-direction: column;
        align-items: stretch;
    }

    .post-step-wrap .inline-add-wrap .btn {
        width: 100%;
    }

    .post-step-wrap .input-group-split {
        grid-template-columns: 1fr;
    }

    .post-step-wrap .input-group-split .step-input {
        border-radius: 10px;
        border-right: 1px solid #d4deea;
    }

    .post-step-wrap .input-group-split .step-select {
        border-radius: 10px;
    }

    .post-step-wrap .road-width-wrap {
        max-width: none;
    }

    .post-step-wrap .step-action-row {
        display: flex;
        flex-direction: column-reverse;
        gap: 10px;
    }

    .post-step-wrap .step-action-row .btn {
        width: 100%;
        margin: 0 !important;
    }

    .post-step-wrap .choice-row:has(.btn-link-additional) {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .post-step-wrap .choice-row .btn-link-additional {
        margin: 0 !important;
        text-align: left;
    }

    .post-step-wrap .basic-step-card {
        padding: 16px;
    }

    .post-step-wrap .select-badge-group {
        gap: 8px;
    }

    .stepper-item p {
        display: none;
    }

    .welcome h1 {
        font-size: 20px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .post-step-layout {
        grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
        gap: 16px;
    }
}
