:root {
    --v2-bg: #080809;
    --v2-bg-warm: #140d0a;
    --v2-surface: #121214;
    --v2-surface-raised: #1a1a1d;
    --v2-border: rgba(255, 255, 255, 0.11);
    --v2-text: #f8f4eb;
    --v2-text-muted: #c6beb2;
    --v2-orange: #ff781f;
    --v2-orange-hover: #ff8b3d;
    --v2-green: #3bd16f;
    --v2-red: #ff654f;
    --v2-radius-sm: 8px;
    --v2-radius-md: 12px;
    --v2-radius-lg: 16px;
    --v2-shadow: 0 18px 48px rgba(0, 0, 0, 0.38);
    --v2-content-width: 1320px;
    --v2-section-gap: 18px;
}

body.public-v2 {
    background:
        linear-gradient(180deg, rgba(38, 19, 11, 0.28), rgba(8, 8, 9, 0) 32rem),
        var(--v2-bg);
    color: var(--v2-text);
    letter-spacing: 0;
}

body.public-v2 main {
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(8, 8, 9, 0.02) 0, rgba(8, 8, 9, 0.08) 36rem, rgba(8, 8, 9, 0.9) 68rem, var(--v2-bg) 92rem),
        url("../img/nommad-city-map-bg-v2.png") center top / max(1440px, 100vw) auto no-repeat,
        var(--v2-bg);
}

body.public-v2 a {
    text-decoration: none;
}

body.public-v2 .site-header.v2-site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(8, 8, 9, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
}

body.public-v2 .v2-site-header .nav-shell {
    width: min(var(--v2-content-width), calc(100vw - 36px));
    max-width: calc(100vw - 36px);
    min-height: 64px;
}

body.public-v2 .v2-site-header .brand-mark {
    width: 50px;
    height: 34px;
}

body.public-v2 .v2-site-header .brand strong {
    font-size: 1.22rem;
}

body.public-v2 .v2-site-header .brand small {
    color: var(--v2-text-muted);
}

body.public-v2 .v2-site-header .nav-links {
    gap: 10px;
}

body.public-v2 .v2-site-header .nav-links a,
body.public-v2 .v2-site-header .account-toggle {
    color: var(--v2-text-muted);
    border-radius: 999px;
    padding: 8px 12px;
    font-weight: 850;
}

body.public-v2 .v2-site-header .nav-links a:hover,
body.public-v2 .v2-site-header .nav-links a.is-active,
body.public-v2 .v2-site-header .account-menu.is-open .account-toggle,
body.public-v2 .v2-site-header .account-toggle:hover {
    background: rgba(255, 120, 31, 0.18);
    color: var(--v2-text);
}

body.public-v2 .v2-site-header .nav-links a[href$="login.php"],
body.public-v2 .v2-site-header .account-toggle.is-active {
    background: rgba(255, 120, 31, 0.22);
    color: var(--v2-text);
}

.v2-home-shell {
    width: min(var(--v2-content-width), calc(100vw - 36px));
    max-width: calc(100vw - 36px);
    margin-inline: auto;
}

.v2-eyebrow {
    margin: 0 0 7px;
    color: var(--v2-orange);
    font-size: 0.69rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.v2-hero-section {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(390px, 1.05fr);
    align-items: center;
    gap: clamp(26px, 3vw, 46px);
    min-height: 450px;
    padding: 30px 0 24px;
}

.v2-hero-copy {
    max-width: 530px;
    min-width: 0;
}

.v2-hero-copy h1 {
    margin: 0;
    max-width: 100%;
    color: var(--v2-text);
    font-size: clamp(3.25rem, 5.2vw, 5rem);
    line-height: 0.94;
    letter-spacing: 0;
    overflow-wrap: normal;
}

.v2-hero-copy h1 span {
    display: block;
    color: var(--v2-orange);
    max-width: 100%;
}

.v2-hero-copy > p:not(.v2-eyebrow) {
    max-width: 520px;
    margin: 13px 0 17px;
    color: var(--v2-text-muted);
    font-size: clamp(0.94rem, 1.2vw, 1.08rem);
    line-height: 1.45;
}

.v2-search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    width: min(100%, 500px);
    padding: 5px;
    border: 1px solid var(--v2-border);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.055);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.24);
}

.v2-search-form input {
    min-height: 42px;
    min-width: 0;
    border: 0;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.34);
    color: var(--v2-text);
    font: inherit;
    padding: 0 15px;
}

.v2-search-form input:focus {
    outline: 2px solid rgba(255, 120, 31, 0.62);
    outline-offset: 2px;
}

.v2-search-submit,
.v2-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    border: 1px solid transparent;
    border-radius: 9px;
    padding: 0 15px;
    color: var(--v2-text);
    font: inherit;
    font-weight: 900;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
}

.v2-search-submit,
.v2-button-primary {
    background: var(--v2-orange);
    color: #160905;
}

.v2-search-submit:hover,
.v2-button-primary:hover {
    background: var(--v2-orange-hover);
    color: #160905;
}

.v2-button-secondary {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.09);
}

.v2-button-ghost {
    border-color: rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.035);
}

.v2-button:focus-visible,
.v2-search-submit:focus-visible,
.v2-chip:focus-visible,
.v2-text-link:focus-visible,
.v2-favorite-button:focus-visible,
.v2-mobile-bottom-nav a:focus-visible {
    outline: 2px solid rgba(255, 120, 31, 0.76);
    outline-offset: 3px;
}

.v2-quick-actions,
.v2-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.v2-quick-actions {
    margin-top: 10px;
}

.v2-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 0;
}

.v2-popular-label {
    margin: 14px 0 6px;
    color: var(--v2-text-muted);
    font-size: 0.7rem;
}

.v2-chip {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    min-height: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 0 10px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--v2-text-muted);
    font-size: 0.72rem;
    font-weight: 850;
    white-space: nowrap;
}

.v2-chip:hover {
    border-color: rgba(255, 120, 31, 0.45);
    color: var(--v2-text);
}

.v2-hero-map {
    position: relative;
    min-height: 400px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(8, 8, 9, 0.08), rgba(8, 8, 9, 0.02)),
        url("../img/nommad-city-map-bg-v2.png") 64% center / cover no-repeat,
        #101012;
    box-shadow: var(--v2-shadow), inset 0 1px rgba(255, 255, 255, 0.025);
}

.v2-map-lines {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 8, 9, 0.02), rgba(8, 8, 9, 0.28));
}

.v2-map-pin {
    display: none;
}

.v2-map-pin-one {
    top: 24%;
    left: 68%;
}

.v2-map-pin-two {
    top: 58%;
    left: 78%;
}

.v2-map-pin-three {
    top: 40%;
    left: 22%;
}

.v2-live-preview-card {
    position: absolute;
    right: 22px;
    bottom: 22px;
    display: grid;
    grid-template-columns: minmax(170px, 0.9fr) minmax(210px, 1fr);
    width: min(500px, calc(100% - 44px));
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 12px;
    background: rgba(15, 15, 17, 0.94);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.44);
}

.v2-live-preview-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 218px;
    object-fit: cover;
}

.v2-live-preview-image .v2-photo-fallback {
    min-height: 218px;
}

.v2-live-preview-content {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 14px;
}

.v2-live-preview-content h2 {
    margin: 0;
    font-size: 1.22rem;
    line-height: 1.08;
    letter-spacing: 0;
}

.v2-live-preview-content p {
    margin: 0;
    color: var(--v2-text-muted);
    font-size: 0.86rem;
}

.v2-live-preview-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--v2-text-muted);
    font-size: 0.75rem;
    font-weight: 800;
}

.v2-status {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 22px;
    border-radius: 999px;
    padding: 0 8px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--v2-text);
    font-size: 0.62rem;
    font-weight: 950;
    text-transform: uppercase;
    white-space: nowrap;
}

.v2-status-open-now,
.v2-status-at-event {
    background: rgba(59, 209, 111, 0.18);
    color: #8effad;
}

.v2-status-opening-soon {
    background: rgba(255, 120, 31, 0.2);
    color: #ffb17c;
}

.v2-status-closed,
.v2-status-sold-out {
    background: rgba(255, 101, 79, 0.18);
    color: #ffbeb5;
}

.v2-live-section,
.v2-discovery-section,
.v2-events-strip,
.v2-trust-strip {
    padding: var(--v2-section-gap) 0;
}

.v2-live-section {
    padding-top: 22px;
    padding-bottom: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.v2-discovery-section {
    padding-top: 16px;
    padding-bottom: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.v2-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 12px;
}

.v2-section-heading h2 {
    margin: 0;
    color: var(--v2-text);
    font-size: clamp(1.55rem, 2.4vw, 2.1rem);
    line-height: 1.05;
    letter-spacing: 0;
}

.v2-text-link {
    color: var(--v2-orange);
    font-weight: 900;
}

.v2-vendor-rail {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
    gap: 12px;
}

.v2-vendor-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(17, 17, 19, 0.94);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}

.v2-vendor-media {
    position: relative;
    display: block;
    aspect-ratio: 1.78 / 1;
    overflow: hidden;
    background: #111;
}

.v2-vendor-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v2-photo-fallback,
.v2-event-fallback {
    position: relative;
    display: grid;
    width: 100%;
    height: 100%;
    min-height: 100%;
    overflow: hidden;
    background:
        radial-gradient(circle at 76% 22%, rgba(255, 120, 31, 0.38) 0 7px, transparent 8px),
        linear-gradient(115deg, rgba(255, 120, 31, 0.2), rgba(255, 120, 31, 0) 42%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        #101012;
    background-size: auto, auto, 44px 44px, 44px 44px, auto;
    color: var(--v2-text);
}

.v2-photo-fallback {
    place-content: end start;
    gap: 4px;
    padding: 12px;
}

.v2-photo-fallback::before,
.v2-event-fallback::before {
    content: "";
    position: absolute;
    inset: auto 14% 12% 18%;
    height: 22%;
    border: 1px solid rgba(255, 120, 31, 0.34);
    border-radius: 999px;
    transform: rotate(-5deg);
    background: rgba(255, 120, 31, 0.08);
}

.v2-photo-fallback span {
    position: relative;
    z-index: 1;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255, 120, 31, 0.42);
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(255, 120, 31, 0.92), rgba(255, 120, 31, 0.54));
    color: #180905;
    font-size: 1.05rem;
    font-weight: 950;
}

.v2-photo-fallback strong,
.v2-photo-fallback small,
.v2-event-fallback span,
.v2-event-fallback strong {
    position: relative;
    z-index: 1;
}

.v2-photo-fallback strong {
    font-size: 0.84rem;
}

.v2-photo-fallback small {
    color: var(--v2-text-muted);
    font-weight: 800;
    font-size: 0.7rem;
}

.v2-vendor-media .v2-status {
    position: absolute;
    top: 10px;
    left: 10px;
}

.v2-vendor-body {
    display: grid;
    gap: 6px;
    padding: 10px;
}

.v2-card-title-row {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 10px;
}

.v2-card-kicker {
    margin: 3px 0 0;
    color: var(--v2-text-muted);
    font-size: 0.7rem;
    font-weight: 800;
    line-height: 1.35;
}

.v2-card-title-row h3,
.v2-event-card h3 {
    margin: 0;
    color: var(--v2-text);
    font-size: 0.98rem;
    line-height: 1.12;
    letter-spacing: 0;
    overflow-wrap: anywhere;
}

.v2-card-title-row h3 a,
.v2-event-card h3 a {
    color: inherit;
}

.v2-favorite-button {
    flex: 0 0 auto;
    display: grid;
    width: 30px;
    height: 30px;
    min-height: 30px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    padding: 0;
    background: rgba(255, 255, 255, 0.06);
    color: var(--v2-text-muted);
    font: inherit;
    font-size: 1rem;
    font-weight: 900;
    cursor: pointer;
}

.v2-favorite-button.is-active {
    background: rgba(255, 120, 31, 0.18);
    color: var(--v2-text);
}

.v2-vendor-meta,
.v2-freshness {
    display: flex;
    flex-wrap: wrap;
    gap: 3px 10px;
    margin: 0;
    color: var(--v2-text-muted);
    font-size: 0.72rem;
    line-height: 1.3;
}

.v2-freshness {
    color: #ded6ca;
}

.v2-card-actions .v2-button {
    min-height: 32px;
    flex: 1 1 110px;
    padding-inline: 10px;
    font-size: 0.78rem;
}

.v2-discovery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.v2-discovery-grid-count-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.v2-discovery-grid-count-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.v2-feature-card {
    position: relative;
    display: flex;
    min-height: 150px;
    flex-direction: column;
    justify-content: end;
    gap: 5px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background:
        linear-gradient(145deg, rgba(255, 120, 31, 0.12), rgba(255, 255, 255, 0.025)),
        var(--v2-surface);
    color: var(--v2-text);
    padding: 14px;
}

.v2-feature-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 8, 9, 0.04), rgba(8, 8, 9, 0.76));
}

.v2-feature-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v2-feature-card .v2-event-fallback {
    position: absolute;
    inset: 0;
}

.v2-event-fallback {
    align-content: end;
    gap: 8px;
    padding: 18px;
}

.v2-event-fallback span {
    color: var(--v2-orange);
    font-size: 0.78rem;
    font-weight: 950;
    text-transform: uppercase;
}

.v2-event-fallback strong {
    max-width: 18rem;
    font-size: 1.28rem;
    line-height: 1.1;
}

.v2-feature-card > *:not(img) {
    position: relative;
    z-index: 1;
}

.v2-feature-card strong {
    font-size: 1.02rem;
    line-height: 1.12;
}

.v2-feature-card small {
    color: var(--v2-text-muted);
    font-size: 0.77rem;
    line-height: 1.35;
}

.v2-feature-icon {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 120, 31, 0.35);
    border-radius: 9px;
    background:
        linear-gradient(90deg, transparent 44%, rgba(255, 120, 31, 0.62) 45%, transparent 56%),
        linear-gradient(0deg, transparent 44%, rgba(255, 120, 31, 0.62) 45%, transparent 56%),
        rgba(255, 120, 31, 0.12);
}

.v2-feature-icon-alt {
    background:
        radial-gradient(circle at 50% 34%, rgba(255, 120, 31, 0.9) 0 13%, transparent 14%),
        linear-gradient(90deg, transparent 38%, rgba(255, 120, 31, 0.6) 39% 61%, transparent 62%),
        rgba(255, 120, 31, 0.12);
}

.v2-feature-icon-events {
    background:
        linear-gradient(90deg, transparent 31%, rgba(255, 120, 31, 0.66) 32% 38%, transparent 39% 61%, rgba(255, 120, 31, 0.66) 62% 68%, transparent 69%),
        linear-gradient(0deg, transparent 48%, rgba(255, 120, 31, 0.66) 49% 55%, transparent 56%),
        rgba(255, 120, 31, 0.11);
}

.v2-feature-card-events {
    background:
        linear-gradient(135deg, rgba(255, 120, 31, 0.12), transparent 58%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        var(--v2-surface);
    background-size: auto, 42px 42px, 42px 42px, auto;
}

.v2-feature-action {
    color: var(--v2-orange);
    font-size: 0.75rem;
    font-weight: 900;
}

.v2-event-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.v2-event-card {
    display: grid;
    grid-template-columns: minmax(150px, 0.72fr) minmax(0, 1fr);
    gap: 14px;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--v2-radius-md);
    background: var(--v2-surface);
    padding: 12px;
}

.v2-event-image {
    display: block;
    aspect-ratio: 1.34 / 1;
    overflow: hidden;
    border-radius: 12px;
}

.v2-event-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v2-event-card p,
.v2-event-card small {
    display: block;
    margin: 8px 0 0;
    color: var(--v2-text-muted);
    line-height: 1.38;
}

.v2-empty-state {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--v2-radius-md);
    background: rgba(255, 255, 255, 0.045);
    padding: 22px;
}

.v2-empty-state h2,
.v2-empty-state h3 {
    margin: 0 0 8px;
    letter-spacing: 0;
}

.v2-empty-state p {
    color: var(--v2-text-muted);
}

.v2-live-note {
    margin: -4px 0 10px;
    color: var(--v2-text-muted);
    font-size: 0.75rem;
    font-weight: 750;
    line-height: 1.45;
}

.v2-empty-state-dark {
    position: absolute;
    inset: auto 24px 24px;
    background: rgba(8, 8, 9, 0.78);
}

.v2-trust-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-top: 8px;
    margin-bottom: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    padding: 0;
}

.v2-trust-strip div {
    display: flex;
    gap: 10px;
    min-height: 68px;
    align-items: center;
    background: rgba(12, 12, 14, 0.9);
    padding: 12px 14px;
}

.v2-trust-strip strong,
.v2-trust-strip small {
    display: block;
}

.v2-trust-strip strong {
    color: var(--v2-text);
    font-size: 0.82rem;
}

.v2-trust-strip small {
    margin-top: 3px;
    color: var(--v2-text-muted);
    font-size: 0.7rem;
    line-height: 1.3;
}

.v2-trust-icon {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 120, 31, 0.28);
    border-radius: 999px;
    background: rgba(255, 120, 31, 0.08);
}

.v2-trust-icon-live {
    background:
        radial-gradient(circle, var(--v2-orange) 0 3px, transparent 4px),
        radial-gradient(circle, transparent 0 8px, rgba(255, 120, 31, 0.48) 9px 10px, transparent 11px),
        rgba(255, 120, 31, 0.08);
}

.v2-trust-icon-verified {
    background:
        linear-gradient(135deg, transparent 44%, var(--v2-orange) 45% 52%, transparent 53%) 9px 14px / 8px 8px no-repeat,
        linear-gradient(45deg, transparent 46%, var(--v2-orange) 47% 55%, transparent 56%) 14px 10px / 10px 12px no-repeat,
        rgba(255, 120, 31, 0.08);
}

.v2-trust-icon-search {
    background:
        radial-gradient(circle at 44% 42%, transparent 0 6px, var(--v2-orange) 7px 8px, transparent 9px),
        linear-gradient(45deg, transparent 46%, var(--v2-orange) 47% 54%, transparent 55%) 18px 18px / 8px 8px no-repeat,
        rgba(255, 120, 31, 0.08);
}

.v2-site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    background: #070708;
}

.v2-footer-grid {
    width: min(var(--v2-content-width), calc(100vw - 36px));
    max-width: calc(100vw - 36px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
    gap: 24px;
    padding: 24px 0 20px;
}

.v2-footer-grid p {
    max-width: 410px;
    color: var(--v2-text-muted);
    font-size: 0.8rem;
}

.v2-footer-grid h2 {
    margin: 0 0 10px;
    color: var(--v2-text);
    font-size: 0.78rem;
}

.v2-footer-grid a:not(.brand) {
    display: block;
    width: fit-content;
    margin: 6px 0;
    color: var(--v2-text-muted);
    font-size: 0.78rem;
}

.v2-footer-grid a:not(.brand):hover {
    color: var(--v2-orange);
}

.v2-footer-bottom {
    width: min(var(--v2-content-width), calc(100vw - 36px));
    max-width: calc(100vw - 36px);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    padding: 12px 0;
    color: var(--v2-text-muted);
    font-size: 0.74rem;
}

.v2-mobile-bottom-nav {
    display: none;
}

body.public-v2 .cookie-consent-card {
    max-width: 760px;
    border-radius: 18px;
    padding: 16px;
    background: rgba(18, 18, 20, 0.96);
}

body.public-v2 .cookie-consent-card > div:first-child {
    display: block;
}

body.public-v2 .cookie-consent-card h2 {
    font-size: 1.35rem;
    line-height: 1.1;
}

body.public-v2 .cookie-consent-card p {
    font-size: 0.92rem;
    line-height: 1.42;
}

body.public-v2 .cookie-consent-card .button-row {
    gap: 8px;
    margin-top: 12px;
}

body.public-v2 .cookie-consent-card .btn {
    min-height: 42px;
    white-space: nowrap;
}

.v2-skeleton {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
}

.v2-skeleton::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    animation: v2-skeleton 1.4s infinite;
}

@keyframes v2-skeleton {
    to {
        transform: translateX(100%);
    }
}

@media (max-width: 1080px) {
    .v2-hero-section {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .v2-hero-section > * {
        min-width: 0;
    }

    .v2-hero-copy {
        max-width: 760px;
    }

    .v2-hero-map {
        min-height: 460px;
    }

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

    .v2-feature-card-image {
        grid-column: 1 / -1;
    }
}

@media (max-width: 820px) {
    body.public-v2 {
        padding-bottom: calc(78px + env(safe-area-inset-bottom));
    }

    body.public-v2 .v2-site-header .nav-shell {
        width: calc(100vw - 24px);
        max-width: calc(100vw - 24px);
        min-height: 62px;
    }

    body.public-v2 .v2-site-header .nav-links {
        top: 62px;
        background: rgba(13, 13, 14, 0.98);
        border-radius: 18px;
    }

    .v2-home-shell,
    .v2-footer-grid,
    .v2-footer-bottom {
        width: calc(100vw - 24px);
        max-width: calc(100vw - 24px);
    }

    .v2-hero-section {
        padding-top: 22px;
        gap: 16px;
    }

    .v2-hero-copy h1 {
        font-size: clamp(3.1rem, 15vw, 4.7rem);
    }

    .v2-hero-copy > p:not(.v2-eyebrow) {
        margin: 14px 0 18px;
    }

    .v2-hero-map {
        min-height: 350px;
    }

    .v2-live-preview-card {
        right: 14px;
        bottom: 14px;
        grid-template-columns: 128px minmax(0, 1fr);
        width: calc(100% - 28px);
    }

    .v2-live-preview-image img {
        min-height: 190px;
    }

    .v2-live-preview-content {
        padding: 12px;
    }

    .v2-live-preview-content h2 {
        font-size: 1.16rem;
    }

    .v2-live-preview-content .v2-button {
        min-height: 38px;
    }

    .v2-section-heading {
        align-items: start;
        flex-direction: column;
    }

    .v2-event-grid,
    .v2-trust-strip,
    .v2-footer-grid {
        grid-template-columns: 1fr;
    }

    .v2-footer-bottom {
        flex-direction: column;
    }

    .v2-mobile-bottom-nav {
        position: fixed;
        left: 10px;
        right: 10px;
        bottom: max(10px, env(safe-area-inset-bottom));
        z-index: 55;
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 4px;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 22px;
        background: rgba(12, 12, 13, 0.94);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.48);
        backdrop-filter: blur(18px);
        padding: 8px;
    }

    .v2-mobile-bottom-nav a {
        display: grid;
        place-items: center;
        min-height: 44px;
        border-radius: 15px;
        color: var(--v2-text-muted);
        font-size: 0.73rem;
        font-weight: 900;
        line-height: 1.1;
        text-align: center;
    }

    .v2-mobile-bottom-nav a.is-active {
        background: rgba(255, 120, 31, 0.2);
        color: var(--v2-orange);
    }

    body.public-v2 .cookie-consent {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    body.public-v2 .cookie-consent-card {
        max-height: 44svh;
        overflow: auto;
    }
}

@media (max-width: 640px) {
    .v2-hero-copy h1 {
        font-size: clamp(2.75rem, 11.6vw, 3.35rem);
        line-height: 0.98;
    }

    .v2-hero-copy h1 span {
        overflow-wrap: anywhere;
    }

    .v2-search-form {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .v2-quick-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .v2-quick-actions .v2-button {
        min-width: 0;
        padding-inline: 10px;
    }

    .v2-hero-map {
        display: none;
    }

    .v2-vendor-rail,
    .v2-discovery-grid {
        grid-template-columns: 1fr;
    }

    .v2-feature-card {
        min-height: 138px;
    }

    .v2-event-card {
        grid-template-columns: 1fr;
    }

    .v2-card-title-row {
        align-items: flex-start;
        flex-direction: row;
    }

    .v2-card-title-row > div {
        min-width: 0;
    }

    .v2-favorite-button {
        width: auto;
    }

    .v2-vendor-card {
        display: grid;
        grid-template-columns: 112px minmax(0, 1fr);
    }

    .v2-vendor-media {
        height: 100%;
        min-height: 190px;
        aspect-ratio: auto;
    }

    .v2-vendor-media .v2-photo-fallback {
        min-height: 100%;
    }

    .v2-photo-fallback strong,
    .v2-photo-fallback small {
        display: none;
    }

    .v2-vendor-body {
        padding: 10px;
    }

    .v2-feature-card {
        padding: 14px;
    }

    body.public-v2 .cookie-consent-card {
        max-height: 38svh;
        padding: 12px;
    }

    body.public-v2 .cookie-consent-card h2 {
        font-size: 1.08rem;
    }

    body.public-v2 .cookie-consent-card p {
        font-size: 0.78rem;
        line-height: 1.34;
    }

    body.public-v2 .cookie-consent-card .button-row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.public-v2 .cookie-consent-card .btn {
        min-height: 36px;
        padding: 6px 8px;
        font-size: 0.74rem;
        white-space: normal;
    }
}

/* Browse V2 */
.page-browse.public-v2 main {
    background:
        linear-gradient(180deg, rgba(8, 8, 9, 0.08) 0, rgba(8, 8, 9, 0.92) 620px, var(--v2-bg) 980px),
        url("../img/nommad-city-map-bg-v2.png") center top / max(1440px, 100vw) auto no-repeat,
        var(--v2-bg);
}

.v2-browse-announcement {
    display: flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 8px 20px;
    border-bottom: 1px solid rgba(255, 120, 31, 0.16);
    background: rgba(52, 27, 16, 0.78);
    color: var(--v2-text-muted);
    font-size: 0.78rem;
}

.v2-browse-announcement a {
    color: var(--v2-orange);
    font-weight: 850;
}

.v2-browse-hero,
.v2-browse-shell,
.v2-browse-mobile-tools {
    width: min(var(--v2-content-width), calc(100vw - 36px));
    margin-inline: auto;
}

.v2-browse-hero {
    display: grid;
    grid-template-columns: minmax(330px, 0.72fr) minmax(520px, 1.28fr);
    min-height: 236px;
    align-items: center;
    gap: 46px;
    padding: 24px 0 18px;
}

.v2-browse-hero-copy {
    position: relative;
    z-index: 2;
}

.v2-browse-hero-copy h1 {
    max-width: 620px;
    margin: 5px 0 10px;
    font-size: clamp(2.6rem, 4vw, 4.25rem);
    line-height: 0.98;
    letter-spacing: 0;
}

.v2-browse-hero-copy > p:last-child {
    max-width: 510px;
    margin: 0;
    color: var(--v2-text-muted);
    font-size: 1rem;
    line-height: 1.5;
}

.v2-browse-map-preview {
    position: relative;
    height: 216px;
    min-width: 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 8, 9, 0.28);
}

.v2-browse-hero-map,
.v2-browse-map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 216px;
}

.v2-browse-map-placeholder {
    background: none;
}

.page-browse.public-v2 [data-map-theme="dark"] .leaflet-tile-pane {
    filter: brightness(0.34) saturate(0.58) contrast(1.22) sepia(0.18);
}

.page-browse.public-v2 .leaflet-container {
    background: #0d0e10;
    color: #171717;
}

.page-browse.public-v2 .leaflet-control-attribution {
    opacity: 0.72;
    font-size: 9px;
}

.v2-browse-map-highlight {
    position: absolute;
    top: 50%;
    left: 46%;
    z-index: 500;
    display: grid;
    width: min(330px, 48%);
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    transform: translateY(-50%);
    padding: 9px 12px;
    border: 1px solid rgba(255, 120, 31, 0.34);
    border-radius: 8px;
    background: rgba(14, 14, 16, 0.92);
    box-shadow: 0 15px 36px rgba(0, 0, 0, 0.42);
    color: var(--v2-text);
}

.v2-browse-map-highlight strong,
.v2-browse-map-highlight small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.v2-browse-map-highlight small {
    margin-top: 2px;
    color: var(--v2-text-muted);
    font-size: 0.68rem;
}

.v2-browse-map-logo {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    place-items: center;
    border: 1px solid rgba(255, 120, 31, 0.4);
    border-radius: 7px;
    background: var(--v2-orange);
    color: #17100b;
    font-size: 0.78rem;
    font-weight: 950;
}

.v2-browse-mobile-tools {
    display: none;
}

.v2-browse-shell {
    position: relative;
    display: grid;
    grid-template-columns: 282px minmax(0, 1fr);
    align-items: start;
    gap: 30px;
    padding: 10px 0 34px;
}

.v2-browse-filters {
    position: sticky;
    top: 78px;
    z-index: 9;
    max-height: calc(100vh - 94px);
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 120, 31, 0.42) transparent;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(22, 23, 26, 0.96);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.v2-filter-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.v2-filter-heading h2 {
    margin: 2px 0 0;
    font-size: 1.15rem;
    line-height: 1.15;
}

.v2-filter-close {
    display: none;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--v2-text);
    font: inherit;
    font-size: 1.35rem;
    cursor: pointer;
}

.v2-filter-form,
.v2-filter-field,
.v2-filter-group {
    display: grid;
    gap: 7px;
}

.v2-filter-form {
    gap: 13px;
}

.v2-filter-field > span,
.v2-filter-group legend {
    color: var(--v2-text);
    font-size: 0.72rem;
    font-weight: 850;
}

.v2-filter-field input,
.v2-filter-field select,
.v2-browse-mobile-search input {
    width: 100%;
    min-height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    padding: 9px 11px;
    background: #101114;
    color: var(--v2-text);
    font: inherit;
    font-size: 0.8rem;
}

.v2-filter-field input:focus,
.v2-filter-field select:focus,
.v2-browse-mobile-search input:focus {
    border-color: rgba(255, 120, 31, 0.68);
    outline: 2px solid rgba(255, 120, 31, 0.18);
    outline-offset: 1px;
}

.v2-filter-group {
    min-width: 0;
    margin: 0;
    border: 0;
    padding: 0;
}

.v2-filter-group legend {
    margin-bottom: 7px;
    padding: 0;
}

.v2-mood-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.v2-filter-chip {
    min-height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 999px;
    padding: 6px 9px;
    background: rgba(255, 255, 255, 0.035);
    color: var(--v2-text-muted);
    font: inherit;
    font-size: 0.68rem;
    font-weight: 780;
    cursor: pointer;
}

.v2-filter-chip.is-active {
    border-color: rgba(255, 120, 31, 0.62);
    background: rgba(255, 120, 31, 0.16);
    color: var(--v2-text);
}

.v2-dietary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
}

.v2-dietary-grid label,
.v2-availability-list label {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 6px;
    color: var(--v2-text-muted);
    font-size: 0.68rem;
    cursor: pointer;
}

.v2-dietary-grid label {
    min-height: 30px;
    padding: 5px 7px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.03);
}

.v2-dietary-grid input,
.v2-availability-list input {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    accent-color: var(--v2-orange);
}

.v2-availability-list {
    display: grid;
    gap: 8px;
}

.v2-filter-actions,
.v2-filter-mobile-actions {
    display: grid;
    gap: 7px;
}

.v2-filter-mobile-actions {
    display: none;
}

.v2-filter-scrim {
    display: none;
}

.v2-browse-results {
    min-width: 0;
}

.v2-results-toolbar {
    display: flex;
    min-height: 74px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 12px;
}

.v2-results-toolbar h2 {
    margin: 2px 0 4px;
    font-size: 1.6rem;
    line-height: 1.05;
}

.v2-results-toolbar p:last-child {
    margin: 0;
    color: var(--v2-text-muted);
    font-size: 0.78rem;
}

.v2-view-toggle {
    display: grid;
    grid-template-columns: repeat(2, minmax(68px, 1fr));
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 7px;
    background: rgba(18, 19, 22, 0.9);
}

.v2-view-toggle button {
    min-height: 34px;
    border: 0;
    border-radius: 5px;
    padding: 7px 12px;
    background: transparent;
    color: var(--v2-text-muted);
    font: inherit;
    font-size: 0.75rem;
    font-weight: 850;
    cursor: pointer;
}

.v2-view-toggle button.is-active {
    background: var(--v2-orange);
    color: #17100b;
}

.v2-browse-panel:not(.is-active) {
    display: none;
}

.v2-browse-list {
    display: grid;
    gap: 10px;
}

.v2-browse-vendor-card {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    min-height: 164px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(18, 19, 22, 0.94);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.v2-browse-vendor-card[hidden] {
    display: none;
}

.v2-browse-card-media {
    position: relative;
    min-width: 0;
    overflow: hidden;
    background: #101114;
}

.v2-browse-card-media > a:first-child,
.v2-browse-card-media img,
.v2-browse-card-media .v2-photo-fallback {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 164px;
}

.v2-browse-card-media img {
    object-fit: cover;
}

.v2-browse-card-media .v2-status {
    position: absolute;
    left: 10px;
    bottom: 10px;
}

.v2-browse-card-media .v2-photo-fallback {
    place-content: center;
    padding: 0;
}

.v2-browse-card-media .v2-photo-fallback span {
    width: 58px;
    height: 58px;
    border-radius: 8px;
    font-size: 1.25rem;
}

.v2-browse-card-media .v2-photo-fallback strong,
.v2-browse-card-media .v2-photo-fallback small {
    display: none;
}

.v2-browse-favorite {
    position: absolute;
    top: 9px;
    left: 9px;
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(9, 9, 10, 0.78);
    color: var(--v2-text);
    font-size: 1.1rem;
}

.v2-browse-card-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(250px, auto);
    gap: 16px;
    padding: 14px 14px 13px 16px;
}

.v2-browse-card-main {
    min-width: 0;
}

.v2-browse-card-title {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 10px;
}

.v2-browse-card-title > div {
    min-width: 0;
}

.v2-browse-card-title h3 {
    margin: 0;
    font-size: 1.12rem;
    line-height: 1.08;
}

.v2-browse-card-title h3 a {
    color: var(--v2-text);
}

.v2-browse-card-title p {
    margin: 3px 0 0;
    overflow: hidden;
    color: var(--v2-text-muted);
    font-size: 0.74rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.v2-browse-rating {
    margin: 5px 0 7px 48px;
    color: var(--v2-text-muted);
    font-size: 0.73rem;
}

.v2-browse-rating > span {
    color: #ffb02e;
}

.v2-browse-rating small {
    font-size: inherit;
}

.v2-browse-card-details {
    display: grid;
    gap: 3px;
    padding-left: 48px;
}

.v2-browse-card-details p {
    display: flex;
    min-width: 0;
    align-items: baseline;
    gap: 7px;
    margin: 0;
    color: var(--v2-text-muted);
    font-size: 0.72rem;
    line-height: 1.28;
}

.v2-browse-card-details strong {
    overflow: hidden;
    color: var(--v2-text);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.v2-browse-card-details small {
    overflow: hidden;
    color: var(--v2-text-muted);
    font-size: 0.68rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.v2-browse-card-details .v2-browse-updated {
    color: #75b982;
    font-size: 0.67rem;
}

.v2-browse-card-side {
    display: flex;
    min-width: 250px;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    gap: 9px;
}

.v2-browse-distance {
    color: var(--v2-text);
    font-size: 0.75rem;
}

.v2-schedule-chip {
    align-self: flex-end;
    max-width: 100%;
    border-radius: 5px;
    padding: 5px 8px;
    background: rgba(74, 110, 163, 0.24);
    color: #b8d1f5;
    font-size: 0.65rem;
    font-weight: 800;
    white-space: nowrap;
}

.v2-browse-card-actions {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    gap: 7px;
}

.v2-browse-card-actions .v2-button {
    min-width: 0;
    min-height: 36px;
    padding: 8px 10px;
    font-size: 0.66rem;
    white-space: nowrap;
}

.v2-browse-empty {
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(18, 19, 22, 0.9);
    text-align: center;
}

.v2-browse-empty h3 {
    margin: 5px 0;
    font-size: 1.35rem;
}

.v2-browse-empty > p:not(.v2-eyebrow) {
    margin: 0 0 18px;
    color: var(--v2-text-muted);
}

.v2-browse-empty .v2-card-actions {
    justify-content: center;
}

.v2-pagination {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 14px;
}

.v2-pagination button {
    min-width: 34px;
    min-height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 7px 10px;
    background: rgba(255, 255, 255, 0.045);
    color: var(--v2-text-muted);
    font: inherit;
    font-size: 0.7rem;
    font-weight: 800;
    cursor: pointer;
}

.v2-pagination button.is-active {
    border-color: var(--v2-orange);
    background: var(--v2-orange);
    color: #17100b;
}

.v2-pagination button:disabled {
    opacity: 0.42;
    cursor: default;
}

.v2-browse-map-view {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    min-height: 540px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(18, 19, 22, 0.94);
}

.v2-browse-results-map {
    width: 100%;
    min-height: 540px;
}

.v2-map-result-list {
    display: grid;
    align-content: start;
    max-height: 540px;
    overflow: auto;
    border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.v2-map-result-list > a {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    min-height: 62px;
    padding: 9px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--v2-text);
}

.v2-map-result-list > a[hidden] {
    display: none;
}

.v2-map-result-list .v2-browse-map-logo {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
}

.v2-map-result-list strong,
.v2-map-result-list small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.v2-map-result-list strong {
    font-size: 0.74rem;
}

.v2-map-result-list small {
    margin-top: 2px;
    color: var(--v2-text-muted);
    font-size: 0.64rem;
}

.v2-map-result-list .v2-status {
    font-size: 0.52rem;
}

@media (max-width: 1100px) {
    .v2-browse-hero {
        grid-template-columns: minmax(300px, 0.82fr) minmax(420px, 1.18fr);
        gap: 26px;
    }

    .v2-browse-shell {
        grid-template-columns: 248px minmax(0, 1fr);
        gap: 20px;
    }

    .v2-browse-card-content {
        grid-template-columns: minmax(0, 1fr) 210px;
    }

    .v2-browse-card-side {
        min-width: 210px;
    }

    .v2-browse-card-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .v2-browse-card-actions .v2-button-primary {
        grid-column: 1 / -1;
    }
}

@media (max-width: 860px) {
    .v2-browse-hero {
        grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    }

    .v2-browse-map-highlight {
        left: 38%;
        width: 58%;
    }

    .v2-browse-mobile-tools {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 8px;
        padding: 8px 0 2px;
    }

    .v2-browse-mobile-tools .v2-button {
        min-height: 44px;
    }

    .v2-browse-mobile-tools [data-active-filter-count] {
        display: inline-grid;
        min-width: 20px;
        height: 20px;
        place-items: center;
        margin-left: 4px;
        border-radius: 999px;
        background: var(--v2-orange);
        color: #17100b;
        font-size: 0.66rem;
    }

    .v2-browse-shell {
        grid-template-columns: 1fr;
        padding-top: 8px;
    }

    .v2-browse-filters {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        top: auto;
        z-index: 90;
        width: 100%;
        max-height: min(88vh, 760px);
        border-radius: 8px 8px 0 0;
        padding: 18px 18px calc(18px + env(safe-area-inset-bottom));
        transform: translateY(104%);
        transition: transform 180ms ease;
    }

    .v2-browse-filters.is-open {
        transform: translateY(0);
    }

    .v2-filter-close {
        display: grid;
        place-items: center;
    }

    .v2-filter-actions {
        display: none;
    }

    .v2-filter-mobile-actions {
        position: sticky;
        bottom: calc(-18px - env(safe-area-inset-bottom));
        display: grid;
        grid-template-columns: 0.72fr 1.28fr;
        margin: 2px -18px calc(-18px - env(safe-area-inset-bottom));
        padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        background: #17181b;
    }

    .v2-filter-mobile-actions .v2-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.28em;
    }

    .v2-filter-scrim {
        position: fixed;
        inset: 0;
        z-index: 80;
        display: block;
        border: 0;
        background: rgba(0, 0, 0, 0.68);
        opacity: 0;
        pointer-events: none;
        transition: opacity 180ms ease;
    }

    body.has-open-filter .v2-filter-scrim {
        opacity: 1;
        pointer-events: auto;
    }

    html.has-open-filter,
    body.has-open-filter {
        overflow: hidden;
        overscroll-behavior: none;
    }

    .v2-results-toolbar {
        min-height: 64px;
    }
}

@media (max-width: 700px) {
    .page-browse.public-v2 main {
        background-position: 58% top;
        background-size: 1180px auto, auto;
    }

    .v2-browse-announcement {
        justify-content: flex-start;
        gap: 9px;
        font-size: 0.7rem;
    }

    .v2-browse-hero {
        display: block;
        min-height: 0;
        padding: 24px 0 12px;
    }

    .v2-browse-hero-copy h1 {
        max-width: 360px;
        font-size: clamp(2.45rem, 12vw, 3.5rem);
    }

    .v2-browse-hero-copy > p:last-child {
        max-width: 390px;
        font-size: 0.86rem;
    }

    .v2-browse-map-preview {
        display: none;
    }

    .v2-results-toolbar {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .v2-view-toggle {
        width: 100%;
    }

    .v2-browse-vendor-card {
        grid-template-columns: 1fr;
    }

    .v2-browse-card-media,
    .v2-browse-card-media > a:first-child,
    .v2-browse-card-media img,
    .v2-browse-card-media .v2-photo-fallback {
        height: 190px;
        min-height: 190px;
    }

    .v2-browse-card-content {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 13px;
    }

    .v2-browse-rating,
    .v2-browse-card-details {
        margin-left: 0;
        padding-left: 0;
    }

    .v2-browse-card-side {
        min-width: 0;
        align-items: flex-start;
    }

    .v2-schedule-chip {
        align-self: flex-start;
    }

    .v2-browse-card-actions {
        width: 100%;
    }

    .v2-browse-map-view {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .v2-browse-results-map {
        min-height: 390px;
    }

    .v2-map-result-list {
        max-height: 240px;
        border-top: 1px solid rgba(255, 255, 255, 0.09);
        border-left: 0;
    }

    .v2-pagination {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 4px;
    }
}

@media (max-width: 430px) {
    .v2-browse-hero,
    .v2-browse-shell,
    .v2-browse-mobile-tools {
        width: min(100% - 20px, var(--v2-content-width));
    }

    .v2-browse-mobile-tools {
        grid-template-columns: minmax(0, 1fr) 98px;
    }

    .v2-browse-mobile-tools .v2-button {
        padding-inline: 9px;
    }

    .v2-browse-card-details p {
        align-items: flex-start;
        flex-direction: column;
        gap: 1px;
    }

    .v2-browse-card-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .v2-browse-card-actions .v2-button {
        white-space: normal;
    }

    .v2-pagination button {
        padding-inline: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .v2-skeleton::after {
        animation: none;
    }
}

/* Events V2 */
.page-events.public-v2 main {
    overflow: clip;
    background:
        linear-gradient(180deg, rgba(8, 8, 9, 0.1) 0, rgba(8, 8, 9, 0.88) 520px, var(--v2-bg) 880px),
        url("../img/nommad-city-map-bg-v2.png") center -90px / max(1480px, 100vw) auto no-repeat,
        var(--v2-bg);
}

.v2-events-shell {
    width: min(var(--v2-content-width), calc(100vw - 36px));
    max-width: calc(100vw - 36px);
    margin-inline: auto;
}

.v2-events-announcement {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 36px;
    border-bottom: 1px solid rgba(255, 120, 31, 0.15);
    background: rgba(39, 21, 13, 0.82);
    color: var(--v2-text-muted);
    font-size: 0.8rem;
}

.v2-events-announcement a {
    color: var(--v2-orange);
    font-weight: 900;
}

.v2-events-hero {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    background: linear-gradient(90deg, rgba(8, 8, 9, 0.96) 0%, rgba(8, 8, 9, 0.69) 48%, rgba(8, 8, 9, 0.18) 100%);
}

.v2-events-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1.2fr);
    align-items: stretch;
    min-height: 178px;
}

.v2-events-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 540px;
    padding: 18px 36px 18px 0;
}

.v2-events-hero-copy h1 {
    margin: 0;
    font-size: clamp(2.2rem, 3.15vw, 3.15rem);
    line-height: 0.98;
    letter-spacing: 0;
}

.v2-events-hero-copy > p:last-child {
    max-width: 520px;
    margin: 9px 0 0;
    color: var(--v2-text-muted);
    font-size: 0.84rem;
    line-height: 1.4;
}

.v2-events-hero-map {
    position: relative;
    min-height: 178px;
    overflow: hidden;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(10, 10, 11, 0.4);
}

.v2-events-hero-map::after {
    position: absolute;
    inset: 0;
    z-index: 2;
    content: "";
    pointer-events: none;
    background: linear-gradient(90deg, rgba(8, 8, 9, 0.92), transparent 32%, rgba(8, 8, 9, 0.05));
}

.v2-events-hero-map-inner,
.v2-events-map-art {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 178px;
}

.v2-events-hero-map-inner .leaflet-control-container {
    display: none;
}

.v2-events-map-art {
    background: none;
    opacity: 0.92;
}

.v2-events-map-art span {
    position: absolute;
    width: 14px;
    height: 14px;
    border: 3px solid #fff1e6;
    border-radius: 50% 50% 50% 0;
    background: var(--v2-orange);
    box-shadow: 0 0 22px rgba(255, 120, 31, 0.9);
    transform: rotate(-45deg);
}

.v2-events-map-art span:nth-child(1) { top: 27%; left: 42%; }
.v2-events-map-art span:nth-child(2) { top: 54%; left: 67%; }
.v2-events-map-art span:nth-child(3) { top: 32%; left: 82%; }

.v2-events-map-note {
    position: absolute;
    left: 28px;
    bottom: 24px;
    z-index: 3;
    max-width: 310px;
    margin: 0;
    color: var(--v2-text-muted);
    font-size: 0.76rem;
}

.v2-events-request-button {
    position: absolute;
    right: 24px;
    top: 50%;
    z-index: 4;
    min-width: 168px;
    transform: translateY(-50%);
}

.v2-events-discovery {
    padding: 9px 0 15px;
}

.v2-events-controls {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    margin-bottom: 8px;
}

.v2-events-filter-scroll {
    display: flex;
    gap: 7px;
    min-width: 0;
    overflow-x: auto;
    padding: 2px 1px 5px;
    scrollbar-width: thin;
}

.v2-event-filter-chip,
.v2-events-view-toggle button {
    min-height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 8px;
    padding: 0 11px;
    background: rgba(20, 20, 23, 0.9);
    color: var(--v2-text-muted);
    font: inherit;
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0;
    white-space: nowrap;
    cursor: pointer;
}

.v2-event-filter-chip:hover,
.v2-event-filter-chip[aria-pressed="true"],
.v2-events-view-toggle button:hover,
.v2-events-view-toggle button[aria-selected="true"] {
    border-color: rgba(255, 120, 31, 0.46);
    background: rgba(255, 120, 31, 0.18);
    color: var(--v2-text);
}

.v2-event-filter-chip:focus-visible,
.v2-events-view-toggle button:focus-visible,
.v2-events-calendar button:focus-visible {
    outline: 2px solid rgba(255, 120, 31, 0.78);
    outline-offset: 2px;
}

.v2-event-filter-chip:disabled {
    cursor: wait;
    opacity: 0.72;
}

.v2-events-view-toggle {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    min-width: 218px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 9px;
    background: rgba(18, 18, 20, 0.9);
}

.v2-events-view-toggle button {
    min-height: 29px;
    border-color: transparent;
    background: transparent;
}

.v2-events-filter-status {
    min-height: 14px;
    margin: -5px 0 4px;
    color: var(--v2-text-muted);
    font-size: 0.73rem;
}

.v2-events-panel[hidden],
[data-event-instance][hidden],
[data-map-event-item][hidden],
.v2-event-mini-rail[hidden],
.v2-events-upcoming-heading[hidden],
.v2-events-empty[hidden] {
    display: none !important;
}

.v2-events-section-heading {
    align-items: end;
    margin-bottom: 7px;
}

.v2-events-section-heading h2,
.v2-events-upcoming-heading h2 {
    font-size: 1.25rem;
}

.v2-events-section-heading .v2-eyebrow,
.v2-events-upcoming-heading .v2-eyebrow {
    margin-bottom: 4px;
}

.v2-events-result-count {
    color: var(--v2-text-muted);
    font-size: 0.78rem;
    font-weight: 800;
}

.v2-events-featured-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.v2-events-featured-grid > div,
.v2-events-card {
    min-width: 0;
    height: 100%;
}

.v2-events-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: linear-gradient(145deg, rgba(28, 28, 31, 0.98), rgba(15, 15, 17, 0.98));
    box-shadow: 0 13px 34px rgba(0, 0, 0, 0.22);
}

.v2-events-card-media {
    position: relative;
    display: block;
    height: 136px;
    overflow: hidden;
    background: #121214;
}

.v2-events-card-media > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 180ms ease;
}

.v2-events-card:hover .v2-events-card-media > img {
    transform: scale(1.015);
}

.v2-events-card-media::after {
    position: absolute;
    inset: 45% 0 0;
    content: "";
    background: linear-gradient(transparent, rgba(10, 10, 11, 0.74));
    pointer-events: none;
}

.v2-event-date-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 47px;
    min-height: 49px;
    border: 1px solid rgba(255, 120, 31, 0.82);
    border-radius: 7px;
    background: rgba(9, 9, 10, 0.9);
    color: var(--v2-text);
    line-height: 1;
}

.v2-events-card-media > .v2-event-date-badge {
    position: absolute;
    top: 9px;
    left: 9px;
    z-index: 2;
}

.v2-event-date-badge small {
    color: var(--v2-orange);
    font-size: 0.62rem;
    font-weight: 900;
    text-transform: uppercase;
}

.v2-event-date-badge strong {
    margin-top: 3px;
    font-size: 1.05rem;
}

.v2-events-card-badges {
    position: absolute;
    top: 9px;
    right: 9px;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 5px;
    max-width: calc(100% - 86px);
}

.v2-event-status-badge,
.v2-event-featured-badge {
    display: inline-flex;
    align-items: center;
    min-height: 23px;
    border-radius: 999px;
    padding: 0 8px;
    background: rgba(33, 93, 52, 0.92);
    color: #b5ffc9;
    font-size: 0.6rem;
    font-weight: 950;
    text-transform: uppercase;
    white-space: nowrap;
}

.v2-event-featured-badge {
    background: rgba(255, 120, 31, 0.92);
    color: #170c06;
}

.v2-event-status-ended {
    background: rgba(83, 76, 71, 0.94);
    color: #eee4da;
}

.v2-event-status-starts-soon,
.v2-event-status-today,
.v2-event-status-tomorrow,
.v2-event-status-this-weekend {
    background: rgba(255, 120, 31, 0.88);
    color: #170c06;
}

.v2-events-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 10px;
}

.v2-events-card-body h3 {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.1;
    letter-spacing: 0;
}

.v2-events-card-body h3 a {
    color: var(--v2-text);
}

.v2-events-card-description {
    display: -webkit-box;
    min-height: 0;
    margin: 5px 0 7px;
    overflow: hidden;
    color: var(--v2-text-muted);
    font-size: 0.68rem;
    line-height: 1.3;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.v2-events-card-facts {
    display: grid;
    gap: 3px;
}

.v2-events-card-facts p {
    display: flex;
    flex-direction: column;
    margin: 0;
    color: var(--v2-text-muted);
    font-size: 0.63rem;
    line-height: 1.22;
}

.v2-events-card-facts strong {
    color: var(--v2-text);
}

.v2-events-card-facts small {
    color: var(--v2-text-muted);
}

.v2-event-distance {
    color: var(--v2-orange) !important;
    font-weight: 850;
}

.v2-event-lineup {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 9px;
    min-height: 29px;
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.v2-event-lineup > strong {
    color: var(--v2-text-muted);
    font-size: 0.63rem;
}

.v2-event-avatars {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
}

.v2-event-avatars a,
.v2-event-avatars > span {
    display: grid;
    width: 25px;
    height: 25px;
    place-items: center;
    margin-left: -5px;
    border: 2px solid #171719;
    border-radius: 50%;
    background: #50301d;
    color: var(--v2-text);
    font-size: 0.59rem;
    font-weight: 950;
}

.v2-event-avatars a:hover {
    background: var(--v2-orange);
    color: #170c06;
}

.v2-events-card-actions {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 6px;
    margin-top: auto;
    padding-top: 8px;
}

.v2-events-card-actions .v2-button {
    min-width: 0;
    min-height: 33px;
    padding-inline: 10px;
    font-size: 0.68rem;
}

.v2-events-upcoming-heading {
    margin: 17px 0 8px;
}

.v2-event-mini-rail {
    display: grid;
    grid-auto-columns: minmax(285px, 1fr);
    grid-auto-flow: column;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 7px;
    scroll-snap-type: x proximity;
}

.v2-event-mini-rail > div {
    min-width: 0;
    scroll-snap-align: start;
}

.v2-event-mini-card {
    display: grid;
    grid-template-columns: 48px 62px minmax(110px, 1fr) auto;
    align-items: center;
    gap: 9px;
    min-height: 78px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 9px;
    padding: 7px;
    background: rgba(22, 22, 24, 0.94);
    color: var(--v2-text);
}

.v2-event-mini-card > .v2-event-date-badge {
    min-width: 46px;
    min-height: 51px;
}

.v2-event-mini-image {
    display: block;
    width: 62px;
    height: 60px;
    overflow: hidden;
    border-radius: 7px;
}

.v2-event-mini-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v2-event-mini-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.v2-event-mini-copy strong,
.v2-event-mini-copy small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.v2-event-mini-copy strong { font-size: 0.78rem; }
.v2-event-mini-copy small { color: var(--v2-text-muted); font-size: 0.65rem; }
.v2-event-mini-count { color: #8effad; font-size: 0.64rem; font-weight: 850; white-space: nowrap; }

.v2-events-empty {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 34px;
    background: rgba(20, 20, 22, 0.85);
    text-align: center;
}

.v2-events-empty h2 { margin: 0; }
.v2-events-empty > p:not(.v2-eyebrow) { color: var(--v2-text-muted); }
.v2-events-empty > div { display: flex; justify-content: center; gap: 8px; }

.v2-events-map-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(290px, 0.7fr);
    min-height: 560px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 10px;
    background: #111113;
}

.v2-events-results-map,
.v2-events-map-disabled {
    width: 100%;
    min-height: 560px;
}

.v2-events-map-disabled {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--v2-text-muted);
    background: url("../img/nommad-city-map-bg-v2.png") center / cover;
}

.v2-events-map-list {
    max-height: 560px;
    overflow-y: auto;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.v2-events-map-list article {
    display: grid;
    grid-template-columns: 53px minmax(0, 1fr) auto;
    align-items: center;
    gap: 9px;
    padding: 11px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.v2-events-map-list article > span .v2-event-date-badge { min-width: 48px; min-height: 50px; }
.v2-events-map-list article > div { display: flex; min-width: 0; flex-direction: column; }
.v2-events-map-list article strong { font-size: 0.76rem; }
.v2-events-map-list article small { overflow: hidden; color: var(--v2-text-muted); font-size: 0.65rem; text-overflow: ellipsis; white-space: nowrap; }
.v2-events-map-list article > a { color: var(--v2-orange); font-size: 0.7rem; font-weight: 900; }

.v2-events-calendar {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 10px;
    background: rgba(18, 18, 20, 0.96);
}

.v2-events-calendar > header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.v2-events-calendar > header h2 {
    margin: 0;
    text-align: center;
    font-size: 1.2rem;
}

.v2-events-calendar > header button {
    min-height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 7px;
    padding: 0 12px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--v2-text);
    font: inherit;
    font-size: 0.73rem;
    font-weight: 850;
    cursor: pointer;
}

.v2-events-calendar-weekdays,
.v2-events-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
}

.v2-events-calendar-weekdays span {
    padding: 9px;
    color: var(--v2-text-muted);
    font-size: 0.66rem;
    font-weight: 850;
    text-align: center;
}

.v2-events-calendar-grid > button,
.v2-events-calendar-grid > span {
    position: relative;
    min-height: 66px;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    padding: 8px;
    background: transparent;
    color: var(--v2-text-muted);
    font: inherit;
    text-align: left;
}

.v2-events-calendar-grid > button.has-events {
    background: rgba(255, 120, 31, 0.07);
    color: var(--v2-text);
    cursor: pointer;
}

.v2-events-calendar-grid > button i {
    position: absolute;
    left: 9px;
    bottom: 9px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--v2-orange);
    box-shadow: 0 0 12px rgba(255, 120, 31, 0.64);
}

.v2-events-calendar-grid > button small {
    position: absolute;
    right: 8px;
    bottom: 6px;
    color: var(--v2-orange);
    font-size: 0.62rem;
    font-weight: 900;
}

.v2-events-calendar-agenda {
    padding: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.v2-events-calendar-agenda h3 { margin: 0 0 8px; font-size: 0.95rem; }
.v2-events-calendar-agenda > p { margin: 0; color: var(--v2-text-muted); }
.v2-events-calendar-agenda > div { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.v2-events-calendar-agenda a { display: flex; min-width: 0; flex-direction: column; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 7px; padding: 10px; background: rgba(255, 255, 255, 0.035); color: var(--v2-text); }
.v2-events-calendar-agenda a span,
.v2-events-calendar-agenda a small { overflow: hidden; color: var(--v2-text-muted); font-size: 0.7rem; text-overflow: ellipsis; white-space: nowrap; }

.v2-events-plan {
    display: grid;
    grid-template-columns: minmax(310px, 0.78fr) minmax(0, 1.22fr);
    gap: 18px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 120, 31, 0.28);
    border-radius: 10px;
    padding: 15px;
    background: linear-gradient(110deg, rgba(70, 35, 17, 0.54), rgba(24, 23, 23, 0.98) 44%, rgba(20, 20, 22, 0.98));
}

.v2-events-plan-copy h2 { margin: 0; font-size: 1.3rem; }
.v2-events-plan-copy > p:not(.v2-eyebrow) { margin: 4px 0 10px; color: var(--v2-text-muted); font-size: 0.76rem; }
.v2-events-plan-copy ol { display: flex; flex-wrap: wrap; gap: 10px 18px; margin: 0; padding: 0; list-style: none; }
.v2-events-plan-copy li { display: flex; align-items: center; gap: 7px; color: var(--v2-text-muted); font-size: 0.7rem; }
.v2-events-plan-copy li span { display: grid; width: 27px; height: 27px; place-items: center; border: 1px solid var(--v2-orange); border-radius: 50%; color: var(--v2-text); font-weight: 900; }

.v2-events-quick-form {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: end;
    gap: 7px;
}

.v2-events-quick-form label {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 5px;
    color: var(--v2-text);
    font-size: 0.69rem;
    font-weight: 850;
}

.v2-events-quick-form input,
.v2-events-quick-form select,
.v2-events-quick-form textarea {
    width: 100%;
    min-width: 0;
    min-height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 7px;
    padding: 6px 9px;
    background: rgba(7, 7, 8, 0.58);
    color: var(--v2-text);
    font: inherit;
    font-size: 0.74rem;
    letter-spacing: 0;
}

.v2-events-quick-form textarea { resize: vertical; }
.v2-events-quick-form input:focus,
.v2-events-quick-form select:focus,
.v2-events-quick-form textarea:focus { outline: 2px solid rgba(255, 120, 31, 0.6); outline-offset: 1px; }
.v2-events-quick-message { grid-column: span 2; }
.v2-events-quick-form .v2-button { min-width: 0; min-height: 34px; font-size: 0.72rem; }

.page-events.public-v2 .v2-footer-grid {
    gap: 18px;
    padding: 15px 0 10px;
}

.page-events.public-v2 .v2-footer-grid p,
.page-events.public-v2 .v2-footer-grid a:not(.brand) {
    font-size: 0.68rem;
}

.page-events.public-v2 .v2-footer-grid a:not(.brand) {
    margin: 3px 0;
}

.page-events.public-v2 .v2-footer-grid h2 {
    margin-bottom: 6px;
    font-size: 0.72rem;
}

.page-events.public-v2 .v2-footer-bottom {
    padding: 8px 0;
    font-size: 0.66rem;
}

@media (max-width: 1050px) {
    .v2-events-hero-inner { grid-template-columns: minmax(0, 0.9fr) minmax(410px, 1.1fr); }
}

@media (max-width: 820px) {
    .v2-events-hero-inner { grid-template-columns: 1fr; }
    .v2-events-hero-copy { max-width: 620px; padding: 26px 0 18px; }
    .v2-events-hero-map { min-height: 180px; border-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.05); }
    .v2-events-hero-map-inner,
    .v2-events-map-art { min-height: 180px; }
    .v2-events-controls { grid-template-columns: 1fr; gap: 8px; }
    .v2-events-view-toggle { width: 100%; }
    .v2-events-featured-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .v2-events-plan { grid-template-columns: 1fr; }
    .v2-events-map-layout { grid-template-columns: 1fr; min-height: 0; }
    .v2-events-results-map,
    .v2-events-map-disabled { min-height: 440px; }
    .v2-events-map-list { max-height: 250px; border-top: 1px solid rgba(255, 255, 255, 0.1); border-left: 0; }
    .v2-events-calendar-agenda > div { grid-template-columns: 1fr; }
    .v2-events-quick-form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .v2-events-quick-message { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
    .page-events.public-v2 main { background-position: 62% -20px; background-size: 1120px auto, auto; }
    .v2-events-shell { width: min(100% - 20px, var(--v2-content-width)); max-width: calc(100vw - 20px); }
    .v2-events-announcement { justify-content: flex-start; gap: 8px; overflow: hidden; padding: 8px 10px; font-size: 0.69rem; white-space: nowrap; }
    .v2-events-announcement span { overflow: hidden; text-overflow: ellipsis; }
    .v2-events-hero-copy h1 { font-size: clamp(2.35rem, 12vw, 3.25rem); }
    .v2-events-hero-copy br { display: none; }
    .v2-events-hero-copy > p:last-child { font-size: 0.84rem; }
    .v2-events-hero-map { min-height: 150px; }
    .v2-events-hero-map-inner,
    .v2-events-map-art { min-height: 150px; }
    .v2-events-request-button { right: 12px; min-width: 142px; }
    .v2-events-map-note { left: 12px; bottom: 11px; max-width: 48%; font-size: 0.62rem; }
    .v2-events-discovery { padding-top: 9px; }
    .v2-events-filter-scroll { margin-right: -10px; padding-right: 10px; }
    .v2-event-filter-chip { min-height: 34px; padding-inline: 11px; }
    .v2-events-section-heading { align-items: flex-end; }
    .v2-events-featured-grid { grid-template-columns: 1fr; }
    .v2-events-featured-grid > div:nth-child(3) { grid-column: auto; }
    .v2-events-featured-grid > div:nth-child(3) .v2-events-card { display: flex; }
    .v2-events-featured-grid > div:nth-child(3) .v2-events-card-media { height: 168px; min-height: 0; }
    .v2-events-card-media { height: 176px; }
    .v2-event-mini-rail { grid-auto-columns: minmax(292px, 88vw); margin-right: -10px; padding-right: 10px; }
    .v2-event-mini-card { grid-template-columns: 48px 58px minmax(0, 1fr); }
    .v2-event-mini-count { display: none; }
    .v2-events-calendar-weekdays span { padding: 7px 2px; font-size: 0.58rem; }
    .v2-events-calendar-grid > button,
    .v2-events-calendar-grid > span { min-height: 50px; padding: 6px; font-size: 0.72rem; }
    .v2-events-calendar > header button { width: 38px; padding: 0; font-size: 1.35rem; }
    .v2-events-plan { gap: 18px; padding: 16px; }
    .v2-events-plan-copy ol { display: grid; grid-template-columns: 1fr; }
    .v2-events-quick-form { grid-template-columns: 1fr; }
    .v2-events-quick-message { grid-column: auto; }
    .v2-events-quick-form .v2-button { width: 100%; }
}

@media (max-width: 430px) {
    .v2-events-card-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .v2-events-card-actions .v2-button { white-space: normal; }
    .v2-events-map-list article { grid-template-columns: 50px minmax(0, 1fr) auto; }
    .v2-events-calendar > header h2 { font-size: 1rem; }
}

/* Today V2 */
.page-today.public-v2 main {
    background:
        radial-gradient(circle at 92% 8%, rgba(255, 120, 31, 0.08) 0 1px, transparent 1.5px) 0 0 / 18px 18px,
        linear-gradient(180deg, rgba(35, 18, 11, 0.24), rgba(8, 8, 9, 0.32) 320px, rgba(8, 8, 9, 0.78) 900px),
        url("../img/nommad-city-map-bg-v2.png") center top / max(1480px, 100vw) auto no-repeat,
        var(--v2-bg);
}

.page-today.public-v2 .v2-site-header .nav-shell,
.v2-today-shell,
.v2-today-announcement {
    width: min(var(--v2-content-width), calc(100vw - 36px));
    max-width: calc(100vw - 36px);
    margin-inline: auto;
}

.v2-today-announcement {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 30px;
    color: var(--v2-text-muted);
    font-size: 0.76rem;
}

.v2-today-announcement::before {
    position: absolute;
    right: 0;
    left: 0;
    z-index: -1;
    min-height: 30px;
    border-bottom: 1px solid rgba(255, 120, 31, 0.12);
    background: rgba(51, 26, 15, 0.64);
    content: "";
}

.v2-today-announcement a,
.v2-today-section-heading a,
.v2-today-section-heading button {
    color: var(--v2-orange);
    font-weight: 900;
}

.v2-today-announcement a::after,
.v2-today-section-heading a::after,
.v2-today-section-heading button::after {
    margin-left: 6px;
    content: "\2192";
}

.v2-today-shell {
    padding: 0 0 18px;
}

.v2-today-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(520px, 1.16fr);
    align-items: center;
    gap: clamp(28px, 4vw, 64px);
    min-height: 226px;
    padding: 18px 0 12px;
}

.v2-today-hero-copy {
    min-width: 0;
}

.v2-today-hero-copy h1 {
    margin: 0;
    color: var(--v2-text);
    font-size: clamp(2.25rem, 3.8vw, 3.3rem);
    line-height: 1.02;
    letter-spacing: 0;
}

.v2-today-hero-copy > p:not(.v2-eyebrow) {
    margin: 9px 0 13px;
    color: var(--v2-text-muted);
    font-size: 0.9rem;
}

.v2-today-filter-scroll {
    display: flex;
    gap: 7px;
    overflow-x: auto;
    padding: 2px 2px 5px;
    scrollbar-width: thin;
}

.v2-today-filter-chip {
    flex: 0 0 auto;
    min-height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 999px;
    padding: 0 13px;
    background: rgba(255, 255, 255, 0.045);
    color: var(--v2-text-muted);
    font: inherit;
    font-size: 0.73rem;
    font-weight: 850;
    letter-spacing: 0;
    white-space: nowrap;
    cursor: pointer;
}

.v2-today-filter-chip:hover,
.v2-today-filter-chip.is-active {
    border-color: rgba(255, 120, 31, 0.76);
    background: var(--v2-orange);
    color: #160905;
}

.v2-today-filter-chip:focus-visible,
.v2-today-view-toggle button:focus-visible,
.v2-today-section-heading button:focus-visible {
    outline: 2px solid rgba(255, 120, 31, 0.78);
    outline-offset: 2px;
}

.v2-today-view-toggle {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(100%, 500px);
    margin-top: 8px;
    border: 1px solid var(--v2-border);
    border-radius: 8px;
    padding: 3px;
    background: rgba(18, 18, 20, 0.82);
}

.v2-today-view-toggle button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 34px;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    background: transparent;
    color: var(--v2-text-muted);
    font: inherit;
    font-size: 0.8rem;
    font-weight: 850;
    letter-spacing: 0;
    cursor: pointer;
}

.v2-today-view-toggle button:last-child {
    border-right: 0;
}

.v2-today-view-toggle button.is-active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--v2-orange);
}

.v2-today-hero-map {
    position: relative;
    min-width: 0;
    height: 180px;
    overflow: hidden;
    border: 1px solid var(--v2-border);
    border-radius: 9px;
    background: #101113;
    box-shadow: var(--v2-shadow);
}

.v2-today-hero-map-inner,
.v2-today-map-art {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 180px;
}

.v2-today-map-art {
    background:
        linear-gradient(90deg, rgba(8, 8, 9, 0.12), rgba(8, 8, 9, 0.48)),
        url("../img/nommad-city-map-bg-v2.png") center / cover no-repeat;
}

.page-today.public-v2 [data-map-theme="dark"] .leaflet-tile-pane {
    filter: grayscale(1) invert(0.91) sepia(0.2) saturate(0.45) hue-rotate(338deg) brightness(0.44) contrast(1.2);
}

.page-today.public-v2 .leaflet-container {
    background: #101113;
}

.v2-today-map-highlight {
    position: absolute;
    top: 20px;
    right: 12px;
    z-index: 500;
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    width: min(370px, calc(100% - 32px));
    min-height: 142px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(16, 16, 18, 0.95);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
}

.v2-today-map-highlight-media {
    position: relative;
    display: block;
    min-width: 0;
    overflow: hidden;
    background: #1c1714;
}

.v2-today-map-highlight-media img,
.v2-today-map-highlight-media .v2-photo-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v2-today-map-highlight-media > span {
    position: absolute;
    right: 7px;
    bottom: 8px;
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    border-radius: 5px;
    background: var(--v2-orange);
    color: #190a04;
    font-size: 0.68rem;
    font-weight: 950;
}

.v2-today-map-highlight > div {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    padding: 10px 11px;
}

.v2-today-map-highlight-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 7px;
}

.v2-today-map-highlight .v2-status {
    padding: 3px 7px;
    font-size: 0.54rem;
}

.v2-today-map-highlight h2 {
    margin: 5px 0 2px;
    overflow: hidden;
    color: var(--v2-text);
    font-size: 1.05rem;
    line-height: 1.08;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.v2-today-map-highlight p,
.v2-today-map-highlight strong,
.v2-today-map-highlight small {
    margin: 0;
    overflow: hidden;
    color: var(--v2-text-muted);
    font-size: 0.68rem;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.v2-today-map-highlight .v2-button {
    min-height: 30px;
    margin-top: 7px;
    font-size: 0.69rem;
}

.v2-today-map-empty,
.v2-today-panel-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    height: 100%;
    padding: 24px;
    color: var(--v2-text-muted);
    text-align: center;
}

.v2-today-map-empty strong,
.v2-today-panel-empty h2 {
    margin: 0;
    color: var(--v2-text);
}

.v2-today-filter-status {
    min-height: 0;
    margin: 0;
    color: var(--v2-text-muted);
    font-size: 0.72rem;
}

.v2-today-filter-status:not(:empty) {
    min-height: 26px;
    padding: 5px 0;
}

.v2-today-panel[hidden] {
    display: none;
}

.v2-today-section-heading,
.v2-today-panel-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 8px;
}

.v2-today-section-heading h2,
.v2-today-panel-heading h2 {
    margin: 0;
    color: var(--v2-text);
    font-size: 1.15rem;
    line-height: 1.12;
}

.v2-today-section-heading a,
.v2-today-section-heading button {
    flex: 0 0 auto;
    border: 0;
    padding: 0;
    background: transparent;
    font: inherit;
    font-size: 0.7rem;
    letter-spacing: 0;
    cursor: pointer;
}

.v2-today-now-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.v2-today-now-card {
    display: grid;
    grid-template-columns: minmax(118px, 0.42fr) minmax(0, 0.58fr);
    min-width: 0;
    min-height: 180px;
    overflow: hidden;
    border: 1px solid var(--v2-border);
    border-radius: 8px;
    background: rgba(18, 18, 20, 0.93);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.v2-today-card-media {
    position: relative;
    display: block;
    min-width: 0;
    overflow: hidden;
    background: #171719;
}

.v2-today-card-media img,
.v2-today-card-media .v2-photo-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v2-today-card-logo {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 5px;
    background: var(--v2-orange);
    color: #170904;
    font-size: 0.66rem;
    font-weight: 950;
}

.v2-today-card-body {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 10px 11px;
}

.v2-today-card-topline,
.v2-today-card-freshness {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 7px;
}

.v2-status-serving-now,
.v2-today-dot-serving-now {
    border-color: rgba(59, 209, 111, 0.36);
    background: rgba(59, 209, 111, 0.18);
    color: #8ff8b3;
}

.v2-today-card-topline .v2-status {
    padding: 3px 6px;
    font-size: 0.5rem;
}

.v2-today-card-rating {
    color: var(--v2-text-muted);
    font-size: 0.65rem;
    white-space: nowrap;
}

.v2-today-card-rating b {
    color: #ffc55c;
}

.v2-today-now-card h3 {
    margin: 5px 0 1px;
    color: var(--v2-text);
    font-size: 0.98rem;
    line-height: 1.08;
}

.v2-today-now-card h3 a {
    color: inherit;
}

.v2-today-card-category,
.v2-today-card-location,
.v2-today-card-hours,
.v2-today-card-freshness {
    margin: 0;
    color: var(--v2-text-muted);
    font-size: 0.66rem;
    line-height: 1.28;
}

.v2-today-card-location {
    margin-top: 6px;
}

.v2-today-card-location strong,
.v2-today-card-location small {
    display: block;
    color: inherit;
    font-size: inherit;
}

.v2-today-card-hours {
    margin-top: 5px;
    color: var(--v2-text);
    font-weight: 850;
}

.v2-today-card-freshness {
    margin-top: 5px;
    font-size: 0.59rem;
}

.v2-today-card-freshness span::before {
    margin: 0 5px;
    content: "\00B7";
}

.v2-today-card-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
    margin-top: auto;
    padding-top: 7px;
}

.v2-today-card-actions .v2-button {
    min-width: 0;
    min-height: 28px;
    padding: 0 7px;
    font-size: 0.6rem;
    white-space: normal;
}

.v2-today-now-empty {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    border: 1px solid var(--v2-border);
    border-radius: 8px;
    padding: 16px;
    background: rgba(18, 18, 20, 0.88);
}

.v2-today-now-empty h2,
.v2-today-now-empty p {
    margin: 0;
}

.v2-today-now-empty > div:last-child {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.v2-today-schedule-grid {
    display: grid;
    grid-template-columns: minmax(390px, 0.9fr) minmax(0, 1.1fr);
    gap: 22px;
    margin-top: 16px;
}

.v2-today-next-stops,
.v2-today-later {
    min-width: 0;
}

.v2-today-timeline-list,
.v2-today-full-timeline {
    overflow: hidden;
    border: 1px solid var(--v2-border);
    border-radius: 8px;
    background: rgba(18, 18, 20, 0.9);
}

.v2-today-timeline-row {
    position: relative;
    display: grid;
    grid-template-columns: 78px 14px minmax(0, 1fr) auto 18px;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 9px;
}

.v2-today-timeline-row:last-child {
    border-bottom: 0;
}

.v2-today-timeline-row time {
    color: var(--v2-text);
    font-size: 0.67rem;
    font-weight: 900;
}

.v2-today-timeline-dot {
    display: block;
    width: 8px;
    height: 8px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    background: var(--v2-orange);
}

.v2-today-dot-sold-out,
.v2-today-dot-closed {
    background: var(--v2-red);
}

.v2-today-timeline-copy {
    display: block;
    min-width: 0;
}

.v2-today-timeline-copy strong,
.v2-today-timeline-copy small {
    display: block;
    overflow: hidden;
    color: var(--v2-text);
    font-size: 0.69rem;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.v2-today-timeline-copy small {
    color: var(--v2-text-muted);
    font-size: 0.6rem;
}

.v2-today-countdown {
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 6px;
    padding: 4px 7px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--v2-text-muted);
    font-size: 0.58rem;
    font-weight: 850;
    white-space: nowrap;
}

.v2-today-timeline-arrow {
    color: var(--v2-text-muted);
    font-size: 1.25rem;
    line-height: 1;
}

.v2-today-later-rail {
    display: grid;
    grid-auto-columns: minmax(145px, 1fr);
    grid-auto-flow: column;
    gap: 8px;
    overflow-x: auto;
    padding: 0 1px 5px;
    scrollbar-width: thin;
}

.v2-today-later-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--v2-border);
    border-radius: 8px;
    background: rgba(18, 18, 20, 0.92);
}

.v2-today-later-media {
    display: block;
    height: 86px;
    overflow: hidden;
    background: #171719;
}

.v2-today-later-media img,
.v2-today-later-media .v2-photo-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v2-today-later-time {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 7px 0;
}

.v2-today-later-time span {
    display: grid;
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 5px;
    background: var(--v2-orange);
    color: #160905;
    font-size: 0.56rem;
    font-weight: 950;
}

.v2-today-later-time time {
    overflow: hidden;
    color: var(--v2-text-muted);
    font-size: 0.57rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.v2-today-later-card h3,
.v2-today-later-card p,
.v2-today-later-card > small {
    display: block;
    margin: 0;
    padding: 0 7px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.v2-today-later-card h3 {
    margin-top: 5px;
    color: var(--v2-text);
    font-size: 0.75rem;
}

.v2-today-later-card h3 a {
    color: inherit;
}

.v2-today-later-card p,
.v2-today-later-card > small {
    color: var(--v2-text-muted);
    font-size: 0.59rem;
}

.v2-today-later-card > small {
    padding-bottom: 8px;
}

.v2-today-panel-heading {
    display: block;
    margin: 4px 0 10px;
}

.v2-today-panel-heading p:last-child {
    margin: 5px 0 0;
    color: var(--v2-text-muted);
    font-size: 0.77rem;
}

.v2-today-full-timeline .v2-today-timeline-row {
    grid-template-columns: 100px 18px minmax(0, 1fr) auto 24px;
    min-height: 58px;
    padding: 9px 14px;
}

.v2-today-full-timeline .v2-today-timeline-copy strong {
    font-size: 0.82rem;
}

.v2-today-results-map {
    min-height: 490px;
    overflow: hidden;
    border: 1px solid var(--v2-border);
    border-radius: 8px;
}

.v2-today-panel-empty {
    min-height: 260px;
    border: 1px solid var(--v2-border);
    border-radius: 8px;
    background: rgba(18, 18, 20, 0.9);
}

.v2-today-cta-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.v2-today-cta {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    min-width: 0;
    border: 1px solid rgba(255, 120, 31, 0.34);
    border-radius: 8px;
    padding: 12px 16px;
    background: linear-gradient(100deg, rgba(82, 39, 18, 0.54), rgba(18, 18, 20, 0.92));
}

.v2-today-cta h2,
.v2-today-cta p {
    margin: 0;
}

.v2-today-cta h2 {
    color: var(--v2-text);
    font-size: 1.08rem;
}

.v2-today-cta p {
    margin-top: 3px;
    color: var(--v2-text-muted);
    font-size: 0.68rem;
}

.v2-today-cta .v2-button {
    min-height: 34px;
    font-size: 0.69rem;
}

.v2-today-cta-icon {
    position: relative;
    display: block;
    width: 52px;
    height: 42px;
}

.v2-today-cta-route::before {
    position: absolute;
    top: 2px;
    left: 7px;
    width: 23px;
    height: 30px;
    border: 5px solid var(--v2-orange);
    border-radius: 50% 50% 50% 0;
    content: "";
    transform: rotate(-45deg);
}

.v2-today-cta-route::after {
    position: absolute;
    right: 0;
    bottom: 3px;
    width: 31px;
    height: 11px;
    border-bottom: 3px solid rgba(255, 255, 255, 0.58);
    border-radius: 50%;
    content: "";
}

.v2-today-cta-vendor::before {
    position: absolute;
    top: 7px;
    left: 3px;
    width: 38px;
    height: 26px;
    border: 4px solid var(--v2-orange);
    border-radius: 4px;
    content: "";
}

.v2-today-cta-vendor::after {
    position: absolute;
    top: 0;
    left: 19px;
    width: 17px;
    height: 17px;
    border-radius: 3px;
    background: var(--v2-orange);
    box-shadow: -10px 34px 0 -5px var(--v2-text-muted), 15px 34px 0 -5px var(--v2-text-muted);
    content: "";
}

.v2-today-no-filter-results {
    margin-top: 14px;
    border: 1px solid var(--v2-border);
    border-radius: 8px;
    padding: 20px;
    background: rgba(18, 18, 20, 0.92);
    text-align: center;
}

.v2-today-no-filter-results h2,
.v2-today-no-filter-results p {
    margin: 0 0 7px;
}

.page-today.public-v2 .v2-footer-grid {
    gap: 18px;
    padding: 16px 0 11px;
}

.page-today.public-v2 .v2-footer-grid p,
.page-today.public-v2 .v2-footer-grid a:not(.brand) {
    font-size: 0.69rem;
}

.page-today.public-v2 .v2-footer-grid a:not(.brand) {
    margin: 3px 0;
}

.page-today.public-v2 .v2-footer-grid h2 {
    margin-bottom: 6px;
    font-size: 0.72rem;
}

.page-today.public-v2 .v2-footer-bottom {
    padding: 8px 0;
    font-size: 0.66rem;
}

@media (max-width: 1100px) {
    .v2-today-hero { grid-template-columns: minmax(0, 0.94fr) minmax(470px, 1.06fr); gap: 24px; }
    .v2-today-now-card { grid-template-columns: 115px minmax(0, 1fr); }
    .v2-today-card-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .v2-today-card-actions .v2-button:last-child { grid-column: 1 / -1; }
    .v2-today-schedule-grid { grid-template-columns: minmax(350px, 0.88fr) minmax(0, 1.12fr); gap: 14px; }
    .v2-today-cta { grid-template-columns: 48px minmax(0, 1fr); }
    .v2-today-cta .v2-button { grid-column: 2; justify-self: start; }
    .v2-today-cta-icon { width: 42px; }
}

@media (max-width: 860px) {
    .v2-today-hero { grid-template-columns: 1fr; padding-top: 20px; }
    .v2-today-hero-copy { max-width: 680px; }
    .v2-today-hero-map { height: 210px; }
    .v2-today-hero-map-inner,
    .v2-today-map-art { min-height: 210px; }
    .v2-today-now-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .v2-today-now-grid > article:nth-child(3) { grid-column: 1 / -1; }
    .v2-today-schedule-grid { grid-template-columns: 1fr; }
    .v2-today-later-rail { grid-auto-columns: minmax(168px, 0.36fr); }
    .v2-today-cta-row { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
    .page-today.public-v2 .v2-site-header .nav-shell,
    .v2-today-shell,
    .v2-today-announcement { width: min(100% - 20px, var(--v2-content-width)); max-width: calc(100vw - 20px); }
    .v2-today-announcement { justify-content: flex-start; gap: 8px; overflow: hidden; font-size: 0.68rem; white-space: nowrap; }
    .v2-today-announcement span { overflow: hidden; text-overflow: ellipsis; }
    .v2-today-hero { gap: 14px; min-height: 0; padding: 20px 0 10px; }
    .v2-today-hero-copy h1 { font-size: clamp(2.15rem, 10.5vw, 3rem); }
    .v2-today-hero-copy > p:not(.v2-eyebrow) { font-size: 0.83rem; }
    .v2-today-filter-scroll { margin-right: -10px; padding-right: 10px; }
    .v2-today-view-toggle { width: 100%; }
    .v2-today-hero-map { display: none; }
    .v2-today-now-grid { display: grid; grid-auto-columns: minmax(300px, 88vw); grid-auto-flow: column; grid-template-columns: none; gap: 10px; margin-right: -10px; overflow-x: auto; padding-right: 10px; scroll-snap-type: x proximity; }
    .v2-today-now-grid > article:nth-child(3) { grid-column: auto; }
    .v2-today-now-card { grid-template-columns: 122px minmax(0, 1fr); min-height: 190px; scroll-snap-align: start; }
    .v2-today-now-empty { align-items: flex-start; flex-direction: column; }
    .v2-today-section-heading { align-items: end; }
    .v2-today-section-heading h2 { font-size: 1.08rem; }
    .v2-today-schedule-grid { margin-top: 14px; }
    .v2-today-timeline-row { grid-template-columns: 58px 12px minmax(0, 1fr) auto; gap: 6px; }
    .v2-today-timeline-arrow { display: none; }
    .v2-today-countdown { padding: 3px 5px; }
    .v2-today-later-rail { grid-auto-columns: minmax(156px, 46vw); margin-right: -10px; padding-right: 10px; }
    .v2-today-full-timeline .v2-today-timeline-row { grid-template-columns: 62px 12px minmax(0, 1fr); gap: 7px; }
    .v2-today-full-timeline .v2-today-countdown { grid-column: 3; justify-self: start; }
    .v2-today-results-map { min-height: 58vh; }
    .v2-today-cta { grid-template-columns: 42px minmax(0, 1fr); padding: 13px; }
    .v2-today-cta h2 { font-size: 0.98rem; }
    .v2-today-cta .v2-button { width: 100%; grid-column: 1 / -1; }
}

@media (max-width: 430px) {
    .v2-today-filter-chip { min-height: 34px; padding-inline: 12px; }
    .v2-today-view-toggle button { gap: 5px; font-size: 0.72rem; }
    .v2-today-now-grid { grid-auto-columns: minmax(292px, 91vw); }
    .v2-today-now-card { grid-template-columns: 112px minmax(0, 1fr); }
    .v2-today-card-actions .v2-button { font-size: 0.58rem; }
    .v2-today-timeline-copy small { max-width: 180px; }
    .v2-today-countdown { max-width: 88px; overflow: hidden; text-overflow: ellipsis; }
}

/* Spots V2 */
.page-spots.public-v2 main {
    background:
        radial-gradient(circle at 50% 420px, rgba(255, 120, 31, 0.055) 0 1px, transparent 1.6px) 0 0 / 22px 22px,
        linear-gradient(180deg, rgba(17, 20, 22, 0.42), rgba(8, 8, 9, 0.62) 64%, rgba(8, 8, 9, 0.82)),
        url("../img/nommad-city-map-bg-v2.png") center top / max(1480px, 100vw) auto no-repeat,
        var(--v2-bg);
}

.v2-spots-shell,
.v2-spots-announcement,
.v2-spots-notice {
    width: min(var(--v2-content-width), calc(100vw - 36px));
    max-width: calc(100vw - 36px);
    margin-inline: auto;
}

.v2-spots-announcement {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 34px;
    color: var(--v2-text-muted);
    font-size: 0.72rem;
}

.v2-spots-announcement a,
.v2-spots-section-heading a {
    color: var(--v2-orange);
    font-weight: 850;
}

.v2-spots-notice {
    margin-top: 12px;
    border: 1px solid;
    border-radius: 8px;
    padding: 11px 14px;
    font-size: 0.78rem;
    font-weight: 750;
}

.v2-spots-notice.is-success { border-color: rgba(59, 209, 111, 0.5); background: rgba(24, 74, 43, 0.5); color: #a5f2bf; }
.v2-spots-notice.is-error { border-color: rgba(255, 101, 79, 0.55); background: rgba(91, 30, 25, 0.5); color: #ffb2a8; }

.v2-spots-hero {
    border-block: 1px solid rgba(255, 255, 255, 0.07);
    background: linear-gradient(90deg, rgba(6, 8, 10, 0.98) 0 40%, rgba(11, 16, 18, 0.86));
}

.v2-spots-hero-inner {
    display: grid;
    grid-template-columns: minmax(360px, 0.84fr) minmax(570px, 1.16fr);
    align-items: center;
    gap: 36px;
    min-height: 220px;
}

.v2-spots-hero-copy {
    padding: 16px 0;
}

.v2-spots-hero-copy h1,
.v2-spots-hero-copy > p,
.v2-spots-highlight h2,
.v2-spots-highlight p {
    margin: 0;
}

.v2-spots-hero-copy h1 {
    max-width: 520px;
    color: var(--v2-text);
    font-size: clamp(2.35rem, 3vw, 3.15rem);
    line-height: 0.98;
}

.v2-spots-hero-copy > p:not(.v2-eyebrow) {
    max-width: 560px;
    margin-top: 9px;
    color: var(--v2-text-muted);
    font-size: 0.82rem;
    line-height: 1.55;
}

.v2-spots-hero-actions {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.v2-spots-hero-actions .v2-button {
    min-width: 150px;
}

.v2-spots-trust,
.v2-spots-host-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin: 10px 0 0;
    padding: 0;
    color: var(--v2-text-muted);
    font-size: 0.7rem;
    list-style: none;
}

.v2-spots-trust li::before,
.v2-spots-host-benefits li::before {
    display: inline-grid;
    place-items: center;
    width: 18px;
    height: 18px;
    margin-right: 6px;
    border: 1px solid rgba(255, 120, 31, 0.68);
    border-radius: 50%;
    color: var(--v2-orange);
    content: "+";
    font-weight: 900;
}

.v2-spots-hero-map {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    border-inline: 1px solid rgba(255, 255, 255, 0.06);
    background: #0b1012;
}

.v2-spots-hero-map-inner,
.v2-spots-map-art {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 220px;
}

.v2-spots-map-art {
    background:
        linear-gradient(90deg, rgba(7, 10, 12, 0.22), rgba(7, 10, 12, 0.06)),
        url("../img/nommad-city-map-bg-v2.png") 76% 50% / auto 300% no-repeat;
}

.v2-spots-highlight {
    position: absolute;
    z-index: 4;
    top: 18px;
    right: 16px;
    width: min(246px, 42%);
    min-width: 218px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    padding: 10px;
    background: rgba(17, 17, 19, 0.96);
    box-shadow: var(--v2-shadow);
}

.v2-spots-highlight-media {
    height: 66px;
    margin-bottom: 8px;
    overflow: hidden;
    border-radius: 5px;
}

.v2-spots-highlight-media img,
.v2-spot-card-media > img,
.v2-spots-host-media > img,
.v2-spot-photo-fallback > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v2-spots-highlight .v2-spot-status {
    position: absolute;
    top: 16px;
    right: 16px;
}

.v2-spots-highlight h2 {
    font-size: 1rem;
}

.v2-spots-highlight p {
    margin-top: 2px;
    color: var(--v2-text-muted);
    font-size: 0.68rem;
}

.v2-spots-highlight .v2-spot-traffic {
    margin-top: 5px;
}

.v2-spots-highlight .v2-button {
    width: 100%;
    min-height: 31px;
    margin-top: 8px;
    font-size: 0.67rem;
}

.v2-spots-marketplace {
    padding: 9px 0 10px;
}

.v2-spots-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.v2-spots-filter-scroll {
    display: flex;
    gap: 7px;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: thin;
}

.v2-spot-filter-chip,
.v2-spots-view-toggle button {
    min-height: 34px;
    flex: 0 0 auto;
    border: 1px solid var(--v2-border);
    border-radius: 8px;
    padding: 7px 13px;
    background: rgba(18, 18, 20, 0.94);
    color: var(--v2-text-muted);
    font: inherit;
    font-size: 0.7rem;
    font-weight: 800;
    cursor: pointer;
}

.v2-spot-filter-chip:hover,
.v2-spot-filter-chip[aria-pressed="true"],
.v2-spots-view-toggle button[aria-selected="true"] {
    border-color: rgba(255, 120, 31, 0.72);
    background: rgba(255, 120, 31, 0.17);
    color: var(--v2-orange);
}

.v2-spots-view-toggle {
    display: grid;
    grid-template-columns: repeat(2, 70px);
    flex: 0 0 auto;
    border: 1px solid var(--v2-border);
    border-radius: 8px;
    padding: 3px;
    background: rgba(18, 18, 20, 0.94);
}

.v2-spots-view-toggle button {
    min-height: 29px;
    border-color: transparent;
    padding: 4px 9px;
    background: transparent;
}

.v2-spots-filter-status {
    min-height: 13px;
    margin: 4px 0 0;
    color: var(--v2-text-muted);
    font-size: 0.68rem;
}

.v2-spots-panel[hidden] { display: none; }

.v2-spots-section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.v2-spots-section-heading h2 {
    margin: 0;
    font-size: 1.22rem;
}

.v2-spots-section-heading a {
    font-size: 0.7rem;
}

.v2-spots-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.v2-spot-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--v2-border);
    border-radius: 8px;
    background: rgba(18, 18, 20, 0.96);
}

.v2-spot-card[hidden] { display: none; }

.v2-spot-card-media {
    position: relative;
    height: 104px;
    overflow: hidden;
    background: #0e1113;
}

.v2-spot-photo-fallback {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.v2-spot-photo-fallback::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 8, 9, 0.03), rgba(8, 8, 9, 0.7));
    content: "";
}

.v2-spot-photo-fallback span,
.v2-spot-photo-fallback small {
    position: absolute;
    z-index: 1;
    left: 12px;
}

.v2-spot-photo-fallback span {
    bottom: 25px;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 7px;
    background: var(--v2-orange);
    color: #080809;
    font-size: 0.92rem;
    font-weight: 950;
}

.v2-spot-photo-fallback small {
    bottom: 8px;
    color: var(--v2-text);
    font-size: 0.63rem;
    font-weight: 800;
}

.v2-spot-status {
    display: inline-flex;
    align-items: center;
    min-height: 21px;
    border-radius: 999px;
    padding: 3px 8px;
    background: rgba(59, 209, 111, 0.84);
    color: #06130b;
    font-size: 0.58rem;
    font-weight: 950;
    text-transform: uppercase;
}

.v2-spot-status-demand-hot { background: rgba(255, 120, 31, 0.93); color: #100a06; }
.v2-spot-status-limited,
.v2-spot-status-permit-required { background: rgba(148, 143, 136, 0.9); color: #111; }

.v2-spot-card-media > .v2-spot-status {
    position: absolute;
    z-index: 3;
    top: 9px;
    left: 9px;
}

.v2-spot-card-body {
    padding: 8px;
}

.v2-spot-card h3,
.v2-spot-card p {
    margin: 0;
}

.v2-spot-card h3 {
    color: var(--v2-text);
    font-size: 0.9rem;
    line-height: 1.08;
}

.v2-spot-location {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 4px !important;
    color: var(--v2-text-muted);
    font-size: 0.66rem;
}

.v2-spot-traffic {
    display: inline-flex;
    align-items: end;
    gap: 6px;
    margin-top: 5px;
    color: var(--v2-text-muted);
    font-size: 0.66rem;
}

.v2-spot-traffic i {
    display: inline-flex;
    align-items: end;
    gap: 2px;
    height: 12px;
}

.v2-spot-traffic b {
    display: block;
    width: 2px;
    height: 5px;
    border-radius: 1px;
    background: var(--v2-orange);
}

.v2-spot-traffic b:nth-child(2) { height: 8px; }
.v2-spot-traffic b:nth-child(3) { height: 12px; }
.v2-spot-traffic-low b:nth-child(n+2) { opacity: 0.2; }
.v2-spot-traffic-medium b:nth-child(3) { opacity: 0.2; }
.v2-spot-traffic-unknown b { opacity: 0.2; }

.v2-spot-amenities {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
    margin: 7px 0 0;
    padding-top: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.v2-spot-amenities div { min-width: 0; }
.v2-spot-amenities dt { color: var(--v2-text-muted); font-size: 0.52rem; }
.v2-spot-amenities dd { margin: 1px 0 0; color: var(--v2-text); font-size: 0.56rem; font-weight: 800; overflow-wrap: anywhere; }

.v2-spot-card-actions {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(74px, 0.6fr);
    gap: 7px;
    margin-top: 7px;
}

.v2-spot-card-actions .v2-button {
    min-height: 30px;
    padding: 5px 8px;
    font-size: 0.62rem;
}

.v2-spots-empty {
    display: grid;
    place-items: center;
    min-height: 230px;
    border: 1px solid var(--v2-border);
    border-radius: 8px;
    padding: 28px;
    background: rgba(18, 18, 20, 0.96);
    text-align: center;
}

.v2-spots-empty[hidden] { display: none; }
.v2-spots-empty h2,
.v2-spots-empty p { margin: 0; }
.v2-spots-empty p { color: var(--v2-text-muted); }
.v2-spots-empty div { display: flex; gap: 8px; margin-top: 12px; }

.v2-spots-results-map {
    min-height: 475px;
    overflow: hidden;
    border: 1px solid var(--v2-border);
    border-radius: 8px;
}

.v2-spots-map-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px;
    margin-top: 8px;
}

.v2-spots-map-list a {
    min-width: 0;
    border: 1px solid var(--v2-border);
    border-radius: 7px;
    padding: 8px;
    background: var(--v2-surface);
    color: var(--v2-text);
}

.v2-spots-map-list a[hidden] { display: none; }
.v2-spots-map-list strong,
.v2-spots-map-list span { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.v2-spots-map-list strong { font-size: 0.7rem; }
.v2-spots-map-list span { margin-top: 2px; color: var(--v2-text-muted); font-size: 0.59rem; }

.v2-spots-host {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(520px, 1.15fr);
    gap: 14px;
    margin-top: 0;
    border: 1px solid var(--v2-border);
    border-radius: 8px;
    padding: 10px;
    background: rgba(18, 18, 20, 0.96);
}

.v2-spots-host-story {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 205px;
    gap: 14px;
    align-items: center;
}

.v2-spots-host-story h2,
.v2-spots-host-story p {
    margin: 0;
}

.v2-spots-host-story h2 { font-size: 1.25rem; }
.v2-spots-host-story p:not(.v2-eyebrow) { margin-top: 5px; color: var(--v2-text-muted); font-size: 0.71rem; line-height: 1.45; }

.v2-spots-host-media {
    height: 92px;
    overflow: hidden;
    border-radius: 7px;
}

.v2-spots-host-benefits {
    grid-column: 1 / -1;
    gap: 12px;
    margin-top: 0;
    font-size: 0.61rem;
}

.v2-spots-host-benefits li::before { width: 16px; height: 16px; }

.v2-spots-host-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    border-left: 1px solid var(--v2-border);
    padding-left: 14px;
}

.v2-spots-host-form label,
.v2-spots-request-dialog label {
    display: grid;
    gap: 4px;
    min-width: 0;
    color: var(--v2-text-muted);
    font-size: 0.61rem;
    font-weight: 800;
}

.v2-spots-host-form input,
.v2-spots-host-form textarea,
.v2-spots-request-dialog input,
.v2-spots-request-dialog textarea {
    width: 100%;
    border: 1px solid var(--v2-border);
    border-radius: 6px;
    padding: 6px 9px;
    background: #0c0c0f;
    color: var(--v2-text);
    font: inherit;
    font-size: 0.69rem;
}

.v2-spots-host-form textarea { min-height: 49px; resize: vertical; }
.v2-spots-host-form .v2-button { grid-column: 2; min-height: 34px; }

.v2-spots-vendor-cta {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.25fr) auto;
    align-items: center;
    gap: 24px;
    margin-top: 10px;
    border: 1px solid rgba(255, 120, 31, 0.38);
    border-radius: 8px;
    padding: 10px 18px;
    background: linear-gradient(90deg, rgba(46, 24, 14, 0.8), rgba(21, 19, 19, 0.94) 72%, rgba(93, 44, 17, 0.72));
}

.v2-spots-vendor-cta h2,
.v2-spots-vendor-cta p { margin: 0; }
.v2-spots-vendor-cta h2 { font-size: 1.14rem; }
.v2-spots-vendor-cta > p { color: var(--v2-text-muted); font-size: 0.69rem; line-height: 1.4; }
.v2-spots-vendor-cta .v2-button { min-width: 210px; }

.v2-spots-request-dialog {
    width: min(520px, calc(100vw - 28px));
    max-height: calc(100vh - 40px);
    border: 1px solid var(--v2-border);
    border-radius: 8px;
    padding: 18px;
    background: #171719;
    color: var(--v2-text);
    box-shadow: var(--v2-shadow);
}

.v2-spots-request-dialog::backdrop { background: rgba(0, 0, 0, 0.72); backdrop-filter: blur(3px); }
.v2-spots-dialog-head { display: flex; align-items: start; justify-content: space-between; gap: 12px; }
.v2-spots-dialog-head h2 { margin: 0; font-size: 1.25rem; }
.v2-spots-dialog-head > button { width: 32px; height: 32px; border: 1px solid var(--v2-border); border-radius: 50%; background: transparent; color: var(--v2-text); font-size: 1.2rem; cursor: pointer; }
.v2-spots-request-dialog form { display: grid; gap: 10px; margin-top: 14px; }
.v2-spots-dialog-gate { display: grid; gap: 9px; margin-top: 14px; }
.v2-spots-dialog-gate p { margin: 0 0 4px; color: var(--v2-text-muted); }

.page-spots.public-v2 .v2-footer-grid { gap: 18px; padding: 11px 0 7px; }
.page-spots.public-v2 .v2-footer-grid p,
.page-spots.public-v2 .v2-footer-grid a:not(.brand) { font-size: 0.67rem; }
.page-spots.public-v2 .v2-footer-grid a:not(.brand) { margin: 2px 0; }
.page-spots.public-v2 .v2-footer-grid h2 { margin-bottom: 5px; font-size: 0.7rem; }
.page-spots.public-v2 .v2-footer-bottom { padding: 7px 0; font-size: 0.64rem; }
.page-spots.public-v2 .v2-footer-grid > div:nth-child(2),
.page-spots.public-v2 .v2-footer-grid > div:nth-child(4) { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 14px; align-content: start; }
.page-spots.public-v2 .v2-footer-grid > div:nth-child(2) h2,
.page-spots.public-v2 .v2-footer-grid > div:nth-child(4) h2 { grid-column: 1 / -1; }

@media (max-width: 1120px) {
    .v2-spots-hero-inner { grid-template-columns: minmax(330px, 0.8fr) minmax(470px, 1.2fr); }
    .v2-spots-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .v2-spots-host { grid-template-columns: 1fr; }
    .v2-spots-host-form { border-top: 1px solid var(--v2-border); border-left: 0; padding-top: 12px; padding-left: 0; }
    .v2-spots-map-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
    .v2-spots-hero-inner { grid-template-columns: 1fr; gap: 0; }
    .v2-spots-hero-map { min-height: 225px; }
    .v2-spots-hero-map-inner,
    .v2-spots-map-art { min-height: 225px; }
    .v2-spots-controls { align-items: stretch; flex-direction: column; gap: 8px; }
    .v2-spots-view-toggle { align-self: flex-end; }
    .v2-spots-vendor-cta { grid-template-columns: 1fr auto; gap: 10px; }
    .v2-spots-vendor-cta > p { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 620px) {
    .page-spots.public-v2 .v2-site-header .nav-shell,
    .v2-spots-shell,
    .v2-spots-announcement,
    .v2-spots-notice { width: min(100% - 20px, var(--v2-content-width)); max-width: calc(100vw - 20px); }
    .v2-spots-announcement { justify-content: flex-start; gap: 8px; overflow: hidden; font-size: 0.66rem; white-space: nowrap; }
    .v2-spots-announcement span { overflow: hidden; text-overflow: ellipsis; }
    .v2-spots-hero-copy { padding: 22px 0 16px; }
    .v2-spots-hero-copy h1 { font-size: clamp(2.2rem, 11vw, 3.05rem); }
    .v2-spots-hero-copy > p:not(.v2-eyebrow) { font-size: 0.8rem; }
    .v2-spots-hero-actions .v2-button { min-width: 0; flex: 1; }
    .v2-spots-trust { gap: 10px; font-size: 0.62rem; }
    .v2-spots-hero-map { min-height: 178px; }
    .v2-spots-hero-map-inner,
    .v2-spots-map-art { min-height: 178px; }
    .v2-spots-highlight { top: 10px; right: 10px; width: min(230px, 72%); min-width: 0; }
    .v2-spots-highlight-media { height: 52px; }
    .v2-spots-filter-scroll { margin-right: -10px; padding-right: 10px; }
    .v2-spots-view-toggle { width: 100%; grid-template-columns: repeat(2, 1fr); }
    .v2-spots-grid { display: grid; grid-auto-columns: minmax(310px, 88vw); grid-auto-flow: column; grid-template-columns: none; margin-right: -10px; overflow-x: auto; padding-right: 10px; scroll-snap-type: x proximity; }
    .v2-spot-card { scroll-snap-align: start; }
    .v2-spot-card-media { height: 145px; }
    .v2-spots-host { padding: 12px; }
    .v2-spots-host-story { grid-template-columns: 1fr; }
    .v2-spots-host-media { display: none; }
    .v2-spots-host-benefits { grid-column: 1; }
    .v2-spots-host-form { grid-template-columns: 1fr; }
    .v2-spots-host-notes { grid-row: auto; }
    .v2-spots-host-form .v2-button { grid-column: 1; }
    .v2-spots-vendor-cta { grid-template-columns: 1fr; padding: 13px; }
    .v2-spots-vendor-cta > p { grid-column: 1; grid-row: auto; }
    .v2-spots-vendor-cta .v2-button { width: 100%; min-width: 0; }
    .v2-spots-results-map { min-height: 58vh; }
    .v2-spots-map-list { grid-template-columns: 1fr; }
}

@media (max-width: 430px) {
    .v2-spots-hero-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .v2-spots-hero-actions .v2-button { padding-inline: 8px; font-size: 0.65rem; }
    .v2-spots-highlight { width: calc(100% - 20px); max-width: 250px; }
    .v2-spots-highlight p,
    .v2-spots-highlight .v2-spot-traffic { font-size: 0.61rem; }
    .v2-spots-grid { grid-auto-columns: minmax(292px, 91vw); }
    .v2-spot-amenities { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* For Vendors V2 */
.page-signup.public-v2 main {
    background:
        linear-gradient(180deg, rgba(18, 13, 11, 0.34), rgba(8, 8, 9, 0.96) 43rem),
        var(--v2-bg);
}

.v2-vendor-signup {
    color: var(--v2-text);
}

.v2-vendor-announcement,
.v2-vendor-hero,
.v2-vendor-section {
    width: min(var(--v2-content-width), calc(100vw - 36px));
    max-width: calc(100vw - 36px);
    margin-inline: auto;
}

.v2-vendor-announcement {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 34px;
    color: var(--v2-text-muted);
    font-size: 0.72rem;
}

.v2-vendor-announcement a,
.v2-vendor-form-footer a {
    color: var(--v2-orange);
    font-weight: 850;
}

.v2-vendor-hero {
    display: grid;
    grid-template-columns: minmax(390px, 0.82fr) minmax(560px, 1.18fr);
    min-height: 505px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.v2-vendor-hero-copy {
    position: relative;
    z-index: 2;
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    padding: 56px 40px 50px 0;
}

.v2-vendor-hero-copy::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    right: -145px;
    bottom: 0;
    width: 260px;
    background: linear-gradient(90deg, var(--v2-bg), rgba(8, 8, 9, 0));
    pointer-events: none;
}

.v2-vendor-hero-copy h1 {
    max-width: 650px;
    margin: 0;
    color: var(--v2-text);
    font-size: 3.65rem;
    line-height: 0.98;
    letter-spacing: 0;
}

.v2-vendor-hero-copy > p:not(.v2-eyebrow) {
    max-width: 475px;
    margin: 18px 0 0;
    color: var(--v2-text-muted);
    font-size: 1rem;
    line-height: 1.55;
}

.v2-vendor-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.v2-vendor-hero-actions .v2-button {
    min-width: 160px;
    min-height: 46px;
}

.v2-vendor-value-list {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 25px;
    margin: 32px 0 0;
    padding: 0;
    color: var(--v2-text-muted);
    font-size: 0.72rem;
    line-height: 1.35;
    list-style: none;
}

.v2-vendor-value-list li {
    display: flex;
    max-width: 142px;
    align-items: center;
    gap: 9px;
}

.v2-value-mark {
    position: relative;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border: 2px solid var(--v2-orange);
    border-radius: 50%;
}

.v2-value-mark::before,
.v2-value-mark::after {
    content: "";
    position: absolute;
    background: var(--v2-orange);
}

.v2-value-mark::before { top: 6px; left: 12px; width: 2px; height: 12px; }
.v2-value-mark::after { top: 11px; left: 7px; width: 12px; height: 2px; }
.v2-value-mark-people { border-radius: 8px 8px 13px 13px; }
.v2-value-mark-shield { border-radius: 12px 12px 16px 16px; }

.v2-vendor-hero-media {
    position: relative;
    min-width: 0;
    min-height: 505px;
    overflow: hidden;
}

.v2-vendor-hero-media > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 58% center;
}

.v2-vendor-proof-card {
    position: absolute;
    right: 28px;
    bottom: 30px;
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr) auto;
    width: min(560px, calc(100% - 56px));
    min-width: 0;
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 16px;
    background: rgba(15, 15, 17, 0.94);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
}

.v2-vendor-proof-avatar {
    display: grid;
    width: 70px;
    height: 70px;
    place-items: center;
    border-radius: 8px;
    background: var(--v2-orange);
    color: #190b04;
    font-size: 1.24rem;
    font-weight: 950;
}

.v2-vendor-proof-card h2,
.v2-vendor-proof-card p {
    margin: 0;
}

.v2-vendor-proof-card h2 {
    overflow-wrap: anywhere;
    font-size: 1.18rem;
    line-height: 1.15;
}

.v2-vendor-proof-card p {
    margin-top: 4px;
    color: var(--v2-text-muted);
    font-size: 0.73rem;
}

.v2-vendor-proof-status {
    display: flex;
    align-items: center;
    gap: 6px;
}

.v2-vendor-proof-status > span {
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    background: var(--v2-green);
}

.v2-vendor-proof-card .v2-button {
    min-height: 38px;
    font-size: 0.72rem;
}

.v2-vendor-proof-card-neutral {
    grid-template-columns: 70px minmax(0, 1fr);
}

.v2-vendor-section {
    padding: 48px 0;
}

.v2-vendor-section + .v2-vendor-section {
    border-top: 1px solid rgba(255, 255, 255, 0.075);
}

.v2-vendor-section-heading {
    margin-bottom: 28px;
    text-align: center;
}

.v2-vendor-section-heading h2,
.v2-vendor-pricing h2 {
    margin: 0;
    color: var(--v2-text);
    font-size: 2rem;
    line-height: 1.08;
}

.v2-vendor-section-heading > p:not(.v2-eyebrow),
.v2-vendor-pricing > div > p:not(.v2-eyebrow) {
    margin: 10px auto 0;
    color: var(--v2-text-muted);
    font-size: 0.84rem;
    line-height: 1.5;
}

.v2-vendor-steps ol {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.v2-vendor-steps li {
    position: relative;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.v2-vendor-steps li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 27px;
    left: calc(100% - 4px);
    width: 38px;
    border-top: 1px dashed rgba(255, 120, 31, 0.48);
}

.v2-step-number {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border: 1px solid rgba(255, 120, 31, 0.65);
    border-radius: 50%;
    background: rgba(255, 120, 31, 0.12);
    color: var(--v2-orange);
    font-size: 1rem;
    font-weight: 950;
}

.v2-vendor-steps h3,
.v2-vendor-steps p,
.v2-vendor-feature-grid h3,
.v2-vendor-feature-grid p {
    margin: 0;
}

.v2-vendor-steps h3,
.v2-vendor-feature-grid h3 {
    font-size: 0.96rem;
    line-height: 1.2;
}

.v2-vendor-steps p,
.v2-vendor-feature-grid p {
    margin-top: 6px;
    color: var(--v2-text-muted);
    font-size: 0.75rem;
    line-height: 1.45;
}

.v2-vendor-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.v2-vendor-feature-grid article {
    min-width: 0;
    min-height: 150px;
    border: 1px solid var(--v2-border);
    border-radius: 8px;
    padding: 18px;
    background: rgba(19, 19, 21, 0.9);
}

.v2-vendor-feature-grid .v2-feature-icon {
    display: block;
    margin-bottom: 18px;
}

.v2-vendor-pricing {
    display: grid;
    grid-template-columns: minmax(300px, 1.15fr) minmax(360px, 1fr) auto;
    align-items: center;
    gap: 32px;
    margin-top: 16px;
    border: 1px solid var(--v2-border);
    border-radius: 8px;
    padding: 30px;
    background: rgba(22, 22, 24, 0.94);
}

.v2-vendor-pricing dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 28px;
    margin: 0;
}

.v2-vendor-pricing dl > div {
    min-width: 0;
}

.v2-vendor-pricing dt {
    color: var(--v2-text-muted);
    font-size: 0.66rem;
    font-weight: 800;
    text-transform: uppercase;
}

.v2-vendor-pricing dd {
    margin: 3px 0 0;
    color: var(--v2-text);
    font-size: 0.9rem;
    font-weight: 850;
}

.v2-vendor-pricing > .v2-button {
    min-width: 170px;
    min-height: 44px;
}

.v2-vendor-form-section {
    margin-top: 18px;
    margin-bottom: 52px;
    border: 1px solid var(--v2-border);
    border-radius: 8px;
    padding: 32px;
    background: rgba(18, 18, 20, 0.95);
}

.v2-vendor-form-heading {
    margin-bottom: 24px;
    text-align: left;
}

.v2-vendor-form-heading > p:not(.v2-eyebrow) {
    margin-left: 0;
}

.v2-vendor-interest-form {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.v2-vendor-interest-form label {
    display: grid;
    min-width: 0;
    gap: 6px;
    color: var(--v2-text);
    font-size: 0.72rem;
    font-weight: 850;
}

.v2-vendor-interest-form label > span small {
    color: var(--v2-text-muted);
    font-weight: 600;
}

.v2-vendor-interest-form input,
.v2-vendor-interest-form textarea {
    width: 100%;
    min-width: 0;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 7px;
    background: rgba(5, 5, 7, 0.72);
    color: var(--v2-text);
    font: inherit;
    font-size: 0.82rem;
    font-weight: 500;
}

.v2-vendor-interest-form input {
    min-height: 44px;
    padding: 0 12px;
}

.v2-vendor-interest-form textarea {
    min-height: 84px;
    padding: 11px 12px;
    resize: vertical;
}

.v2-vendor-interest-form input:focus,
.v2-vendor-interest-form textarea:focus {
    border-color: rgba(255, 120, 31, 0.82);
    outline: 2px solid rgba(255, 120, 31, 0.2);
    outline-offset: 1px;
}

.v2-vendor-interest-form input[aria-invalid="true"] {
    border-color: rgba(255, 101, 79, 0.85);
}

.v2-vendor-interest-form label > small {
    color: #ffaaa0;
    font-size: 0.66rem;
    font-weight: 700;
}

.v2-vendor-form-wide,
.v2-vendor-form-footer {
    grid-column: 1 / -1;
}

.v2-vendor-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.v2-vendor-form-footer p {
    max-width: 720px;
    margin: 0;
    color: var(--v2-text-muted);
    font-size: 0.68rem;
    line-height: 1.45;
}

.v2-vendor-form-footer .v2-button {
    min-width: 230px;
}

.v2-form-message {
    margin: 0 0 18px;
    border: 1px solid;
    border-radius: 8px;
    padding: 11px 14px;
    font-size: 0.78rem;
    font-weight: 800;
}

.v2-form-message-success {
    border-color: rgba(59, 209, 111, 0.5);
    background: rgba(24, 74, 43, 0.48);
    color: #a5f2bf;
}

.v2-form-message-error {
    border-color: rgba(255, 101, 79, 0.55);
    background: rgba(91, 30, 25, 0.48);
    color: #ffb2a8;
}

.v2-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

@media (max-width: 1120px) {
    .v2-vendor-hero { grid-template-columns: minmax(340px, 0.78fr) minmax(480px, 1.22fr); }
    .v2-vendor-hero-copy h1 { font-size: 3.35rem; }
    .v2-vendor-value-list { gap: 13px; }
    .v2-vendor-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .v2-vendor-pricing { grid-template-columns: minmax(280px, 1fr) minmax(330px, 1fr); }
    .v2-vendor-pricing > .v2-button { grid-column: 2; justify-self: start; }
}

@media (max-width: 860px) {
    .v2-vendor-hero { grid-template-columns: 1fr; }
    .v2-vendor-hero-copy { padding: 44px 0 34px; }
    .v2-vendor-hero-copy::after { display: none; }
    .v2-vendor-hero-media { min-height: 390px; }
    .v2-vendor-value-list li { max-width: 180px; }
    .v2-vendor-steps ol { grid-template-columns: 1fr; gap: 22px; }
    .v2-vendor-steps li:not(:last-child)::after { top: 53px; left: 27px; width: 0; height: 22px; border-top: 0; border-left: 1px dashed rgba(255, 120, 31, 0.48); }
    .v2-vendor-pricing { grid-template-columns: 1fr; }
    .v2-vendor-pricing > .v2-button { grid-column: 1; }
    .v2-vendor-interest-form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
    .page-signup.public-v2 .v2-site-header .nav-shell,
    .v2-vendor-announcement,
    .v2-vendor-hero,
    .v2-vendor-section { width: min(100% - 20px, var(--v2-content-width)); max-width: calc(100vw - 20px); }
    .v2-vendor-announcement { justify-content: flex-start; gap: 8px; overflow: hidden; font-size: 0.65rem; white-space: nowrap; }
    .v2-vendor-announcement span { overflow: hidden; text-overflow: ellipsis; }
    .v2-vendor-hero-copy h1 { font-size: 3.15rem; }
    .v2-vendor-hero-copy > p:not(.v2-eyebrow) { font-size: 0.9rem; }
    .v2-vendor-value-list { display: grid; grid-template-columns: 1fr; margin-top: 24px; }
    .v2-vendor-value-list li { max-width: none; }
    .v2-vendor-hero-media { min-height: 340px; }
    .v2-vendor-proof-card { right: 12px; bottom: 12px; grid-template-columns: 52px minmax(0, 1fr); width: calc(100% - 24px); gap: 10px; padding: 12px; }
    .v2-vendor-proof-avatar { width: 52px; height: 52px; }
    .v2-vendor-proof-card .v2-button { grid-column: 1 / -1; width: 100%; }
    .v2-vendor-section { padding: 36px 0; }
    .v2-vendor-section-heading { margin-bottom: 20px; text-align: left; }
    .v2-vendor-section-heading h2,
    .v2-vendor-pricing h2 { font-size: 1.72rem; }
    .v2-vendor-feature-grid { grid-template-columns: 1fr; }
    .v2-vendor-feature-grid article { min-height: 0; }
    .v2-vendor-pricing { gap: 22px; margin-top: 8px; padding: 22px; }
    .v2-vendor-pricing dl { grid-template-columns: 1fr; }
    .v2-vendor-pricing > .v2-button { width: 100%; }
    .v2-vendor-form-section { margin-top: 10px; margin-bottom: 32px; padding: 20px; }
    .v2-vendor-interest-form { grid-template-columns: 1fr; }
    .v2-vendor-form-wide,
    .v2-vendor-form-footer { grid-column: 1; }
    .v2-vendor-form-footer { align-items: stretch; flex-direction: column; gap: 14px; }
    .v2-vendor-form-footer .v2-button { width: 100%; min-width: 0; }
}

@media (max-width: 430px) {
    .v2-vendor-hero-copy h1 { font-size: 2.72rem; }
    .v2-vendor-hero-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .v2-vendor-hero-actions .v2-button { min-width: 0; padding-inline: 9px; font-size: 0.72rem; }
    .v2-vendor-hero-media { min-height: 315px; }
}

/* Public vendor profile V2 */
body.page-vendor-profile.public-v2 main {
    overflow: clip;
    background:
        linear-gradient(180deg, rgba(7, 8, 10, 0.1) 0, rgba(8, 8, 9, 0.76) 52rem, var(--v2-bg) 96rem),
        url("../img/nommad-city-map-bg-v2.png") center -70px / max(1440px, 100vw) auto no-repeat,
        var(--v2-bg);
}

body.page-vendor-profile.public-v2 .v2-site-header .nav-links a {
    white-space: nowrap;
}

.v2-profile-announcement {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    min-height: 34px;
    border-bottom: 1px solid rgba(255, 120, 31, 0.14);
    background: rgba(49, 27, 17, 0.7);
    color: var(--v2-text-muted);
    font-size: 0.74rem;
    font-weight: 760;
}

.v2-profile-announcement a {
    color: var(--v2-orange);
    font-weight: 900;
}

.v2-profile-shell,
.v2-profile-not-found {
    width: min(var(--v2-content-width), calc(100vw - 36px));
    max-width: calc(100vw - 36px);
    margin-inline: auto;
}

.v2-profile-not-found {
    min-height: 60vh;
    padding: 80px 0;
}

.v2-profile-not-found h1 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 5vw, 4rem);
}

.v2-profile-data-warning {
    margin-top: 18px;
    border: 1px solid rgba(255, 183, 77, 0.34);
    border-radius: 8px;
    padding: 11px 14px;
    background: rgba(74, 45, 18, 0.7);
    color: #ffe0ad;
    font-size: 0.78rem;
    font-weight: 800;
}

.v2-profile-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(600px, 1.36fr);
    gap: 28px;
    align-items: stretch;
    padding: 34px 0 16px;
}

.v2-profile-identity {
    display: grid;
    grid-template-columns: 142px minmax(0, 1fr);
    grid-template-rows: minmax(0, auto) auto;
    gap: 22px 26px;
    align-content: center;
    min-width: 0;
    padding: 10px 0 8px;
}

.v2-profile-logo {
    display: grid;
    place-items: center;
    width: 142px;
    aspect-ratio: 1;
    overflow: hidden;
    border: 1px solid rgba(255, 120, 31, 0.5);
    border-radius: 8px;
    background: linear-gradient(145deg, #ff8c35, #db5a0d);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
    color: #210d04;
}

.v2-profile-logo span {
    font-size: 2.6rem;
    font-weight: 950;
}

.v2-profile-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v2-profile-identity-copy {
    min-width: 0;
    align-self: center;
}

.v2-profile-identity h1 {
    margin: 0;
    max-width: 100%;
    color: var(--v2-text);
    font-size: clamp(2.55rem, 4.1vw, 4.2rem);
    line-height: 0.98;
    letter-spacing: 0;
    overflow-wrap: anywhere;
}

.v2-profile-category {
    margin: 9px 0 0;
    color: var(--v2-orange);
    font-size: 0.86rem;
    font-weight: 900;
}

.v2-profile-description {
    max-width: 460px;
    margin: 13px 0 0;
    color: var(--v2-text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.v2-profile-proof,
.v2-profile-follow-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-top: 13px;
    color: var(--v2-text-muted);
    font-size: 0.75rem;
}

.v2-profile-rating {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.v2-profile-rating > span:first-child,
.v2-profile-review-stars {
    color: var(--v2-orange);
}

.v2-profile-verified {
    color: #dcebe1;
    font-weight: 850;
}

.v2-profile-verified span {
    display: inline-grid;
    place-items: center;
    width: 17px;
    height: 17px;
    margin-right: 4px;
    border-radius: 50%;
    background: rgba(59, 209, 111, 0.16);
    color: var(--v2-green);
}

.v2-profile-follow-line button {
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--v2-orange);
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}

.v2-profile-actions {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
    width: min(100%, 520px);
}

.v2-profile-actions .v2-profile-book-action {
    grid-column: 1 / -1;
}

.v2-profile-live-card,
.v2-profile-menu-panel,
.v2-profile-schedule-panel,
.v2-profile-photos,
.v2-profile-reviews,
.v2-profile-faqs {
    border: 1px solid var(--v2-border);
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(27, 27, 30, 0.94), rgba(15, 15, 17, 0.96));
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
}

.v2-profile-live-card {
    min-width: 0;
    padding: 22px;
}

.v2-profile-live-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--v2-border);
    padding-bottom: 17px;
}

.v2-profile-live-top section {
    display: grid;
    align-content: start;
    gap: 6px;
    min-width: 0;
    padding: 0 18px;
}

.v2-profile-live-top section:first-child {
    padding-left: 0;
    border-right: 1px solid var(--v2-border);
}

.v2-profile-live-top section:last-child {
    padding-right: 0;
}

.v2-profile-label {
    margin: 0;
    color: #9f978d;
    font-size: 0.62rem;
    font-weight: 900;
    text-transform: uppercase;
}

.v2-profile-live-top .v2-status {
    justify-self: start;
}

.v2-profile-live-top strong,
.v2-profile-current-location strong,
.v2-profile-next-stop strong {
    color: var(--v2-text);
    font-size: 0.82rem;
    line-height: 1.35;
}

.v2-profile-live-top small,
.v2-profile-current-location small,
.v2-profile-next-stop small {
    color: #9d958c;
    font-size: 0.67rem;
    line-height: 1.4;
}

.v2-profile-live-body {
    display: grid;
    grid-template-columns: minmax(180px, 1.1fr) minmax(155px, 0.8fr) minmax(132px, 0.62fr);
    gap: 14px;
    padding-top: 16px;
}

.v2-profile-location-stack {
    display: grid;
    align-content: start;
    gap: 14px;
    min-width: 0;
}

.v2-profile-current-location,
.v2-profile-next-stop {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.v2-profile-current-location span,
.v2-profile-next-stop span {
    color: var(--v2-text-muted);
    font-size: 0.71rem;
    line-height: 1.35;
}

.v2-profile-current-location a,
.v2-profile-next-stop a {
    justify-self: start;
    margin-top: 3px;
    color: var(--v2-text);
    font-size: 0.68rem;
    font-weight: 850;
}

.v2-profile-next-stop {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 13px;
}

.v2-profile-mini-map {
    min-width: 0;
    min-height: 164px;
    overflow: hidden;
    border: 1px solid var(--v2-border);
    border-radius: 8px;
    background: #101114;
}

.v2-profile-mini-map .nommad-leaflet-map {
    width: 100%;
    height: 100%;
    min-height: 164px;
    border: 0;
    border-radius: 0;
}

.v2-profile-share-card {
    display: grid;
    place-items: center;
    align-content: start;
    gap: 5px;
    min-width: 0;
    border-left: 1px solid var(--v2-border);
    padding-left: 14px;
    text-align: center;
}

.v2-profile-share-card > span {
    color: var(--v2-text-muted);
    font-size: 0.64rem;
    line-height: 1.35;
}

.v2-profile-share-card img {
    width: 108px;
    height: 108px;
    margin: 4px auto;
    border-radius: 7px;
    background: #fff;
}

.v2-profile-share-actions {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.v2-profile-share-actions button {
    border: 0;
    padding: 2px;
    background: transparent;
    color: var(--v2-text-muted);
    font: inherit;
    font-size: 0.65rem;
    font-weight: 850;
    cursor: pointer;
}

.v2-profile-social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 9px;
    margin-top: 2px;
}

.v2-profile-social-links a {
    color: var(--v2-accent);
    font-size: 0.62rem;
    font-weight: 850;
}

.v2-profile-tabs {
    position: sticky;
    top: 64px;
    z-index: 24;
    display: flex;
    align-items: center;
    gap: 22px;
    min-height: 48px;
    margin: 0 0 16px;
    overflow-x: auto;
    border: 1px solid var(--v2-border);
    border-radius: 8px;
    padding: 0 16px;
    background: rgba(17, 17, 19, 0.94);
    backdrop-filter: blur(16px);
    scrollbar-width: none;
}

.v2-profile-tabs::-webkit-scrollbar {
    display: none;
}

.v2-profile-tabs a {
    position: relative;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    min-height: 46px;
    color: var(--v2-text-muted);
    font-size: 0.74rem;
    font-weight: 850;
}

.v2-profile-tabs a::after {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 2px;
    background: var(--v2-orange);
    content: "";
    opacity: 0;
}

.v2-profile-tabs a.is-active,
.v2-profile-tabs a:hover {
    color: var(--v2-text);
}

.v2-profile-tabs a.is-active::after {
    opacity: 1;
}

.v2-profile-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.72fr) minmax(315px, 0.78fr);
    gap: 16px;
    align-items: start;
}

.v2-profile-menu-panel,
.v2-profile-schedule-panel,
.v2-profile-photos,
.v2-profile-reviews,
.v2-profile-faqs {
    min-width: 0;
    padding: 20px;
    scroll-margin-top: 122px;
}

.v2-profile-section-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 14px;
}

.v2-profile-section-heading.compact {
    margin-bottom: 13px;
}

.v2-profile-section-heading h2 {
    margin: 0;
    color: var(--v2-text);
    font-size: 1.18rem;
    line-height: 1.15;
}

.v2-profile-section-heading small {
    color: #948c82;
    font-size: 0.64rem;
}

.v2-profile-special {
    display: grid;
    grid-template-columns: minmax(0, auto) auto;
    gap: 1px 10px;
    min-width: min(260px, 42%);
    border: 1px solid rgba(255, 120, 31, 0.24);
    border-radius: 8px;
    padding: 9px 12px;
    background: rgba(255, 120, 31, 0.06);
}

.v2-profile-special span {
    grid-column: 1 / -1;
    color: var(--v2-orange);
    font-size: 0.6rem;
    font-weight: 900;
}

.v2-profile-special strong,
.v2-profile-special b {
    color: var(--v2-text);
    font-size: 0.72rem;
}

.v2-profile-special b {
    color: var(--v2-orange);
    text-align: right;
}

.v2-profile-menu-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 4px 0 14px;
}

.v2-profile-menu-filters button {
    min-height: 29px;
    border: 1px solid var(--v2-border);
    border-radius: 999px;
    padding: 0 13px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--v2-text-muted);
    font: inherit;
    font-size: 0.67rem;
    font-weight: 850;
    cursor: pointer;
}

.v2-profile-menu-filters button.is-active {
    border-color: var(--v2-orange);
    background: var(--v2-orange);
    color: #160905;
}

.v2-profile-menu-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 22px;
}

.v2-profile-menu-category {
    min-width: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 13px 0 7px;
}

.v2-profile-menu-category:nth-child(-n + 2) {
    border-top: 0;
}

.v2-profile-menu-category h3 {
    margin: 0 0 8px;
    color: var(--v2-orange);
    font-size: 0.86rem;
}

.v2-profile-menu-category ol {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.v2-profile-menu-category li {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.055);
    padding: 8px 0;
}

.v2-profile-menu-category li:last-child {
    border-bottom: 0;
}

.v2-profile-menu-category li.is-sold-out {
    opacity: 0.58;
}

.v2-profile-menu-category li > div {
    min-width: 0;
}

.v2-profile-menu-category li strong,
.v2-profile-menu-category li > b {
    color: var(--v2-text);
    font-size: 0.74rem;
    line-height: 1.3;
}

.v2-profile-menu-category li > b {
    white-space: nowrap;
}

.v2-profile-menu-category li p {
    margin: 3px 0 0;
    color: #9b938a;
    font-size: 0.62rem;
    font-style: italic;
    line-height: 1.35;
}

.v2-profile-menu-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 5px;
}

.v2-profile-menu-tags small {
    border-radius: 4px;
    padding: 2px 5px;
    background: rgba(255, 255, 255, 0.07);
    color: #aea69c;
    font-size: 0.52rem;
    font-style: normal;
    font-weight: 800;
}

.v2-profile-menu-tags small.is-available {
    background: rgba(59, 209, 111, 0.14);
    color: #8ee8ad;
}

.v2-profile-menu-tags small.is-unavailable {
    background: rgba(255, 101, 79, 0.16);
    color: #ffada1;
}

.v2-profile-schedule-panel {
    position: sticky;
    top: 128px;
}

.v2-profile-today-stop {
    display: grid;
    gap: 4px;
    margin: 0 0 15px;
    border: 1px solid rgba(255, 120, 31, 0.2);
    border-radius: 8px;
    padding: 12px;
    background: linear-gradient(100deg, rgba(77, 40, 22, 0.56), rgba(25, 20, 18, 0.34));
}

.v2-profile-today-stop strong {
    color: var(--v2-text);
    font-size: 0.76rem;
}

.v2-profile-today-stop span,
.v2-profile-today-stop small {
    color: var(--v2-text-muted);
    font-size: 0.65rem;
}

.v2-profile-schedule-timeline {
    display: grid;
    gap: 0;
}

.v2-profile-schedule-timeline > .v2-profile-label {
    margin-bottom: 8px;
}

.v2-profile-schedule-timeline article {
    position: relative;
    display: grid;
    grid-template-columns: 14px minmax(0, 1fr);
    gap: 8px;
    min-height: 68px;
    padding-bottom: 12px;
}

.v2-profile-schedule-timeline article:not(:last-of-type)::before {
    position: absolute;
    top: 10px;
    bottom: -2px;
    left: 5px;
    width: 1px;
    background: rgba(255, 255, 255, 0.13);
    content: "";
}

.v2-profile-timeline-dot {
    position: relative;
    z-index: 1;
    width: 10px;
    height: 10px;
    margin-top: 3px;
    border: 2px solid #0e0e10;
    border-radius: 50%;
    background: var(--v2-orange);
    box-shadow: 0 0 0 1px rgba(255, 120, 31, 0.35);
}

.v2-profile-schedule-timeline article p {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin: 0;
    color: var(--v2-text-muted);
    font-size: 0.62rem;
}

.v2-profile-schedule-timeline article h3 {
    margin: 4px 0 2px;
    color: var(--v2-text);
    font-size: 0.74rem;
    line-height: 1.25;
}

.v2-profile-schedule-timeline article small {
    display: block;
    color: #8f887f;
    font-size: 0.58rem;
    line-height: 1.35;
}

.v2-profile-event-badge {
    display: inline-block;
    margin-top: 4px;
    border-radius: 4px;
    padding: 2px 5px;
    background: rgba(255, 120, 31, 0.13);
    color: #ffab72;
    font-size: 0.54rem;
    font-weight: 850;
}

.v2-profile-schedule-more {
    width: 100%;
    min-height: 34px;
    border: 1px solid var(--v2-border);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.035);
    color: var(--v2-text-muted);
    font: inherit;
    font-size: 0.65rem;
    font-weight: 850;
    cursor: pointer;
}

.v2-profile-empty-state {
    display: grid;
    gap: 5px;
    min-height: 90px;
    place-content: center;
    border: 1px dashed rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 18px;
    text-align: center;
}

.v2-profile-empty-state strong {
    color: var(--v2-text);
    font-size: 0.82rem;
}

.v2-profile-empty-state span {
    color: var(--v2-text-muted);
    font-size: 0.68rem;
}

.v2-profile-social-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.85fr);
    gap: 16px;
    margin-top: 16px;
}

.v2-profile-social-grid.has-no-gallery {
    grid-template-columns: 1fr;
}

.v2-profile-faqs {
    margin-top: 16px;
}

.v2-profile-faq-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.v2-profile-faq-list details {
    min-width: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 13px 14px;
    background: rgba(255, 255, 255, 0.025);
}

.v2-profile-faq-list summary {
    color: var(--v2-text);
    font-size: 0.78rem;
    font-weight: 850;
    line-height: 1.35;
    cursor: pointer;
}

.v2-profile-faq-list p {
    margin: 9px 0 0;
    color: var(--v2-text-muted);
    font-size: 0.7rem;
    line-height: 1.55;
}

.v2-profile-gallery {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 9px;
}

.v2-profile-gallery a {
    min-width: 0;
    aspect-ratio: 1.06;
    overflow: hidden;
    border-radius: 7px;
    background: #0e0e10;
}

.v2-profile-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 180ms ease;
}

.v2-profile-gallery a:hover img {
    transform: scale(1.035);
}

.v2-profile-review-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.v2-profile-review-list article {
    min-width: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 13px;
    background: rgba(255, 255, 255, 0.025);
}

.v2-profile-review-list article > div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.v2-profile-review-avatar {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    border-radius: 50%;
    background: rgba(255, 120, 31, 0.2);
    color: var(--v2-orange);
    font-size: 0.7rem;
    font-weight: 900;
}

.v2-profile-review-list article p {
    display: grid;
    gap: 1px;
    margin: 0;
}

.v2-profile-review-list article strong {
    color: var(--v2-text);
    font-size: 0.67rem;
}

.v2-profile-review-list article small {
    color: #8f887f;
    font-size: 0.56rem;
}

.v2-profile-review-stars {
    display: flex !important;
    grid-auto-flow: column;
    justify-content: start;
    gap: 1px !important;
    margin-top: 8px !important;
    font-size: 0.64rem;
}

.v2-profile-review-list blockquote {
    margin: 9px 0 0;
    color: var(--v2-text-muted);
    font-size: 0.66rem;
    line-height: 1.48;
}

.v2-profile-booking-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin: 16px 0 28px;
    border: 1px solid rgba(255, 120, 31, 0.2);
    border-radius: 8px;
    padding: 24px 28px;
    background: linear-gradient(100deg, rgba(23, 23, 25, 0.96) 0%, rgba(32, 24, 20, 0.96) 62%, rgba(77, 39, 19, 0.82) 100%);
}

.v2-profile-booking-cta h2 {
    margin: 0;
    color: var(--v2-text);
    font-size: 1.2rem;
}

.v2-profile-booking-cta p:not(.v2-eyebrow) {
    margin: 6px 0 0;
    color: var(--v2-text-muted);
    font-size: 0.75rem;
}

.v2-profile-booking-cta > .v2-button {
    min-width: 240px;
}

.v2-profile-form-message {
    margin-top: 10px;
    border: 1px solid;
    border-radius: 7px;
    padding: 9px 11px;
    font-size: 0.72rem;
    font-weight: 800;
}

.v2-profile-form-message.is-success {
    border-color: rgba(59, 209, 111, 0.45);
    background: rgba(24, 74, 43, 0.45);
    color: #a5f2bf;
}

.v2-profile-form-message.is-error {
    border-color: rgba(255, 101, 79, 0.5);
    background: rgba(91, 30, 25, 0.44);
    color: #ffb2a8;
}

.v2-profile-modal .modal-card {
    width: min(680px, calc(100vw - 28px));
    max-height: min(84vh, 780px);
    overflow-y: auto;
    border-radius: 8px;
    background: #18181b;
}

.v2-profile-modal .modal-heading h2 {
    margin: 0;
    color: var(--v2-text);
    font-size: 1.35rem;
}

.v2-profile-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.v2-profile-form label,
.v2-profile-form fieldset {
    display: grid;
    gap: 6px;
    min-width: 0;
    margin: 0;
    color: var(--v2-text);
    font-size: 0.7rem;
    font-weight: 800;
}

.v2-profile-form input,
.v2-profile-form textarea {
    width: 100%;
    min-width: 0;
    border: 1px solid var(--v2-border);
    border-radius: 7px;
    padding: 10px 11px;
    background: #0d0d0f;
    color: var(--v2-text);
    font: inherit;
}

.v2-profile-form fieldset,
.v2-profile-form .span-2 {
    grid-column: 1 / -1;
}

.v2-profile-form fieldset {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid var(--v2-border);
    border-radius: 7px;
    padding: 10px;
}

.v2-profile-form fieldset legend {
    padding: 0 5px;
}

.v2-profile-form fieldset label {
    display: flex;
    align-items: center;
    gap: 6px;
}

.v2-profile-form fieldset input {
    width: auto;
}

.v2-profile-form > p {
    margin: 0;
    color: var(--v2-text-muted);
    font-size: 0.64rem;
    font-weight: 500;
}

.v2-profile-mobile-actions {
    display: none;
}

body.page-vendor-profile.public-v2 .v2-status-offline {
    background: rgba(255, 255, 255, 0.09);
    color: #c0b8ae;
}

body.page-vendor-profile.public-v2 button:focus-visible,
body.page-vendor-profile.public-v2 a:focus-visible,
body.page-vendor-profile.public-v2 input:focus-visible,
body.page-vendor-profile.public-v2 textarea:focus-visible {
    outline: 2px solid rgba(255, 120, 31, 0.78);
    outline-offset: 2px;
}

@media (max-width: 1120px) {
    .v2-profile-hero {
        grid-template-columns: minmax(0, 0.84fr) minmax(530px, 1.16fr);
        gap: 20px;
    }

    .v2-profile-identity {
        grid-template-columns: 116px minmax(0, 1fr);
        gap: 20px;
    }

    .v2-profile-logo {
        width: 116px;
    }

    .v2-profile-live-body {
        grid-template-columns: minmax(170px, 1fr) minmax(132px, 0.74fr);
    }

    .v2-profile-share-card {
        grid-column: 1 / -1;
        grid-template-columns: auto minmax(0, 1fr) auto;
        place-items: center start;
        border-top: 1px solid var(--v2-border);
        border-left: 0;
        padding-top: 12px;
        padding-left: 0;
        text-align: left;
    }

    .v2-profile-share-card .v2-profile-label,
    .v2-profile-share-card > span {
        grid-column: 2;
    }

    .v2-profile-share-card img {
        grid-row: 1 / span 2;
        width: 64px;
        height: 64px;
        margin: 0;
    }

    .v2-profile-share-actions {
        grid-column: 3;
        grid-row: 1 / span 2;
    }
}

@media (max-width: 920px) {
    .v2-profile-hero,
    .v2-profile-content-grid {
        grid-template-columns: 1fr;
    }

    .v2-profile-identity {
        grid-template-columns: 126px minmax(0, 1fr);
        padding: 8px 4px;
    }

    .v2-profile-logo {
        width: 126px;
    }

    .v2-profile-actions {
        width: 100%;
    }

    .v2-profile-live-body {
        grid-template-columns: minmax(0, 1fr) minmax(200px, 0.8fr) minmax(145px, 0.55fr);
    }

    .v2-profile-share-card {
        grid-column: auto;
        display: grid;
        grid-template-columns: 1fr;
        place-items: center;
        border-top: 0;
        border-left: 1px solid var(--v2-border);
        padding-top: 0;
        padding-left: 14px;
        text-align: center;
    }

    .v2-profile-share-card .v2-profile-label,
    .v2-profile-share-card > span,
    .v2-profile-share-card img,
    .v2-profile-share-actions {
        grid-column: auto;
        grid-row: auto;
    }

    .v2-profile-share-card img {
        width: 94px;
        height: 94px;
    }

    .v2-profile-schedule-panel {
        position: static;
    }

    .v2-profile-social-grid {
        grid-template-columns: 1fr;
    }

    .v2-profile-faq-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    body.page-vendor-profile.public-v2 main {
        background:
            linear-gradient(180deg, rgba(8, 8, 9, 0.25), rgba(8, 8, 9, 0.94) 44rem, var(--v2-bg) 70rem),
            url("../img/nommad-city-map-bg-v2.png") center -30px / 980px auto no-repeat,
            var(--v2-bg);
    }

    .v2-profile-announcement {
        justify-content: flex-start;
        gap: 10px;
        min-width: 0;
        padding: 0 12px;
        overflow: hidden;
        font-size: 0.64rem;
        white-space: nowrap;
    }

    .v2-profile-announcement span {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .v2-profile-shell,
    .v2-profile-not-found {
        width: min(100% - 20px, var(--v2-content-width));
        max-width: calc(100vw - 20px);
    }

    .v2-profile-hero {
        gap: 14px;
        padding-top: 20px;
    }

    .v2-profile-identity {
        grid-template-columns: 96px minmax(0, 1fr);
        gap: 16px;
        padding: 0;
    }

    .v2-profile-logo {
        width: 96px;
    }

    .v2-profile-logo span {
        font-size: 2rem;
    }

    .v2-profile-identity h1 {
        font-size: clamp(2rem, 10vw, 2.8rem);
    }

    .v2-profile-description {
        grid-column: 1 / -1;
        font-size: 0.8rem;
    }

    .v2-profile-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
    }

    .v2-profile-actions .v2-profile-book-action {
        grid-column: auto;
    }

    .v2-profile-actions .v2-button {
        min-width: 0;
        padding-inline: 8px;
        font-size: 0.68rem;
    }

    .v2-profile-live-card,
    .v2-profile-menu-panel,
    .v2-profile-schedule-panel,
    .v2-profile-photos,
    .v2-profile-reviews,
    .v2-profile-faqs {
        padding: 15px;
    }

    .v2-profile-live-top section {
        padding-inline: 12px;
    }

    .v2-profile-live-body {
        grid-template-columns: minmax(0, 1fr) 138px;
    }

    .v2-profile-location-stack {
        grid-column: 1;
    }

    .v2-profile-mini-map {
        grid-column: 2;
        min-height: 150px;
    }

    .v2-profile-mini-map .nommad-leaflet-map {
        min-height: 150px;
    }

    .v2-profile-share-card {
        grid-column: 1 / -1;
        grid-template-columns: auto minmax(0, 1fr) auto;
        place-items: center start;
        border-top: 1px solid var(--v2-border);
        border-left: 0;
        padding-top: 12px;
        padding-left: 0;
        text-align: left;
    }

    .v2-profile-share-card .v2-profile-label,
    .v2-profile-share-card > span {
        grid-column: 2;
    }

    .v2-profile-share-card img {
        grid-column: 1;
        grid-row: 1 / span 2;
        width: 64px;
        height: 64px;
        margin: 0;
    }

    .v2-profile-share-actions {
        grid-column: 3;
        grid-row: 1 / span 2;
    }

    .v2-profile-social-links {
        grid-column: 2 / -1;
        justify-content: flex-start;
    }

    .v2-profile-tabs {
        top: 63px;
        gap: 18px;
        margin-inline: -1px;
    }

    .v2-profile-menu-layout,
    .v2-profile-review-list {
        grid-template-columns: 1fr;
    }

    .v2-profile-menu-category:nth-child(2) {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .v2-profile-section-heading {
        align-items: stretch;
        flex-direction: column;
    }

    .v2-profile-special {
        min-width: 0;
        width: 100%;
    }

    .v2-profile-gallery {
        display: flex;
        margin-right: -15px;
        padding-right: 15px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .v2-profile-gallery a {
        flex: 0 0 72%;
        scroll-snap-align: start;
    }

    .v2-profile-booking-cta {
        align-items: stretch;
        flex-direction: column;
        padding: 20px;
    }

    .v2-profile-booking-cta > .v2-button {
        width: 100%;
        min-width: 0;
    }

    .v2-profile-form {
        grid-template-columns: 1fr;
    }

    .v2-profile-form fieldset,
    .v2-profile-form .span-2 {
        grid-column: 1;
    }

    .v2-profile-form fieldset {
        grid-template-columns: 1fr;
    }

    body.page-vendor-profile.public-v2 .v2-mobile-bottom-nav {
        display: none;
    }

    .v2-profile-mobile-actions {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 45;
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: 1fr;
        min-height: 58px;
        padding: 7px max(10px, env(safe-area-inset-right)) calc(7px + env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
        border-top: 1px solid rgba(255, 255, 255, 0.13);
        background: rgba(12, 12, 14, 0.96);
        backdrop-filter: blur(18px);
    }

    .v2-profile-mobile-actions a,
    .v2-profile-mobile-actions button {
        display: grid;
        place-items: center;
        min-width: 0;
        border: 0;
        border-right: 1px solid rgba(255, 255, 255, 0.08);
        padding: 0 4px;
        background: transparent;
        color: var(--v2-text);
        font: inherit;
        font-size: 0.65rem;
        font-weight: 850;
    }

    .v2-profile-mobile-actions > :last-child {
        border-right: 0;
        color: var(--v2-orange);
    }

    body.page-vendor-profile.public-v2 .v2-site-footer {
        padding-bottom: 74px;
    }
}

@media (max-width: 430px) {
    .v2-profile-identity {
        grid-template-columns: 84px minmax(0, 1fr);
        gap: 13px;
    }

    .v2-profile-logo {
        width: 84px;
    }

    .v2-profile-identity h1 {
        font-size: 2rem;
    }

    .v2-profile-category,
    .v2-profile-proof,
    .v2-profile-follow-line {
        font-size: 0.66rem;
    }

    .v2-profile-live-top {
        grid-template-columns: 1fr;
    }

    .v2-profile-live-top section {
        padding: 0;
    }

    .v2-profile-live-top section:first-child {
        border-right: 0;
        border-bottom: 1px solid var(--v2-border);
        padding-bottom: 12px;
    }

    .v2-profile-live-top section:last-child {
        padding-top: 12px;
    }

    .v2-profile-live-body {
        grid-template-columns: 1fr;
    }

    .v2-profile-location-stack,
    .v2-profile-mini-map,
    .v2-profile-share-card {
        grid-column: 1;
    }

    .v2-profile-share-card {
        grid-template-columns: 58px minmax(0, 1fr);
    }

    .v2-profile-share-card img {
        width: 58px;
        height: 58px;
    }

    .v2-profile-share-actions {
        grid-column: 2;
        grid-row: 3;
        justify-content: flex-start;
    }

    .v2-profile-menu-category li {
        gap: 8px;
    }
}
