/* =====================================================================
   ZULU Responsive System
   Mobile-first layout, navigation, drawers, and cross-page utilities
   Breakpoints: 480 / 640 / 768 / 1024 / 1280 / 1440
   ===================================================================== */

/* ---------- Site header & navigation ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: #ffffff;
    border-bottom: 1px solid var(--zulu-border);
    padding-top: var(--zulu-safe-top);
}

.site-header .top-nav {
    min-height: var(--zulu-header-height);
    gap: 12px;
}

.nav-left {
    min-width: 0;
    flex: 1 1 auto;
}

.brand-logo-img {
    height: clamp(44px, 8vw, 60px);
}

.nav-links-main {
    margin-left: clamp(12px, 2vw, 40px);
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: var(--zulu-touch-min);
    height: var(--zulu-touch-min);
    padding: 0;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    background: #ffffff;
    color: #111827;
    cursor: pointer;
    flex-shrink: 0;
}

.nav-toggle:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

.nav-toggle-icon {
    display: block;
    width: 20px;
    height: 20px;
}

.nav-toggle-icon--close {
    display: none;
}

body.is-nav-open .nav-toggle-icon--menu {
    display: none;
}

body.is-nav-open .nav-toggle-icon--close {
    display: block;
}

.nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 210;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.nav-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
}

.nav-mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 220;
    width: 100%;
    height: 100dvh;
    height: 100svh;
    max-height: 100dvh;
    background: #eef2f6;
    border: none;
    box-shadow: none;
    transform: translateY(10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.22s ease, opacity 0.22s ease, visibility 0.22s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: calc(var(--zulu-safe-top) + 10px) 16px calc(20px + var(--zulu-safe-bottom));
}

.nav-mobile-drawer.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nav-mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.nav-mobile-title {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
}

.nav-mobile-close {
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #ffffff;
    color: #334155;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.nav-mobile-close svg {
    width: 18px;
    height: 18px;
    display: block;
}

.nav-mobile-close:hover,
.nav-mobile-close:focus-visible {
    background: #f8fafc;
    color: #0f172a;
}

.nav-mobile-search {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    padding: 0 14px;
    min-height: 46px;
    border: none;
    border-radius: 999px;
    background: #e2e8f0;
}

.nav-mobile-search-submit {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: #64748b;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-mobile-search-submit svg {
    width: 18px;
    height: 18px;
    display: block;
}

.nav-mobile-search-submit:hover,
.nav-mobile-search-submit:focus-visible {
    color: #0f172a;
    background: rgba(255, 255, 255, 0.7);
}

.nav-mobile-search-input {
    flex: 1 1 auto;
    min-width: 0;
    height: 46px;
    border: none;
    background: transparent;
    color: #0f172a;
    font: inherit;
    font-size: 16px;
    outline: none;
}

.nav-mobile-search-input::placeholder {
    color: #94a3b8;
}

.nav-mobile-search.is-searching {
    opacity: 0.7;
    pointer-events: none;
}

.nav-mobile-section.is-nav-search-hidden,
.nav-mobile-card--auth.is-nav-search-hidden,
.nav-mobile-row.is-nav-search-hidden,
.nav-mobile-sublink.is-nav-search-hidden {
    display: none;
}

.nav-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nav-mobile-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-mobile-group-label {
    display: block;
    margin: 0;
    padding: 0 4px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #94a3b8;
}

.nav-mobile-card {
    background: #ffffff;
    border: 1px solid #e6ebf2;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
}

.nav-mobile-card .nav-mobile-row + .nav-mobile-row {
    border-top: 1px solid #eef2f6;
}

.nav-mobile-row {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    min-height: 52px;
    padding: 12px 14px;
    border: none;
    background: transparent;
    color: #0f172a;
    text-decoration: none;
    font: inherit;
    font-size: 0.98rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    list-style: none;
    appearance: none;
    -webkit-appearance: none;
}

.nav-mobile-row::-webkit-details-marker,
.nav-mobile-row::marker {
    display: none;
    content: none;
}

.nav-mobile-row:hover,
.nav-mobile-row:focus-visible {
    background: #f8fafc;
}

.nav-mobile-icon {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    color: #1e293b;
}

.nav-mobile-icon svg {
    width: 22px;
    height: 22px;
    display: block;
}

.nav-mobile-row-text {
    flex: 0 1 auto;
    min-width: 0;
}

.nav-mobile-row .nav-msg-badge {
    margin-left: 0;
}

.nav-mobile-chevron {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    margin-left: auto;
    color: #94a3b8;
}

.nav-mobile-chevron svg {
    width: 16px;
    height: 16px;
    display: block;
}

.nav-mobile-accordion {
    margin: 0;
}

.nav-mobile-accordion .nav-mobile-chevron--down {
    transition: transform 0.18s ease;
}

.nav-mobile-accordion[open] .nav-mobile-chevron--down {
    transform: rotate(180deg);
}

.nav-mobile-sublist {
    display: none;
    flex-direction: column;
    gap: 2px;
    padding: 0 14px 12px 48px;
}

.nav-mobile-accordion[open] .nav-mobile-sublist {
    display: flex;
}

.nav-mobile-sublink {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 40px;
    padding: 6px 0;
    color: #334155;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
}

.nav-mobile-sublink::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #94a3b8;
    flex: 0 0 auto;
}

.nav-mobile-sublink:hover,
.nav-mobile-sublink:focus-visible {
    color: #1d4ed8;
}

.nav-mobile-card--auth {
    margin-top: 4px;
}

.nav-mobile-row--logout {
    color: #dc2626;
}

.nav-mobile-row--logout .nav-mobile-icon {
    color: #dc2626;
}

.nav-mobile-row--logout:hover,
.nav-mobile-row--logout:focus-visible {
    background: #fef2f2;
}

body.is-nav-open {
    overflow: hidden;
}

/* ---------- Dashboard mobile sidebar ---------- */
.dash-mobile-bar {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.dash-sidebar-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: var(--zulu-touch-min);
    padding: 0 14px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #ffffff;
    color: #111827;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    flex-shrink: 0;
}

.dash-sidebar-toggle svg {
    width: 18px;
    height: 18px;
}

.dash-mobile-bar-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dash-sidebar-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 240;
    background: rgba(15, 23, 42, 0.4);
}

body.is-dash-nav-open .dash-sidebar-backdrop {
    display: block;
}

body.is-dash-nav-open {
    overflow: hidden;
}

.browse-sidebar-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
}

.browse-sidebar-head-row {
    flex: 1;
    min-width: 0;
}

.browse-sidebar-head .browse-sidebar-title {
    margin: 0;
    flex: 1;
    min-width: 0;
}

.rent-filters-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
}

.rent-filters-head h2 {
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;
}

.rent-filter-close {
    display: none;
}

.browse-filter-close {
    display: none;
}

.rent-filters-toolbar-mobile {
    display: none;
}

/* ---------- Filter drawers (browse + rent) ---------- */
.filter-drawer-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 230;
    background: rgba(15, 23, 42, 0.45);
}

.filter-drawer-backdrop.is-visible {
    display: block;
}

.filter-toggle-btn {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: var(--zulu-touch-min);
    padding: 0 16px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #ffffff;
    color: #111827;
    font-weight: 700;
    font-size: 0.875rem;
    font-family: inherit;
    cursor: pointer;
    flex-shrink: 0;
}

.filter-toggle-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.filter-toggle-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: #2563eb;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
}

body.is-filter-open {
    overflow: hidden;
}

/* ---------- Shared utilities ---------- */
.u-stack-sm { display: flex; flex-direction: column; gap: 12px; }
.u-hide-mobile { display: revert; }
.u-show-mobile { display: none; }

.responsive-table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media (min-width: 901px) {
    .responsive-table-wrap .dash-table {
        min-width: 640px;
    }
}

/* ---------- Forms: prevent iOS zoom ---------- */
input,
select,
textarea,
.hero-custom-select-toggle,
.auth-input,
.sell-ad-input,
.sell-ad-select,
.sell-ad-textarea,
.browse-filter-select,
.browse-filter-input,
.profile-field input,
.profile-field select,
.rent-hero-input,
.rent-filter-select {
    font-size: max(16px, 1rem);
}

@media (min-width: 768px) {
    input,
    select,
    textarea,
    .hero-custom-select-toggle,
    .auth-input,
    .sell-ad-input,
    .sell-ad-select,
    .browse-filter-select,
    .browse-filter-input,
    .profile-field input,
    .profile-field select,
    .rent-hero-input,
    .rent-filter-select {
        font-size: inherit;
    }
}

/* ---------- Listing grids ---------- */
.listing-grid {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
    gap: clamp(12px, 2vw, 16px);
}

.listing-card-image-wrap:not(.listing-card-image-wrap--browse) {
    aspect-ratio: 16 / 10;
    height: auto;
}

/* ---------- Detail pages ---------- */
@media (min-width: 1025px) {
    .detail-layout {
        grid-template-columns: minmax(0, 1.75fr) minmax(280px, 1fr);
        gap: clamp(16px, 2.5vw, 22px);
    }
}

.detail-side-card {
    max-width: 100%;
}

body.page-listing-detail main.container {
    max-width: 1280px;
    width: min(1280px, 100% - var(--zulu-container-pad) * 2);
}

.page-listing-detail {
    background: #f3f4f6;
}

.detail-page {
    max-width: 100%;
    overflow-x: hidden;
}

.detail-spec-grid p,
.detail-description-text {
    overflow-wrap: anywhere;
    word-break: break-word;
}

/* ---------- Home hero ---------- */
.home-hero {
    width: 100%;
    margin-left: 0;
    transform: none;
    min-height: clamp(380px, 55vw, 520px);
    background-size: cover;
    background-position: center right;
}

.home-hero h1 {
    font-size: var(--zulu-heading-1);
}

.hero-panel {
    width: min(520px, calc(100% - 32px));
    left: clamp(16px, 3vw, 30px);
    top: clamp(16px, 3vw, 34px);
    padding: clamp(16px, 3vw, 24px) clamp(16px, 2.5vw, 22px);
}

.hero-tab {
    font-size: clamp(0.9375rem, 0.85rem + 0.5vw, 1.125rem);
}

.section-head {
    flex-wrap: wrap;
    gap: 12px;
}

/* ---------- Sell ad flow ---------- */
.sell-ad-flow {
    max-width: min(1100px, 100%);
}

.sell-ad-page-title {
    font-size: var(--zulu-heading-2);
}

.sell-ad-top {
    padding: clamp(16px, 3vw, 24px) clamp(16px, 3vw, 28px) 8px;
}

.sell-ad-body,
.sell-ad-body--media,
.sell-ad-body--description {
    padding: clamp(16px, 3vw, 28px);
    gap: clamp(20px, 4vw, 36px);
}

.sell-ad-top-inner {
    gap: 12px;
}

/* ---------- Sell ad flow ---------- */
body.dashboard-page main.container {
    width: min(1360px, 100% - var(--zulu-container-pad) * 2);
    padding: clamp(16px, 3vw, 24px) 0 clamp(32px, 5vw, 48px);
}

.dash-welcome-title {
    font-size: var(--zulu-heading-2);
}

.dash-card {
    padding: clamp(14px, 2.5vw, 18px) clamp(14px, 2.5vw, 20px);
}

.dash-card-head {
    flex-wrap: wrap;
}

.dash-welcome {
    flex-wrap: wrap;
}

/* ---------- Browse ---------- */
body.page-listings-browse main.container {
    max-width: 1280px;
    width: min(1280px, 100% - var(--zulu-container-pad) * 2);
}

.browse-toolbar {
    flex-wrap: wrap;
    gap: 12px;
}

.browse-page-title {
    font-size: var(--zulu-heading-2);
}

/* ---------- Rent marketplace ---------- */
body.page-rent main.container {
    max-width: 1280px;
    width: min(1280px, 100% - var(--zulu-container-pad) * 2);
}

.rent-hero-copy h1,
.rent-hero h1 {
    font-size: var(--zulu-heading-1);
}

.rent-detail-page {
    max-width: 100%;
    overflow-x: hidden;
}

.rent-detail-title {
    font-size: var(--zulu-heading-2);
    word-break: break-word;
}

.rent-detail-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
}

.rent-detail-thumb {
    width: 72px;
    height: 54px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    cursor: pointer;
}

.rent-booking-card {
    max-width: 100%;
}

/* ---------- Auth ---------- */
body.page-auth-register main.container,
body.page-auth-login main.container {
    width: min(1120px, 100% - var(--zulu-container-pad) * 2);
}

.auth-register-title {
    font-size: var(--zulu-heading-2);
}

.auth-input,
.auth-phone-cc-select {
    min-height: var(--zulu-touch-min);
}

/* ---------- Modals ---------- */
.profile-photo-modal,
.rental-modal {
    padding: clamp(12px, 3vw, 20px);
}

.profile-photo-modal-card,
.rental-modal-card {
    max-height: calc(100dvh - 32px);
    overflow-y: auto;
}

/* ---------- Rental dashboard availability ---------- */
.rental-availability-toolbar {
    flex-direction: column;
    align-items: stretch;
}

.rental-availability-filters {
    width: 100%;
}

.rental-availability-filters select {
    flex: 1;
    min-width: 0;
}

.rental-month-grid {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* ---------- Date picker mobile ---------- */
.rent-date-popover {
    max-width: calc(100vw - 24px);
}

.rent-date-popover-inner {
    max-height: min(85dvh, 560px);
    overflow-y: auto;
}

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

/* =====================================================================
   BREAKPOINT: max 1024px — tablet & mobile nav
   ===================================================================== */
@media (max-width: 1024px) {
    .nav-links-main {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-right .nav-main-link--desktop {
        display: none;
    }

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

    .detail-side-card {
        position: static;
    }

    .detail-media-column {
        padding: 12px;
    }

    .detail-specs-card {
        padding: 16px 14px;
    }

    .detail-spec-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .browse-layout {
        display: block;
    }

    .browse-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 250;
        width: min(360px, 100vw);
        height: 100dvh;
        max-height: 100dvh;
        margin: 0;
        border-radius: 0;
        border-left: none;
        transform: translateX(-100%);
        transition: transform 0.24s ease;
        overflow-y: auto;
        padding-bottom: calc(24px + var(--zulu-safe-bottom));
    }

    .browse-sidebar.is-open {
        transform: translateX(0);
    }

    .browse-filter-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: var(--zulu-touch-min);
        height: var(--zulu-touch-min);
        margin-left: auto;
        border: 1px solid #e5e7eb;
        border-radius: 10px;
        background: #fff;
        cursor: pointer;
        font-size: 1.25rem;
        line-height: 1;
        color: #64748b;
    }

    .browse-filter-close,
    .rent-filter-close {
        display: inline-flex;
    }

    .rent-filters-toolbar-mobile {
        display: flex;
    }

    .browse-sidebar-title {
        flex: 1;
    }

    .filter-toggle-btn {
        display: inline-flex;
    }

    .rent-layout {
        display: block;
    }

    .rent-filters {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 250;
        width: min(360px, 100vw);
        height: 100dvh;
        max-height: 100dvh;
        margin: 0;
        border-radius: 0;
        transform: translateX(-100%);
        transition: transform 0.24s ease;
        overflow-y: auto;
        padding-bottom: calc(24px + var(--zulu-safe-bottom));
    }

    .rent-filters.is-open {
        transform: translateX(0);
    }

    .rent-filters-head {
        position: sticky;
        top: 0;
        background: #fff;
        z-index: 1;
        padding-bottom: 8px;
    }

    .rent-filter-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: var(--zulu-touch-min);
        height: var(--zulu-touch-min);
        border: 1px solid #e5e7eb;
        border-radius: 10px;
        background: #fff;
        cursor: pointer;
        font-size: 1.25rem;
        color: #64748b;
    }

    .rent-filters-toolbar-mobile {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 16px;
    }

    .finance-calc-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* =====================================================================
   BREAKPOINT: max 900px — dashboard drawer + single-column layout
   Desktop dashboard styles stay unchanged above this breakpoint.
   ===================================================================== */
@media (max-width: 900px) {
    .dash-mobile-bar {
        display: flex;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    body:has(.msg-page--thread) .dash-mobile-bar,
    body:has(.msg-page--thread) .dashboard-sidebar,
    body:has(.msg-page--thread) .dash-sidebar-backdrop {
        display: none !important;
    }

    .dash-mobile-bar-title {
        flex: 1 1 auto;
    }

    body.dashboard-page,
    body.dashboard-page main.container {
        max-width: 100%;
        overflow-x: hidden;
    }

    body.dashboard-page .site-header,
    body.dashboard-page .site-footer {
        max-width: 100%;
    }

    body.dashboard-page main.container {
        width: min(1360px, 100% - var(--zulu-container-pad) * 2);
        padding-left: 0;
        padding-right: 0;
    }

    body.dashboard-page .site-header .container,
    body.dashboard-page .site-footer .container,
    body.dashboard-page .site-footer-inner,
    body.dashboard-page .top-nav {
        min-width: 0;
        max-width: 100%;
    }

    body.dashboard-page .site-footer-brand,
    body.dashboard-page .site-footer-col,
    body.dashboard-page .site-footer-contact,
    body.dashboard-page .flash-text {
        min-width: 0;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    body.dashboard-page .flash {
        flex-wrap: wrap;
        max-width: 100%;
    }

    .dashboard-layout,
    .dashboard-layout.dashboard-layout--two-col {
        display: flex;
        flex-direction: column;
        grid-template-columns: 1fr;
        gap: 16px;
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }

    .dashboard-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 250;
        width: min(300px, 88vw);
        height: 100dvh;
        max-height: 100dvh;
        margin: 0;
        border-radius: 0;
        transform: translateX(-100%);
        transition: transform 0.24s ease;
        overflow-y: auto;
        overflow-x: hidden;
        padding-bottom: calc(20px + var(--zulu-safe-bottom));
    }

    body.is-dash-nav-open .dashboard-sidebar {
        transform: translateX(0);
    }

    .dashboard-main,
    .dashboard-rightbar {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .dashboard-rightbar {
        position: static;
        grid-template-columns: 1fr;
    }

    .dashboard-rightbar .dash-card + .dash-card {
        margin-top: 0;
    }

    body.dashboard-page .dash-card,
    body.dashboard-page .dash-stat,
    body.dashboard-page .dash-analytics-metric,
    body.dashboard-page .ads-product-card,
    body.dashboard-page .ads-sponsor-card,
    body.dashboard-page .help-page,
    body.dashboard-page .msg-page,
    body.dashboard-page .msg-inbox,
    body.dashboard-page .msg-inbox-row,
    body.dashboard-page .profile-hero,
    body.dashboard-page .flash-stack {
        min-width: 0;
        max-width: 100%;
    }

    body.dashboard-page .dash-card {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    body.dashboard-page .ads-sponsor-preview img,
    body.dashboard-page .listing-card-image {
        max-width: 100%;
    }

    body.dashboard-page input,
    body.dashboard-page select,
    body.dashboard-page textarea,
    body.dashboard-page button,
    body.dashboard-page .dash-manage-search-input,
    body.dashboard-page .help-search-input,
    body.dashboard-page .msg-inbox-search-input,
    body.dashboard-page .admin-filter-select,
    body.dashboard-page .dash-analytics-range-select,
    body.dashboard-page .iti,
    body.dashboard-page .iti input {
        max-width: 100%;
        min-width: 0;
    }

    .dash-welcome,
    .dash-analytics-header,
    .dash-analytics-tip,
    .dash-card-head,
    .profile-hero,
    .profile-hero-left,
    .profile-danger-row,
    .help-support-banner,
    .dash-balance,
    .rental-dash-toolbar {
        flex-direction: column;
        align-items: stretch;
        max-width: 100%;
        min-width: 0;
    }

    .dash-welcome > div,
    .dash-analytics-header > div,
    .dash-card-title,
    .profile-hero-left,
    .profile-hero-meta {
        min-width: 0;
        max-width: 100%;
    }

    .dash-welcome-title,
    .dash-welcome-sub,
    .dash-ad-name,
    .dash-ad-sub,
    .dash-msg-name,
    .dash-msg-text,
    .dash-notification-title,
    .dash-notification-message,
    .msg-inbox-name,
    .msg-inbox-preview,
    .msg-inbox-listing-title {
        overflow-wrap: anywhere;
        word-break: break-word;
        white-space: normal;
    }

    .dash-welcome .dash-btn-primary,
    .dash-welcome .dash-btn-secondary,
    .help-support-banner .dash-btn-primary,
    .profile-form-actions .dash-btn-primary,
    .profile-form-actions .dash-btn-secondary,
    .profile-danger-row .profile-btn-danger,
    .dash-analytics-tip-btn {
        width: 100%;
        justify-content: center;
        white-space: normal;
        text-align: center;
    }

    .dash-btn-primary,
    .dash-btn-secondary,
    .dash-plan-cta,
    .ads-product-cta,
    .ads-sponsor-email {
        white-space: normal;
        max-width: 100%;
        box-sizing: border-box;
    }

    .dash-stats,
    .admin-stats--overview {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dash-bottom-row,
    .dash-quick-grid,
    .dash-plan-cards,
    .dash-sub-grid,
    .dash-advertising-cards,
    .dash-advertising-book-grid,
    .ads-promote-grid,
    .ads-checkout-packages,
    .ads-checkout-cars,
    .dash-analytics-metrics,
    .rental-fleet-grid,
    body.dashboard-page .listing-grid,
    body.dashboard-page .listing-grid--browse {
        grid-template-columns: minmax(0, 1fr);
    }

    .dash-analytics-metrics {
        display: grid;
    }

    .dash-analytics-range-form {
        width: 100%;
    }

    .dash-analytics-range-select {
        flex: 1 1 auto;
        width: 100%;
        min-width: 0;
    }

    .dash-analytics-listing-cell {
        min-width: 0;
    }

    .dash-manage-tabs {
        margin-left: calc(-1 * clamp(14px, 2.5vw, 20px));
        margin-right: calc(-1 * clamp(14px, 2.5vw, 20px));
        padding-left: clamp(14px, 2.5vw, 20px);
        padding-right: clamp(14px, 2.5vw, 20px);
        overflow: visible;
    }

    .dash-manage-tab {
        padding: 12px 10px;
    }

    .dash-manage-search,
    .msg-inbox-search,
    .admin-filters {
        flex-wrap: wrap;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .dash-manage-search-input,
    .msg-inbox-search-input {
        flex: 1 1 auto;
        width: auto;
        min-width: 0;
    }

    .msg-inbox-search {
        flex-wrap: nowrap;
    }

    .msg-inbox-search-btn,
    .admin-filters .dash-btn-secondary,
    .rental-dash-filter-btn {
        width: auto;
        justify-content: center;
        flex: 1 1 100%;
    }

    .msg-inbox-search-btn {
        flex: 0 0 auto;
        width: auto;
    }

    body.dashboard-page .msg-inbox-panel .msg-inbox-search {
        flex-wrap: nowrap;
        padding: 10px 12px;
    }

    body.dashboard-page .msg-inbox-panel .msg-inbox-search-btn {
        flex: 0 0 auto;
        width: auto;
    }

    .dash-manage-actions {
        justify-content: flex-start;
        width: 100%;
    }

    .dash-manage-btn,
    .dash-manage-inline-form {
        max-width: 100%;
    }

    .dash-th-actions,
    .dash-manage-table .dash-manage-actions {
        text-align: left;
    }

    /* Convert dashboard tables into stacked cards — no sideways scroll */
    body.dashboard-page .dash-table-wrap,
    body.dashboard-page .dash-manage-table-wrap,
    body.dashboard-page .dash-analytics-table-wrap,
    body.dashboard-page .ads-pay-table-wrap,
    body.dashboard-page .responsive-table-wrap {
        overflow: visible;
        height: auto;
        margin: 0;
        width: 100%;
        max-width: 100%;
    }

    body.dashboard-page .dash-manage-ads-card .dash-manage-empty.dash-manage-table-wrap {
        height: auto;
        min-height: 160px;
    }

    body.dashboard-page .dash-table,
    body.dashboard-page .dash-analytics-table,
    body.dashboard-page .ads-pay-table,
    body.dashboard-page .responsive-table-wrap .dash-table {
        min-width: 0;
        width: 100%;
        display: block;
    }

    body.dashboard-page .dash-table thead,
    body.dashboard-page .dash-analytics-table thead,
    body.dashboard-page .ads-pay-table thead {
        display: none;
    }

    body.dashboard-page .dash-table tbody,
    body.dashboard-page .dash-analytics-table tbody,
    body.dashboard-page .ads-pay-table tbody {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    body.dashboard-page .dash-table tbody tr,
    body.dashboard-page .dash-analytics-table tbody tr,
    body.dashboard-page .ads-pay-table tbody tr {
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: 100%;
        max-width: 100%;
        padding: 14px;
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        background: #fff;
        box-sizing: border-box;
    }

    body.dashboard-page .dash-table tbody td,
    body.dashboard-page .dash-analytics-table tbody td,
    body.dashboard-page .ads-pay-table tbody td {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: space-between;
        gap: 6px 12px;
        width: 100%;
        max-width: 100%;
        padding: 0;
        border: none;
        min-width: 0;
        overflow-wrap: anywhere;
        word-break: break-word;
        white-space: normal;
    }

    body.dashboard-page .dash-table tbody td:first-child,
    body.dashboard-page .dash-analytics-table tbody td:first-child,
    body.dashboard-page .ads-pay-table tbody td:first-child {
        display: block;
    }

    body.dashboard-page .dash-table tbody td::before,
    body.dashboard-page .dash-analytics-table tbody td::before,
    body.dashboard-page .ads-pay-table tbody td::before {
        flex: 0 0 auto;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.02em;
        text-transform: uppercase;
        color: #64748b;
    }

    body.dashboard-page .dash-table tbody td:first-child::before,
    body.dashboard-page .dash-table tbody td:last-child::before,
    body.dashboard-page .dash-analytics-table tbody td:first-child::before {
        display: none;
        content: none;
    }

    body.dashboard-page:not(.admin-dashboard-page):not(.rental-dashboard-page) .dash-table tbody td:nth-child(2)::before { content: "Price"; }
    body.dashboard-page:not(.admin-dashboard-page):not(.rental-dashboard-page) .dash-table tbody td:nth-child(3)::before { content: "Status"; }
    body.dashboard-page:not(.admin-dashboard-page):not(.rental-dashboard-page) .dash-table tbody td:nth-child(4)::before { content: "Listed on"; }

    body.dashboard-page .dash-analytics-table tbody td:nth-child(2)::before { content: "Views"; }
    body.dashboard-page .dash-analytics-table tbody td:nth-child(3)::before { content: "Clicks"; }
    body.dashboard-page .dash-analytics-table tbody td:nth-child(4)::before { content: "Saves"; }
    body.dashboard-page .dash-analytics-table tbody td:nth-child(5)::before { content: "Call"; }
    body.dashboard-page .dash-analytics-table tbody td:nth-child(6)::before { content: "WhatsApp"; }
    body.dashboard-page .dash-analytics-table tbody td:nth-child(7)::before { content: "CTR"; }

    body.dashboard-page .ads-pay-table tbody td:nth-child(1)::before { content: "Date"; display: block; }
    body.dashboard-page .ads-pay-table tbody td:nth-child(2)::before { content: "Product"; }
    body.dashboard-page .ads-pay-table tbody td:nth-child(3)::before { content: "Car"; }
    body.dashboard-page .ads-pay-table tbody td:nth-child(4)::before { content: "Duration"; }
    body.dashboard-page .ads-pay-table tbody td:nth-child(5)::before { content: "Amount"; }
    body.dashboard-page .ads-pay-table tbody td:nth-child(6)::before { content: "Status"; }

    body.dashboard-page .dash-manage-more-menu {
        right: auto;
        left: 0;
        max-width: calc(100vw - 48px);
    }

    body.dashboard-page .dash-ad-row,
    body.dashboard-page .dash-analytics-listing-cell,
    body.dashboard-page .rental-customer-cell {
        min-width: 0;
        max-width: 100%;
        width: 100%;
    }

    body.dashboard-page .dash-msg {
        flex-wrap: wrap;
        max-width: 100%;
    }

    body.dashboard-page .dash-msg-time,
    body.dashboard-page .dash-notification-time,
    body.dashboard-page .msg-inbox-time {
        white-space: normal;
    }

    body.dashboard-page .dash-notification-item {
        grid-template-columns: auto minmax(0, 1fr);
        max-width: 100%;
    }

    body.dashboard-page .dash-notification-actions {
        grid-column: 2;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    body.dashboard-page .dash-notification-car {
        max-width: 100%;
    }

    body.dashboard-page .profile-form-grid,
    body.dashboard-page .profile-form-grid--three,
    body.dashboard-page .profile-radio-row,
    body.dashboard-page .profile-name-pair,
    body.dashboard-page .profile-phone-row {
        grid-template-columns: 1fr;
    }

    body.dashboard-page .profile-form-actions {
        justify-content: stretch;
        flex-wrap: wrap;
    }

    .ads-checkout-kind-tabs {
        flex-wrap: wrap;
        width: 100%;
    }

    .ads-checkout-kind {
        flex: 1 1 100%;
        justify-content: center;
    }

    .ads-my-item {
        flex-direction: column;
        max-width: 100%;
    }

    .listing-review-banner {
        flex-direction: column;
        align-items: stretch;
    }

    .listing-review-banner-actions {
        flex-wrap: wrap;
    }

    .rental-dash-pagination {
        flex-direction: column;
        align-items: stretch;
        padding-left: 0;
        padding-right: 0;
        text-align: center;
    }

    .rental-dash-page-nav {
        justify-content: center;
        flex-wrap: wrap;
    }

    body.dashboard-page .msg-file-card {
        min-width: 0;
        max-width: 100%;
    }

    body.dashboard-page .msg-bubble {
        max-width: min(88%, 100%);
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    body.dashboard-page .rental-calendar {
        max-width: 100%;
    }

    body.dashboard-page .rental-calendar-head,
    body.dashboard-page .rental-calendar-week {
        min-width: 0;
        width: 100%;
    }
}

/* =====================================================================
   BREAKPOINT: max 768px
   ===================================================================== */
@media (max-width: 768px) {
    .sell-ad-top-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .sell-ad-next-btn {
        width: 100%;
        min-height: var(--zulu-touch-min);
    }

    :root {
        --zulu-header-height: 56px;
    }

    main {
        padding: 16px 0;
    }

    body.page-home main.container {
        padding-top: 0;
    }

    .u-hide-mobile { display: none !important; }
    .u-show-mobile { display: block; }

    .hero-search-form {
        grid-template-columns: 1fr;
    }

    .home-hero {
        min-height: 500px;
        height: 500px;
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-bottom: 16px;
        display: flex;
        flex-direction: column;
        background-image: url("../images/HeroSection/HeroPic.png");
        background-color: #0b1220;
        background-size: cover;
        background-position: 85% center;
        padding: 16px 16px 0;
        box-sizing: border-box;
        overflow: visible;
        border-radius: 0 0 16px 16px;
    }

    .home-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 0 0 16px 16px;
        background: linear-gradient(180deg, rgba(8, 14, 30, 0.42) 0%, rgba(8, 14, 30, 0.06) 40%, rgba(8, 14, 30, 0.1) 100%);
        pointer-events: none;
        z-index: 1;
    }

    .home-hero::after {
        content: none;
        display: none;
    }

    .hero-panel {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        min-height: 0;
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 22px;
        background: transparent;
        box-shadow: none;
        padding: 0;
        border-radius: 0;
        z-index: 2;
    }

    .hero-copy {
        max-width: 22rem;
        flex-shrink: 0;
    }

    .home-hero h1 {
        color: #ffffff;
        font-size: clamp(1.5rem, 6.4vw, 1.85rem);
        line-height: 1.15;
        text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
    }

    .home-hero .hero-subtitle {
        color: rgba(255, 255, 255, 0.92);
        font-size: 0.9375rem;
        line-height: 1.45;
        margin-bottom: 0;
        text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
    }

    .hero-search-box {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        min-height: 0;
        flex-shrink: 0;
        background: #ffffff;
        border-radius: 16px;
        padding: 14px 12px 12px;
        box-shadow: 0 16px 40px rgba(15, 23, 42, 0.2);
        margin: auto 0 -72px;
        z-index: 4;
    }

    .home-style {
        margin-top: 96px;
        border: 0;
        background: transparent;
        padding: 4px 0 18px;
        border-radius: 0;
    }

    .style-arrow {
        display: none;
    }

    .style-image-link img {
        width: 132px;
        height: 98px;
    }

    .hero-mode-tabs {
        gap: 16px;
        margin-bottom: 8px;
    }

    .hero-tab {
        font-size: 0.95rem;
    }

    .hero-tab-divider {
        margin-bottom: 10px;
    }

    .hero-search-form {
        gap: 10px;
    }

    .style-carousel {
        padding-inline: 0;
    }

    .browse-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .browse-sort {
        width: 100%;
    }

    .browse-sort-select {
        flex: 1;
    }

    .browse-filter-block--split {
        grid-template-columns: 1fr;
    }

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

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

    .rent-detail-booking-col {
        position: static;
    }

    .rent-booking-price strong {
        font-size: clamp(1.35rem, 5vw, 1.6rem);
    }

    .rent-date-calendars {
        grid-template-columns: 1fr;
    }

    .rent-date-popover--hero {
        position: fixed;
        inset: auto 0 0 0;
        top: auto;
        left: 0;
        right: 0;
        border-radius: 16px 16px 0 0;
        max-height: 90dvh;
    }

    .rent-date-popover--hero .rent-date-popover-inner {
        max-height: calc(90dvh - 16px);
    }

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

    .dash-bottom-row {
        grid-template-columns: 1fr;
    }

    .profile-form-grid,
    .profile-form-grid--three,
    .profile-radio-row,
    .profile-name-pair {
        grid-template-columns: 1fr;
    }

    .rental-dash-pagination {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .rental-fleet-grid {
        grid-template-columns: 1fr;
    }

    .ad-banner {
        display: none;
    }

    .ad-banner-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        aspect-ratio: 2 / 1;
        min-height: 210px;
        max-height: 280px;
        padding: 16px 14px;
        border-radius: 12px;
        text-decoration: none;
        color: inherit;
        overflow: hidden;
        position: relative;
        background:
            radial-gradient(ellipse at 88% 0%, rgba(212, 175, 55, 0.32), transparent 46%),
            linear-gradient(180deg, #16130f 0%, #0b0a08 100%);
    }

    .ad-banner-mobile::before,
    .ad-banner-mobile::after {
        content: "";
        position: absolute;
        border: 1px solid rgba(212, 175, 55, 0.35);
        border-radius: 50%;
        pointer-events: none;
    }

    .ad-banner-mobile::before {
        width: 180px;
        height: 180px;
        left: -92px;
        top: 18px;
        border-color: rgba(212, 175, 55, 0.22);
    }

    .ad-banner-mobile::after {
        width: 140px;
        height: 140px;
        right: -70px;
        bottom: -48px;
        border-color: rgba(212, 175, 55, 0.28);
    }

    .ad-banner-mobile-logo {
        position: relative;
        z-index: 1;
        height: 84px;
        width: auto;
        max-width: 240px;
        object-fit: contain;
        object-position: center;
        flex-shrink: 0;
    }

    .ad-banner-mobile-copy {
        position: relative;
        z-index: 1;
        color: #ffffff;
        font-weight: 800;
        font-size: 1.05rem;
        line-height: 1.25;
        text-align: center;
        letter-spacing: 0.01em;
    }

    .ad-banner-mobile-cta {
        position: relative;
        z-index: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 36px;
        padding: 8px 18px;
        border-radius: 999px;
        background: #c9a44a;
        color: #111111;
        font-size: 0.78rem;
        font-weight: 800;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }
}

/* =====================================================================
   BREAKPOINT: max 640px
   ===================================================================== */
@media (max-width: 640px) {
    .nav-mobile-drawer {
        width: 100vw;
        border-left: none;
    }

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

    .rent-grid {
        grid-template-columns: 1fr;
    }

    .rent-trust-bar,
    .rent-footer-trust {
        grid-template-columns: 1fr;
    }

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

    .auth-account-type-row {
        grid-template-columns: 1fr;
    }

    .auth-register-card {
        padding: 24px 18px 20px;
    }

    .sell-ad-errors {
        margin-inline: 16px;
    }

    .detail-thumb-row {
        gap: 8px;
    }

    .detail-panel-title {
        font-size: var(--zulu-heading-2);
    }

    .dash-welcome .dash-btn-primary {
        width: 100%;
        justify-content: center;
    }

    .rental-calendar {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .rental-calendar-head,
    .rental-calendar-week {
        min-width: 300px;
    }

    body.dashboard-page .rental-calendar-head,
    body.dashboard-page .rental-calendar-week {
        min-width: 0;
        width: 100%;
    }

    .rental-calendar-day {
        min-height: 42px;
        padding: 4px 2px;
        font-size: 0.75rem;
    }

    .rental-cal-legend {
        gap: 8px 12px;
        font-size: 0.7rem;
    }

    body.dashboard-page .dash-stats,
    body.dashboard-page .admin-stats--overview {
        grid-template-columns: 1fr;
    }

    body.dashboard-page .msg-inbox-search {
        flex-wrap: wrap;
    }

    body.dashboard-page .msg-inbox-search-btn {
        flex: 1 1 100%;
    }

    body.dashboard-page .msg-inbox-panel .msg-inbox-search {
        flex-wrap: nowrap;
    }

    body.dashboard-page .msg-inbox-panel .msg-inbox-search-btn {
        flex: 0 0 auto;
        width: auto;
    }

    body.dashboard-page .admin-filters .dash-manage-search-input,
    body.dashboard-page .admin-filter-select {
        flex: 1 1 100%;
        width: 100%;
    }
}

/* =====================================================================
   BREAKPOINT: max 480px — small phones
   ===================================================================== */
@media (max-width: 480px) {
    :root {
        --zulu-container-pad: 14px;
    }

    .rent-category-grid {
        grid-template-columns: 1fr;
    }

    .browse-chip-grid--2 .browse-chip {
        flex: 1 1 100%;
    }

    .rent-hero-search-btn {
        margin-left: 0;
    }

    body.dashboard-page .dash-card {
        padding: 14px;
    }

    body.dashboard-page .dash-welcome-title {
        font-size: 1.35rem;
    }

    body.dashboard-page .dash-manage-actions {
        width: 100%;
    }

    body.dashboard-page .dash-manage-btn {
        flex: 1 1 auto;
        min-height: 40px;
    }
}

/* =====================================================================
   BREAKPOINT: min 1280px — comfortable desktop
   ===================================================================== */
@media (min-width: 1280px) {
    :root {
        --zulu-container-max: 1240px;
    }

    body.dashboard-page main.container {
        --zulu-container-max: 1360px;
    }
}

/* =====================================================================
   BREAKPOINT: min 1440px — large desktop
   ===================================================================== */
@media (min-width: 1440px) {
    :root {
        --zulu-container-max: 1280px;
    }
}

/* Hide mobile-only filter close on desktop */
@media (min-width: 1025px) {
    .browse-filter-close,
    .rent-filter-close,
    .rent-filters-toolbar-mobile,
    .filter-drawer-backdrop,
    .dash-mobile-bar,
    .dash-sidebar-backdrop {
        display: none !important;
    }

    .browse-sidebar-head {
        display: block;
        margin-bottom: 0;
    }

    .browse-sidebar-head-row {
        margin-bottom: 18px;
    }
}

@media (max-width: 900px) {
    .dealer-plans-cards {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-inline: auto;
    }

    .dealer-plan-card.is-popular {
        order: -1;
    }
}

@media (max-width: 640px) {
    .dealer-plans-toggle {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        border-radius: 14px;
    }

    .dealer-plans-toggle-btn {
        width: 100%;
        justify-content: center;
        border-radius: 10px;
    }
}

@media (max-width: 900px) {
    .help-quick-grid,
    .help-split {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .help-support-banner {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Focus states for keyboard users */
:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

button:focus:not(:focus-visible),
a:focus:not(:focus-visible) {
    outline: none;
}

/* Thread chat must fill the screen even if dashboard padding loads later */
body.dashboard-page:has(.msg-page--thread) main.container {
    padding-top: 16px;
    padding-bottom: 16px;
}

@media (max-width: 720px) {
    body.dashboard-page:has(.msg-page--thread),
    body.dashboard-page:has(.msg-page--thread) main.container {
        width: 100%;
        max-width: none;
        height: 100dvh;
        height: 100svh;
        overflow: hidden;
        padding: 0;
        margin: 0;
    }

    .msg-page--thread {
        position: fixed;
        inset: 0;
        height: 100dvh;
        height: 100svh;
        max-height: 100svh;
        min-height: 0;
        overflow: hidden;
    }
}
