:root {
    /* Marca / Accion */
    --mm-color-brand: #F27F0D;
    --mm-color-brand-cta: #F27F0D;

    /* Texto */
    --mm-text-title: #0F172A;
    --mm-text-subtitle: #64748B;

    /* Estados */
    --mm-state-success: #16A34A;
    --mm-state-success-text: #15803D;

    /* Interaccion */
    --mm-icon-favorite: #F43F5E;
    --mm-metric-distance: #3B82F6;
    --mm-metric-distance-text: #2563EB;

    /* Reviews */
    --mm-rating-star: #FFCC00;

    /* Neutros */
    --mm-bg: #FFFFFF;
    --mm-surface: #FFFFFF;
    --mm-surface-muted: #F8FAFC;
    --mm-border: #E2E8F0;
    --mm-form-border: #ddc1af;
    --mm-form-border-strong: #f27f0d;
    --mm-form-shell-bg: rgba(255, 255, 255, 0.86);
    --mm-form-focus-ring: rgba(242, 127, 13, 0.12);
    --mm-layer-map: 1;
    --mm-layer-controls: 20;
    --mm-layer-overlay: 80;
    --mm-layer-nav: 90;
    --mm-layer-cookie: 120;

    --mm-font: 'Outfit', sans-serif;
}

.is-hidden {
    display: none !important;
}

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

* {
    box-sizing: border-box;
}

html,
body {
    height: 100vh; /* Fallback for older browsers */
    height: 100dvh;
    overflow: hidden;
}

body {
    margin: 0;
    background: var(--mm-surface-muted);
    color: var(--mm-title);
    font-family: var(--mm-font);
}

a {
    color: inherit;
}

button,
input {
    font: inherit;
}

svg {
    display: block;
}

.mm-form-field {
    display: grid;
    gap: 0.35rem;
}

.mm-form-label,
.mm-form-field > label {
    color: #564335;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.mm-input-shell {
    position: relative;
    min-height: 3.5rem;
    display: grid;
    align-items: center;
    border: 1px solid var(--mm-form-border);
    border-radius: 14px;
    background: var(--mm-form-shell-bg);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.mm-input-shell:focus-within {
    border-color: var(--mm-form-border-strong);
    box-shadow: 0 0 0 4px var(--mm-form-focus-ring);
}

.mm-input-shell input {
    width: 100%;
    min-width: 0;
    border: none;
    outline: none;
    background: transparent;
    color: #241912;
    font: inherit;
}

.mm-primary-button {
    min-height: 3.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    border: none;
    border-radius: 999px;
    padding: 0.85rem 1.2rem;
    background: #f98205;
    color: #fff8f5;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 18px 34px rgba(249, 130, 5, 0.22);
    cursor: pointer;
}

.mm-overlay-panel {
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
}

.mm-chip {
    min-height: 2.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.42rem;
    border: 1px solid var(--mm-border);
    border-radius: 999px;
    padding: 0.5rem 0.82rem;
    background: rgba(255, 255, 255, 0.88);
    color: #475569;
    font-size: 0.8rem;
    font-weight: 900;
}

.alpha-gate-document,
.alpha-gate-document body {
    min-height: 100vh;
    min-height: 100dvh;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    background: #fff6f0;
}

.alpha-gate-page {
    display: grid;
    min-height: 100vh;
    min-height: 100dvh;
    height: 100vh;
    height: 100dvh;
    grid-template-rows: minmax(0, 1fr) auto;
    color: #241a18;
}

.alpha-gate {
    min-height: 0;
    display: grid;
    justify-items: center;
    align-content: center;
    overflow: auto;
    padding: 2.25rem 1.5rem 2.75rem;
    background:
        linear-gradient(180deg, #fff7f1 0%, #fffaf7 48%, #ffefe6 100%);
}

.alpha-gate__card {
    width: min(500px, 100%);
    display: grid;
    justify-items: center;
    text-align: center;
}

.alpha-gate-animations .alpha-gate .is-presenting {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 360ms ease, transform 360ms ease;
}

.alpha-gate-animations .alpha-gate .is-presenting.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.alpha-gate__logo {
    display: block;
    width: min(300px, 80%);
    height: auto;
    margin: 0 auto 3.25rem;
}

.alpha-gate__eyebrow {
    width: fit-content;
    margin: 0 0 0.9rem;
    border-radius: 999px;
    padding: 0.4rem 1.2rem;
    background: #ffd8bf;
    color: #7d3d08;
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.alpha-gate__title {
    max-width: 18ch;
    min-height: 4.05rem;
    margin: 0 auto 0.75rem;
    color: #251c1a;
    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: 0;
    text-wrap: balance;
}

.alpha-gate__title.is-typing::after {
    content: "";
    display: inline-block;
    width: 2px;
    height: 1em;
    margin-left: 0.12rem;
    vertical-align: -0.12em;
    transform: none;
    background: #944a00;
    animation: welcome-blink 0.9s steps(1) infinite;
}

.alpha-gate__copy {
    max-width: 30rem;
    margin: 0 auto;
    color: #6f5a50;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.45;
}

.alpha-gate__form {
    width: min(820px, 100%);
    display: grid;
    gap: 0.95rem;
    margin-top: 1.55rem;
}

.alpha-gate__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.alpha-gate__input-shell {
    position: relative;
}

.alpha-gate__input {
    width: 100%;
    min-height: 3.65rem;
    border: 1px solid var(--mm-form-border);
    border-radius: 14px;
    padding: 0.75rem 3.2rem 0.75rem 1.3rem;
    background: var(--mm-form-shell-bg);
    color: #3a2924;
    font-size: 1rem;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.alpha-gate__input::placeholder {
    color: #9b8175;
    opacity: 1;
}

.alpha-gate__input:focus {
    outline: none;
    border-color: #f27f0d;
    box-shadow: 0 0 0 4px rgba(242, 127, 13, 0.12);
}

.alpha-gate__input-icon {
    position: absolute;
    top: 50%;
    right: 1rem;
    width: 1.5rem;
    height: 1.5rem;
    transform: translateY(-50%);
    color: #8d7468;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
    pointer-events: none;
}

.alpha-gate__submit {
    min-height: 3.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    border: none;
    border-radius: 999px;
    padding: 0.8rem 1.25rem;
    background: #15803d;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 800;
    box-shadow: 0 0.85rem 1.35rem rgba(117, 62, 14, 0.14);
    cursor: pointer;
}

.alpha-gate__submit:hover {
    background: #166534;
}

.alpha-gate__submit:focus-visible {
    outline: 3px solid rgba(21, 128, 61, 0.28);
    outline-offset: 3px;
}

.alpha-gate__submit svg {
    width: 1.45rem;
    height: 1.45rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.alpha-gate__hint {
    width: min(820px, 100%);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    align-items: start;
    margin-top: 1.45rem;
    border: 1px solid #ffd8c8;
    border-radius: 14px;
    padding: 0.95rem 1rem;
    background: #ffe8dc;
    color: #6b554c;
    font-size: 0.92rem;
    line-height: 1.42;
    text-align: left;
}

.alpha-gate__hint svg {
    width: 1.1rem;
    height: 1.1rem;
    margin-top: 0.2rem;
    color: #9b5007;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.alpha-gate__legal {
    width: min(520px, 100%);
    margin-top: 1.2rem;
    text-align: center;
}

.alpha-gate__legal p {
    margin: 0;
    color: #958279;
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.45;
}

.alpha-gate__flash {
    width: min(820px, 100%);
    margin: 0 0 1rem;
    border-radius: 18px;
    padding: 0.9rem 1.1rem;
    background: #ffffff;
    color: #241a18;
    box-shadow: 0 18px 40px rgba(70, 42, 24, 0.08);
}

.alpha-gate__flash--error {
    color: #be123c;
}

.alpha-gate__flash--success,
.alpha-gate__flash--info {
    color: #0f766e;
}

.alpha-gate__flash--action {
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.alpha-gate__dev-access-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius: 999px;
    padding: 1rem;
    background: #0f766e;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
}

.alpha-gate__error {
    margin-top: 1rem;
    border-radius: 18px;
    padding: 0.9rem 1rem;
    background: rgba(244, 63, 94, 0.12);
    color: #be123c;
    font-weight: 700;
}

.alpha-gate-footer {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid #ead8ce;
    padding: 1.35rem min(7vw, 9rem);
    background: #ffefe6;
}

.alpha-gate-footer .public-legal-links {
    order: 2;
}

.alpha-gate-footer p {
    order: 1;
    margin: 0;
    color: #7d6b63;
    font-size: 1rem;
    font-weight: 800;
}

.mobile-map-app {
    min-height: 100vh;
    padding: 0;
}

.mobile-map-app__flash-stack {
    position: fixed;
    top: max(5rem, calc(env(safe-area-inset-top) + 4.25rem));
    left: 50%;
    z-index: 85;
    width: min(26rem, calc(100vw - 2rem));
    max-height: min(40vh, 18rem);
    display: grid;
    gap: 0.65rem;
    overflow-y: auto;
    transform: translateX(-50%);
    pointer-events: none;
}

.mobile-map-app__flash {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    color: var(--mm-title);
    transition: opacity 180ms ease, transform 180ms ease;
    pointer-events: auto;
}

.mobile-map-app__flash.is-dismissing {
    opacity: 0;
    transform: translateY(-0.5rem);
}

.mobile-map-app__flash button {
    width: 1.75rem;
    height: 1.75rem;
    display: inline-grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    padding: 0;
    background: transparent;
    color: #64748b;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
}

.claim-entry-page {
    min-height: 100dvh;
    background: #fff8f3;
    color: #172033;
}

.claim-entry {
    min-height: 100dvh;
    display: grid;
    grid-template-rows: auto 1fr;
}

.claim-entry__header {
    min-height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    padding: 0.85rem 1.25rem;
    background: rgba(255, 255, 255, 0.92);
}

.claim-entry__header img {
    display: block;
    width: min(15rem, 62vw);
    max-height: 2.75rem;
    object-fit: contain;
}

.claim-entry__card {
    width: min(34rem, calc(100% - 2rem));
    align-self: center;
    justify-self: center;
    margin: 2rem auto;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 8px;
    padding: clamp(1.4rem, 4vw, 2.25rem);
    background: #ffffff;
    box-shadow: 0 1.25rem 3rem rgba(52, 35, 23, 0.1);
}

.claim-entry__eyebrow {
    margin: 0 0 0.55rem;
    color: #b45309;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.claim-entry__card h1 {
    margin: 0;
    font-size: clamp(1.75rem, 5vw, 2.35rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.claim-entry__intro {
    margin: 0.8rem 0 1.5rem;
    color: #64748b;
    line-height: 1.5;
}

.claim-entry__business,
.claim-entry__relationship {
    display: grid;
    gap: 0.38rem;
    border-top: 1px solid #e2e8f0;
    padding: 1.15rem 0;
}

.claim-entry__business span {
    color: #b45309;
    font-size: 0.78rem;
    font-weight: 800;
}

.claim-entry__business strong {
    font-size: 1.15rem;
}

.claim-entry__business p,
.claim-entry__relationship p {
    margin: 0;
    color: #64748b;
    line-height: 1.45;
}

.claim-entry__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
    align-items: center;
    margin-top: 0.75rem;
}

.claim-entry__primary,
.claim-entry__cancel {
    min-height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-weight: 800;
    text-decoration: none;
}

.claim-entry__primary {
    border: 0;
    background: #f27f0d;
    color: #ffffff;
    cursor: pointer;
}

.claim-entry__primary:disabled {
    opacity: 0.68;
    cursor: wait;
}

.claim-entry__cancel {
    color: #475569;
}

@media (max-width: 520px) {
    .claim-entry__card {
        align-self: start;
        margin-top: 1rem;
    }

    .claim-entry__actions {
        grid-template-columns: 1fr;
    }
}

.claim-flow-container {
    min-height: 100dvh;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: calc(2rem + env(safe-area-inset-bottom));
}

.claim-steps-container,
.claim-evidence-step,
#evidence-upload-manager {
    min-height: 0;
}

.claim-evidence-step {
    overflow-y: auto;
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
    padding-bottom: calc(5.5rem + env(safe-area-inset-bottom));
}

.claim-evidence-video {
    display: block;
    width: 100%;
    max-height: min(62vh, 34rem);
    border-radius: 8px;
    background: #0f172a;
    object-fit: contain;
}

.claim-evidence-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    margin-top: 1rem;
    padding-bottom: env(safe-area-inset-bottom);
}

.claim-evidence-actions button {
    min-height: 2.75rem;
}

@media (max-width: 640px) {
    .claim-flow-container {
        max-height: none;
        padding-bottom: calc(7rem + env(safe-area-inset-bottom));
    }

    .claim-evidence-step {
        max-height: none;
        padding-bottom: calc(7rem + env(safe-area-inset-bottom));
    }

    .claim-evidence-video {
        max-height: 45vh;
    }

    .claim-evidence-actions {
        position: sticky;
        bottom: 0;
        z-index: 2;
        margin-right: -0.25rem;
        margin-left: -0.25rem;
        padding: 0.75rem 0.25rem calc(0.75rem + env(safe-area-inset-bottom));
        background: linear-gradient(180deg, rgba(255, 248, 243, 0), #fff8f3 28%, #fff8f3 100%);
    }

    .claim-evidence-actions button {
        flex: 1 1 10rem;
    }
}

.mobile-map-app__shell {
    position: relative;
    width: 100vw;
    height: 100vh; /* Fallback for older browsers */
    height: 100dvh;
    margin: 0;
    overflow: hidden;
    border: none;
    border-radius: 0;
    background: var(--mm-surface-muted);
    box-shadow: none;
}

.mobile-map-app__shell.is-walkthrough-active .mobile-map-app__header,
.mobile-map-app__shell.is-walkthrough-active .mobile-map-app__explore-shell,
.mobile-map-app__shell.is-walkthrough-active .mobile-map-app__panel,
.mobile-map-app__shell.is-walkthrough-active .mobile-map-app__nav,
.mobile-map-app__shell.is-walkthrough-active .mobile-map-app__detail-sheet {
    display: none !important;
}

.welcome-flow {
    position: absolute;
    inset: 0;
    z-index: 9;
    display: grid;
    grid-template-rows: 1fr auto;
    align-content: stretch;
    justify-items: center;
    gap: 0;
    padding: 2.2rem 3rem 0;
    background: #fff7f1;
    text-align: center;
    transition: opacity 320ms ease, transform 320ms ease;
}

.welcome-flow.is-visible {
    opacity: 1;
}

.welcome-flow.is-leaving {
    opacity: 0;
    transform: scale(1.01);
}

.welcome-flow__back {
    position: absolute;
    top: 2rem;
    left: 3rem;
    z-index: 2;
    width: 2.4rem;
    height: 2.4rem;
    display: grid;
    place-items: center;
    border: none;
    padding: 0;
    background: transparent;
    color: #241a18;
    cursor: pointer;
}

.welcome-flow__back svg {
    width: 2rem;
    height: 2rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.welcome-flow__card {
    align-self: center;
    width: min(680px, 100%);
    display: grid;
    justify-items: center;
    border: 1px solid #f0ded5;
    border-radius: 30px;
    padding: 3.25rem 3.2rem 3rem;
    background: rgba(255, 253, 250, 0.82);
    box-shadow: 0 24px 68px rgba(93, 56, 34, 0.04);
}

.welcome-flow__headline {
    display: block;
    justify-content: center;
    max-width: 29rem;
    margin-top: 1.35rem;
}

.welcome-flow__cursor {
    display: inline-block;
    width: 2px;
    height: 1.9rem;
    margin-left: 0.12rem;
    background: #944a00;
    animation: welcome-blink 0.9s steps(1) infinite;
    vertical-align: -0.18em;
    transform: none;
}

.welcome-flow__copy {
    display: inline;
    min-height: 0;
    margin: 0;
    color: #9a4b03;
    font-size: 2.05rem;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: 0;
    text-align: center;
}

.welcome-flow__form {
    width: min(520px, 100%);
    position: relative;
    display: grid;
    gap: 0.85rem;
    margin-top: 1.55rem;
    transform: translateY(14px);
    opacity: 0;
}

.welcome-flow__form.is-visible,
.welcome-flow__geo.is-visible,
.welcome-flow__logo.is-visible {
    animation: welcome-bounce-in 520ms cubic-bezier(.2, 1.2, .4, 1) forwards;
}

.welcome-flow__label {
    color: #6f5a50;
    font-size: 1.1rem;
    font-weight: 400;
}

.welcome-flow__input-shell {
    position: relative;
    z-index: 32;
}

.welcome-flow__input-icon {
    position: absolute;
    top: 50%;
    left: 1.05rem;
    width: 1.45rem;
    height: 1.45rem;
    transform: translateY(-50%);
    color: #89746b;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    pointer-events: none;
}

.welcome-flow__input {
    width: 100%;
    min-height: 3.55rem;
    border: 1px solid var(--mm-form-border);
    border-radius: 14px;
    padding: 0.75rem 1rem 0.75rem 3.15rem;
    background: var(--mm-form-shell-bg);
    color: #3a2924;
    font-size: 0.98rem;
}

.welcome-flow__input::placeholder {
    color: #b7ada8;
    opacity: 1;
}

.welcome-flow__input:focus {
    outline: none;
    border-color: var(--mm-form-border-strong);
    box-shadow: 0 0 0 4px var(--mm-form-focus-ring);
}

.welcome-flow__submit {
    position: relative;
    z-index: 34;
    min-height: 3.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    border: none;
    border-radius: 999px;
    padding: 1rem 1.5rem;
    background: #f98205;
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 18px 34px hsla(31, 90%, 50%, 0.26);
    cursor: pointer;
}

.welcome-flow__submit svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.welcome-flow__geo {
    position: relative;
    z-index: 31;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 1.5rem;
    border: none;
    background: transparent;
    color: #9a4b03;
    font-size: 1rem;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 0.18em;
    opacity: 0;
    cursor: pointer;
}

.welcome-flow__geo svg {
    width: 1.15rem;
    height: 1.15rem;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.welcome-flow__error {
    margin: 1rem 0 0;
    color: #be123c;
    font-size: 1rem;
    font-weight: 700;
}

.welcome-flow__suggestions {
    position: absolute;
    z-index: 33;
    top: 5.45rem;
    left: 0;
    right: 0;
    display: grid;
    gap: 0.45rem;
    width: 100%;
    padding: 0.55rem;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.97);
    max-height: min(9rem, 30dvh);
    overflow-y: auto;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
}

.welcome-flow__suggestion {
    width: 100%;
    display: grid;
    gap: 0.16rem;
    border: none;
    border-radius: 18px;
    padding: 0.9rem 1rem;
    background: transparent;
    color: inherit;
    text-align: left;
}

.welcome-flow__suggestion:hover,
.welcome-flow__suggestion.is-active {
    background: rgba(242, 127, 13, 0.1);
}

.welcome-flow__suggestion-main {
    color: var(--mm-title);
    font-size: 1rem;
    font-weight: 800;
}

.welcome-flow__suggestion-secondary {
    color: var(--mm-subtitle);
    font-size: 0.84rem;
    line-height: 1.4;
}

.welcome-flow__logo {
    width: min(300px, 78%);
    opacity: 0;
}

.welcome-flow__footer {
    width: calc(100% + 6rem);
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid #ead8ce;
    padding: 1.55rem 4.4rem;
    background: #fff7f1;
}

.welcome-flow__footer .public-legal-links {
    justify-content: flex-start;
}

.welcome-flow__footer p {
    justify-self: end;
    margin: 0;
    color: #8a766d;
    font-size: 1.02rem;
    font-weight: 700;
}

.mobile-map-app__header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: max(1.08rem, env(safe-area-inset-top)) 1.1rem 1.48rem;
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.95) 0%, rgba(248, 250, 252, 0) 100%);
    pointer-events: none;
}
.mobile-map-app__header * {
    pointer-events: auto;
}

.mobile-map-app__header-copy { display: grid; gap: 0.45rem; }

.is-desktop-only { display: none !important; }

@media (min-width: 860px) {
    .is-desktop-only { display: flex !important; }
    strong.is-desktop-only { display: block !important; }
    .is-mobile-only { display: none !important; }
}

.mobile-map-app__header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
}

.mobile-map-app__brand-logo {
    height: 1.8rem;
    width: auto;
    object-fit: contain;
    flex: 0 0 auto;
}

.mobile-map-app__desktop-search {
    flex: 1 1 min(42rem, 48vw);
    max-width: 46rem;
    min-height: 3.2rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    border: 1px solid #e6c8b8;
    border-radius: 999px;
    padding: 0.35rem 0.45rem 0.35rem 1.15rem;
    background: #fff4ed;
    color: #5d493f;
}

.mobile-map-app__desktop-search svg {
    width: 1.35rem;
    height: 1.35rem;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mobile-map-app__desktop-search label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.mobile-map-app__desktop-search input {
    min-width: 0;
    flex: 1 1 auto;
    border: none;
    outline: none;
    background: transparent;
    color: #4b372e;
    font-size: 0.95rem;
}

.mobile-map-app__desktop-search input::placeholder {
    color: #654f45;
    opacity: 0.9;
}

.mobile-map-app__desktop-search button {
    min-width: 5.8rem;
    min-height: 2.25rem;
    border: none;
    border-radius: 999px;
    padding: 0.5rem 1rem;
    background: #f98205;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 800;
    cursor: pointer;
}

.mobile-map-app__icon-button--menu {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
    border: none;
    color: var(--mm-text-title);
    position: relative;
}
.mobile-map-app__icon-button--menu svg {
    width: 1.4rem !important;
    height: 1.4rem !important;
}

.mobile-map-app__icon-button--notify {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 2.8rem;
    height: 2.8rem;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}
.mobile-map-app__icon-button--notify svg {
    width: 1.4rem !important;
    height: 1.4rem !important;
    color: var(--mm-text-title);
}

.mobile-map-app__header-bottom {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-map-app__location-display, .mobile-map-app__service-pill {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--mm-text-title);
    border: none;
}
.mobile-map-app__pin-icon { width: 1.1rem; height: 1.1rem; color: #94a3b8; }
.mobile-map-app__service-pill svg { width: 1.1rem; height: 1.1rem; color: var(--mm-color-brand); }

.mobile-map-app__pin {
    width: 0.9rem;
    height: 0.9rem;
    color: var(--mm-color-brand);
}

.mobile-map-app__location-label {
    display: inline-block;
    max-width: min(38vw, 16rem);
    overflow: hidden;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mobile-map-app__location-switcher {
    position: absolute;
    top: 5.75rem;
    left: 1rem;
    right: 1rem;
    z-index: 6;
    width: auto;
    display: grid;
    gap: 0.5rem;
    padding: 0.75rem;
    border: 1px solid var(--mm-border);
    border-radius: 22px;
    background: var(--mm-surface);
    box-shadow: 0 22px 42px rgba(15, 23, 42, 0.16);
    max-height: min(70dvh, 34rem);
    overflow-y: auto;
    overscroll-behavior: contain;
}

.mobile-map-app__location-item {
    display: grid;
    gap: 0.25rem;
    padding: 0.85rem 1rem;
    border-radius: 18px;
    border: none;
    background: transparent;
    text-align: left;
    cursor: pointer;
    min-width: 0;
}

.mobile-map-app__location-item:hover {
    background-color: var(--mm-surface-muted);
}

.mobile-map-app__location-item strong {
    color: var(--mm-text-title);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mobile-map-app__location-item span {
    color: var(--mm-text-subtitle);
    font-size: 0.86rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mobile-map-app__pin svg,
.mobile-map-app__icon-button svg,
.mobile-map-app__control-button svg,
.mobile-map-app__distance svg,
.mobile-map-card__heart svg,
.mobile-map-card__reviews svg,
.mobile-map-app__nav-item svg,
.mobile-map-app__nav-core svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mobile-map-app__header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mobile-map-app__explore-toolbar {
    padding: 0 1.2rem;
    position: relative;
    z-index: 10;
    pointer-events: none;
}
.mobile-map-app__explore-toolbar-inner {
    display: grid;
    gap: 0.45rem;
    padding: 0.58rem 1rem 0.72rem;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(226, 232, 240, 0.84);
    justify-items: center;
    pointer-events: auto;
}

.mobile-map-app__mode-toggle {
    display: inline-grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.18rem;
    width: min(132px, 100%);
    padding: 0.18rem;
    border-radius: 999px;
    background: #f1f5f9;
}

.mobile-map-app__mode-button {
    border: none;
    border-radius: 999px;
    padding: 0.34rem 0.52rem;
    background: transparent;
    color: #64748b;
    font-size: 0.62rem;
    font-weight: 800;
}

.mobile-map-app__mode-button.is-active {
    background: var(--mm-color-brand-cta);
    color: #fff;
    box-shadow: 0 12px 26px rgba(242, 127, 13, 0.22);
}

.mobile-map-app__icon-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    border-radius: 999px;
    background: hsla(31, 90%, 50%, 0.1);
    color: var(--mm-color-brand);
    box-shadow: 0 10px 24px rgba(242, 127, 13, 0.18);
}

.mobile-map-app__icon-button--notify {
    z-index: 5;
}

.mobile-map-app__notify-badge {
    position: absolute;
    top: 0.15rem;
    right: 0.15rem;
    min-width: 1rem;
    height: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    border-radius: 999px;
    background: #ef4444;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    line-height: 1;
}

.mobile-map-app__notifications {
    position: absolute;
    top: 4.65rem;
    right: 1rem;
    z-index: 5;
    width: min(280px, calc(100vw - 2rem));
    display: grid;
    gap: 0.75rem;
    padding: 1rem;
    border: 1px solid var(--mm-border);
    border-radius: 22px;
    background: var(--mm-surface);
    box-shadow: 0 22px 42px rgba(15, 23, 42, 0.16);
}

.mobile-map-app__notifications-title {
    margin: 0;
    color: var(--mm-title);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.mobile-map-app__notification-item {
    display: grid;
    gap: 0.3rem;
    padding: 0.85rem 0.95rem;
    border-radius: 18px;
    background: var(--mm-surface-muted);
    color: inherit;
    text-decoration: none;
}

.mobile-map-app__notification-item strong {
    color: var(--mm-title);
    font-size: 0.92rem;
}

.mobile-map-app__notification-item span {
    color: var(--mm-subtitle);
    font-size: 0.84rem;
    line-height: 1.4;
}

.mobile-map-app__source-segmented-control {
    flex: 0 0 auto;
    display: flex;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 999px;
    padding: 0.25rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid #dadce0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-map-app__source-segmented-control:empty {
    display: none;
}

.mobile-map-app__segmented-btn {
    border: none;
    background: transparent;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: #64748b;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.mobile-map-app__segmented-btn.is-active {
    background: var(--mm-color-brand-cta);
    color: #fff;
    box-shadow: 0 2px 8px rgba(242, 127, 13, 0.4);
}

.mobile-map-app__chip-row {
    position: relative;
    display: flex;
    gap: 0.75rem;
    padding: 0 1rem 1rem;
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.mobile-map-app__chip-row--map {
    position: absolute;
    left: 0;
    right: 0;
    top: 5.35rem;
    z-index: 5;
    padding: 0 1rem;
    align-items: center;
    flex-wrap: nowrap;
}

.mobile-map-app__chip-row:not(.mobile-map-app__chip-row--map)::after {
    content: '';
    position: sticky;
    flex: 0 0 2rem;
    right: 0;
    width: 2rem;
    align-self: stretch;
    background: linear-gradient(to left, #fbfdff, transparent);
    pointer-events: none;
}

.mobile-map-app__chip-row::-webkit-scrollbar,
.mobile-map-app__cards-rail::-webkit-scrollbar {
    display: none;
}

.mobile-map-app__chip-row:empty {
    display: none;
}

.mobile-map-app__chip {
    flex: 0 0 auto;
    border: 1px solid #dadce0;
    border-radius: 999px;
    padding: 0.4rem 0.8rem;
    font-size: 0.875rem;
    font-weight: 500;
    background: #fff;
    color: #3c4043;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(60,64,67,0.1);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.mobile-map-app__chip.is-active {
    background-color: var(--mm-color-brand-cta);
    border-color: var(--mm-color-brand-cta);
    color: #fff;
    box-shadow: 0 2px 6px rgba(242, 127, 13, 0.4);
}

.mobile-map-app__chip--joyita {
    --chip-accent: #f59e0b;
}

.mobile-map-app__chip--source {
    --chip-accent: #334155;
    border-style: dashed;
}

.mobile-map-app__map-stage {
    position: absolute;
    inset: 0;
    height: 100dvh;
    z-index: 1;
    background: linear-gradient(180deg, rgba(255, 248, 240, 0.84), rgba(255, 255, 255, 0));
}

.mobile-map-app__explore-list {
    height: calc(100dvh - 14.75rem);
    overflow-y: auto;
    padding: 0.9rem 1rem 7rem;
    background: linear-gradient(180deg, rgba(255, 250, 244, 0.88), #ffffff 30%);
}

.mobile-map-app__explore-list-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.95rem;
    color: #64748b;
    font-size: 0.88rem;
    font-weight: 700;
}

.mobile-map-app__explore-list-header strong {
    color: var(--mm-text-title);
    font-size: 1rem;
}

.mobile-map-app__explore-list-grid {
    display: grid;
    gap: 0.95rem;
}

.mobile-map-app__explore-list-grid .mobile-map-card,
.mobile-map-app__explore-list-grid .mobile-map-app__empty-state {
    flex: none;
    width: 100%;
}

.mobile-map-app__explore-list-grid .mobile-map-card__media {
    height: 8.5rem;
}

.map-shell__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 20%, rgba(242, 127, 13, 0.15), transparent 20rem),
        linear-gradient(180deg, rgba(241, 245, 249, 0.95), rgba(226, 232, 240, 0.9));
}

.mobile-map-app__status-pill {
    position: absolute;
    top: auto;
    bottom: 20.5rem;
    left: 1rem;
    z-index: 7;
    display: inline-flex;
    align-items: center;
    gap: 0.58rem;
    max-width: calc(100% - 6rem);
    padding: 0.58rem 0.8rem;
    border: 1px solid var(--mm-border);
    border-radius: 999px;
    background: var(--mm-surface);
    backdrop-filter: blur(8px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
    color: var(--mm-subtitle);
    font-size: 0.76rem;
    font-weight: 700;
}

.mobile-map-app__status-pill strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.53rem;
    height: 1.53rem;
    border-radius: 999px;
    background: var(--mm-color-brand);
    color: #fff;
    font-size: 0.76rem;
}

.mobile-map-app__route-panel {
    position: absolute;
    left: 1rem;
    bottom: 17.1rem;
    z-index: var(--mm-layer-controls);
    width: min(23rem, calc(100% - 2rem));
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 0.8rem;
    border: 1px solid rgba(221, 193, 175, 0.7);
    border-radius: 18px;
    padding: 0.72rem 0.78rem;
    background: rgba(255, 255, 255, 0.94);
    color: #241912;
    box-shadow: 0 18px 38px rgba(36, 25, 18, 0.16);
    backdrop-filter: blur(18px) saturate(165%);
    -webkit-backdrop-filter: blur(18px) saturate(165%);
}

.mobile-map-app__route-panel span {
    display: block;
    color: #944a00;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.mobile-map-app__route-panel strong {
    display: block;
    margin-top: 0.1rem;
    font-size: 0.88rem;
    line-height: 1.25;
}

.mobile-map-app__route-panel button,
.mobile-map-app__route-panel a {
    min-height: 2.35rem;
    border: 1px solid #ddc1af;
    border-radius: 999px;
    padding: 0.5rem 0.76rem;
    background: #fff8f5;
    color: #944a00;
    font-size: 0.76rem;
    font-weight: 900;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mobile-map-app__route-panel[data-route-state="route_loading"] {
    border-color: rgba(242, 127, 13, 0.54);
}

.mobile-map-app__route-panel[data-route-state="route_ready"] {
    border-color: rgba(22, 163, 74, 0.34);
}

.mobile-map-app__route-panel[data-route-state="route_error"],
.mobile-map-app__route-panel[data-route-state="permission_denied"],
.mobile-map-app__route-panel[data-route-state="origin_missing"] {
    border-color: rgba(225, 29, 72, 0.28);
}

.map-shell__canvas-note {
    position: absolute;
    top: 11.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 7;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    max-width: min(22rem, calc(100% - 7.5rem));
    border-radius: 999px;
    padding: 0.62rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.62);
    background: rgba(255, 255, 255, 0.88);
    color: var(--mm-text-title);
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.45;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(14px);
    pointer-events: none;
}

.map-shell__canvas-note:empty {
    display: none;
}

.map-shell__canvas-loader {
    width: 0.95rem;
    height: 0.95rem;
    flex: 0 0 auto;
    border-radius: 999px;
    border: 2px solid rgba(242, 127, 13, 0.22);
    border-top-color: var(--mm-color-brand);
    animation: map-shell-loader-spin 0.72s linear infinite;
}

@keyframes map-shell-loader-spin {
    to {
        transform: rotate(360deg);
    }
}

.mobile-map-app__floating-controls {
    position: absolute;
    right: 1rem;
    top: 11.25rem;
    z-index: 6;
    display: grid;
    gap: 0.75rem;
}

.mobile-map-app__zoom-stack {
    display: grid;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.16);
}

.mobile-map-app__control-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.8rem;
    height: 2.8rem;
    border: none;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.95);
    color: #475569;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.16);
    font-size: 1.62rem;
    font-weight: 500;
}

.mobile-map-app__zoom-stack .mobile-map-app__control-button {
    border-radius: 0;
    box-shadow: none;
}

.mobile-map-app__zoom-stack .mobile-map-app__control-button:first-child {
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
}

.mobile-map-app__zoom-stack .mobile-map-app__control-button:last-child {
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.mobile-map-app__control-button.is-accent {
    color: var(--mm-color-brand);
}

.mobile-map-app__cards-rail {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5.2rem;
    z-index: 3;
    display: flex;
    gap: 0.78rem;
    padding: 0 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}

.mobile-map-card,
.mobile-map-app__empty-state {
    flex: 0 0 min(15rem, calc(51% - 1rem));
    scroll-snap-align: center;
}

.mobile-map-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.08), inset 0 2px 4px rgba(255, 255, 255, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 250ms cubic-bezier(0.2, 1, 0.3, 1), box-shadow 250ms cubic-bezier(0.2, 1, 0.3, 1);
}

.mobile-map-card.is-active {
    transform: translateY(-6px);
    border-color: var(--mm-color-brand);
    box-shadow: 0 34px 60px rgba(15, 23, 42, 0.2);
}

.mobile-map-card--placeholder {
    pointer-events: none;
}

.mobile-map-card--placeholder,
.mobile-map-card--placeholder.is-active {
    transform: none;
    border-color: rgba(226, 232, 240, 0.8);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
}

.mobile-map-card__media {
    position: relative;
    height: 4.45rem;
    overflow: hidden;
}

.mobile-map-card__media--placeholder {
    display: block;
    background: #eef2f7;
}

.mobile-map-card__media--placeholder::before {
    display: none;
}

.placeholder {
    display: block;
    min-height: 1em;
    border-radius: 999px;
    background-color: #e2e8f0;
    opacity: 0.92;
}

.placeholder-glow .placeholder {
    animation: placeholder-glow 1.45s ease-in-out infinite;
}

.mobile-map-card__placeholder-photo {
    width: 100%;
    height: 100%;
    border-radius: 0;
}

.mobile-map-card__placeholder-line {
    width: 82%;
    height: 0.78rem;
    margin-top: 0.55rem;
}

.mobile-map-card__placeholder-line--title {
    width: 64%;
    height: 1rem;
    margin-top: 0;
}

.mobile-map-card__placeholder-line--short {
    width: 48%;
}

.mobile-map-card__placeholder-meta {
    display: flex;
    gap: 0.45rem;
    margin-top: 0.78rem;
}

.mobile-map-card__placeholder-pill {
    width: 4.8rem;
    height: 1.35rem;
}

.mobile-map-card__placeholder-pill--short {
    width: 3.2rem;
}

@keyframes placeholder-glow {
    50% {
        opacity: 0.38;
    }
}

.mobile-map-card__media::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.5), transparent 30%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(15, 23, 42, 0.05));
}

.mobile-map-card__media.has-photo {
    background-size: cover;
    background-position: center;
}

.mobile-map-card__media.has-photo::before {
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.03), rgba(15, 23, 42, 0.22)),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.32), transparent 30%);
}

.mobile-map-card__media--1 {
    background: linear-gradient(135deg, #ffd2bc 0%, #f7a97e 100%);
}

.mobile-map-card__media--2 {
    background: linear-gradient(135deg, #ffe4d4 0%, #ffc07a 100%);
}

.mobile-map-card__media--3 {
    background: linear-gradient(135deg, #d8f5de 0%, #91d5a3 100%);
}

.mobile-map-card__media--4 {
    background: linear-gradient(135deg, #d9e7ff 0%, #8fb4ff 100%);
}

.mobile-map-card__heart {
    position: absolute;
    right: 0.86rem;
    top: 0.76rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.8rem;
    height: 1.8rem;
    border: none;
    border-radius: 50%;
    background: var(--mm-surface);
    color: var(--mm-icon-favorite);
    box-shadow: 0 12px 30px rgba(244, 63, 94, 0.18);
}

.mobile-map-card__heart.is-active {
    background: var(--mm-surface);
    color: var(--mm-icon-favorite);
}

.mobile-map-card__heart svg path,
.mobile-map-app__detail-float-button--favorite svg path {
    fill: transparent;
}

.mobile-map-card__heart.is-active svg path,
.mobile-map-app__detail-float-button--favorite.is-active svg path {
    fill: currentColor;
}

.mobile-map-app__icon {
    width: 1em;
    height: 1em;
    flex: 0 0 auto;
}

.mobile-map-app__inline-icon {
    width: 1.15em;
    height: 1.15em;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mobile-map-card__source-badge {
    position: absolute;
    left: 0.78rem;
    top: 0.78rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.24rem 0.48rem;
    background: rgba(255, 255, 255, 0.94);
    color: var(--mm-title);
    font-size: 0.54rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
}

.source-badge--real {
    background: rgba(15, 23, 42, 0.78);
    color: #fff;
}

.source-badge--demo {
    background: rgba(148, 163, 184, 0.9);
    color: #0f172a;
}

.source-badge--google {
    background: rgba(59, 130, 246, 0.14);
    color: #1d4ed8;
}

.source-badge--default {
    background: rgba(255, 255, 255, 0.92);
    color: #334155;
}

.mobile-map-card__floating-badges {
    position: absolute;
    top: -1.2rem;
    right: 1.2rem;
    display: flex;
    gap: 0.5rem;
    z-index: 5;
}

.mobile-map-card__badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
    border: 2px solid #fff;
}

.mobile-map-card__badge--distance {
    background: #3B82F6;
    color: #fff;
}

.mobile-map-card__badge--rating {
    background: #FACC15;
    color: #1E293B;
    display: flex;
    align-items: center;
    gap: 0.2rem;
}
.mobile-map-card__badge--rating svg {
    width: 0.9rem;
    height: 0.9rem;
}

.mobile-map-card__address {
    display: flex;
    align-items: flex-start;
    gap: 0.35rem;
    color: #64748b;
    font-size: 0.82rem;
    margin-top: 0.2rem;
}
.mobile-map-card__address svg { width: 0.9rem; height: 0.9rem; color: #cbd5e1; flex-shrink: 0; margin-top: 0.15rem; }
.mobile-map-card__address-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: clip;
    text-overflow: ellipsis;
    white-space: normal;
}

.mobile-map-card__media-copy {
    position: absolute;
    left: 0.95rem;
    bottom: 0.78rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.95rem;
    height: 1.95rem;
    border: 0.5px solid rgba(255, 255, 255, 0.82);
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.1);
    color: #fff;
    font-size: 0.76rem;
    font-weight: 800;
}

.mobile-map-card__body {
    position: relative;
    padding: 0.56rem 0.68rem 0.7rem;
}

.mobile-map-card__body h3 {
    margin: 0 0 0.5rem;
    color: var(--mm-title);
    font-size: 0.90rem;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.mobile-map-card__body p {
    margin: 0;
    color: var(--mm-text-subtitle);
    font-size: 0.68rem;
    line-height: 1.4;
}

.mobile-map-card__category {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    margin-top: 0.38rem;
    color: #475569;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.mobile-map-card__category-dot {
    display: inline-flex;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
}

.mobile-map-card__joyita,
.mobile-map-app__detail-joyita {
    display: inline-flex;
    width: fit-content;
    border-radius: 999px;
    padding: 0.26rem 0.58rem;
    background: #fff7ed;
    color: #c2410c;
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.mobile-map-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 0.45rem;
}

.mobile-map-card__status {
    display: inline-flex;
    align-items: center;
    border-radius: 14px;
    padding: 0.26rem 0.46rem;
    background: hsla(145, 63%, 42%, 0.12);
    color: var(--mm-state-success-text);
    font-size: 0.56rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.mobile-map-card__status--pending {
    background: rgba(100, 116, 139, 0.12);
    color: #64748b;
}

.mobile-map-card__status--discovered {
    background: hsla(145, 63%, 42%, 0.12);
    color: var(--mm-state-success-text);
}

.mobile-map-card__status--closed {
    background: rgba(100, 116, 139, 0.12);
    color: #64748b;
}

.mobile-map-card__reviews {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #d97706;
    font-size: 0.62rem;
    font-weight: 800;
}

.mobile-map-card__reviews svg {
    width: 0.76rem;
    height: 0.76rem;
    color: var(--mm-rating-star);
    fill: var(--mm-rating-star);
    stroke: var(--mm-rating-star);
}

.mobile-map-app__empty-state {
    border-radius: 28px;
    padding: 1.5rem;
    background: var(--mm-surface);
    box-shadow: 0 20px 46px rgba(15, 23, 42, 0.12);
}

.mobile-map-app__empty-state strong {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 1.1rem;
}

.mobile-map-app__empty-state p {
    margin: 0;
    color: var(--mm-text-subtitle);
    line-height: 1.55;
}

.mobile-map-app__nav {
    position: fixed;
    left: 50%;
    bottom: max(0px, env(safe-area-inset-bottom));
    transform: translateX(-50%);
    z-index: 20;
    width: min(calc(100% - 1rem), 1440px);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: end;
    gap: 0.42rem;
    padding: 0.58rem 0.82rem 0.84rem;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 26px 26px 0 0;
    box-shadow: 0 -18px 42px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
}

.mobile-map-app__nav-item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.24rem;
    border: none;
    background: transparent;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.54rem;
    font-weight: 800;
    text-transform: uppercase;
}

.mobile-map-app__nav-item svg {
    width: 1.92rem;
    height: 1.92rem;
}

.mobile-map-app__nav-item.is-active {
    color: var(--mm-color-brand);
}

.mobile-map-app__nav-item--center {
    transform: translateY(-1.45rem);
}

.mobile-map-app__nav-core {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.85rem;
    height: 3.85rem;
    border: 6px solid #fff;
    border-radius: 50%;
    background: var(--mm-color-brand-cta);
    color: #fff;
    box-shadow: 0 18px 38px hsla(31, 90%, 50%, 0.34);
}

.mobile-map-app__nav-core svg {
    width: 1.82rem;
    height: 1.82rem;
    color: #fff;
}

.map-shell__canvas-empty {
    display: grid;
    place-items: center;
    min-height: 100%;
    color: var(--mm-text-subtitle);
    background: rgba(248, 250, 252, 0.92);
}

.map-shell__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.24) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.24) 1px, transparent 1px);
    background-size: 36px 36px;
}

.map-shell__pin {
    position: absolute;
    width: 3rem;
    height: 3rem;
    border: 4px solid var(--mm-surface);
    border-radius: 50%;
    background: var(--mm-color-brand);
    color: #fff;
    box-shadow: 0 14px 30px hsla(31, 90%, 50%, 0.28);
    transform: translate(-50%, -50%);
}

.map-shell__pin span {
    position: relative;
    z-index: 2;
    font-weight: 800;
}

.map-shell__info-window {
    min-width: 220px;
    max-width: 280px;
    display: grid;
    gap: 0.75rem;
    padding: 0.15rem;
}

.map-shell__info-window-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
}

.map-shell__info-window strong {
    display: block;
    margin-bottom: 0.2rem;
    color: var(--mm-title);
    font-size: 1rem;
    line-height: 1.2;
}

.map-shell__info-window-merchant,
.map-shell__info-window-address {
    margin: 0;
    color: var(--mm-text-subtitle);
    font-size: 0.86rem;
    line-height: 1.45;
}

.map-shell__info-window-badge {
    flex: 0 0 auto;
    border-radius: 999px;
    padding: 0.4rem 0.7rem;
    background: hsla(145, 63%, 42%, 0.12);
    color: var(--mm-state-success-text);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.map-shell__info-window-badge--open {
    background: hsla(145, 63%, 42%, 0.12);
    color: var(--mm-state-success-text);
}

.map-shell__info-window-badge--closed {
    background: rgba(100, 116, 139, 0.12);
    color: #64748b;
}

.map-shell__info-window-badge-stack {
    display: grid;
    justify-items: end;
    gap: 0.35rem;
}

.map-shell__info-window-badge--source {
    background: rgba(15, 23, 42, 0.06);
    color: #334155;
}

.map-shell__info-window-badge--category {
    background: var(--category-accent, #CBD5E1);
    color: #fff;
}

.map-shell__info-window-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.map-shell__info-window-meta span {
    border-radius: 999px;
    padding: 0.42rem 0.7rem;
    background: #f8fafc;
    color: #475569;
    font-size: 0.76rem;
    font-weight: 700;
}

.map-shell__info-window-detail,
.map-shell__info-window-review {
    margin: 0;
    color: #475569;
    font-size: 0.79rem;
    line-height: 1.5;
}

.map-shell__info-window-review {
    color: var(--mm-text-subtitle);
    font-style: italic;
}

.map-shell__info-window-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.map-shell__info-window-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.2rem;
    border-radius: 999px;
    padding: 0.6rem 1rem;
    background: hsla(31, 90%, 50%, 0.1);
    color: var(--mm-color-brand);
    font-size: 0.8rem;
    font-weight: 800;
    text-decoration: none;
}

@media (min-width: 860px) {
    .mobile-map-app {
        /* Desktop-specific overrides can go here, but we maintain the full-bleed layout */
    }

    .mobile-map-app__header {
        align-items: center;
        padding: 1rem 1.5rem;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    }

    .mobile-map-app__header-top {
        justify-content: flex-start;
    }

    .mobile-map-app__icon-button--menu,
    .mobile-map-app__icon-button--notify {
        width: 3rem;
        height: 3rem;
        background: #fff1e9;
        color: #f27f0d;
        box-shadow: none;
    }

    .mobile-map-app__brand-logo {
        height: 2.15rem;
    }

    .mobile-map-app__header-actions {
        margin-left: auto;
        gap: 1.4rem;
    }

    .mobile-map-app__location-display,
    .mobile-map-app__service-pill {
        min-height: 2.8rem;
        padding: 0.58rem 1rem;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid #e2e8f0;
        box-shadow: 0 8px 18px rgba(15, 23, 42, 0.1);
        color: #334155;
        font-size: 0.95rem;
    }

    .mobile-map-app__location-display {
        border: none;
        background: transparent;
        box-shadow: none;
        color: #334155;
        font-weight: 900;
    }

    .mobile-map-app__pin-icon {
        color: #f27f0d;
    }

    .mobile-map-app__status-pill {
        left: 2rem;
        bottom: 20.5rem;
    }

    .mobile-map-app__chip-row--map {
        padding: 0 2rem;
    }

    .mobile-map-app__floating-controls {
        right: 2rem;
    }

    .mobile-map-app__cards-rail {
        gap: 1.1rem;
        padding: 0 1.6rem;
        bottom: 5.5rem;
        margin-bottom: 20px;
    }

    .mobile-map-card,
    .mobile-map-app__empty-state {
        flex-basis: min(188px, calc(22.5% - 0.8rem));
    }
}

@media (max-width: 420px) {
    .mobile-map-app {
        /* Mobile-specific overrides can go here */
    }

    .mobile-map-card,
    .mobile-map-app__empty-state {
        flex-basis: calc(51% - 1rem);
    }

    .mobile-map-app__nav {
        width: 100%;
        left: 0;
        transform: none;
        border-left: none;
        border-right: none;
        border-radius: 18px 18px 0 0;
        padding: 0.2rem 0.82rem 0.4rem;
    }

}

@keyframes welcome-blink {
    0%, 49% {
        opacity: 1;
    }

    50%, 100% {
        opacity: 0;
    }
}

@keyframes welcome-bounce-in {
    0% {
        opacity: 0;
        transform: translateY(18px) scale(0.96);
    }

    65% {
        opacity: 1;
        transform: translateY(-6px) scale(1.02);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.mobile-map-app__panel {
    min-height: calc(100vh - 14rem);
    padding: 1.1rem 1.2rem 7rem;
    display: grid;
    align-content: start;
    gap: 1rem;
}

.mobile-map-app__panel-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
}

.mobile-map-app__panel-head h2 {
    margin: 0.15rem 0 0;
    font-size: 1.6rem;
    color: #0f172a;
}

.mobile-map-app__eyebrow {
    display: inline-flex;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #94a3b8;
    font-weight: 800;
}

.mobile-map-app__panel-count {
    min-width: 2.1rem;
    height: 2.1rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f97316;
    color: #fff;
    font-weight: 800;
}

.mobile-map-app__auth-card,
.public-home__saved-row,
.mobile-map-app__policy-note,
.mobile-map-app__address-form {
    border: 1px solid rgba(226, 232, 240, 0.96);
    background: rgba(255, 255, 255, 0.94);
    border-radius: 26px;
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
}

.mobile-map-app__auth-card {
    padding: 1.2rem 1.15rem;
    display: grid;
    gap: 0.55rem;
}

.mobile-map-app__auth-card strong {
    color: #0f172a;
    font-size: 1.05rem;
}

.mobile-map-app__auth-card p,
.public-home__saved-row p,
.public-home__saved-row small,
.mobile-map-app__policy-note p,
.mobile-map-app__address-status,
.mobile-map-app__detail-note,
.mobile-map-app__detail-policy,
.mobile-map-app__detail-meta {
    margin: 0;
    color: #64748b;
}

.public-home__saved-row small {
    display: block;
    margin-top: 0.25rem;
    font-weight: 800;
    color: #94a3b8;
}

.mobile-map-app__policy-note {
    padding: 0.95rem 1rem;
    display: grid;
    gap: 0.35rem;
    background: rgba(255, 247, 237, 0.94);
    border-color: rgba(251, 146, 60, 0.34);
}

.mobile-map-app__policy-note strong {
    color: #9a3412;
}

.public-legal-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1.35rem, 3vw, 2.35rem);
    flex-wrap: wrap;
    font-size: 1.03rem;
    font-weight: 800;
}

.public-legal-links a {
    color: #944804;
    text-decoration: none;
}

.public-legal-links a:hover {
    color: #f97316;
}

.welcome-flow__legal {
    display: grid;
    gap: 0.45rem;
    margin-top: 1rem;
    text-align: center;
}

.welcome-flow__legal {
    font-size: 0.72rem;
}

.legal-center {
    min-height: 100dvh;
    display: grid;
    place-items: center;
    padding: 2rem 1rem;
    background:
        radial-gradient(circle at 18% 15%, rgba(249, 115, 22, 0.12), transparent 28rem),
        linear-gradient(135deg, #fff7ed, #eef4ff 58%, #ffffff);
}

.legal-center__card {
    width: min(100%, 760px);
    border-radius: 30px;
    padding: clamp(1.4rem, 4vw, 2.4rem);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.12);
}

.legal-center__card--document {
    display: grid;
    gap: 1rem;
}

.legal-center__eyebrow {
    margin: 0 0 0.35rem;
    color: #f97316;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.legal-center h1 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(2rem, 6vw, 3.2rem);
    letter-spacing: -0.06em;
    line-height: 0.95;
}

.legal-center__intro {
    color: #64748b;
    line-height: 1.65;
}

.legal-center__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.9rem;
    margin-top: 1.4rem;
}

.legal-center__document-card {
    display: grid;
    gap: 0.45rem;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 22px;
    padding: 1rem;
    color: inherit;
    text-decoration: none;
    background: #fff;
}

.legal-center__document-card span {
    color: #f97316;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.legal-center__document-card strong {
    color: #0f172a;
}

.legal-center__document-card p {
    margin: 0;
    color: #64748b;
    line-height: 1.45;
}

.legal-center__body {
    color: #334155;
    line-height: 1.75;
    white-space: normal;
}

.legal-center__back {
    display: inline-flex;
    width: fit-content;
    margin-top: 1rem;
    color: #f97316;
    font-weight: 900;
    text-decoration: none;
}

.legal-center__footer {
    display: grid;
    gap: 0.7rem;
    border-top: 1px solid #e2e8f0;
    padding-top: 1rem;
    color: #64748b;
}

.cookie-consent {
    position: fixed;
    right: max(1rem, env(safe-area-inset-right));
    bottom: max(1rem, env(safe-area-inset-bottom));
    left: max(1rem, env(safe-area-inset-left));
    z-index: var(--mm-layer-cookie);
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.cookie-consent.is-hidden {
    display: none;
}

.cookie-consent__panel {
    width: min(100%, 1180px);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.95rem;
    border: 1px solid #e7c9b8;
    border-radius: 18px;
    padding: 0.95rem 1rem;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 28px rgba(70, 42, 24, 0.14);
    pointer-events: auto;
}

.cookie-consent__icon {
    width: 2.6rem;
    height: 2.6rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #ffd9c4;
    color: #2b211e;
}

.cookie-consent__icon svg {
    width: 1.35rem;
    height: 1.35rem;
}

.cookie-consent__copy {
    display: grid;
    gap: 0.18rem;
}

.cookie-consent__copy strong {
    color: #241a18;
    font-size: 1rem;
    line-height: 1.15;
}

.cookie-consent__panel p {
    max-width: 120rem;
    margin: 0;
    color: #6f5a50;
    font-size: 0.9rem;
    line-height: 1.45;
}

.cookie-consent__panel a {
    width: fit-content;
    color: #944804;
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
}

.cookie-consent__options {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin: 0.55rem 0;
}

.cookie-consent__options label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #334155;
    font-size: 0.9rem;
    font-weight: 800;
}

.cookie-consent__options input {
    accent-color: #f97316;
}

.cookie-consent__actions {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cookie-consent__actions button {
    min-width: 10.5rem;
    border: 1px solid #e2c2b1;
    border-radius: 999px;
    padding: 0.62rem 0.95rem;
    background: #fff;
    color: #604b42;
    font-size: 0.86rem;
    font-weight: 800;
    cursor: pointer;
}

.cookie-consent__actions button:last-child {
    border-color: #f98205;
    background: #f98205;
    color: #3d230b;
}

.alpha-gate-page .cookie-consent {
    bottom: calc(4.8rem + env(safe-area-inset-bottom));
}

body:has(.mobile-map-app) .cookie-consent {
    bottom: calc(6.25rem + env(safe-area-inset-bottom));
}

.mobile-map-app__auth-actions,
.mobile-map-app__address-actions,
.mobile-map-app__detail-actions,
.public-home__saved-actions,
.mobile-map-app__meta-grid {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.mobile-map-app__meta-grid span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border-radius: 999px;
    padding: 0.45rem 0.7rem;
    background: #f8fafc;
    color: #64748b;
    font-size: 0.86rem;
    font-weight: 800;
}

.mobile-map-app__meta-grid strong {
    color: #0f172a;
    font-size: inherit;
}

.mobile-map-app__legal-status-list {
    display: grid;
    gap: 0.65rem;
}

.mobile-map-app__legal-status-list p {
    margin: 0;
    color: #64748b;
}

.mobile-map-app__legal-status-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.2rem 0.75rem;
    border-radius: 18px;
    padding: 0.8rem 0.85rem;
    background: #f8fafc;
}

.mobile-map-app__legal-status-item span {
    color: #0f172a;
    font-weight: 900;
}

.mobile-map-app__legal-status-item strong {
    color: #f97316;
    font-size: 0.86rem;
}

.mobile-map-app__legal-status-item small {
    grid-column: 1 / -1;
    color: #64748b;
    font-weight: 800;
}

.mobile-map-app__auth-actions a,
.mobile-map-app__auth-actions button,
.mobile-map-app__primary-button,
.mobile-map-app__ghost-button,
.mobile-map-app__detail-actions a,
.mobile-map-app__detail-actions button,
.public-home__inline-button {
    min-height: 2.6rem;
    border-radius: 999px;
    padding: 0.65rem 0.95rem;
    font-weight: 800;
    font-size: 0.9rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.mobile-map-app__auth-actions a,
.mobile-map-app__auth-actions button,
.mobile-map-app__primary-button,
.mobile-map-app__detail-actions a:first-child,
.mobile-map-app__detail-actions button {
    background: #f97316;
    color: #fff;
}

.mobile-map-app__ghost-button,
.public-home__inline-button,
.mobile-map-app__detail-actions a:not(:first-child) {
    background: #fff;
    color: #334155;
    border: 1px solid rgba(203, 213, 225, 0.94);
}

.mobile-map-app__address-form {
    padding: 1rem;
    display: grid;
    gap: 0.85rem;
}

.mobile-map-app__field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.mobile-map-app__field-grid label,
.mobile-map-app__checkbox-row {
    display: grid;
    gap: 0.35rem;
}

.mobile-map-app__field-grid label span,
.mobile-map-app__checkbox-row span {
    font-size: 0.86rem;
    color: #475569;
    font-weight: 700;
}

.mobile-map-app__field-grid input,
.mobile-map-app__field-grid select {
    width: 100%;
    min-height: 2.9rem;
    border-radius: 16px;
    border: 1px solid rgba(203, 213, 225, 0.94);
    background: #fff;
    padding: 0.72rem 0.85rem;
    color: #0f172a;
}

.mobile-map-app__field-span {
    grid-column: 1 / -1;
}

.mobile-map-app__checkbox-row {
    align-items: center;
    grid-template-columns: auto 1fr;
}

.mobile-map-app__saved-list {
    display: grid;
    gap: 0.8rem;
}

.public-home__saved-row {
    padding: 1rem 1rem 0.95rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.9rem;
}

.public-home__saved-row > div:first-child {
    min-width: 0;
}

.public-home__saved-actions {
    justify-content: flex-end;
}

.public-home__saved-actions .public-home__inline-button {
    white-space: nowrap;
}

.public-home__saved-row strong,
.mobile-map-app__detail-head h3 {
    color: #0f172a;
    margin: 0;
}

.public-home__badge {
    display: inline-flex;
    align-items: center;
    min-height: 1.9rem;
    border-radius: 999px;
    padding: 0.3rem 0.65rem;
    background: rgba(22, 163, 74, 0.12);
    color: #15803d;
    font-size: 0.78rem;
    font-weight: 800;
}

.mobile-map-app__detail-sheet {
    position: fixed;
    inset: 0;
    z-index: 90;
}

.mobile-map-app__detail-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.36);
    backdrop-filter: blur(4px);
}

.mobile-map-app__detail-card {
    position: absolute;
    left: 50%;
    bottom: 1rem;
    width: min(42rem, calc(100% - 2rem));
    max-height: min(74vh, 42rem);
    transform: translate(-50%, 18px);
    border-radius: 28px;
    overflow: hidden;
    background: #fff8f5;
    box-shadow: 0 28px 54px rgba(15, 23, 42, 0.22);
    opacity: 0;
    transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1), opacity 220ms ease;
}

.mobile-map-app__detail-sheet.is-visible .mobile-map-app__detail-card {
    opacity: 1;
    transform: translate(-50%, 0);
}

.mobile-map-app__detail-body {
    display: flex;
    flex-direction: column;
    max-height: inherit;
}

.mobile-map-app__detail-grabber {
    width: 3rem;
    height: 0.36rem;
    flex: 0 0 auto;
    align-self: center;
    margin: 0.75rem 0 0.65rem;
    border-radius: 999px;
    background: rgba(86, 67, 53, 0.24);
}

.mobile-map-app__detail-hero {
    min-height: 13.8rem;
    flex: 0 0 auto;
    position: relative;
    background: linear-gradient(135deg, #f59e0b 0%, #fb923c 48%, #0f172a 100%);
    background-size: cover;
    background-position: center;
}

.mobile-map-app__detail-hero--1 { background: linear-gradient(135deg, #ffd2bc 0%, #f7a97e 100%); }
.mobile-map-app__detail-hero--2 { background: linear-gradient(135deg, #ffe4d4 0%, #ffc07a 100%); }
.mobile-map-app__detail-hero--3 { background: linear-gradient(135deg, #d8f5de 0%, #91d5a3 100%); }
.mobile-map-app__detail-hero--4 { background: linear-gradient(135deg, #d9e7ff 0%, #8fb4ff 100%); }

.mobile-map-app__detail-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(36, 25, 18, 0.02), rgba(36, 25, 18, 0.45));
}

.mobile-map-app__detail-overlay-actions {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.mobile-map-app__detail-float-button {
    width: 2.45rem;
    height: 2.45rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #241912;
    box-shadow: 0 14px 26px rgba(36, 25, 18, 0.16);
    cursor: pointer;
}

.mobile-map-app__detail-float-button svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mobile-map-app__detail-float-button--favorite {
    color: var(--mm-icon-favorite);
}

.mobile-map-app__detail-float-button--favorite.is-active {
    background: var(--mm-surface);
    color: var(--mm-icon-favorite);
}

.mobile-map-app__detail-source {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    min-height: 1.9rem;
    border-radius: 999px;
    padding: 0.35rem 0.72rem;
    background: #f27f0d;
    color: #562900;
    font-size: 0.78rem;
    font-weight: 800;
}

.mobile-map-app__detail-source svg {
    width: 0.92rem;
    height: 0.92rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mobile-map-app__detail-copy {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    display: grid;
    gap: 1rem;
    padding: 1.15rem 1.15rem 1.25rem;
}

.mobile-map-app__detail-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 0.8rem;
}

.mobile-map-app__detail-head h3 {
    font-size: 1.35rem;
    line-height: 1.12;
    letter-spacing: 0;
}

.mobile-map-app__detail-status {
    white-space: nowrap;
    border-radius: 10px;
    padding: 0.32rem 0.55rem;
    background: #dcfce7;
    color: #15803d;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.mobile-map-app__detail-category {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid rgba(221, 193, 175, 0.52);
    border-radius: 14px;
    padding: 0.78rem;
    background: #fff1e9;
}

.mobile-map-app__detail-category > span {
    width: 2.35rem;
    height: 2.35rem;
    flex: 0 0 auto;
    border-radius: 12px;
    display: inline-block;
}

.mobile-map-app__detail-category small {
    display: block;
    color: #944a00;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.mobile-map-app__detail-category strong {
    color: #241912;
    font-size: 0.95rem;
}

.mobile-map-app__detail-rating-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
    margin-top: 0.38rem;
    color: #564335;
    font-size: 0.8rem;
    font-weight: 800;
}

.mobile-map-app__detail-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: #241912;
}

.mobile-map-app__detail-rating svg {
    width: 1rem;
    height: 1rem;
    fill: #facc15;
    stroke: #facc15;
}

.mobile-map-app__detail-meta {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    color: #564335;
    font-size: 0.92rem;
    line-height: 1.45;
}

.mobile-map-app__detail-section {
    display: grid;
    gap: 0.45rem;
}

.mobile-map-app__detail-section h4 {
    margin: 0;
    color: #564335;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.mobile-map-app__detail-section p,
.mobile-map-app__detail-note,
.mobile-map-app__detail-policy {
    margin: 0;
    color: #564335;
    font-size: 0.94rem;
    line-height: 1.55;
}

.mobile-map-app__detail-gallery {
    display: flex;
    gap: 0.6rem;
    overflow-x: auto;
    padding-bottom: 0.15rem;
}

.mobile-map-app__detail-gallery div {
    width: 5.6rem;
    height: 5.6rem;
    flex: 0 0 auto;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 18px rgba(36, 25, 18, 0.08);
}

.mobile-map-app__detail-actions--primary,
.mobile-map-app__detail-actions--secondary {
    display: grid;
    gap: 0.65rem;
}

.mobile-map-app__detail-actions--secondary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mobile-map-app__detail-action-primary,
.mobile-map-app__detail-action-secondary,
.mobile-map-app__detail-actions--secondary a,
.mobile-map-app__detail-actions--secondary button {
    min-height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.48rem;
    border-radius: 999px;
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
    font-weight: 900;
    text-decoration: none;
}

.mobile-map-app__detail-action-primary {
    border: none;
    background: #f27f0d;
    color: #562900;
    box-shadow: 0 14px 24px rgba(148, 74, 0, 0.18);
}

.mobile-map-app__detail-action-primary--route {
    border: none;
    background: #241912;
    color: #fff8f5;
}

.mobile-map-app__detail-action-primary svg {
    width: 1.15rem;
    height: 1.15rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mobile-map-app__detail-action-secondary,
.mobile-map-app__detail-actions--secondary a,
.mobile-map-app__detail-actions--secondary button {
    border: 2px solid #944a00;
    background: #fff8f5;
    color: #944a00;
}

.mobile-map-app__detail-actions--secondary a,
.mobile-map-app__detail-actions--secondary button {
    border-width: 1px;
    background: rgba(255, 255, 255, 0.78);
}

.mobile-map-app__own-review {
    display: grid;
    gap: 0.9rem;
    border: 1px solid rgba(221, 193, 175, 0.58);
    border-radius: 16px;
    padding: 0.85rem;
    background: #ffffff;
}

.mobile-map-app__own-review header {
    display: grid;
    gap: 0.16rem;
}

.mobile-map-app__own-review small {
    display: block;
    color: #944a00;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.mobile-map-app__own-review strong {
    display: block;
    margin-top: 0.16rem;
    color: #241912;
    font-size: 0.94rem;
    line-height: 1.2;
}

.mobile-map-app__own-review p {
    margin: 0.22rem 0 0;
    color: #564335;
    font-size: 0.82rem;
    line-height: 1.35;
}

.mobile-map-app__own-review button {
    min-height: 2.65rem;
    border: none;
    border-radius: 999px;
    padding: 0.62rem 0.95rem;
    background: #f98205;
    color: #fff8f5;
    font-weight: 900;
    cursor: pointer;
}

.mobile-map-app__own-review button:disabled {
    cursor: wait;
    opacity: 0.72;
}

.mobile-map-app__own-review-form {
    display: grid;
    gap: 0.72rem;
}

.mobile-map-app__own-review-stars {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    width: max-content;
    max-width: 100%;
    border-radius: 999px;
}

.mobile-map-app__own-review-star {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.35rem;
    min-height: 2.35rem;
    border-radius: 999px;
    color: #9a8171;
    cursor: pointer;
}

.mobile-map-app__own-review-star input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.mobile-map-app__own-review-star span {
    display: inline-flex;
    color: inherit;
    pointer-events: none;
}

.mobile-map-app__own-review-star svg {
    width: 1.45rem;
    height: 1.45rem;
}

.mobile-map-app__own-review-star.is-selected,
.mobile-map-app__own-review-star.is-preview {
    color: #f98205;
}

.mobile-map-app__own-review-star.is-selected svg path,
.mobile-map-app__own-review-star.is-preview svg path {
    fill: currentColor;
}

.mobile-map-app__own-review-star:focus-within {
    outline: 3px solid rgba(249, 130, 5, 0.28);
    outline-offset: 2px;
}

.mobile-map-app__own-review-field {
    display: grid;
    gap: 0.35rem;
}

.mobile-map-app__own-review-field span {
    color: #564335;
    font-size: 0.78rem;
    font-weight: 900;
}

.mobile-map-app__own-review-field textarea,
.mobile-map-app__own-review-field input {
    width: 100%;
    min-width: 0;
    border: 1px solid rgba(221, 193, 175, 0.78);
    border-radius: 14px;
    padding: 0.78rem 0.85rem;
    background: #fff8f5;
    color: #241912;
    font: inherit;
    outline: none;
}

.mobile-map-app__own-review-field textarea:focus,
.mobile-map-app__own-review-field input:focus {
    border-color: #f98205;
    box-shadow: 0 0 0 3px rgba(249, 130, 5, 0.16);
}

.mobile-map-app__own-review-file input {
    background: #fff;
}

.mobile-map-app__own-review-file small,
.mobile-map-app__own-review-preview small {
    color: #8a7263;
    font-size: 0.76rem;
    font-weight: 800;
}

.mobile-map-app__own-review-preview {
    display: grid;
    gap: 0.4rem;
}

.mobile-map-app__own-review-preview img,
.mobile-map-app__own-review-preview video {
    width: 100%;
    max-height: 12rem;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid rgba(221, 193, 175, 0.78);
    background: #0f172a;
}

.mobile-map-app__own-review-status,
.mobile-map-app__own-review-list > p {
    margin: 0;
    color: #8a7263;
    font-size: 0.82rem;
    font-weight: 800;
}

.mobile-map-app__own-review-list > p.is-error {
    color: #b42318;
}

.mobile-map-app__own-review-list {
    display: grid;
    gap: 0.62rem;
}

.mobile-map-app__own-review-item {
    display: grid;
    gap: 0.42rem;
    border: 1px solid rgba(221, 193, 175, 0.58);
    border-radius: 14px;
    padding: 0.72rem;
    background: #fff8f5;
}

.mobile-map-app__own-review-item > div:first-child {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.38rem 0.55rem;
}

.mobile-map-app__own-review-item strong {
    margin: 0;
    font-size: 0.88rem;
}

.mobile-map-app__own-review-item span {
    color: #f98205;
    font-size: 0.86rem;
    font-weight: 900;
}

.mobile-map-app__own-review-item small {
    border-radius: 999px;
    padding: 0.18rem 0.5rem;
    background: #fff1e9;
    font-size: 0.64rem;
}

.mobile-map-app__own-review-media {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.38rem;
}

.mobile-map-app__own-review-media img,
.mobile-map-app__own-review-media video {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 10px;
    background: #0f172a;
}

.mobile-map-app__detail-actions .mobile-map-app__detail-action-secondary,
.mobile-map-app__detail-actions.mobile-map-app__detail-actions--secondary a,
.mobile-map-app__detail-actions.mobile-map-app__detail-actions--secondary button {
    border: 2px solid #944a00;
    background: #fff8f5;
    color: #944a00;
}

.mobile-map-app__detail-action-secondary:disabled {
    border-color: #ddc1af;
    color: #8a7263;
    cursor: not-allowed;
    opacity: 0.78;
}

.mobile-map-app__auth-modal {
    position: fixed;
    inset: 0;
    z-index: 110;
    display: grid;
    place-items: center;
    padding: 2rem;
}

.mobile-map-app__auth-modal-backdrop {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(36, 25, 18, 0.48), rgba(36, 25, 18, 0.48)),
        radial-gradient(circle at 22% 72%, rgba(249, 130, 5, 0.38), transparent 22rem),
        radial-gradient(circle at 74% 20%, rgba(255, 183, 132, 0.24), transparent 18rem),
        rgba(24, 18, 15, 0.78);
    backdrop-filter: blur(10px);
}

.mobile-map-app__auth-modal-card {
    position: relative;
    width: min(100%, 30rem);
    max-height: min(92dvh, 46rem);
    overflow-y: auto;
    display: grid;
    gap: 1.35rem;
    border-radius: 32px;
    padding: 2.5rem 2.25rem 2.2rem;
    background: #fff8f5;
    color: #241912;
    box-shadow: 0 34px 90px rgba(10, 6, 4, 0.42);
    transform: translateY(18px) scale(0.98);
    opacity: 0;
    transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1), opacity 220ms ease;
}

.mobile-map-app__auth-modal.is-visible .mobile-map-app__auth-modal-card {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.mobile-map-app__auth-modal-grabber {
    display: none;
}

.mobile-map-app__auth-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.35rem;
    height: 2.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 999px;
    background: #fff1e9;
    color: #564335;
    cursor: pointer;
}

.mobile-map-app__auth-modal-close svg {
    width: 1rem;
    height: 1rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mobile-map-app__auth-modal-head {
    display: grid;
    gap: 0.55rem;
    text-align: center;
}

.mobile-map-app__auth-modal-head h2 {
    margin: 0;
    color: #944a00;
    font-size: 1.55rem;
    font-weight: 900;
    line-height: 1.1;
}

.mobile-map-app__auth-modal-head p {
    margin: 0;
    color: #564335;
    font-size: 1.08rem;
    line-height: 1.45;
}

.mobile-map-app__auth-socials {
    display: grid;
    gap: 0.7rem;
}

.mobile-map-app__auth-social-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
}

.mobile-map-app__auth-social {
    min-height: 3.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    border: 1px solid #ddc1af;
    border-radius: 999px;
    padding: 0.72rem 1rem;
    background: #fff8f5;
    color: #241912;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
}

.mobile-map-app__auth-social svg {
    width: 1.35rem;
    height: 1.35rem;
    flex: 0 0 auto;
}

.mobile-map-app__auth-social:disabled {
    cursor: not-allowed;
    opacity: 1;
}

.mobile-map-app__auth-social--apple {
    border-color: #241912;
    background: #241912;
    color: #fff8f5;
}

.mobile-map-app__auth-divider {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    color: #564335;
}

.mobile-map-app__auth-divider span {
    height: 1px;
    background: #ddc1af;
}

.mobile-map-app__auth-divider strong {
    font-size: 0.78rem;
    font-weight: 800;
}

.mobile-map-app__auth-form {
    display: grid;
    gap: 1rem;
}

.mobile-map-app__auth-form label {
    display: grid;
    gap: 0.45rem;
}

.mobile-map-app__auth-form label > span {
    color: #564335;
    font-size: 0.92rem;
    font-weight: 900;
}

.mobile-map-app__auth-input {
    min-height: 3.65rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-radius: 16px;
    padding: 0 0.9rem 0 1rem;
    background: #fff1e9;
    color: #8a7263;
}

.mobile-map-app__auth-input > svg {
    width: 1.5rem;
    height: 1.5rem;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mobile-map-app__auth-input input {
    min-width: 0;
    flex: 1 1 auto;
    border: none;
    outline: none;
    background: transparent;
    color: #241912;
    font-size: 1rem;
}

.mobile-map-app__auth-input input::placeholder {
    color: #b39c90;
    opacity: 1;
}

.mobile-map-app__auth-input button {
    width: 2.25rem;
    height: 2.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: #8a7263;
    cursor: pointer;
}

.mobile-map-app__auth-input button svg {
    width: 1.55rem;
    height: 1.55rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mobile-map-app__auth-submit {
    min-height: 3.8rem;
    border: none;
    border-radius: 999px;
    margin-top: 0.35rem;
    background: #f98205;
    color: #fff8f5;
    font-size: 1.08rem;
    font-weight: 800;
    box-shadow: 0 18px 32px rgba(148, 74, 0, 0.2);
    cursor: pointer;
}

.mobile-map-app__auth-modal-foot {
    display: grid;
    gap: 0.95rem;
    border-top: 1px solid #ddc1af;
    padding-top: 1rem;
    text-align: center;
}

.mobile-map-app__auth-modal-foot a {
    color: #944a00;
    font-weight: 900;
    text-decoration: none;
}

.mobile-map-app__auth-modal-foot p {
    margin: 0;
    color: #564335;
    font-size: 1rem;
}

/* Liquid glass refresh for Public shell */
.mobile-map-app__header {
    background: rgba(255, 255, 255, 0.72);
    border-bottom: 1px solid rgba(221, 193, 175, 0.42);
    box-shadow: 0 18px 40px rgba(36, 25, 18, 0.08);
    backdrop-filter: blur(24px) saturate(170%);
    -webkit-backdrop-filter: blur(24px) saturate(170%);
}

.mobile-map-app__icon-button--menu,
.mobile-map-app__icon-button--notify,
.mobile-map-app__location-display,
.mobile-map-app__service-pill,
.mobile-map-app__desktop-search,
.mobile-map-app__mobile-search {
    border: 1px solid rgba(226, 214, 207, 0.72);
    background: rgba(255, 255, 255, 0.62);
    box-shadow:
        0 10px 28px rgba(36, 25, 18, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
}

.mobile-map-app__icon-button--menu,
.mobile-map-app__icon-button--notify {
    color: #f27f0d;
    background: rgba(255, 241, 233, 0.78);
}

.mobile-map-app__pin-icon {
    color: #f98205;
}

.mobile-map-app__service-caret {
    width: 0.95rem;
    height: 0.95rem;
    flex: 0 0 auto;
    color: #64748b;
}

.mobile-map-app__mobile-search {
    width: 100%;
    min-height: 4rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    border-radius: 28px;
    padding: 0.4rem 1.25rem;
    background: rgba(241, 245, 249, 0.72);
}

.mobile-map-app__mobile-search svg {
    width: 1.65rem;
    height: 1.65rem;
    fill: none;
    stroke: #94a3b8;
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mobile-map-app__mobile-search label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.mobile-map-app__mobile-search input {
    min-width: 0;
    flex: 1 1 auto;
    border: 0;
    outline: 0;
    background: transparent;
    color: #0f172a;
    font-size: 1.1rem;
    font-weight: 700;
}

.mobile-map-app__mobile-search input::placeholder {
    color: #94a3b8;
    opacity: 1;
}

.mobile-map-app__location-switcher.is-service-menu {
    left: auto;
    right: 5.5rem;
    width: min(18rem, calc(100vw - 2rem));
    gap: 0.35rem;
    padding: 0.55rem;
    border-radius: 18px;
}

.mobile-map-app__location-switcher.is-service-menu .mobile-map-app__location-item {
    gap: 0.15rem;
    border-radius: 14px;
    padding: 0.65rem 0.75rem;
}

.mobile-map-app__location-switcher.is-service-menu .mobile-map-app__location-item strong {
    font-size: 0.92rem;
}

.mobile-map-app__location-switcher.is-service-menu .mobile-map-app__location-item span {
    font-size: 0.75rem;
    line-height: 1.25;
}

.mobile-map-app__visual-section {
    display: grid;
    gap: 1rem;
}

.mobile-map-app__visual-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.mobile-map-app__visual-head h3 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    line-height: 1.1;
    letter-spacing: 0;
}

.mobile-map-app__visual-head button {
    border: none;
    background: transparent;
    color: #f27f0d;
    font-size: 0.92rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
}

.mobile-map-app__nearby-live-row,
.mobile-map-app__category-orbit,
.mobile-map-app__review-teaser-row,
.mobile-map-app__nearby-category-grid,
.mobile-map-app__places-story-row {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.25rem;
}

.mobile-map-app__places-story {
    position: relative;
    width: clamp(8.4rem, 28vw, 11rem);
    aspect-ratio: 0.68;
    flex: 0 0 auto;
    display: grid;
    align-content: end;
    gap: 0.25rem;
    overflow: hidden;
    scroll-snap-align: start;
    border: 2px solid #ffffff;
    border-radius: 8px;
    padding: 0.75rem;
    background-size: cover;
    background-position: center;
    color: #ffffff;
    text-align: left;
    box-shadow:
        0 14px 34px rgba(15, 23, 42, 0.18),
        0 0 0 2px rgba(242, 127, 13, 0.42);
    cursor: pointer;
}

.mobile-map-app__places-story span {
    width: fit-content;
    border-radius: 999px;
    padding: 0.22rem 0.5rem;
    background: rgba(249, 130, 5, 0.86);
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 900;
    line-height: 1;
}

.mobile-map-app__places-story strong {
    display: block;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.05;
}

.mobile-map-app__places-story small {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.25;
    opacity: 0.9;
}

.mobile-map-app__nearby-live-card {
    position: relative;
    width: clamp(10rem, 31vw, 14rem);
    aspect-ratio: 0.74;
    flex: 0 0 auto;
    scroll-snap-align: start;
    overflow: hidden;
    border: 3px solid #f98205;
    border-radius: 20px;
    padding: 0.8rem;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: left;
    box-shadow: 0 18px 36px rgba(36, 25, 18, 0.16);
    cursor: pointer;
}

.mobile-map-app__nearby-live-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.1), rgba(15, 23, 42, 0.62));
}

.mobile-map-app__nearby-live-card > * {
    position: relative;
    z-index: 1;
}

.mobile-map-app__nearby-live-card span {
    width: 2.8rem;
    height: 2.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 999px;
    background: rgba(249, 130, 5, 0.78);
    font-weight: 900;
}

.mobile-map-app__nearby-live-card strong,
.mobile-map-app__nearby-live-card small {
    display: block;
    margin-top: 0.35rem;
    font-weight: 900;
}

.mobile-map-app__category-orbit-item {
    min-width: 5.7rem;
    display: grid;
    justify-items: center;
    gap: 0.5rem;
    border: none;
    background: transparent;
    color: #74849a;
    font-weight: 900;
    cursor: pointer;
}

.mobile-map-app__category-orbit-item span {
    width: 4rem;
    height: 4rem;
    display: grid;
    place-items: center;
    border: 1px solid #ffdcc5;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    color: #f27f0d;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.mobile-map-app__category-orbit-item span svg {
    width: 1.6rem;
    height: 1.6rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mobile-map-app__category-orbit-item.is-active span {
    border-color: transparent;
    background: #f98205;
    color: #fff;
    box-shadow: 0 16px 28px rgba(249, 130, 5, 0.24);
}

.mobile-map-app__nearby-category-card {
    position: relative;
    width: clamp(12rem, 42vw, 16rem);
    min-height: 10.25rem;
    flex: 0 0 auto;
    display: grid;
    align-content: end;
    gap: 0.35rem;
    overflow: hidden;
    scroll-snap-align: start;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 8px;
    padding: 0.85rem;
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--nearby-category-color, #f27f0d) 24%, #ffffff), #ffffff 72%);
    background-size: cover;
    background-position: center;
    color: #0f172a;
    text-align: left;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
    cursor: pointer;
}

.mobile-map-app__nearby-category-card.has-photo {
    border-color: rgba(15, 23, 42, 0.08);
    color: #ffffff;
}

.mobile-map-app__nearby-category-card.is-active {
    border-color: var(--nearby-category-color, #f27f0d);
    box-shadow:
        0 18px 34px rgba(15, 23, 42, 0.16),
        0 0 0 3px color-mix(in srgb, var(--nearby-category-color, #f27f0d) 26%, transparent);
}

.mobile-map-app__nearby-category-icon {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    width: 2.8rem;
    height: 2.8rem;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--nearby-category-color, #f27f0d);
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.16);
}

.mobile-map-app__nearby-category-icon svg {
    width: 1.45rem;
    height: 1.45rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mobile-map-app__nearby-category-meta {
    width: fit-content;
    border-radius: 999px;
    padding: 0.25rem 0.55rem;
    background: rgba(255, 255, 255, 0.84);
    color: #334155;
    font-size: 0.72rem;
    font-weight: 900;
    line-height: 1;
}

.mobile-map-app__nearby-category-card.has-photo .mobile-map-app__nearby-category-meta {
    background: rgba(15, 23, 42, 0.62);
    color: #ffffff;
}

.mobile-map-app__nearby-category-card strong {
    display: block;
    max-width: 13ch;
    font-size: 1.18rem;
    font-weight: 900;
    line-height: 1.05;
}

.mobile-map-app__nearby-category-card small {
    display: block;
    color: currentColor;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.25;
    opacity: 0.82;
}

.mobile-map-app__nearby-category-empty {
    width: min(100%, 28rem);
    display: grid;
    gap: 0.35rem;
    border: 1px dashed #f1c7a8;
    border-radius: 8px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.72);
    color: #64748b;
}

.mobile-map-app__nearby-category-empty strong {
    color: #0f172a;
    font-size: 0.98rem;
    line-height: 1.2;
}

.mobile-map-app__nearby-category-empty p {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.35;
}

.mobile-map-app__visual-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr));
    gap: 1.1rem;
}

.mobile-map-app__review-teaser {
    width: min(19rem, 74vw);
    flex: 0 0 auto;
    display: grid;
    gap: 0.6rem;
    scroll-snap-align: start;
}

.mobile-map-app__review-photo {
    position: relative;
    min-height: 12rem;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
}

.mobile-map-app__review-photo span {
    position: absolute;
    right: 0.65rem;
    bottom: 0.65rem;
    border-radius: 999px;
    padding: 0.25rem 0.52rem;
    background: #f59e0b;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 900;
}

.mobile-map-app__review-teaser strong {
    color: #0f172a;
}

.mobile-map-app__review-teaser p {
    margin: 0.15rem 0 0;
    color: #74849a;
    font-weight: 700;
}

.location-profile-document,
.location-profile-document body,
.location-profile-page {
    height: auto;
    min-height: 100dvh;
    overflow-x: hidden;
    overflow-y: auto;
}

.location-profile-page {
    background: #fff8f5;
    color: #241912;
}

.location-profile-page .cookie-consent {
    display: none;
}

.location-profile {
    min-height: 100dvh;
    background:
        linear-gradient(180deg, rgba(255, 248, 245, 0) 0, #fff8f5 24rem),
        #fff8f5;
}

.location-profile .material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 1.35rem;
    line-height: 1;
    display: inline-block;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    font-feature-settings: 'liga';
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    font-variation-settings: 'FILL' 0, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}

.location-profile__nav-icon {
    width: 1.35rem;
    height: 1.35rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.location-profile__nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: max(1rem, env(safe-area-inset-top)) clamp(1rem, 3vw, 2rem) 1rem;
    pointer-events: none;
}

.location-profile__nav-actions {
    display: flex;
    gap: 0.65rem;
}

.location-profile__nav-button {
    width: 2.75rem;
    height: 2.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
    box-shadow: 0 14px 32px rgba(36, 25, 18, 0.18);
    backdrop-filter: blur(14px);
    cursor: pointer;
    pointer-events: auto;
    text-decoration: none;
}

.location-profile__hero {
    position: relative;
    min-height: clamp(20rem, 48vw, 34rem);
    display: flex;
    align-items: end;
    overflow: hidden;
    background:
        linear-gradient(135deg, #ffc07a 0%, #f27f0d 42%, #3a2e26 100%);
    background-position: center;
    background-size: cover;
}

.location-profile__hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(36, 25, 18, 0.18), rgba(36, 25, 18, 0.58)),
        linear-gradient(0deg, #fff8f5 0, rgba(255, 248, 245, 0) 36%);
}

.location-profile__hero-copy {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 7rem 0 5rem;
    color: #fff;
}

.location-profile__source,
.location-profile__badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border-radius: 999px;
    padding: 0.38rem 0.78rem;
    background: #ffdcc5;
    color: #713700;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.location-profile__hero-copy h1 {
    max-width: 14ch;
    margin: 0.85rem 0 0.55rem;
    font-size: clamp(2.45rem, 8vw, 5.4rem);
    line-height: 0.95;
    letter-spacing: 0;
}

.location-profile__hero-copy p {
    max-width: 42rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    line-height: 1.45;
}

.location-profile__shell {
    width: min(1120px, calc(100% - 2rem));
    display: grid;
    grid-template-columns: minmax(18rem, 23rem) minmax(0, 1fr);
    gap: clamp(1rem, 3vw, 2rem);
    margin: -3.6rem auto 0;
    padding-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.location-profile__summary,
.location-profile__card {
    border: 1px solid rgba(221, 193, 175, 0.58);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 22px 52px rgba(36, 25, 18, 0.1);
}

.location-profile__summary {
    position: sticky;
    top: 1rem;
    align-self: start;
    display: grid;
    gap: 1.15rem;
    padding: 1.25rem;
}

.location-profile__identity {
    display: grid;
    gap: 0.72rem;
}

.location-profile__identity h2,
.location-profile__section-head h2 {
    margin: 0;
    color: #241912;
    font-size: 1.45rem;
    line-height: 1.08;
}

.location-profile__identity p,
.location-profile__section-head p,
.location-profile__note,
.location-profile__empty {
    margin: 0;
    color: #564335;
    line-height: 1.55;
}

.location-profile__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
}

.location-profile__stats div {
    display: grid;
    gap: 0.24rem;
    border-radius: 18px;
    padding: 0.95rem;
    background: #fff1e9;
}

.location-profile__stats strong {
    color: #944a00;
    font-size: 1.15rem;
    line-height: 1.1;
}

.location-profile__stats strong.is-open {
    color: #15803d;
}

.location-profile__stats strong.is-closed {
    color: #ba1a1a;
}

.location-profile__stats span {
    color: #8a7263;
    font-size: 0.78rem;
    font-weight: 800;
}

.location-profile__actions {
    display: grid;
    gap: 0.7rem;
}

.location-profile__primary-action,
.location-profile__secondary-action {
    min-height: 3.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border-radius: 999px;
    padding: 0.75rem 1rem;
    font-weight: 900;
    text-decoration: none;
}

.location-profile__primary-action {
    border: none;
    background: #f27f0d;
    color: #562900;
    box-shadow: 0 15px 28px rgba(148, 74, 0, 0.2);
}

.location-profile__primary-action:disabled {
    background: #ffdcc5;
    color: #8a7263;
    box-shadow: none;
}

.location-profile__secondary-action {
    border: 2px solid #944a00;
    color: #944a00;
    background: #fff8f5;
    cursor: pointer;
}

.location-profile__content {
    display: grid;
    gap: 1rem;
}

.location-profile__card {
    display: grid;
    gap: 1rem;
    padding: clamp(1.1rem, 3vw, 1.55rem);
}

.location-profile__section-head {
    display: grid;
    gap: 0.35rem;
}

.location-profile__service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.location-profile__service {
    min-height: 8rem;
    display: grid;
    align-content: center;
    gap: 0.35rem;
    border: 1px solid #f3dfd2;
    border-radius: 18px;
    padding: 1rem;
    background: #fff8f5;
    color: #8a7263;
}

.location-profile__service.is-active {
    border-color: rgba(148, 74, 0, 0.28);
    background: #fff1e9;
    color: #241912;
}

.location-profile__service .material-symbols-outlined {
    color: #944a00;
    font-size: 1.65rem;
}

.location-profile__service strong {
    line-height: 1.15;
}

.location-profile__service small {
    color: #8a7263;
    font-weight: 800;
}

.location-profile__map-preview {
    min-height: 13rem;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid #f3dfd2;
    border-radius: 20px;
    background:
        linear-gradient(90deg, rgba(221, 193, 175, 0.28) 1px, transparent 1px),
        linear-gradient(rgba(221, 193, 175, 0.28) 1px, transparent 1px),
        #fff1e9;
    background-size: 36px 36px;
}

.location-profile__map-canvas {
    width: 100%;
    min-height: 16rem;
}

.location-profile__map-canvas.is-fallback,
.location-profile__map-fallback {
    min-height: 13rem;
    display: grid;
    place-items: center;
    gap: 0.55rem;
    padding: 1rem;
    color: #8a7263;
    text-align: center;
}

.location-profile__secondary-action--map {
    justify-self: start;
}

.location-profile__route-preview {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    border: 1px solid #f3dfd2;
    border-radius: 18px;
    padding: 0.85rem;
    background: rgba(255, 255, 255, 0.94);
}

.location-profile__route-preview.is-hidden {
    display: none;
}

.location-profile__route-preview strong,
.location-profile__route-preview p {
    display: block;
    margin: 0;
}

.location-profile__route-preview p {
    margin-top: 0.15rem;
    color: #6b5a4f;
    font-size: 0.84rem;
    font-weight: 800;
}

.location-profile__route-actions {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.45rem;
}

.location-profile__route-actions a,
.location-profile__route-actions button {
    border: 1px solid rgba(148, 74, 0, 0.24);
    border-radius: 999px;
    padding: 0.55rem 0.75rem;
    background: #fff8f5;
    color: #944a00;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
}

.location-profile__map-preview .material-symbols-outlined {
    width: 3.4rem;
    height: 3.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #f27f0d;
    color: #562900;
    box-shadow: 0 18px 30px rgba(148, 74, 0, 0.2);
    font-variation-settings: 'FILL' 1, 'wght' 600, 'GRAD' 0, 'opsz' 24;
}

.location-profile__hours {
    display: grid;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.location-profile__hours li {
    border-radius: 12px;
    padding: 0.78rem 0.9rem;
    background: #fff1e9;
    color: #564335;
    font-weight: 700;
}

.location-profile__review-list {
    display: grid;
    gap: 0.75rem;
}

.location-profile__review {
    display: grid;
    gap: 0.5rem;
    border: 1px solid #f3dfd2;
    border-radius: 16px;
    padding: 0.9rem;
    background: #fff8f5;
}

.location-profile__review > div:first-child {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.location-profile__review strong {
    color: #241912;
}

.location-profile__review span {
    color: #f98205;
    font-weight: 900;
}

.location-profile__review small {
    width: max-content;
    border-radius: 999px;
    padding: 0.2rem 0.55rem;
    background: #fff1e9;
    color: #944a00;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.location-profile__review p {
    margin: 0;
    color: #564335;
    line-height: 1.5;
}

.location-profile__review-media {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
}

.location-profile__review-media img,
.location-profile__review-media video {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 12px;
    background: #0f172a;
}

.location-profile__placeholder-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.location-profile__placeholder-grid div {
    display: grid;
    gap: 0.45rem;
    border-radius: 18px;
    padding: 0.8rem;
    background: #fff1e9;
}

.location-profile__placeholder-grid span {
    min-height: 7rem;
    border-radius: 14px;
    background: linear-gradient(135deg, #ffd2bc, #f7a97e);
}

.location-profile__placeholder-grid strong {
    color: #241912;
}

.location-profile__placeholder-grid small {
    color: #944a00;
    font-weight: 900;
}

@media (max-width: 860px) {
    .location-profile__nav {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .location-profile__hero {
        min-height: 19.5rem;
    }

    .location-profile__hero-copy {
        width: calc(100% - 2rem);
        padding-bottom: 4.2rem;
    }

    .location-profile__hero-copy h1 {
        max-width: 12ch;
    }

    .location-profile__shell {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 0.9rem;
        margin-top: -2.2rem;
        padding: 0 1rem 2rem;
    }

    .location-profile__summary {
        position: static;
        border-radius: 28px;
    }

    .location-profile__content {
        gap: 0.9rem;
    }

    .location-profile__service-grid,
    .location-profile__placeholder-grid {
        grid-template-columns: 1fr;
    }

    .location-profile__service {
        min-height: 5.8rem;
        grid-template-columns: auto 1fr;
        align-items: center;
        align-content: center;
        column-gap: 0.8rem;
    }

    .location-profile__service small {
        grid-column: 2;
    }
}

@media (max-width: 520px) {
    .location-profile__nav-button {
        width: 2.55rem;
        height: 2.55rem;
    }

    .location-profile__hero {
        min-height: 18rem;
    }

    .location-profile__hero-copy {
        padding-bottom: 3.6rem;
    }

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

    .location-profile__summary,
    .location-profile__card {
        border-radius: 22px;
    }
}

.error-page {
    min-height: 100dvh;
    display: grid;
    place-items: center;
    padding: 2rem 1rem;
    background:
        radial-gradient(circle at 15% 12%, rgba(249, 115, 22, 0.16), transparent 28rem),
        linear-gradient(135deg, #fff7ed, #eef4ff 58%, #ffffff);
}

.error-page__card {
    width: min(100%, 540px);
    display: grid;
    gap: 1rem;
    border: 1px solid rgba(226, 232, 240, 0.96);
    border-radius: 30px;
    padding: clamp(1.5rem, 5vw, 2.3rem);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.13);
}

.error-page__eyebrow {
    margin: 0;
    color: #f97316;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.error-page h1 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(2rem, 8vw, 3.4rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.error-page p {
    margin: 0;
    color: #64748b;
    line-height: 1.65;
}

.error-page__meta,
.error-page__actions {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.error-page__meta span {
    border-radius: 999px;
    padding: 0.42rem 0.7rem;
    background: #f8fafc;
    color: #475569;
    font-size: 0.78rem;
    font-weight: 800;
}

.error-page__actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.55rem;
    border-radius: 999px;
    padding: 0.65rem 1rem;
    background: #f97316;
    color: #fff;
    font-weight: 900;
    text-decoration: none;
}

.error-page__actions a:last-child {
    background: #fff;
    color: #334155;
    border: 1px solid #e2e8f0;
}

@media (max-width: 640px) {
    .alpha-gate-page {
        display: grid;
        min-height: 100vh;
        min-height: 100dvh;
        height: 100vh;
        height: 100dvh;
        grid-template-rows: minmax(0, 1fr) auto;
        background: linear-gradient(180deg, #fff7f1 0%, #fffaf7 68%, #ffefe6 100%);
    }

    .alpha-gate {
        min-height: 0;
        padding: 2rem 1.25rem 1.8rem;
    }

    .alpha-gate__logo {
        width: min(100%, 17rem);
        margin-bottom: 2.5rem;
    }

    .alpha-gate__eyebrow {
        margin-bottom: 0.9rem;
        padding: 0.45rem 1.2rem;
        font-size: 0.85rem;
    }

    .alpha-gate__title {
        max-width: 100%;
        margin-bottom: 0.75rem;
        font-size: 1.72rem;
        line-height: 1.1;
    }

    .alpha-gate__copy {
        max-width: 100%;
        font-size: 1.05rem;
        line-height: 1.45;
    }

    .alpha-gate__form {
        gap: 0.95rem;
        margin-top: 1.45rem;
    }

    .alpha-gate__input {
        min-height: 3.6rem;
        border-radius: 14px;
        padding-inline: 1.2rem 3rem;
        font-size: 1rem;
    }

    .alpha-gate__input-icon {
        right: 1rem;
        width: 1.45rem;
        height: 1.45rem;
    }

    .alpha-gate__submit {
        min-height: 3.75rem;
        gap: 0.6rem;
        font-size: 1.05rem;
    }

    .alpha-gate__submit svg {
        width: 1.45rem;
        height: 1.45rem;
    }

    .alpha-gate__hint {
        gap: 0.65rem;
        margin-top: 1.35rem;
        border-radius: 14px;
        padding: 0.95rem 1rem;
        font-size: 0.92rem;
        line-height: 1.4;
    }

    .alpha-gate__hint svg {
        width: 1.1rem;
        height: 1.1rem;
    }

    .alpha-gate__legal {
        display: none;
    }

    .alpha-gate-footer {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 1.4rem 1.25rem 1.2rem;
        text-align: center;
    }

    .alpha-gate-footer .public-legal-links {
        order: 1;
        width: 100%;
        justify-content: space-between;
        gap: 1rem;
        border-bottom: 1px solid #ead8ce;
        padding-bottom: 1rem;
        font-size: 0.98rem;
    }

    .alpha-gate-footer p {
        order: 2;
        font-size: 0.95rem;
    }

    .cookie-consent {
        right: 1rem;
        bottom: calc(6.25rem + env(safe-area-inset-bottom));
        left: 1rem;
    }

    .alpha-gate-page .cookie-consent {
        bottom: calc(4.8rem + env(safe-area-inset-bottom));
    }

    .cookie-consent__panel {
        grid-template-columns: auto 1fr;
        align-items: start;
        gap: 0.8rem;
        border-radius: 16px;
        padding: 0.95rem;
    }

    .cookie-consent__icon {
        width: 2.65rem;
        height: 2.65rem;
    }

    .cookie-consent__icon svg {
        width: 1.35rem;
        height: 1.35rem;
    }

    .cookie-consent__copy strong {
        font-size: 1rem;
    }

    .cookie-consent__panel p {
        font-size: 0.92rem;
        line-height: 1.42;
    }

    .cookie-consent__panel a {
        font-size: 0.92rem;
    }

    .cookie-consent__actions {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.7rem;
        justify-content: stretch;
        margin-top: 0.6rem;
    }

    .cookie-consent__actions button {
        min-width: 0;
        min-height: 2.9rem;
        padding: 0.65rem 0.75rem;
        font-size: 0.86rem;
        line-height: 1.18;
    }

    .mobile-map-app__detail-card {
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        max-height: min(86vh, 44rem);
        transform: translateY(100%);
        border-radius: 28px 28px 0 0;
    }

    .mobile-map-app__detail-sheet.is-visible .mobile-map-app__detail-card {
        transform: translateY(0);
    }

    .mobile-map-app__detail-hero {
        min-height: 13.2rem;
    }

    .mobile-map-app__detail-copy {
        padding: 1rem 1rem calc(1.25rem + env(safe-area-inset-bottom));
    }

    .mobile-map-app__detail-head h3 {
        font-size: 1.28rem;
    }

    .mobile-map-app__detail-actions--secondary {
        grid-template-columns: 1fr 1fr;
    }

    .mobile-map-app__auth-modal {
        place-items: end center;
        padding: 0;
    }

    .mobile-map-app__auth-modal-backdrop {
        background:
            linear-gradient(rgba(36, 25, 18, 0.42), rgba(36, 25, 18, 0.42)),
            radial-gradient(circle at 50% 22%, rgba(249, 130, 5, 0.34), transparent 18rem),
            rgba(24, 18, 15, 0.8);
        backdrop-filter: blur(9px);
    }

    .mobile-map-app__auth-modal-card {
        width: 100%;
        max-height: min(82dvh, 48rem);
        gap: 1.15rem;
        border-radius: 30px 30px 0 0;
        padding: 2rem 1.25rem calc(1.4rem + env(safe-area-inset-bottom));
        transform: translateY(100%);
    }

    .mobile-map-app__auth-modal.is-visible .mobile-map-app__auth-modal-card {
        transform: translateY(0);
    }

    .mobile-map-app__auth-modal-grabber {
        width: 3rem;
        height: 0.36rem;
        display: block;
        justify-self: center;
        border-radius: 999px;
        background: #d8bda9;
    }

    .mobile-map-app__auth-modal-close {
        display: none;
    }

    .mobile-map-app__auth-modal-head h2 {
        font-size: 1.75rem;
    }

    .mobile-map-app__auth-modal-head p {
        font-size: 1.15rem;
    }

    .mobile-map-app__auth-social {
        min-height: 3.55rem;
        font-size: 1.02rem;
    }

    .mobile-map-app__auth-social-grid {
        gap: 0.65rem;
    }

    .mobile-map-app__auth-input {
        min-height: 3.75rem;
        border-radius: 18px;
    }

    .mobile-map-app__auth-submit {
        min-height: 3.95rem;
        font-size: 1.12rem;
    }

    .mobile-map-app__field-grid {
        grid-template-columns: 1fr;
    }

    .welcome-flow {
        padding: 2rem 1.25rem 0;
        background: #fff7f1;
    }

    .welcome-flow__back {
        top: 1.75rem;
        left: 1.45rem;
        width: 2rem;
        height: 2rem;
    }

    .welcome-flow__back svg {
        width: 1.75rem;
        height: 1.75rem;
    }

    .welcome-flow__card {
        width: 100%;
        border-radius: 24px;
        padding: 2rem 1.45rem 2.15rem;
    }

    .welcome-flow__logo {
        width: min(100%, 18rem);
    }

    .welcome-flow__headline {
        max-width: 100%;
        margin-top: 1.95rem;
    }

    .welcome-flow__copy {
        font-size: 1.7rem;
        line-height: 1.16;
    }

    .welcome-flow__form {
        gap: 0.95rem;
        margin-top: 1.55rem;
    }

    .welcome-flow__label {
        font-size: 1.05rem;
    }

    .welcome-flow__input {
        min-height: 3.7rem;
        border-radius: 14px;
        padding: 0.75rem 1rem 0.75rem 3.1rem;
        font-size: 0.92rem;
    }

    .welcome-flow__input-icon {
        left: 1.05rem;
        width: 1.45rem;
        height: 1.45rem;
    }

    .welcome-flow__submit {
        min-height: 3.8rem;
        font-size: 1.12rem;
        letter-spacing: 0.04em;
        text-transform: none;
    }

    .welcome-flow__submit svg {
        width: 1.35rem;
        height: 1.35rem;
    }

    .welcome-flow__geo {
        gap: 0.55rem;
        margin-top: 1.45rem;
        font-size: 0.98rem;
    }

    .welcome-flow__geo svg {
        width: 1.2rem;
        height: 1.2rem;
    }

    .welcome-flow__footer {
        width: calc(100% + 2.5rem);
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.45rem 1.25rem 1.2rem;
        text-align: center;
    }

    .welcome-flow__footer .public-legal-links {
        justify-content: space-between;
        gap: 1rem;
        border-bottom: 1px solid #ead8ce;
        padding-bottom: 1rem;
        font-size: 0.98rem;
    }

    .welcome-flow__footer p {
        justify-self: center;
        font-size: 0.95rem;
    }

    .public-home__saved-row {
        align-items: start;
        flex-direction: column;
    }
}

/* Final Public visual pass: navbar, tabbar and exploration */
@media (min-width: 860px) {
    .mobile-map-app__header {
        position: absolute;
        padding: 1rem 1.35rem;
        background: rgba(255, 255, 255, 0.78);
    }

    .mobile-map-app__icon-button--menu {
        display: none;
    }

    .mobile-map-app__header-top {
        display: grid;
        grid-template-columns: auto minmax(28rem, 42rem) auto;
        align-items: center;
        gap: 1.25rem;
    }

    .mobile-map-app__brand-logo {
        height: 2.35rem;
    }

    .mobile-map-app__desktop-search {
        width: min(42rem, 44vw);
        max-width: none;
        justify-self: center;
        min-height: 3.35rem;
        background: rgba(255, 244, 237, 0.82);
    }

    .mobile-map-app__desktop-search button {
        min-width: 5.25rem;
        background: #f98205;
        color: #fff8f5;
    }

    .mobile-map-app__header-actions {
        margin-left: 0;
        justify-self: end;
        gap: 0.8rem;
    }

    .mobile-map-app__location-display,
    .mobile-map-app__service-pill {
        min-height: 2.85rem;
        max-width: 18rem;
        padding: 0.6rem 0.95rem;
        border: 1px solid rgba(226, 232, 240, 0.9);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.82);
        box-shadow:
            0 10px 22px rgba(15, 23, 42, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.9);
        color: #334155;
        font-size: 0.95rem;
        font-weight: 900;
    }

    .mobile-map-app__location-label,
    .mobile-map-app__service-label {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .mobile-map-app__location-switcher {
        top: 5.25rem;
        left: auto;
        right: 5.75rem;
        width: min(22rem, calc(100vw - 3rem));
        border-color: rgba(221, 193, 175, 0.58);
        background: rgba(255, 255, 255, 0.82);
        box-shadow: 0 24px 54px rgba(36, 25, 18, 0.16);
        backdrop-filter: blur(22px) saturate(170%);
        -webkit-backdrop-filter: blur(22px) saturate(170%);
    }

    .mobile-map-app__location-switcher.is-service-menu {
        right: 5.75rem;
        width: 17rem;
    }

    .mobile-map-app__explore-list {
        height: calc(100dvh - 5.45rem);
        padding: 7.2rem 2rem 7rem;
        background: #fffaf7;
    }

    .mobile-map-app__explore-list-header {
        display: none;
    }

    .mobile-map-app__explore-list-grid {
        width: min(1180px, 100%);
        display: grid;
        gap: 2rem;
        margin: 0 auto;
    }

    .mobile-map-app__nearby-live-card {
        width: 13.5rem;
        aspect-ratio: 0.9;
    }

    .mobile-map-app__visual-card-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .mobile-map-app__nearby-category-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        overflow: visible;
    }

    .mobile-map-app__nearby-category-card {
        width: auto;
    }

    .mobile-map-app__visual-card-grid .mobile-map-card__media {
        height: 12rem;
    }

    .mobile-map-app__visual-card-grid .mobile-map-card__body {
        min-height: 8.75rem;
        padding: 1rem 1.1rem 1.15rem;
    }

    .mobile-map-app__visual-card-grid .mobile-map-card__body h3 {
        font-size: 1.12rem;
        line-height: 1.15;
    }

    .mobile-map-app__review-teaser-row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        overflow: visible;
    }

    .mobile-map-app__review-teaser {
        width: auto;
    }

    .mobile-map-app__nav {
        left: 1.35rem;
        top: 7rem;
        bottom: auto;
        width: 4.75rem;
        grid-template-columns: 1fr;
        align-items: stretch;
        transform: none;
        border-radius: 24px;
        padding: 0.55rem;
        background: rgba(255, 248, 245, 0.72);
        border-color: rgba(221, 193, 175, 0.68);
        box-shadow: 0 18px 50px rgba(36, 25, 18, 0.16);
    }

    .mobile-map-app__nav-item {
        position: relative;
        min-height: 4.25rem;
        justify-content: center;
        border-radius: 18px;
        color: #94a3b8;
        font-size: 0.58rem;
        transition: color 180ms ease, background 180ms ease, transform 180ms ease;
    }

    .mobile-map-app__nav-item--center {
        order: -1;
        transform: none;
    }

    .mobile-map-app__nav-core {
        width: 2.9rem;
        height: 2.9rem;
        border-width: 0;
        box-shadow: 0 12px 28px rgba(249, 130, 5, 0.22);
    }

    .mobile-map-app__nav-item.is-active:not(.mobile-map-app__nav-item--center) {
        background: #f98205;
        color: #241912;
        box-shadow: 0 12px 28px rgba(249, 130, 5, 0.24);
    }

    .mobile-map-app__nav-item.is-active:not(.mobile-map-app__nav-item--center)::after {
        content: none;
    }
}

@media (max-width: 859px) {
    .mobile-map-app__header {
        display: grid;
        gap: 0.75rem;
        padding: max(0.85rem, env(safe-area-inset-top)) 1rem 0.9rem;
        background: rgba(255, 255, 255, 0.84);
    }

    .mobile-map-app__header-top {
        gap: 0.65rem;
    }

    .mobile-map-app__brand-logo {
        height: 2rem;
        max-width: 12.8rem;
    }

    .mobile-map-app__header-actions {
        margin-left: auto;
    }

    .mobile-map-app__header-bottom {
        justify-content: center;
        gap: 0.45rem;
    }

    .mobile-map-app__location-display,
    .mobile-map-app__service-pill {
        min-width: 0;
        max-width: min(52vw, 18rem);
        min-height: 2.35rem;
        padding: 0.38rem 0.7rem;
        font-size: 0.86rem;
        color: #334155;
    }

    .mobile-map-app__location-label,
    .mobile-map-app__service-pill span {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .mobile-map-app__location-switcher {
        top: 10.9rem;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(18px) saturate(160%);
        -webkit-backdrop-filter: blur(18px) saturate(160%);
    }

    .mobile-map-app__location-switcher.is-service-menu {
        right: 1rem;
        width: min(17rem, calc(100vw - 2rem));
    }

    .mobile-map-app__explore-list {
        height: 100dvh;
        padding: 11.8rem 1.25rem 7.5rem;
        background: linear-gradient(180deg, #ffffff 0%, #fffaf7 18rem, #fff8f5 100%);
    }

    .mobile-map-app__explore-list-header {
        display: none;
    }

    .mobile-map-app__explore-list-grid {
        display: grid;
        gap: 2.25rem;
    }

    .mobile-map-app__visual-card-grid {
        display: flex;
        gap: 1.15rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 0.6rem;
    }

    .mobile-map-app__visual-card-grid .mobile-map-card {
        width: min(23rem, 84vw);
        flex: 0 0 auto;
        scroll-snap-align: start;
        border-radius: 20px;
    }

    .mobile-map-app__visual-card-grid .mobile-map-card__media {
        height: 10.8rem;
    }

    .mobile-map-app__visual-card-grid .mobile-map-card__body {
        padding: 1rem 1.1rem 1.15rem;
    }

    .mobile-map-app__visual-card-grid .mobile-map-card__body h3 {
        font-size: 1.35rem;
        letter-spacing: 0;
    }

    .mobile-map-app__category-orbit-item {
        min-width: 5rem;
    }

    .mobile-map-app__category-orbit-item span {
        width: 3.7rem;
        height: 3.7rem;
    }

    .mobile-map-app__nav {
        width: calc(100% - 1rem);
        left: 0.5rem;
        bottom: max(0.45rem, env(safe-area-inset-bottom));
        transform: none;
        align-items: center;
        gap: 0.15rem;
        border-radius: 28px;
        padding: 0.48rem 0.55rem;
        background: rgba(255, 248, 245, 0.76);
        border-color: rgba(221, 193, 175, 0.78);
        box-shadow: 0 -16px 48px rgba(36, 25, 18, 0.16);
    }

    .mobile-map-app__nav-item {
        min-height: 4.1rem;
        justify-content: center;
        border-radius: 999px;
        font-size: 0.68rem;
        color: #94a3b8;
    }

    .mobile-map-app__nav-item svg {
        width: 1.75rem;
        height: 1.75rem;
    }

    .mobile-map-app__nav-item.is-active:not(.mobile-map-app__nav-item--center) {
        background: #f98205;
        color: #241912;
    }

    .mobile-map-app__nav-item--center {
        transform: translateY(-1.15rem);
    }

    .mobile-map-app__nav-core {
        width: 4rem;
        height: 4rem;
        border-width: 6px;
        box-shadow: 0 18px 38px rgba(249, 130, 5, 0.34);
    }
}

/* Claim flow Stitch translation */
.claim-shell-page {
    min-height: 100dvh;
    margin: 0;
    background: #fff8f3;
    color: #241713;
}

.claim-shell {
    --claim-ink: #241713;
    --claim-muted: #765f56;
    --claim-border: #ead8cf;
    --claim-card: #fffdfb;
    --claim-accent: #e85d2a;
    --claim-accent-dark: #c9481d;
    --claim-soft: #fff1e8;
    display: flex;
    min-height: 100dvh;
    flex-direction: column;
    background:
        radial-gradient(circle at top left, rgba(232, 93, 42, 0.12), transparent 28rem),
        #fff8f3;
}

.claim-shell__topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: 2.75rem 1fr 2.75rem;
    align-items: center;
    gap: 0.75rem;
    padding: max(0.75rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right)) 0.75rem max(1rem, env(safe-area-inset-left));
    border-bottom: 1px solid rgba(234, 216, 207, 0.86);
    background: rgba(255, 248, 243, 0.94);
    backdrop-filter: blur(14px);
}

.claim-shell__title {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    text-align: center;
}

.claim-shell__icon-link {
    display: inline-flex;
    width: 2.5rem;
    height: 2.5rem;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--claim-border);
    border-radius: 999px;
    background: #fff;
    color: var(--claim-ink);
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
}

.claim-shell__scroll {
    flex: 1;
    overflow-y: auto;
    padding: 1rem clamp(1rem, 3vw, 2rem) calc(7rem + env(safe-area-inset-bottom));
}

.claim-shell__content,
.claim-entry {
    width: min(100%, 62rem);
    margin: 0 auto;
}

.claim-entry {
    display: grid;
    gap: 1rem;
}

.claim-entry__hero,
.claim-section {
    display: grid;
    gap: 1rem;
}

.claim-entry__eyebrow,
.claim-kicker {
    margin: 0;
    color: var(--claim-accent-dark);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.claim-entry__hero h1,
.claim-step__title,
.claim-resume-card h1 {
    margin: 0;
    color: var(--claim-ink);
    font-size: clamp(1.55rem, 4vw, 2.35rem);
    line-height: 1.05;
}

.claim-entry__hero p,
.claim-step__intro,
.claim-resume-card p {
    margin: 0;
    color: var(--claim-muted);
    font-size: 1rem;
    line-height: 1.55;
}

.claim-progress {
    display: grid;
    gap: 0.55rem;
    margin: 0 auto 1rem;
}

.claim-progress__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--claim-muted);
    font-size: 0.83rem;
    font-weight: 700;
}

.claim-progress__track {
    height: 0.48rem;
    overflow: hidden;
    border-radius: 999px;
    background: #f0ddd2;
}

.claim-progress__bar {
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #f28b40, var(--claim-accent));
    transition: width 180ms ease;
}

.claim-progress__list {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.claim-card,
.claim-business-card,
.claim-upload-card,
.claim-summary-card,
.claim-folio-card,
.claim-resume-card,
.claim-form-card,
.claim-legal-card {
    border: 1px solid rgba(234, 216, 207, 0.92);
    border-radius: 24px;
    background: var(--claim-card);
    box-shadow: 0 18px 46px rgba(89, 47, 31, 0.09);
}

.claim-business-card {
    overflow: hidden;
}

.claim-business-card__media {
    min-height: 10rem;
    background:
        linear-gradient(135deg, rgba(232, 93, 42, 0.9), rgba(251, 173, 90, 0.82)),
        linear-gradient(45deg, #7b2d16, #f6c38f);
}

.claim-business-card__media--map {
    display: grid;
    place-items: center;
    min-height: 8.5rem;
    color: #fff;
    font-weight: 900;
}

.claim-business-card__body,
.claim-form-card,
.claim-upload-card,
.claim-summary-card,
.claim-folio-card,
.claim-resume-card,
.claim-legal-card {
    padding: clamp(1rem, 3vw, 1.45rem);
}

.claim-business-card__label,
.claim-summary-card__label {
    margin: 0 0 0.35rem;
    color: var(--claim-accent-dark);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.claim-business-card h2,
.claim-upload-card h3,
.claim-summary-card h3,
.claim-legal-card h3,
.claim-folio-card h2 {
    margin: 0 0 0.35rem;
    color: var(--claim-ink);
    font-size: 1.15rem;
}

.claim-business-card p,
.claim-upload-card p,
.claim-summary-card p,
.claim-legal-card p,
.claim-folio-card p {
    margin: 0;
    color: var(--claim-muted);
    line-height: 1.45;
}

.claim-form {
    display: grid;
    gap: 1rem;
}

.claim-form__grid {
    display: grid;
    gap: 1rem;
}

.claim-field {
    display: grid;
    gap: 0.35rem;
    color: var(--claim-ink);
    font-size: 0.9rem;
    font-weight: 800;
}

.claim-field input,
.claim-field select,
.claim-field textarea,
.claim-otp__input {
    width: 100%;
    min-height: 3.2rem;
    border: 1px solid #e5cfc4;
    border-radius: 16px;
    background: #fff;
    color: var(--claim-ink);
    font: inherit;
    font-weight: 700;
    padding: 0.85rem 0.95rem;
}

.claim-field input:focus,
.claim-field select:focus,
.claim-field textarea:focus,
.claim-otp__input:focus {
    outline: 3px solid rgba(232, 93, 42, 0.18);
    border-color: var(--claim-accent);
}

.claim-field__hint,
.claim-form__hint {
    margin: 0;
    color: var(--claim-muted);
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.4;
}

.claim-action-bar {
    position: sticky;
    bottom: 0;
    z-index: 18;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin: 1rem calc(clamp(1rem, 3vw, 2rem) * -1) calc((7rem + env(safe-area-inset-bottom)) * -1);
    padding: 0.85rem clamp(1rem, 3vw, 2rem) max(1rem, env(safe-area-inset-bottom));
    border-top: 1px solid rgba(234, 216, 207, 0.9);
    background: rgba(255, 248, 243, 0.96);
    backdrop-filter: blur(14px);
}

.claim-button,
.claim-link-button {
    display: inline-flex;
    min-height: 3rem;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font: inherit;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
}

.claim-button--primary {
    background: var(--claim-accent);
    color: #fff;
    box-shadow: 0 12px 28px rgba(232, 93, 42, 0.22);
}

.claim-button--primary:hover {
    background: var(--claim-accent-dark);
}

.claim-button--secondary {
    border-color: var(--claim-border);
    background: #fff;
    color: var(--claim-ink);
}

.claim-button--ghost,
.claim-link-button {
    background: transparent;
    color: var(--claim-accent-dark);
}

.claim-button--danger {
    border-color: #f2b4a2;
    background: #fff4ef;
    color: #a73718;
}

.claim-button[disabled],
.claim-link-button[disabled] {
    cursor: not-allowed;
    opacity: 0.55;
}

.claim-alert,
.claim-notice {
    border: 1px solid #f0d2c3;
    border-radius: 18px;
    background: #fff2eb;
    color: #7b3c24;
    padding: 0.9rem 1rem;
    line-height: 1.45;
}

.claim-alert:empty,
.claim-otp__status:empty,
.claim-upload-card__error:empty,
.claim-submit__status:empty {
    display: none;
}

.claim-step {
    display: none;
}

.claim-step.is-active {
    display: grid;
    gap: 1rem;
}

.claim-otp {
    display: grid;
    gap: 1rem;
}

.claim-otp__panel,
.claim-otp__confirm {
    display: grid;
    gap: 1rem;
    justify-items: center;
    text-align: center;
}

.claim-otp__input {
    max-width: 15rem;
    text-align: center;
    font-size: 1.45rem;
    letter-spacing: 0.22em;
}

.claim-upload-grid,
.claim-info-grid,
.claim-summary-grid,
.claim-legal-grid {
    display: grid;
    gap: 1rem;
}

.claim-upload-dropzone {
    display: grid;
    gap: 0.8rem;
    place-items: center;
    min-height: 10rem;
    border: 1.5px dashed #e0baaa;
    border-radius: 22px;
    background: #fffaf6;
    padding: 1.2rem;
    text-align: center;
}

.claim-file-button input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.claim-recorder {
    display: grid;
    gap: 1rem;
}

.claim-check,
.claim-consent,
.claim-declaration {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--claim-ink);
    font-weight: 700;
    line-height: 1.45;
}

.claim-check input,
.claim-consent input,
.claim-declaration input {
    width: 1.1rem;
    height: 1.1rem;
    margin-top: 0.2rem;
    accent-color: var(--claim-accent);
}

.claim-challenge {
    display: grid;
    gap: 0.5rem;
    border: 1px solid #f1c8b7;
    border-radius: 18px;
    background: #fff3ec;
    padding: 1rem;
}

.claim-challenge__text {
    color: var(--claim-ink);
    font-size: 1.1rem;
    font-weight: 900;
    line-height: 1.35;
}

.claim-permission-state,
.claim-recorder__idle,
.claim-recording-state,
.claim-preview-state {
    display: grid;
    gap: 0.85rem;
}

.claim-video-frame {
    overflow: hidden;
    border-radius: 22px;
    background: #1f140f;
}

.claim-evidence-video {
    display: block;
    width: 100%;
    max-height: min(64dvh, 32rem);
    object-fit: contain;
    background: #1f140f;
}

.claim-recording-state__header {
    position: sticky;
    top: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border: 1px solid #f0c7b8;
    border-radius: 16px;
    background: rgba(255, 248, 243, 0.96);
    padding: 0.75rem 0.9rem;
}

.claim-recording-state__timer {
    color: #b43719;
    font-weight: 900;
}

.claim-evidence-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.claim-upload-card__progress {
    width: 100%;
    height: 0.55rem;
    overflow: hidden;
    border: 0;
    border-radius: 999px;
    background: #ecd6ca;
}

.claim-upload-card__progress::-webkit-progress-bar {
    border-radius: 999px;
    background: #ecd6ca;
}

.claim-upload-card__progress::-webkit-progress-value {
    border-radius: 999px;
    background: var(--claim-accent);
}

.claim-upload-card__progress::-moz-progress-bar {
    border-radius: 999px;
    background: var(--claim-accent);
}

.claim-upload-card__progress span {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: var(--claim-accent);
    transition: width 160ms ease;
}

.claim-instructions {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--claim-muted);
    line-height: 1.5;
}

.claim-legal-links,
.claim-summary-card__actions,
.claim-resume-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.claim-status-timeline {
    display: grid;
    gap: 0.8rem;
}

.claim-status-timeline__item {
    display: grid;
    grid-template-columns: 2rem 1fr;
    gap: 0.75rem;
    align-items: start;
}

.claim-status-timeline__marker {
    display: grid;
    width: 2rem;
    height: 2rem;
    place-items: center;
    border-radius: 999px;
    background: #fff0e7;
    color: var(--claim-accent-dark);
    font-weight: 900;
}

.claim-status-timeline__item.is-current .claim-status-timeline__marker {
    background: var(--claim-accent);
    color: #fff;
}

.claim-confirmation__icon {
    display: grid;
    width: 4rem;
    height: 4rem;
    place-items: center;
    border-radius: 999px;
    background: #dff4e7;
    color: #186a3b;
    font-size: 2rem;
    font-weight: 900;
}

.claim-status-pill {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    border-radius: 999px;
    background: #fff0e7;
    color: var(--claim-accent-dark);
    font-size: 0.8rem;
    font-weight: 900;
    padding: 0.35rem 0.7rem;
}

.claim-shell [hidden] {
    display: none !important;
}

@media (min-width: 760px) {
    .claim-shell__scroll {
        padding-top: 1.6rem;
    }

    .claim-entry {
        grid-template-columns: minmax(0, 0.92fr) minmax(24rem, 1.08fr);
        align-items: start;
    }

    .claim-entry .claim-progress,
    .claim-entry .claim-action-bar {
        grid-column: 1 / -1;
    }

    .claim-form__grid,
    .claim-upload-grid,
    .claim-info-grid,
    .claim-summary-grid,
    .claim-legal-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .claim-action-bar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: min(100%, 62rem);
        margin-right: auto;
        margin-left: auto;
        border-right: 1px solid rgba(234, 216, 207, 0.9);
        border-left: 1px solid rgba(234, 216, 207, 0.9);
        border-radius: 24px 24px 0 0;
    }
}

@media (max-width: 759px) {
    .claim-shell__scroll {
        padding-right: max(1rem, env(safe-area-inset-right));
        padding-left: max(1rem, env(safe-area-inset-left));
    }

    .claim-card,
    .claim-business-card,
    .claim-upload-card,
    .claim-summary-card,
    .claim-folio-card,
    .claim-resume-card,
    .claim-form-card,
    .claim-legal-card {
        border-radius: 20px;
    }

    .claim-evidence-actions .claim-button {
        width: 100%;
    }
}

.public-auth {
    min-height: 100dvh;
    display: grid;
    place-items: center;
    padding: max(1.25rem, env(safe-area-inset-top)) 1.25rem max(1.25rem, env(safe-area-inset-bottom));
    background:
        radial-gradient(circle at 12% 18%, rgba(249, 130, 5, 0.08), transparent 18rem),
        radial-gradient(circle at 88% 24%, rgba(0, 166, 249, 0.06), transparent 16rem),
        #fff8f5;
    color: #241912;
}

.public-auth__card {
    width: min(100%, 27rem);
    border: 1px solid rgba(221, 193, 175, 0.72);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    padding: clamp(1.25rem, 4vw, 2rem);
    box-shadow: 0 24px 56px rgba(148, 74, 0, 0.12);
}

.public-auth__back {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #944a00;
    text-decoration: none;
    font-weight: 900;
}

.public-auth__eyebrow {
    margin: 0 0 0.45rem;
    color: #f27f0d;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.public-auth__title {
    margin: 0 0 0.75rem;
    color: #241912;
    font-size: clamp(1.7rem, 6vw, 2.15rem);
    line-height: 1.05;
}

.public-auth__copy {
    margin: 0 0 1rem;
    color: #564335;
    line-height: 1.5;
}

.public-auth__alert {
    margin-bottom: 1rem;
    border-radius: 14px;
    padding: 0.9rem 1rem;
    font-weight: 750;
    line-height: 1.35;
}

.public-auth__alert--error {
    background: #ffdad6;
    color: #93000a;
}

.public-auth__alert--success {
    background: #e6f7ed;
    color: #11783b;
}

.public-auth__alert--warning {
    background: #fff4d8;
    color: #855000;
}

.public-auth__form {
    display: grid;
    gap: 0.9rem;
}

.public-auth__field {
    display: grid;
    gap: 0.4rem;
}

.public-auth__field label {
    color: #564335;
    font-size: 0.78rem;
    font-weight: 900;
}

.public-auth__field input {
    width: 100%;
    min-height: 3rem;
    border: 1px solid #ddc1af;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    padding: 0 0.9rem;
    color: #241912;
    font: inherit;
}

.public-auth__field input:focus {
    border-color: #f27f0d;
    outline: none;
    box-shadow: 0 0 0 4px rgba(242, 127, 13, 0.14);
}

.public-auth__otp {
    letter-spacing: 0.16em;
    text-align: center;
    font-weight: 900;
}

.public-auth__primary,
.public-auth__secondary {
    min-height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.78rem 1rem;
    font-weight: 900;
    text-decoration: none;
}

.public-auth__primary {
    border: 0;
    background: #f27f0d;
    color: #fff;
}

.public-auth__secondary {
    border: 1px solid #944a00;
    background: #fff;
    color: #944a00;
}

.public-auth__links {
    display: grid;
    gap: 0.75rem;
    margin-top: 1rem;
    text-align: center;
}

.public-auth__link {
    color: #944a00;
    font-weight: 900;
    text-decoration: none;
}

.public-auth__divider {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1.3rem 0;
    color: #8a7263;
    font-size: 0.85rem;
    font-weight: 800;
}

.public-auth__divider::before,
.public-auth__divider::after {
    content: "";
    height: 1px;
    flex: 1;
    background: #ead5c7;
}

/* 2026-06-15 profile visit reset, embedded map and bottom-sheet action polish */
.location-profile__nav-button,
.mobile-map-app__detail-float-button {
    /*color: #241912 !important;*/
}

.location-profile__nav-button {
    background: rgba(255, 255, 255, 0.72) !important;
}

.location-profile__map-preview {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.location-profile__map-preview .location-profile__map-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    filter: saturate(0.92) contrast(0.98);
}

.location-profile__map-preview .material-symbols-outlined {
    position: relative;
    z-index: 1;
    pointer-events: none;
}

.mobile-map-app__detail-actions--primary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mobile-map-app__detail-action-primary--profile {
    border: 2px solid #944a00 !important;
    background: rgba(255, 248, 245, 0.92) !important;
    color: #944a00 !important;
    box-shadow: none !important;
}

.mobile-map-app__detail-claim-note {
    margin: 0.1rem 0 0;
    color: #8a7263;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
}

.mobile-map-app__detail-claim-note a {
    color: #944a00;
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

@media (max-width: 859px) {
    .mobile-map-app__detail-actions--primary {
        position: sticky !important;
        bottom: 0;
        z-index: 3;
        margin: 0 -0.1rem;
        padding: 0.6rem 0 0.15rem;
        background: linear-gradient(180deg, rgba(255, 248, 245, 0), #fff8f5 30%);
    }
}

/* 2026-06-15 definitive profile scroll and detail sheet stabilization */
html.location-profile-document,
html.location-profile-document body,
html.location-profile-document body.location-profile-page {
    height: auto !important;
    min-height: 100% !important;
    max-height: none !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    position: static !important;
    touch-action: auto !important;
    overscroll-behavior-y: auto !important;
    -webkit-overflow-scrolling: touch;
}

html.location-profile-document .location-profile {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: auto !important;
    min-height: 100dvh !important;
    max-height: none !important;
    overflow: visible !important;
    padding-bottom: calc(8.5rem + env(safe-area-inset-bottom)) !important;
}

html.location-profile-document .location-profile__shell,
html.location-profile-document .location-profile__summary,
html.location-profile-document .location-profile__content,
html.location-profile-document .location-profile__card {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
}

.mobile-map-app__detail-card {
    max-height: min(82dvh, 46rem);
}

.mobile-map-app__detail-body {
    display: flex !important;
    flex-direction: column;
    height: 100%;
    max-height: inherit;
    overflow: hidden;
}

.mobile-map-app__detail-copy {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto !important;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.mobile-map-app__detail-gallery {
    display: flex !important;
    flex: 0 0 auto;
    gap: 0.65rem;
    width: 100%;
    min-height: 5.75rem;
    margin: 0.15rem 0 0.25rem;
    padding: 0 0 0.35rem;
    overflow-x: auto !important;
    overflow-y: visible !important;
}

.mobile-map-app__detail-gallery div {
    flex: 0 0 5.6rem !important;
    width: 5.6rem !important;
    min-width: 5.6rem !important;
    height: 5.6rem !important;
    min-height: 5.6rem !important;
}

@media (min-width: 860px) {
    .mobile-map-app__detail-card {
        width: min(44rem, calc(100% - 3rem));
        max-height: min(84dvh, 48rem);
    }
}

@media (max-width: 859px) {
    .mobile-map-card__floating-badges {
        top: -0.92rem;
        right: 0.62rem;
        gap: 0.25rem;
    }

    .mobile-map-card__badge {
        min-height: 1.5rem;
        padding: 0.22rem 0.44rem;
        font-size: 0.6rem;
    }

    .mobile-map-card__badge--rating svg {
        width: 0.64rem;
        height: 0.64rem;
    }

    .mobile-map-app__status-pill {
        bottom: 18.25rem;
        padding: 0.34rem 0.5rem;
        font-size: 0.58rem;
    }

    .mobile-map-app__status-pill strong {
        min-width: 1.05rem;
        height: 1.05rem;
        font-size: 0.58rem;
    }
}

@media (max-width: 420px) {
    .mobile-map-app__brand-logo {
        height: 1.72rem;
        max-width: 10.8rem;
    }

    .mobile-map-app__icon-button--menu,
    .mobile-map-app__icon-button--notify {
        width: 2.7rem;
        height: 2.7rem;
    }

    .mobile-map-app__nav-item {
        font-size: 0.6rem;
    }

    .mobile-map-app__nav-core {
        width: 3.75rem;
        height: 3.75rem;
    }
}

/* Final profile page tuning */
.location-profile__hero {
    min-height: clamp(24rem, 42vw, 33rem);
}

.location-profile__shell {
    margin-top: -4.5rem;
}

.location-profile__summary,
.location-profile__card {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
}

@media (min-width: 860px) {
    .location-profile__summary {
        grid-column: 1 / -1;
        position: relative;
        top: auto;
        grid-template-columns: minmax(0, 1fr) auto auto;
        align-items: end;
        border-radius: 24px;
    }

    .location-profile__identity {
        max-width: 36rem;
    }

    .location-profile__stats {
        min-width: 26rem;
    }

    .location-profile__actions {
        min-width: 18rem;
    }

    .location-profile__content {
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .location-profile__card:nth-child(2),
    .location-profile__card:nth-child(3) {
        grid-column: span 1;
    }

    .location-profile__card:nth-child(4) {
        grid-column: 1 / -1;
    }
}

/* Public footer and vertical menu pass */
.mobile-map-app__menu {
    position: fixed;
    inset: 0;
    z-index: 80;
}

.mobile-map-app__menu.is-hidden {
    display: none;
}

.mobile-map-app__menu-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(36, 25, 18, 0.28);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.mobile-map-app__menu-panel {
    position: relative;
    width: min(25rem, calc(100vw - 1.5rem));
    height: calc(100dvh - 1.5rem);
    margin: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.1rem;
    border: 1px solid rgba(221, 193, 175, 0.7);
    border-radius: 28px;
    background: rgba(255, 248, 245, 0.82);
    box-shadow: 0 30px 80px rgba(36, 25, 18, 0.28);
    backdrop-filter: blur(24px) saturate(170%);
    -webkit-backdrop-filter: blur(24px) saturate(170%);
    overflow-y: auto;
}

.mobile-map-app__menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.mobile-map-app__menu-head img {
    height: 2.15rem;
    width: auto;
}

.mobile-map-app__menu-close {
    width: 2.6rem;
    height: 2.6rem;
    border: 1px solid rgba(221, 193, 175, 0.7);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    color: #241912;
    cursor: pointer;
}

.mobile-map-app__menu-close svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
}

.mobile-map-app__menu-user {
    display: grid;
    gap: 0.25rem;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.86);
}

.mobile-map-app__menu-user strong {
    color: #241912;
    font-size: 1.05rem;
}

.mobile-map-app__menu-user span,
.mobile-map-app__menu-nav small,
.mobile-map-app__menu-group p {
    color: #766456;
    font-size: 0.82rem;
    line-height: 1.35;
}

.mobile-map-app__menu-search {
    min-height: 3.55rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.55rem 1rem;
    border: 1px solid rgba(221, 193, 175, 0.62);
    border-radius: 24px;
    background: rgba(248, 250, 252, 0.78);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.mobile-map-app__menu-search svg {
    width: 1.35rem;
    height: 1.35rem;
    fill: none;
    stroke: #94a3b8;
    stroke-width: 2;
    stroke-linecap: round;
}

.mobile-map-app__menu-search label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.mobile-map-app__menu-search input {
    min-width: 0;
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    color: #241912;
    font-size: 0.95rem;
    font-weight: 750;
}

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

.mobile-map-app__menu-nav {
    display: grid;
    gap: 0.45rem;
}

.mobile-map-app__menu-nav button,
.mobile-map-app__menu-group a,
.mobile-map-app__menu-actions a {
    width: 100%;
    display: grid;
    gap: 0.18rem;
    padding: 0.86rem 1rem;
    border: 1px solid rgba(221, 193, 175, 0.55);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.6);
    color: #241912;
    font: inherit;
    font-weight: 850;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
}

.mobile-map-app__menu-nav button:hover,
.mobile-map-app__menu-group a:hover,
.mobile-map-app__menu-actions a:hover {
    background: rgba(255, 234, 222, 0.82);
}

.mobile-map-app__menu-group {
    display: grid;
    gap: 0.5rem;
}

.mobile-map-app__menu-group p {
    margin: 0;
    font-weight: 850;
    text-transform: uppercase;
}

.mobile-map-app__menu-group .public-legal-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
}

.mobile-map-app__menu-group .public-legal-links a {
    padding: 0.7rem 0.85rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.56);
    color: #944a00;
    font-size: 0.9rem;
    text-decoration: none;
}

.mobile-map-app__menu-source,
.mobile-map-app__menu-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.mobile-map-app__menu-source:empty,
.mobile-map-app__menu-categories:empty {
    display: none;
}

.mobile-map-app__menu-filter,
.mobile-map-app__menu-categories .mobile-map-app__chip {
    min-height: 2.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(221, 193, 175, 0.62);
    border-radius: 999px;
    padding: 0.45rem 0.85rem;
    background: rgba(255, 255, 255, 0.64);
    color: #334155;
    font-size: 0.86rem;
    font-weight: 900;
    cursor: pointer;
}

.mobile-map-app__menu-filter.is-active,
.mobile-map-app__menu-categories .mobile-map-app__chip.is-active {
    background: #f98205;
    border-color: #f98205;
    color: #241912;
    box-shadow: 0 10px 24px rgba(249, 130, 5, 0.22);
}

.mobile-map-app__menu-empty {
    color: #8b7a70;
    font-size: 0.9rem;
}

.mobile-map-app__menu-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
    margin-top: auto;
}

.mobile-map-app__menu-actions a:only-child {
    grid-column: 1 / -1;
}

.mobile-map-app__footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 18;
    min-height: 4.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.95rem clamp(1.4rem, 6vw, 7rem) calc(0.95rem + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(221, 193, 175, 0.62);
    background: rgba(255, 248, 245, 0.78);
    color: #8b7a70;
    box-shadow: 0 -12px 40px rgba(36, 25, 18, 0.08);
    backdrop-filter: blur(20px) saturate(170%);
    -webkit-backdrop-filter: blur(20px) saturate(170%);
}

.mobile-map-app__footer p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 850;
}

.mobile-map-app__footer .public-legal-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(1rem, 2.6vw, 2rem);
}

.mobile-map-app__footer .public-legal-links a {
    color: #944a00;
    font-size: 0.9rem;
    font-weight: 900;
    text-decoration: none;
}

@media (min-width: 860px) {
    .mobile-map-app__header {
        padding: 1rem 1rem;
    }

    .mobile-map-app__header-top {
        display: grid;
        grid-template-columns: minmax(13.5rem, 15.5rem) minmax(28rem, 1fr) auto auto 3.2rem;
        gap: 1.15rem;
        align-items: center;
    }

    .mobile-map-app__icon-button--menu {
        display: none;
    }

    .mobile-map-app__brand-logo {
        height: 2.65rem;
        max-width: 15.5rem;
        justify-self: start;
        object-fit: contain;
        object-position: left center;
    }

    .mobile-map-app__desktop-search {
        width: min(42rem, 100%);
        justify-self: center;
    }

    .mobile-map-app__header-actions {
        display: contents;
    }

    .mobile-map-app__header-actions .mobile-map-app__location-display {
        justify-self: start;
        width: max-content;
        max-width: 15.8rem;
        min-width: 9rem;
        padding-inline: 0.95rem;
        background: rgba(255, 255, 255, 0.76);
        border-color: rgba(226, 232, 240, 0.88);
        box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
        color: #334155;
    }

    .mobile-map-app__service-dropdown-container {
        justify-self: start;
    }

    .mobile-map-app__header-actions .mobile-map-app__service-pill {
        width: max-content;
        min-width: 0;
        max-width: 13.5rem;
        padding-inline: 0.9rem;
        justify-content: center;
    }

    .mobile-map-app__icon-button--notify {
        justify-self: end;
    }

    .mobile-map-app__notifications {
        right: 1rem;
    }

    .mobile-map-app__map-stage {
        height: calc(100dvh - 4.2rem);
        bottom: 4.2rem;
    }

    .mobile-map-card,
    .mobile-map-app__empty-state {
        flex: 0 0 16.25rem;
        width: 16.25rem;
        height: 15rem;
    }

    .mobile-map-card__media {
        height: 7.45rem;
    }

    .mobile-map-card__body {
        height: 7.55rem;
        padding: 0.9rem 0.95rem 0.82rem;
    }

    .mobile-map-card__body h3 {
        font-size: 1rem;
        line-height: 1.14;
    }

    .mobile-map-app__route-panel {
        left: 6.65rem;
        bottom: 20.85rem;
    }

    .mobile-map-app__explore-list {
        height: calc(100dvh - 4.2rem);
        padding-bottom: 10rem;
    }

    .mobile-map-app__panel {
        padding-bottom: 9.5rem;
    }

    .mobile-map-app__nav {
        left: 1.35rem;
        top: 7rem;
        bottom: auto;
        width: 4.75rem;
        grid-template-columns: 1fr;
        transform: none;
        border-radius: 24px;
        padding: 0.55rem;
    }
}

@media (max-width: 859px) {
    .mobile-map-app__header-top {
        grid-template-columns: 3rem minmax(0, 1fr) 3rem;
    }

    .mobile-map-app__brand-logo {
        justify-self: center;
        height: 2.35rem;
        max-width: min(14.5rem, 56vw);
    }

    .mobile-map-app__header {
        gap: 0.65rem;
        padding-bottom: 0.72rem;
    }

    .mobile-map-app__header-bottom {
        display: flex;
        justify-content: center;
        gap: 0.58rem;
    }

    .mobile-map-app__header-bottom .mobile-map-app__location-display {
        max-width: min(56vw, 17rem);
        min-height: 2.7rem;
        padding-inline: 0.9rem;
        font-size: 1rem;
    }

    .mobile-map-app__header-bottom .mobile-map-app__service-pill {
        max-width: min(38vw, 12rem);
        min-height: 2.7rem;
        padding-inline: 0.85rem;
        font-size: 0.98rem;
    }

    .mobile-map-app__chip-row--map {
        display: none;
    }

    .mobile-map-app__footer {
        display: none;
    }

    .mobile-map-app__menu-panel {
        width: min(23rem, calc(100vw - 1rem));
        height: calc(100dvh - 1rem);
        margin: 0.5rem;
        border-radius: 26px;
    }
}

/* Final public map density and alignment overrides */
:root {
    --mm-map-edge: clamp(1rem, 4vw, 2rem);
}

.mobile-map-app__chip-row--map {
    left: var(--mm-map-edge);
    right: var(--mm-map-edge);
    top: 6.2rem;
    padding-inline: 0;
}

.mobile-map-app__status-pill {
    left: var(--mm-map-edge);
}

.mobile-map-app__cards-rail {
    left: var(--mm-map-edge);
    right: 0;
    gap: 1rem;
    padding-left: 0;
    padding-right: var(--mm-map-edge);
}

.mobile-map-card__media {
    height: 5.35rem;
}

.mobile-map-card__body {
    padding: 0.5rem 0.72rem 0.62rem;
}

.mobile-map-card__body h3 {
    margin-bottom: 0.28rem;
    letter-spacing: 0;
}

.mobile-map-card__address {
    align-items: center;
    margin-top: 0;
    gap: 0.28rem;
}

.mobile-map-card__address svg {
    margin-top: 0;
}

.mobile-map-card__address-text {
    -webkit-line-clamp: 1;
}

.mobile-map-card__meta--stacked {
    justify-content: flex-start;
    gap: 0.46rem;
    margin-top: 0.45rem;
    flex-wrap: nowrap;
}

.mobile-map-card__meta--stacked .mobile-map-card__category {
    margin-top: 0;
    min-width: 0;
}

.mobile-map-card__meta--stacked .mobile-map-card__category span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (min-width: 860px) {
    :root {
        --mm-map-edge: 2rem;
    }

    .mobile-map-app__chip-row--map {
        top: 6.45rem;
    }

    .mobile-map-app__cards-rail {
        gap: 1.15rem;
    }

.mobile-map-card,
.mobile-map-app__empty-state {
        flex-basis: min(14.25rem, calc(24vw - 0.75rem));
    }

    .mobile-map-app__nav-core {
        width: 4.75rem;
        height: 4.75rem;
    }

    .mobile-map-app__nav-core svg {
        width: 2.12rem;
        height: 2.12rem;
    }
}

@media (max-width: 859px) {
    :root {
        --mm-map-edge: 1rem;
    }

    .mobile-map-app__header {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .mobile-map-app__header-top {
        grid-template-columns: 2.44rem minmax(0, 1fr) 2.44rem;
        gap: 0.45rem;
    }

    .mobile-map-app__brand-logo {
        height: 2.1rem;
        max-width: min(13rem, 50vw);
        justify-self: center;
    }

    .mobile-map-app__header-actions {
        justify-self: end;
        margin-left: 0;
    }

    .mobile-map-app__icon-button--menu,
    .mobile-map-app__icon-button--notify {
        width: 2.44rem;
        height: 2.44rem;
    }

    .mobile-map-app__header-bottom {
        gap: 0.44rem;
    }

    .mobile-map-app__header-bottom .mobile-map-app__location-display {
        max-width: min(52vw, 15.5rem);
        min-height: 2.43rem;
        padding-inline: 0.78rem;
        font-size: 0.9rem;
    }

    .mobile-map-app__header-bottom .mobile-map-app__service-pill {
        max-width: min(35vw, 10.8rem);
        min-height: 2.43rem;
        padding-inline: 0.74rem;
        font-size: 0.88rem;
    }

    .mobile-map-app__cards-rail {
        bottom: 4.7rem;
        gap: 0.95rem;
    }

.mobile-map-card,
.mobile-map-app__empty-state {
        flex-basis: min(16.875rem, calc(57vw - 0.5rem));
    }

    .mobile-map-card__media {
        height: 5.5rem;
    }

    .mobile-map-card__body h3 {
        font-size: 0.90rem;
        line-height: 1.12;
    }

    .mobile-map-app__nav {
        width: calc(100% - 1.4rem);
        left: 0.7rem;
        bottom: max(0.42rem, env(safe-area-inset-bottom));
        border-radius: 24px;
        padding: 0.34rem 0.42rem;
    }

    .mobile-map-app__nav-item {
        min-height: 3.05rem;
        gap: 0.12rem;
        font-size: 0.52rem;
    }

    .mobile-map-app__nav-item svg {
        width: 1.24rem;
        height: 1.24rem;
    }

    .mobile-map-app__nav-item--center {
        transform: translateY(-0.85rem);
    }

    .mobile-map-app__nav-core {
        width: 3.15rem;
        height: 3.15rem;
        border-width: 5px;
    }

    .mobile-map-app__nav-core svg {
        width: 1.42rem;
        height: 1.42rem;
    }
}

@media (max-width: 420px) {
    .mobile-map-app__brand-logo {
        height: 1.55rem;
        max-width: 9.75rem;
    }

    .mobile-map-app__icon-button--menu,
    .mobile-map-app__icon-button--notify {
        width: 2.44rem;
        height: 2.44rem;
    }

    .mobile-map-app__nav-core {
        width: 3.05rem;
        height: 3.05rem;
    }
}

/* 2026-06-13 mobile correction pass */
.map-shell__info-window {
    min-width: 13.5rem;
    max-width: 15.5rem;
    gap: 0.55rem;
    padding: 0.35rem;
}

.map-shell__info-window-header {
    align-items: flex-start;
}

.map-shell__info-window strong {
    font-size: 0.92rem;
    line-height: 1.15;
}

.map-shell__info-window-address {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.74rem;
    line-height: 1.25;
}

.map-shell__info-window-badge-stack {
    gap: 0.25rem;
}

.map-shell__info-window-badge {
    padding: 0.32rem 0.55rem;
    font-size: 0.62rem;
    letter-spacing: 0;
}

.map-shell__info-window-badge--category {
    background: #e2e8f0;
    color: #475569;
}

.map-shell__info-window-meta span {
    padding: 0.32rem 0.55rem;
    font-size: 0.68rem;
}

.map-shell__info-window-actions {
    gap: 0.45rem;
}

.map-shell__info-window-actions a,
.map-shell__info-window-actions button {
    min-height: 2rem;
    border: none;
    border-radius: 999px;
    padding: 0.5rem 0.72rem;
    background: #fff1e9;
    color: #944a00;
    font-size: 0.72rem;
    font-weight: 900;
    text-decoration: none;
}

.location-profile-document,
.location-profile-document body,
body.location-profile-page {
    height: auto !important;
    min-height: 100dvh !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    overscroll-behavior-y: auto;
    -webkit-overflow-scrolling: touch;
}

.location-profile {
    min-height: auto;
    padding-bottom: calc(7.5rem + env(safe-area-inset-bottom));
}

@media (max-width: 860px) {
    .location-profile__shell {
        padding-bottom: calc(8rem + env(safe-area-inset-bottom));
    }

    .location-profile__summary {
        max-height: none;
    }
}

@media (max-width: 859px) {
    .mobile-map-app__header {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .mobile-map-app__header-top {
        grid-template-columns: 2.44rem minmax(0, 1fr) 2.44rem;
        column-gap: 0.5rem;
    }

    .mobile-map-app__header-actions {
        width: 2.44rem;
        justify-self: end;
        display: flex;
        justify-content: flex-end;
        margin-left: 0;
    }

    .mobile-map-app__icon-button--notify {
        justify-self: end;
    }

    .mobile-map-app__brand-logo {
        height: 1.9rem;
        max-width: min(11.8rem, 47vw);
        justify-self: center;
    }

    .mobile-map-app__header-bottom .mobile-map-app__location-display,
    .mobile-map-app__header-bottom .mobile-map-app__service-pill {
        transform: scale(0.9);
        transform-origin: center;
    }

    .mobile-map-app__floating-controls {
        right: 0.85rem;
        gap: 0.62rem;
    }

    .mobile-map-app__zoom-stack {
        border-radius: 16px;
    }

    .mobile-map-app__control-button {
        width: 2.52rem;
        height: 2.52rem;
        border-radius: 16px;
        font-size: 1.45rem;
    }

    .mobile-map-app__cards-rail {
        bottom: 4.75rem;
        gap: 1rem;
        padding-right: 1rem;
    }

.mobile-map-card,
.mobile-map-app__empty-state {
        flex: 0 0 min(13.125rem, calc(75vw - 1.5rem));
        width: min(13.125rem, calc(75vw - 1.5rem));
        height: 11.484375rem;
        scroll-snap-align: start;
    }

    .mobile-map-card {
        border-radius: 22px;
    }

    .mobile-map-card.is-active {
        transform: none;
    }

.mobile-map-card__media {
        height: 6rem;
    }

.mobile-map-card__body {
        height: 5.484375rem;
        padding: 0.72rem 0.78rem 0.64rem;
        display: grid;
        grid-template-rows: auto auto 1fr;
    }

    .mobile-map-card__floating-badges {
        top: -1.38rem;
        right: 0.9rem;
        gap: 0.42rem;
    }

    .mobile-map-card__badge {
        min-height: 2.15rem;
        padding: 0.42rem 0.72rem;
        font-size: 0.78rem;
        border-width: 3px;
    }

.mobile-map-card__body h3 {
        margin: 0 0 0.35rem;
        font-size: 0.90rem;
        line-height: 1.08;
        letter-spacing: 0;
    }

.mobile-map-card__address {
        margin: 0;
        font-size: 0.74rem;
        line-height: 1.2;
    }

    .mobile-map-card__address svg {
        width: 0.92rem;
        height: 0.92rem;
    }

    .mobile-map-card__meta--stacked {
        align-self: end;
        justify-content: space-between;
        gap: 0.5rem;
        margin-top: 0.55rem;
    }

    .mobile-map-card__status {
        border-radius: 8px;
        padding: 0.38rem 0.62rem;
        font-size: 0.72rem;
        letter-spacing: 0;
    }

    .mobile-map-card__category {
        font-size: 0.74rem;
        letter-spacing: 0;
        text-transform: none;
        color: #64748b;
    }

    .mobile-map-card__category-dot {
        width: 0.62rem;
        height: 0.62rem;
        background: #cbd5e1 !important;
    }

.mobile-map-app__status-pill {
        bottom: 15.5rem;
        max-width: min(13.125rem, calc(75vw - 1.5rem));
    }

    .mobile-map-app__detail-card {
        max-height: min(82dvh, 42rem);
        bottom: max(0.65rem, env(safe-area-inset-bottom));
        border-radius: 28px;
        width: calc(100% - 1rem);
    }

    .mobile-map-app__detail-hero {
        min-height: 11rem;
    }

    .mobile-map-app__detail-copy {
        padding: 1rem 1rem calc(6.25rem + env(safe-area-inset-bottom));
    }

    .mobile-map-app__detail-gallery {
        display: none;
    }

    .mobile-map-app__detail-actions--primary {
        position: sticky;
        bottom: 0;
        z-index: 2;
        padding-top: 0.35rem;
        background: linear-gradient(180deg, rgba(255, 248, 245, 0), #fff8f5 26%);
    }
}

/* 2026-06-13 second correction pass */
.mobile-map-card,
.mobile-map-app__empty-state {
    flex: 0 0 13.125rem;
    width: 13.125rem;
    height: 11.484375rem;
    scroll-snap-align: start;
}

.mobile-map-card__media {
    height: 6rem;
}

.mobile-map-card__body {
    height: 5.484375rem;
    padding: 0.72rem 0.78rem 0.64rem;
    display: grid;
    grid-template-rows: auto auto 1fr;
}

.mobile-map-card__body h3 {
    margin: 0 0 0.35rem;
    font-size: 0.90rem;
    line-height: 1.08;
    letter-spacing: 0;
}

.mobile-map-card__address {
    margin: 0;
    font-size: 0.74rem;
    line-height: 1.2;
}

.mobile-map-card__meta--stacked {
    align-self: end;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 0.55rem;
}

html.location-profile-document,
html.location-profile-document body,
html.location-profile-document body.location-profile-page {
    height: auto !important;
    min-height: 100dvh !important;
    max-height: none !important;
    overflow-x: hidden !important;
    overflow-y: scroll !important;
    position: static !important;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
}

html.location-profile-document .location-profile {
    height: auto !important;
    min-height: 100dvh !important;
    overflow: visible !important;
    padding-bottom: calc(9rem + env(safe-area-inset-bottom));
}

html.location-profile-document .location-profile__shell,
html.location-profile-document .location-profile__summary,
html.location-profile-document .location-profile__content {
    max-height: none !important;
    overflow: visible !important;
}

.map-shell__info-window {
    position: relative;
    min-width: 15rem;
    max-width: 18rem;
    border: 1px solid rgba(221, 193, 175, 0.72);
    border-radius: 22px;
    padding: 0.85rem;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 42px rgba(36, 25, 18, 0.22);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
}

.map-shell__info-window::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -0.62rem;
    width: 1.25rem;
    height: 1.25rem;
    transform: translateX(-50%) rotate(45deg);
    border-right: 1px solid rgba(221, 193, 175, 0.72);
    border-bottom: 1px solid rgba(221, 193, 175, 0.72);
    background: rgba(255, 255, 255, 0.9);
}

.map-shell__info-window-actions button,
.map-shell__info-window-actions a {
    display: inline-flex;
    min-height: 2.15rem;
    border: none;
    border-radius: 999px;
    padding: 0.55rem 0.9rem;
    background: #fff1e9;
    color: #944a00;
    font-size: 0.78rem;
    font-weight: 900;
    text-decoration: none;
}

@media (max-width: 859px) {
    .mobile-map-app__header {
        padding-left: 0.625rem;
        padding-right: 0.625rem;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0.75rem;
    }

    .mobile-map-app__header-top {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        grid-template-columns: none;
        gap: 0;
        width: 100%;
        flex: 0 0 auto;
    }

    .mobile-map-app__brand-logo {
        position: absolute;
        left: 50%;
        top: 50%;
        height: 1.8rem;
        max-width: min(12rem, 54vw);
        transform: translate(-50%, -50%);
        object-fit: contain;
        justify-self: auto;
    }

    .mobile-map-app__header-actions {
        width: auto;
        min-width: 2.44rem;
        display: flex;
        justify-content: flex-end;
        margin-left: auto;
    }

    .mobile-map-app__icon-button--menu,
    .mobile-map-app__icon-button--notify {
        width: 2.44rem;
        height: 2.44rem;
        flex: 0 0 2.44rem;
    }

    .mobile-map-app__header-bottom {
        width: 100%;
        flex: 0 0 auto;
        justify-content: center;
    }

.mobile-map-app__status-pill {
        bottom: 16rem;
        gap: 0.42rem;
        max-width: min(13.125rem, calc(75vw - 1.5rem));
        padding: 0.46rem 0.66rem;
        font-size: 0.68rem;
    }

    .mobile-map-app__status-pill strong {
        min-width: 1.35rem;
        height: 1.35rem;
        padding: 0 0.42rem;
        font-size: 0.68rem;
    }

    .mobile-map-app__detail-card {
        left: 50%;
        right: auto;
        bottom: max(0.75rem, env(safe-area-inset-bottom));
        width: min(calc(100% - 1rem), 28rem);
        max-height: min(82dvh, 44rem);
        transform: translate(-50%, 100%);
        border-radius: 28px;
    }

    .mobile-map-app__detail-sheet.is-visible .mobile-map-app__detail-card {
        transform: translate(-50%, 0);
    }

    .mobile-map-app__detail-body {
        max-height: inherit;
        min-height: 0;
    }

    .mobile-map-app__detail-copy {
        gap: 0.9rem;
        padding: 1rem 1rem calc(1.25rem + env(safe-area-inset-bottom));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-map-app__detail-gallery {
        display: flex;
        order: 4;
    }

    .mobile-map-app__detail-gallery div {
        width: 4.75rem;
        height: 4.75rem;
    }

    .mobile-map-app__detail-section {
        order: 5;
    }

    .mobile-map-app__detail-actions--primary {
        position: static;
        order: 6;
        padding-top: 0;
        background: transparent;
    }

    .mobile-map-app__detail-actions--secondary {
        order: 7;
    }

    .mobile-map-app__detail-policy {
        order: 8;
    }
}

@media (min-width: 860px) {
    .mobile-map-card,
    .mobile-map-app__empty-state {
        flex-basis: 16.25rem;
    }

    .mobile-map-app__status-pill {
        bottom: 20.2rem;
        left: 6.65rem;
    }

    .mobile-map-app__route-panel {
        left: 6.65rem;
        bottom: 20.85rem;
    }

    .cookie-consent {
        bottom: calc(4.8rem + env(safe-area-inset-bottom));
    }
}

/* 2026-06-13 mobile structural reset */
@media (max-width: 859px) {
    .mobile-map-app__header {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        padding: max(1.08rem, env(safe-area-inset-top)) 0.625rem 0.9rem;
    }

    .mobile-map-app__header-top {
        display: grid;
        grid-template-columns: 2.44rem minmax(0, 1fr) 2.44rem;
        align-items: center;
        width: 100%;
        gap: 0;
    }

    .mobile-map-app__brand-logo {
        position: static;
        grid-column: 2;
        justify-self: center;
        height: 1.75rem;
        max-width: min(12.25rem, 54vw);
        transform: none;
    }

    .mobile-map-app__header-actions {
        grid-column: 3;
        justify-self: end;
        width: 2.44rem;
        min-width: 2.44rem;
        margin: 0;
    }

    .mobile-map-app__icon-button--menu {
        grid-column: 1;
        justify-self: start;
    }

    .mobile-map-app__icon-button--notify {
        justify-self: end;
    }

    .mobile-map-app__header-bottom {
        display: flex;
        width: 100%;
        justify-content: center;
        gap: 0.5rem;
    }

    .mobile-map-app__detail-card {
        overflow: hidden;
    }

    .mobile-map-app__detail-body {
        height: 100%;
        max-height: inherit;
        overflow: hidden;
    }

    .mobile-map-app__detail-copy {
        min-height: 0;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-map-app__detail-gallery {
        display: flex;
        min-height: 5rem;
        margin: 0.1rem 0 0.25rem;
        padding-bottom: 0.2rem;
        overflow-x: auto;
    }

    .mobile-map-app__detail-gallery div {
        width: 5rem;
        height: 5rem;
        flex: 0 0 5rem;
    }
}

@media (max-width: 860px) {
    html.location-profile-document,
    html.location-profile-document body,
    html.location-profile-document body.location-profile-page {
        height: auto !important;
        min-height: 100% !important;
        overflow: visible !important;
        position: static !important;
        touch-action: auto;
    }

    html.location-profile-document {
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
    }

    body.location-profile-page {
        background: #fff8f5;
    }

    html.location-profile-document .location-profile {
        min-height: auto !important;
        height: auto !important;
        overflow: visible !important;
        padding-bottom: calc(8rem + env(safe-area-inset-bottom));
        background: #fff8f5;
    }

    .location-profile__hero {
        min-height: 18.75rem;
        align-items: stretch;
    }

    .location-profile__hero-copy {
        display: none;
    }

    .location-profile__hero-overlay {
        background:
            linear-gradient(180deg, rgba(36, 25, 18, 0.12), rgba(36, 25, 18, 0.5)),
            linear-gradient(0deg, #fff8f5 0, rgba(255, 248, 245, 0) 30%);
    }

    .location-profile__shell {
        display: grid;
        width: 100%;
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: -4.4rem;
        padding: 0 1rem calc(8rem + env(safe-area-inset-bottom));
        overflow: visible !important;
    }

    .location-profile__summary {
        position: relative;
        top: auto;
        display: grid;
        gap: 1rem;
        border-radius: 24px;
        padding: 1.15rem;
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(18px) saturate(150%);
        -webkit-backdrop-filter: blur(18px) saturate(150%);
    }

    .location-profile__identity h2 {
        font-size: 1.35rem;
        line-height: 1.1;
    }

    .location-profile__identity p {
        font-size: 0.95rem;
        line-height: 1.45;
    }

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

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

    .location-profile__content {
        display: grid;
        gap: 1rem;
        overflow: visible !important;
    }

    .location-profile__card {
        border-radius: 22px;
        padding: 1rem;
    }
}

/* 2026-06-14 desktop rail/tabbar and address autocomplete correction */
.welcome-flow__form {
    isolation: isolate;
}

.welcome-flow__input-shell {
    z-index: 90;
}

.welcome-flow__suggestions {
    top: 5.35rem;
    z-index: 130;
    max-height: min(18rem, 46vh);
    overflow-y: auto;
    overscroll-behavior: contain;
    box-shadow: 0 24px 58px rgba(36, 25, 18, 0.18);
}

.welcome-flow__submit,
.welcome-flow__geo {
    z-index: 20;
}

.mobile-map-card,
.mobile-map-app__empty-state {
    height: 12.6328125rem;
}

.mobile-map-card__media {
    height: 6.6rem;
}

.mobile-map-card__body {
    height: 6.0328125rem;
}

.mobile-map-card__body h3 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mobile-map-card__address-text {
    -webkit-line-clamp: 1;
}

@media (min-width: 860px) {
    .mobile-map-app__nav {
        top: 9.75rem;
        left: 1.35rem;
        width: 5.35rem;
        grid-template-columns: 1fr;
        gap: 0.38rem;
        padding: 0.54rem;
        align-items: stretch;
    }

    .mobile-map-app__nav-item {
        width: 100%;
        min-height: 4.1rem;
        padding: 0.4rem 0.18rem;
        overflow: hidden;
    }

    .mobile-map-app__nav-item span:not(.mobile-map-app__nav-core) {
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .mobile-map-app__nav-item:nth-child(1) {
        order: 1;
    }

    .mobile-map-app__nav-item:nth-child(2) {
        order: 2;
    }

    .mobile-map-app__nav-item--center {
        order: 3;
        transform: none;
    }

    .mobile-map-app__nav-item:nth-child(4) {
        order: 4;
    }

    .mobile-map-app__nav-item:nth-child(5) {
        order: 5;
    }

    .mobile-map-app__nav-core {
        width: 3.6rem;
        height: 3.6rem;
        border: 4px solid rgba(255, 255, 255, 0.92);
    }

    .mobile-map-app__nav-core svg {
        width: 1.72rem;
        height: 1.72rem;
    }

    .mobile-map-app__chip-row--map {
        left: 6.95rem;
        top: 6.95rem;
    }

    .mobile-map-app__status-pill {
        left: 6.95rem;
        bottom: 17.5rem;
    }

    .mobile-map-app__cards-rail {
        left: 6.95rem;
        bottom: -1.05rem;
        gap: 1.15rem;
        padding-right: 2rem;
    }

    .mobile-map-card,
    .mobile-map-app__empty-state {
        flex: 0 0 17.5rem;
        width: 17.5rem;
        height: 16.84375rem;
    }

    .mobile-map-card__media {
        height: 8.8rem;
    }

    .mobile-map-card__body {
        height: 8.04375rem;
        padding: 0.92rem 1rem 0.88rem;
    }

    .mobile-map-card__body h3 {
        font-size: 1rem;
        line-height: 1.14;
    }
}

@media (max-width: 859px) {
    .mobile-map-card,
    .mobile-map-app__empty-state {
        height: 12.6328125rem;
    }

    .mobile-map-card__media {
        height: 6.6rem;
    }

    .mobile-map-card__body {
        height: 6.0328125rem;
    }

    .mobile-map-app__status-pill {
        bottom: 17.15rem;
    }

    .mobile-map-app__detail-gallery {
        display: flex !important;
        min-height: 5rem;
        overflow-x: auto;
    }

    .mobile-map-app__detail-actions--primary {
        position: static;
        background: transparent;
    }
}

/* 2026-06-15 profile scroll, bottom-sheet gallery and availability states */
.mobile-map-app__detail-status.mobile-map-card__status--discovered {
    background: #dcfce7;
    color: #15803d;
}

.mobile-map-app__detail-status.mobile-map-card__status--closed {
    background: #ffdad6;
    color: #93000a;
}

.mobile-map-app__detail-status.mobile-map-card__status--pending {
    background: #fff3cd;
    color: #8a5300;
}

.location-profile__stat--open {
    background: #ecfdf3 !important;
}

.location-profile__stat--closed {
    background: #ffdad6 !important;
}

.location-profile__stat--pending {
    background: #fff3cd !important;
}

.location-profile__stats strong.is-pending {
    color: #8a5300;
}

@media (max-width: 860px) {
    html.location-profile-document {
        height: 100% !important;
        min-height: 100% !important;
        overflow: hidden !important;
    }

    html.location-profile-document body.location-profile-page {
        position: relative !important;
        height: 100dvh !important;
        min-height: 100dvh !important;
        max-height: none !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        overscroll-behavior-y: contain;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-y;
    }

    html.location-profile-document .location-profile {
        display: block !important;
        height: auto !important;
        min-height: calc(100dvh + 1px) !important;
        max-height: none !important;
        overflow: visible !important;
        padding-bottom: calc(9rem + env(safe-area-inset-bottom)) !important;
    }

    html.location-profile-document .location-profile__shell,
    html.location-profile-document .location-profile__summary,
    html.location-profile-document .location-profile__content,
    html.location-profile-document .location-profile__card {
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
    }

    .mobile-map-app__detail-card {
        max-height: min(84dvh, 44rem);
    }

    .mobile-map-app__detail-body {
        display: flex;
        flex-direction: column;
        height: 100%;
        max-height: inherit;
        overflow: hidden;
    }

    .mobile-map-app__detail-copy {
        display: flex !important;
        flex: 1 1 auto;
        min-height: 0;
        flex-direction: column;
        gap: 0.95rem;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-map-app__detail-gallery {
        display: flex !important;
        flex: 0 0 auto;
        gap: 0.65rem;
        width: 100%;
        min-height: 5.75rem;
        margin: 0.1rem 0 0.2rem;
        padding: 0 0 0.25rem;
        overflow-x: auto;
        overflow-y: visible;
        order: initial;
    }

    .mobile-map-app__detail-gallery div {
        flex: 0 0 5.6rem !important;
        width: 5.6rem !important;
        height: 5.6rem !important;
        min-width: 5.6rem;
        min-height: 5.6rem;
    }

    .mobile-map-app__detail-actions--primary {
        position: static !important;
        flex: 0 0 auto;
        order: initial;
        padding-top: 0;
        background: transparent !important;
    }
}

/* 2026-06-15 profile navigation, scroller, WhatsApp and sort filters */
html.location-profile-document,
html.location-profile-document body,
html.location-profile-document body.location-profile-page {
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow: hidden !important;
}

html.location-profile-document body.location-profile-page {
    position: fixed !important;
    inset: 0;
    touch-action: none;
}

html.location-profile-document .location-profile {
    position: fixed;
    inset: 0;
    display: block !important;
    width: 100%;
    height: 100dvh !important;
    min-height: 100dvh !important;
    max-height: 100dvh !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
}

html.location-profile-document .location-profile__shell,
html.location-profile-document .location-profile__summary,
html.location-profile-document .location-profile__content,
html.location-profile-document .location-profile__card {
    overflow: visible !important;
    max-height: none !important;
}

.location-profile__primary-action--whatsapp,
.mobile-map-app__detail-action-primary--whatsapp {
    background: #25D366 !important;
    color: #ffffff !important;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.24) !important;
}

.location-profile__primary-action--whatsapp:disabled,
.mobile-map-app__detail-action-primary--whatsapp:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    filter: grayscale(0.2);
    box-shadow: none !important;
}

.mobile-map-app__detail-copy {
    display: flex;
    flex-direction: column;
}

.mobile-map-app__detail-gallery {
    display: flex !important;
    flex: 0 0 auto;
    min-height: 5.75rem;
    overflow-x: auto;
    overflow-y: visible;
}

.mobile-map-app__detail-gallery div {
    flex: 0 0 5.6rem !important;
    width: 5.6rem !important;
    height: 5.6rem !important;
}

.mobile-map-app__sort-filter-row {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    flex: 0 0 auto;
}

.mobile-map-app__sort-filter {
    min-height: 2.25rem;
    border: 1px solid rgba(221, 193, 175, 0.78);
    border-radius: 999px;
    padding: 0.45rem 0.78rem;
    background: rgba(255, 255, 255, 0.86);
    color: #334155;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.mobile-map-app__sort-filter.is-active {
    border-color: #f27f0d;
    background: #f27f0d;
    color: #562900;
}

@media (min-width: 860px) {
    .mobile-map-app__chip-row--map {
        display: flex;
        width: auto;
        max-width: calc(100vw - 9rem);
        align-items: center;
        overflow: visible;
    }

    .mobile-map-app__chip-row--map [data-map-shell-target="chipRow"] {
        display: inline-flex !important;
        max-width: min(42vw, 44rem);
        overflow-x: auto;
        scrollbar-width: none;
    }

    .mobile-map-app__chip-row--map [data-map-shell-target="chipRow"]::-webkit-scrollbar {
        display: none;
    }
}

@media (max-width: 859px) {
    .mobile-map-card__floating-badges {
        top: -1.05rem;
        right: 0.72rem;
        gap: 0.32rem;
    }

    .mobile-map-card__badge {
        min-height: 1.7rem;
        border-width: 2px;
        padding: 0.28rem 0.52rem;
        font-size: 0.66rem;
        box-shadow: 0 8px 16px rgba(15, 23, 42, 0.1);
    }

    .mobile-map-card__badge--rating svg {
        width: 0.72rem;
        height: 0.72rem;
    }

    .mobile-map-app__status-pill {
        bottom: 17.85rem;
        max-width: min(12rem, calc(70vw - 1rem));
        padding: 0.38rem 0.55rem;
        font-size: 0.62rem;
    }

    .mobile-map-app__status-pill strong {
        min-width: 1.15rem;
        height: 1.15rem;
        font-size: 0.62rem;
    }
}

/* 2026-06-29 pre-claim shell discovery stabilization */
.mobile-map-app__panel {
    position: absolute;
    inset: 0;
    z-index: 2;
    min-height: 0;
    height: 100dvh;
    max-height: 100dvh;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
    padding:
        calc(5.85rem + env(safe-area-inset-top))
        clamp(1rem, 4vw, 1.5rem)
        calc(7.8rem + env(safe-area-inset-bottom));
    background:
        linear-gradient(180deg, rgba(255, 248, 240, 0.96) 0%, rgba(248, 250, 252, 0.98) 34%, #ffffff 100%);
}

.mobile-map-app__panel.is-hidden {
    display: none !important;
}

.mobile-map-app__panel-head {
    position: sticky;
    top: calc(-1px - env(safe-area-inset-top));
    z-index: 2;
    margin: -0.35rem 0 0.1rem;
    padding: 0.35rem 0 0.75rem;
    background: linear-gradient(180deg, rgba(255, 248, 240, 0.98), rgba(255, 248, 240, 0.82) 75%, transparent);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.mobile-map-app__saved-list,
.mobile-map-app__legal-status-list {
    min-width: 0;
}

.public-home__saved-row {
    min-width: 0;
    align-items: stretch;
}

.public-home__saved-row > div:first-child,
.mobile-map-app__auth-card,
.mobile-map-app__address-form {
    min-width: 0;
}

.public-home__saved-row strong,
.public-home__saved-row p,
.public-home__saved-row small,
.mobile-map-app__auth-card strong,
.mobile-map-app__auth-card p {
    overflow-wrap: anywhere;
}

.mobile-map-app__field-grid {
    min-width: 0;
}

.mobile-map-app__field-grid input,
.mobile-map-app__field-grid select {
    min-width: 0;
}

.mobile-map-app__explore-list {
    height: 100dvh;
    max-height: 100dvh;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
    padding:
        calc(5.85rem + env(safe-area-inset-top))
        clamp(1rem, 4vw, 1.35rem)
        calc(7.8rem + env(safe-area-inset-bottom));
}

.mobile-map-app__explore-list-grid,
.mobile-map-app__visual-section,
.mobile-map-app__visual-card-grid {
    min-width: 0;
}

.mobile-map-app__nearby-live-row,
.mobile-map-app__category-orbit,
.mobile-map-app__review-teaser-row,
.mobile-map-app__nearby-category-grid,
.mobile-map-app__places-story-row,
.mobile-map-app__cards-rail,
.mobile-map-app__chip-row {
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
}

.mobile-map-app__places-story-row {
    padding: 0 0.1rem 0.35rem;
}

.mobile-map-app__places-story {
    width: clamp(8.25rem, 34vw, 10.5rem);
    min-height: 13.5rem;
}

.mobile-map-app__places-story strong,
.mobile-map-app__places-story small {
    text-shadow: 0 2px 12px rgba(15, 23, 42, 0.42);
}

.mobile-map-card {
    min-width: 0;
    contain: layout paint;
}

.mobile-map-card__media.has-photo {
    background-repeat: no-repeat;
}
/*
.mobile-map-card__body h3 {
    display: -webkit-box;
    min-height: 1.85em;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    letter-spacing: 0;
}
*/
.mobile-map-card__meta--stacked {
    align-items: flex-start;
}

.mobile-map-app__visual-card-grid .mobile-map-card {
    width: 100%;
}

.mobile-map-app__detail-sheet {
    padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}

.mobile-map-app__detail-card {
    bottom: calc(1rem + env(safe-area-inset-bottom));
    max-height: min(78dvh, 44rem);
}

.mobile-map-app__detail-body {
    min-height: 0;
    overflow: hidden;
}

.mobile-map-app__detail-copy {
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
}

@media (min-width: 860px) {
    .mobile-map-app__panel {
        padding:
            calc(5.2rem + env(safe-area-inset-top))
            clamp(2rem, 8vw, 7rem)
            calc(6.4rem + env(safe-area-inset-bottom));
    }

    .mobile-map-app__explore-list {
        padding:
            calc(5.2rem + env(safe-area-inset-top))
            clamp(2rem, 8vw, 7rem)
            calc(6.4rem + env(safe-area-inset-bottom));
    }
}

@media (max-width: 859px) {
    .mobile-map-app__panel,
    .mobile-map-app__explore-list {
        padding-top: calc(7.1rem + env(safe-area-inset-top));
        padding-bottom: calc(7.45rem + env(safe-area-inset-bottom));
    }

    .public-home__saved-row {
        display: grid;
        gap: 0.8rem;
    }

    .public-home__saved-actions,
    .mobile-map-app__auth-actions,
    .mobile-map-app__address-actions {
        width: 100%;
    }

    .public-home__saved-actions .public-home__inline-button,
    .mobile-map-app__auth-actions a,
    .mobile-map-app__auth-actions button,
    .mobile-map-app__address-actions button {
        flex: 1 1 9rem;
        justify-content: center;
        text-align: center;
    }

    .mobile-map-app__field-grid {
        grid-template-columns: 1fr;
    }

    .mobile-map-app__cards-rail {
        bottom: 4.75rem;
        gap: 1rem;
        padding-right: 1rem;
    }

    .mobile-map-card,
    .mobile-map-app__empty-state {
        flex-basis: min(13.4rem, calc(70vw - 1rem));
    }

    .mobile-map-app__detail-card {
        width: calc(100% - 1rem);
        max-height: min(82dvh, 44rem);
        border-radius: 24px 24px 18px 18px;
    }
}

/* 2026-06-30 Stitch selective integration: favorites and saved places */
.mobile-map-app__panel {
    scroll-padding-top: calc(6.25rem + env(safe-area-inset-top));
    scroll-padding-bottom: calc(8rem + env(safe-area-inset-bottom));
}

.mobile-map-app__panel-head p {
    margin: 0.15rem 0 0;
    color: #6b5a4f;
    font-size: 0.9rem;
    font-weight: 500;
}

.mobile-map-app__segmented {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.35rem;
    width: min(100%, 28rem);
    margin: 0.65rem 0 1.15rem;
    padding: 0.32rem;
    border-radius: 999px;
    background: rgba(255, 220, 197, 0.64);
    border: 1px solid rgba(221, 193, 175, 0.65);
}

.mobile-map-app__segmented button {
    min-height: 2.45rem;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #633000;
    font-weight: 850;
    cursor: pointer;
}

.mobile-map-app__segmented button.is-active {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 20px rgba(36, 25, 18, 0.08);
}

.mobile-map-app__segmented button:disabled {
    cursor: not-allowed;
    opacity: 0.72;
}

.mobile-map-app__saved-list[data-map-shell-target="favoritesList"] {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
    align-items: start;
    gap: 1rem;
}

.public-home__favorite-card {
    position: relative;
    display: grid;
    overflow: hidden;
    min-width: 0;
    border-radius: 18px;
    background: #ffeade;
    border: 1px solid rgba(221, 193, 175, 0.62);
    box-shadow: 0 14px 28px rgba(36, 25, 18, 0.08);
}

.public-home__favorite-media {
    position: relative;
    display: block;
    min-height: 10.25rem;
    background:
        linear-gradient(135deg, rgba(242, 127, 13, 0.34), rgba(0, 166, 249, 0.22)),
        #f9e4d8;
    background-size: cover;
    background-position: center;
    text-decoration: none;
}

.public-home__favorite-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(36, 25, 18, 0.12), rgba(36, 25, 18, 0.36));
    pointer-events: none;
}

.public-home__favorite-source,
.public-home__favorite-metrics {
    position: absolute;
    z-index: 1;
}

.public-home__favorite-source {
    left: 0.8rem;
    top: 0.8rem;
    border-radius: 999px;
    padding: 0.3rem 0.55rem;
    background: rgba(0, 166, 249, 0.88);
    color: #003859;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.public-home__favorite-metrics {
    left: 0.75rem;
    bottom: 0.72rem;
    display: inline-flex;
    gap: 0.45rem;
}

.public-home__favorite-metrics small {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    min-height: 1.45rem;
    border-radius: 999px;
    padding: 0.25rem 0.55rem;
    background: rgba(255, 255, 255, 0.9);
    color: #241912;
    font-size: 0.7rem;
    font-weight: 900;
    box-shadow: 0 5px 15px rgba(36, 25, 18, 0.12);
}

.public-home__favorite-metrics svg {
    width: 0.82rem;
    height: 0.82rem;
    color: #f98205;
    fill: currentColor;
}

.public-home__favorite-remove {
    position: absolute;
    top: 0.7rem;
    right: 0.7rem;
    z-index: 2;
    width: 2.65rem;
    height: 2.65rem;
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.92);
    color: #944a00;
    box-shadow: 0 8px 20px rgba(36, 25, 18, 0.16);
    cursor: pointer;
}

.public-home__favorite-remove svg {
    width: 1.16rem;
    height: 1.16rem;
    color: var(--mm-icon-favorite);
}

.public-home__favorite-body {
    display: grid;
    gap: 0.75rem;
    min-width: 0;
    padding: 0.9rem 1rem 1rem;
}

.public-home__favorite-body strong {
    display: block;
    overflow: hidden;
    color: #241912;
    font-size: 0.98rem;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.public-home__favorite-body p {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    min-width: 0;
    margin: 0.25rem 0 0;
    overflow: hidden;
    color: #6b5a4f;
    font-size: 0.83rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.public-home__favorite-body p svg {
    flex: 0 0 auto;
    width: 1rem;
    height: 1rem;
    color: #8a7263;
}

.public-home__favorite-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    color: #64748b;
    font-size: 0.78rem;
    font-weight: 850;
    text-transform: uppercase;
}

.public-home__favorite-footer span {
    color: #15803d;
}

.mobile-map-app__address-form-head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
}

.mobile-map-app__address-form-head strong {
    display: block;
    color: #241912;
    font-size: 1.1rem;
    font-weight: 900;
}

.mobile-map-app__address-form-head p {
    margin: 0.2rem 0 0;
    color: #6b5a4f;
    font-size: 0.88rem;
}

.mobile-map-app__address-type-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.mobile-map-app__address-type-chip {
    min-height: 2.55rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 1px solid rgba(221, 193, 175, 0.78);
    border-radius: 999px;
    padding: 0.48rem 0.82rem;
    background: #ffffff;
    color: #564335;
    font-weight: 900;
    cursor: pointer;
}

.mobile-map-app__address-type-chip svg {
    width: 1.1rem;
    height: 1.1rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mobile-map-app__address-type-chip.is-active {
    border-color: rgba(249, 130, 5, 0.45);
    background: #f98205;
    color: #fff8f5;
}

.mobile-map-app__address-type-chip:focus-visible {
    outline: 3px solid rgba(249, 130, 5, 0.28);
    outline-offset: 2px;
}

.mobile-map-app__autocomplete-field {
    position: relative;
}

.mobile-map-app__input-shell {
    position: relative;
    display: flex;
    align-items: center;
}

.mobile-map-app__input-shell > .mobile-map-app__inline-icon {
    position: absolute;
    left: 0.9rem;
    z-index: 1;
    width: 1.25rem;
    height: 1.25rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    color: #8a7263;
}

.mobile-map-app__input-shell input {
    padding-left: 2.75rem;
    background: #fff1e9;
}

.mobile-map-app__address-suggestions {
    position: absolute;
    z-index: 12;
    top: calc(100% + 0.45rem);
    left: 0;
    right: 0;
    display: grid;
    gap: 0.25rem;
    max-height: 16rem;
    overflow-y: auto;
    padding: 0.5rem;
    border-radius: 18px;
    border: 1px solid rgba(221, 193, 175, 0.78);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 42px rgba(36, 25, 18, 0.16);
}

.mobile-map-app__address-suggestions.is-hidden,
.mobile-map-app__address-summary.is-hidden {
    display: none;
}

.mobile-map-app__address-suggestion {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.65rem;
    align-items: center;
    min-width: 0;
    border: 0;
    border-radius: 14px;
    padding: 0.65rem 0.7rem;
    background: transparent;
    color: #241912;
    text-align: left;
    cursor: pointer;
}

.mobile-map-app__address-suggestion:hover,
.mobile-map-app__address-suggestion:focus-visible {
    background: #fff1e9;
}

.mobile-map-app__address-suggestion strong,
.mobile-map-app__address-suggestion small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mobile-map-app__address-suggestion small {
    margin-top: 0.12rem;
    color: #8a7263;
    font-weight: 650;
}

.mobile-map-app__address-summary {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.7rem;
    align-items: center;
    border-radius: 18px;
    padding: 0.8rem 0.9rem;
    background: #fff1e9;
    border: 1px solid rgba(221, 193, 175, 0.72);
}

.mobile-map-app__address-summary > svg {
    width: 1.35rem;
    height: 1.35rem;
    color: #15803d;
}

.mobile-map-app__address-summary strong,
.mobile-map-app__address-summary small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mobile-map-app__address-summary small {
    color: #8a7263;
    font-weight: 700;
}

.mobile-map-app__address-map-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(221, 193, 175, 0.72);
    border-radius: 20px;
    background: #fff1e9;
}

.mobile-map-app__address-map-card.is-hidden {
    display: none;
}

.mobile-map-app__address-map {
    min-height: 13rem;
}

.mobile-map-app__address-map-pin {
    position: absolute;
    top: calc(50% - 1.8rem);
    left: 50%;
    width: 2.4rem;
    height: 2.4rem;
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: #f98205;
    color: #fff8f5;
    box-shadow: 0 14px 30px rgba(249, 130, 5, 0.28);
    pointer-events: none;
}

.mobile-map-app__address-map-pin svg {
    width: 1.35rem;
    height: 1.35rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mobile-map-app__address-map-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.72rem;
    background: rgba(255, 255, 255, 0.92);
}

.mobile-map-app__address-map-actions span {
    color: #6b5a4f;
    font-size: 0.78rem;
    font-weight: 800;
}

.mobile-map-app__address-map-actions button {
    flex: 0 0 auto;
    border: 0;
    border-radius: 999px;
    padding: 0.55rem 0.78rem;
    background: #f98205;
    color: #fff8f5;
    font-weight: 900;
    cursor: pointer;
}

.mobile-map-app__use-location {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.mobile-map-app__manual-address {
    border-radius: 16px;
    background: rgba(255, 241, 233, 0.72);
    border: 1px solid rgba(221, 193, 175, 0.58);
    padding: 0.7rem 0.85rem;
}

.mobile-map-app__manual-address summary {
    color: #944a00;
    cursor: pointer;
    font-weight: 900;
}

.mobile-map-app__manual-address .mobile-map-app__field-grid {
    margin-top: 0.7rem;
}

.public-home__address-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.85rem;
    align-items: start;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(255, 234, 222, 0.92);
    border: 1px solid rgba(221, 193, 175, 0.65);
    box-shadow: 0 12px 26px rgba(36, 25, 18, 0.07);
}

.public-home__address-icon {
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffdcc5;
    color: #944a00;
}

.public-home__address-main {
    display: grid;
    gap: 0.35rem;
    min-width: 0;
}

.public-home__address-main strong,
.public-home__address-main p {
    overflow: hidden;
    text-overflow: ellipsis;
}

.public-home__address-main strong {
    color: #241912;
    white-space: nowrap;
}

.public-home__address-main p {
    margin: 0;
    color: #6b5a4f;
    font-size: 0.88rem;
}

.public-home__address-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    align-items: center;
}

.public-home__address-tags small {
    color: #8a7263;
    font-weight: 800;
}

.public-home__address-card .public-home__saved-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
}

@media (min-width: 860px) {
    .mobile-map-app__saved-list[data-map-shell-target="favoritesList"] {
        width: min(100%, 48rem);
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mobile-map-app__panel:has([data-map-shell-target="favoritesList"]),
    .mobile-map-app__panel:has([data-map-shell-target="addressesList"]) {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .mobile-map-app__panel:has([data-map-shell-target="favoritesList"]) .mobile-map-app__panel-head,
    .mobile-map-app__panel:has([data-map-shell-target="addressesList"]) .mobile-map-app__panel-head,
    .mobile-map-app__panel:has([data-map-shell-target="addressesList"]) .mobile-map-app__address-form,
    .mobile-map-app__panel:has([data-map-shell-target="addressesList"]) .mobile-map-app__saved-list,
    .mobile-map-app__panel:has([data-map-shell-target="favoritesList"]) .mobile-map-app__segmented {
        width: min(100%, 48rem);
    }

    .public-home__address-card {
        grid-template-columns: auto minmax(0, 1fr) auto;
        align-items: center;
    }

    .public-home__address-card .public-home__saved-actions {
        grid-column: auto;
        justify-content: flex-end;
    }
}

@media (max-width: 859px) {
    .mobile-map-app__saved-list[data-map-shell-target="favoritesList"] {
        grid-template-columns: 1fr;
    }

    .public-home__favorite-media {
        min-height: 10.7rem;
    }
}

@media (max-width: 520px) {
    .mobile-map-card,
    .mobile-map-app__empty-state {
        /*flex-basis: min(12.8rem, calc(76vw - 1rem));*/
    }

    .mobile-map-app__places-story {
        width: min(8.4rem, 42vw);
    }
}

/* 2026-07-02 profile responsive hardening */
.location-profile__shell {
    grid-template-columns: minmax(20rem, 26rem) minmax(0, 1fr);
    align-items: start;
}

.location-profile__summary,
.location-profile__identity,
.location-profile__content,
.location-profile__card,
.location-profile__section-head,
.location-profile__route-preview > div:first-child {
    min-width: 0;
}

.location-profile__identity p,
.location-profile__section-head p,
.location-profile__note,
.location-profile__empty {
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

.location-profile__stats {
    grid-template-columns: repeat(auto-fit, minmax(8.5rem, 1fr));
}

.location-profile__stats div {
    min-width: 0;
}

.location-profile__stats strong,
.location-profile__stats span {
    overflow-wrap: normal;
    word-break: normal;
}

@media (max-width: 1120px) {
    .location-profile__shell {
        grid-template-columns: 1fr;
    }

    .location-profile__summary {
        position: relative;
        top: auto;
    }

    .location-profile__actions {
        grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
    }
}

@media (max-width: 860px) {
    .location-profile__content {
        height: auto !important;
        min-width: 0 !important;
        min-height: 0 !important;
    }

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

    .location-profile__primary-action,
    .location-profile__secondary-action {
        width: 100%;
    }

    .location-profile__route-preview {
        align-items: stretch;
        flex-direction: column;
    }

    .location-profile__route-actions {
        justify-content: stretch;
    }

    .location-profile__route-actions a,
    .location-profile__route-actions button {
        flex: 1 1 100%;
        text-align: center;
    }
}

/* 2026-07-02 mobile profile and sheet polish */
@media (min-width: 860px) {
    .location-profile__summary {
        grid-template-columns: 1fr !important;
        align-items: stretch !important;
    }

    .location-profile__identity {
        max-width: min(100%, 52rem) !important;
    }

    .location-profile__identity p {
        max-width: 52rem;
    }

    .location-profile__stats {
        min-width: 0 !important;
        grid-template-columns: repeat(3, minmax(9rem, 1fr));
    }

    .location-profile__actions {
        min-width: 0 !important;
        grid-template-columns: repeat(auto-fit, minmax(13.5rem, 1fr));
        align-items: center;
    }
}

/*
.mobile-map-card__body h3 {
    display: -webkit-box;
    min-height: 2.05em;
    margin-bottom: 0.18rem;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-height: 1.08;
    overflow-wrap: normal;
    word-break: normal;
}
*/

.mobile-map-card__address {
    align-items: center;
    margin-top: 0.05rem;
    gap: 0.26rem;
}

.mobile-map-card__address-text {
    display: block;
    min-width: 0;
    overflow: clip;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-line-clamp: initial;
}

.mobile-map-card__badge {
    min-height: 1.48rem;
    padding: 0.2rem 0.44rem;
    border-width: 2px;
    font-size: 0.64rem;
}

.mobile-map-card__badge--distance {
    font-size: 0.62rem;
}

.mobile-map-card__badge--rating {
    gap: 0.14rem;
}

.mobile-map-card__badge--rating svg {
    width: 0.72rem;
    height: 0.72rem;
}

.mobile-map-app__nearby-category-icon img,
.mobile-map-app__category-pill img {
    display: block;
    width: 1rem;
    height: 1rem;
    object-fit: contain;
}

.mobile-map-card__meta--stacked {
    align-items: center;
    margin-top: 0.46rem;
    gap: 0.38rem;
    justify-content: flex-start;
}

.mobile-map-card__status,
.mobile-map-card__category {
    min-height: 1.32rem;
    align-items: center;
    border-radius: 999px;
    padding: 0.18rem 0.42rem;
    font-size: 0.58rem;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
}

.mobile-map-card__category {
    display: none;
    margin-top: 0;
    background: rgba(100, 116, 139, 0.1);
}

/* 2026-07-04: category avatar background is set inline from category color; this fallback stays for rollback safety. */
.mobile-map-card__media-copy {
    background: rgba(15, 23, 42, 0.62);
}

.mobile-map-card__category-avatar img,
.mobile-map-card__category-avatar svg {
    display: block;
    width: 1.3rem;
    height: 1.3rem;
    object-fit: contain;
}

.mobile-map-card__category-avatar svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mobile-map-app__detail-copy {
    gap: 0.72rem;
}

.mobile-map-app__detail-metrics-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.42rem;
    position: relative;
    z-index: 3;
    margin-top: -0.88rem;
    margin-bottom: -0.18rem;
    padding: 0 1rem;
}

.mobile-map-app__detail-metrics-strip > span {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    min-height: 1.7rem;
    border: 1px solid rgba(221, 193, 175, 0.66);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    padding: 0.28rem 0.58rem;
    color: #1f2937;
    font-size: 0.74rem;
    font-weight: 900;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
    border: 2px solid #fff;
}

.mobile-map-app__detail-metrics-strip svg {
    width: 0.9rem;
    height: 0.9rem;
    fill: #f59e0b;
}

.mobile-map-app__detail-rating {
    background: #FACC15 !important;
    color: #1E293B !important;
}

.mobile-map-app__detail-distance {
    background: #3B82F6 !important;
    color: #fff !important;
}

.mobile-map-app__detail-meta > span {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 0.36rem;
}

.mobile-map-app__detail-meta svg {
    width: 1rem;
    height: 1rem;
    margin-top: 0.12rem;
    fill: none;
    stroke: #94a3b8;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mobile-map-app__detail-meta span span {
    display: -webkit-box;
    min-width: 0;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.mobile-map-app__detail-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(7.2rem, 1fr));
    gap: 0.45rem;
}

.mobile-map-app__detail-services > span {
    display: grid;
    gap: 0.1rem;
    border: 1px solid rgba(221, 193, 175, 0.54);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.86);
    padding: 0.55rem 0.62rem;
}

.mobile-map-app__detail-services strong {
    color: #111827;
    font-size: 0.75rem;
    line-height: 1.1;
}

.mobile-map-app__detail-services small {
    color: #64748b;
    font-size: 0.66rem;
    font-weight: 850;
}

.mobile-map-app__detail-services .is-available small {
    color: #15803d;
}

.mobile-map-app__detail-category-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.05rem;
    height: 3.05rem;
    flex: 0 0 3.05rem;
}

.mobile-map-app__detail-category-icon img,
.mobile-map-app__detail-category-icon svg,
.location-profile__category-icon {
    width: 2.1rem;
    height: 2.1rem;
    object-fit: contain;
}

.mobile-map-app__detail-category-icon svg,
.location-profile__category-icon {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.location-profile__hero-copy p {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
}

.location-profile__category-icon {
    flex: 0 0 auto;
    width: 2.5rem;
    height: 2.5rem;
}

.mobile-map-app__detail-action-primary,
.mobile-map-app__detail-action-secondary,
.mobile-map-app__detail-actions--secondary a,
.mobile-map-app__detail-actions--secondary button,
.mobile-map-app__external-maps summary,
.location-profile__external-maps summary,
.location-profile__external-maps a {
    min-height: 2.34rem;
    padding: 0.46rem 0.72rem;
    font-size: 0.78rem;
}

.mobile-map-app__detail-actions--primary {
    gap: 0.52rem;
}

.mobile-map-app__detail-category,
.mobile-map-app__detail-section,
.mobile-map-app__detail-meta,
.mobile-map-app__detail-services,
.mobile-map-app__detail-gallery,
.mobile-map-app__own-review,
.mobile-map-app__detail-actions--primary,
.mobile-map-app__external-maps,
.mobile-map-app__detail-action-primary--whatsapp,
.mobile-map-app__detail-claim-note {
    order: initial;
}

@media (max-width: 859px) {
    .mobile-map-app__detail-actions--primary {
        position: static !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin: 0;
        padding: 0;
        background: transparent !important;
    }

    .mobile-map-app__detail-action-primary,
    .mobile-map-app__detail-action-secondary,
    .mobile-map-app__detail-actions--secondary a,
    .mobile-map-app__detail-actions--secondary button,
    .mobile-map-app__external-maps summary {
        min-height: 2.28rem;
        padding: 0.42rem 0.68rem;
        font-size: 0.76rem;
        line-height: 1.15;
    }
}

.mobile-map-app__external-maps,
.location-profile__external-maps {
    display: grid;
    gap: 0.48rem;
}

.mobile-map-app__external-maps summary,
.location-profile__external-maps summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(148, 74, 0, 0.26);
    border-radius: 999px;
    background: #fff8f5;
    color: #944a00;
    font-weight: 900;
    cursor: pointer;
}

.mobile-map-app__external-maps div,
.location-profile__external-maps div {
    display: grid;
    gap: 0.4rem;
}

.mobile-map-app__external-maps a,
.location-profile__external-maps a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(221, 193, 175, 0.64);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #241912;
    font-weight: 850;
    text-decoration: none;
}

@media (max-width: 860px) {
    .location-profile__stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.55rem;
    }

    .location-profile__stats div {
        padding: 0.72rem;
        border-radius: 16px;
    }

    .location-profile__stats div:nth-child(3) {
        grid-column: 1 / -1;
    }

    .location-profile__stats strong {
        font-size: 1rem;
    }

    .location-profile__stats span {
        font-size: 0.7rem;
    }

    .location-profile__service-grid {
        gap: 0.55rem;
    }

    .location-profile__amenities {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 0.2rem;
        overscroll-behavior-x: contain;
    }

    .location-profile__amenities .location-profile__service {
        flex: 0 0 min(9.5rem, 78vw);
        scroll-snap-align: start;
    }

    .location-profile__service {
        min-height: 4.7rem;
        padding: 0.72rem;
    }

    .location-profile__primary-action,
    .location-profile__secondary-action {
        min-height: 2.8rem;
        padding: 0.62rem 0.85rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 859px) {
    .mobile-map-card__body {

        /*
                height: auto;
        min-height: 5.48rem;
        grid-template-rows: auto auto auto;
        padding: 0.92rem 0.76rem 0.58rem;*/

    }

    .mobile-map-card__body h3 {
        font-size: 0.90rem;
/*
            overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
*/
    }

    .mobile-map-card__address {
        font-size: 0.68rem;
        line-height: 1.15;
    }

    .mobile-map-card__floating-badges {
        top: -0.92rem;
        right: 0.76rem;
        gap: 0.28rem;
    }
}
