* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================
   Location modal (Country/City/Area/Subway)
   ========================= */
body.eg-modal-open {
    overflow: hidden;
}

.eg-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.eg-modal[hidden] {
    display: none !important;
}

.eg-modal__backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(120% 120% at 50% 30%,
            rgba(198, 9, 151, 0.10) 0%,
            rgba(124, 58, 237, 0.06) 28%,
            rgba(0, 0, 0, 0.76) 68%,
            rgba(0, 0, 0, 0.82) 100%),
        rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(10px) saturate(120%);
    -webkit-backdrop-filter: blur(10px) saturate(120%);
}

.eg-modal__panel {
    position: relative;
    width: min(1100px, 100%);
    max-height: calc(100vh - 90px);
    background:
        radial-gradient(140% 120% at 18% 0%,
            rgba(198, 9, 151, 0.10) 0%,
            rgba(124, 58, 237, 0.06) 32%,
            rgba(0,0,0,0.00) 62%,
            rgba(255,255,255,0.00) 100%),
        rgba(6, 13, 28, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    box-shadow:
        0 34px 100px rgba(0, 0, 0, 0.78),
        0 0 0 1px rgba(255,255,255,0.04) inset,
        0 0 34px rgba(198, 9, 151, 0.10),
        0 0 48px rgba(124, 58, 237, 0.06);
    overflow: hidden;
}

/* Neon edge glow (top + bottom) so panel doesn't blend */
.eg-modal__panel::before,
.eg-modal__panel::after{
    content:'';
    position:absolute;
    left: 18px;
    right: 18px;
    height: 2px;
    border-radius: 999px;
    pointer-events:none;
    z-index: 2;
    background: linear-gradient(90deg,
        rgba(198,9,151,0.00) 0%,
        rgba(198,9,151,0.55) 18%,
        rgba(124,58,237,0.38) 50%,
        rgba(198,9,151,0.55) 82%,
        rgba(198,9,151,0.00) 100%);
    box-shadow:
        0 0 12px rgba(198,9,151,0.18),
        0 0 18px rgba(124,58,237,0.10);
    opacity: 0.70;
}
.eg-modal__panel::before{ top: -1px; }
.eg-modal__panel::after{ bottom: -1px; opacity: 0.55; }

.eg-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.eg-modal__title {
    font-family: 'SF Pro Display', sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

.eg-modal__close {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.eg-modal__close:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-1px);
}

.eg-modal__search {
    padding: 12px 16px 0;
}

.eg-modal__search-input {
    width: 100%;
    height: 42px;
    padding: 0 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.92);
    font-family: 'SF Pro Text', sans-serif;
    font-size: 14px;
    outline: none;
}

.eg-modal__search-input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.eg-modal__search-input:focus {
    border-color: rgba(237, 128, 194, 0.6);
    box-shadow: 0 0 0 4px rgba(237, 128, 194, 0.12);
}

.eg-modal__body {
    padding: 12px 16px 16px;
    overflow: auto;
    max-height: calc(100vh - 90px - 52px - 54px);
    scrollbar-gutter: stable;
    /* Firefox */
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.28) rgba(255, 255, 255, 0.06);
}

.eg-modal__body::-webkit-scrollbar {
    width: 10px;
}

.eg-modal__body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 999px;
}

.eg-modal__body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    border: 2px solid rgba(6, 13, 28, 0.92);
}

.eg-modal__body::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.28);
}

.eg-modal__body::-webkit-scrollbar-thumb:active {
    background: rgba(237, 128, 194, 0.35);
}

.eg-loc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.eg-loc-group {
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    padding: 12px;
    min-width: 0;
}

.eg-loc-letter {
    font-family: 'SF Pro Text', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    /* Same pink accent as "SHOW PHONE" button */
    color: #C60997;
    text-shadow: 0 0 10px rgba(198, 9, 151, 0.35);
    margin-bottom: 12px;
}

.eg-loc-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.eg-loc-item {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-family: 'SF Pro Text', sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 1.2;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.eg-loc-item:hover {
    background: linear-gradient(126deg, rgba(98, 83, 184, 0.40) 0%, rgba(237, 128, 194, 0.35) 100%);
    border-color: rgba(255, 255, 255, 0.20);
    transform: translateY(-1px);
}

.eg-loc-item:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(98, 83, 184, 0.20);
}

.eg-loc-item--disabled {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
}

.eg-loc-empty {
    padding: 16px 12px;
    color: rgba(255, 255, 255, 0.65);
    font-family: 'SF Pro Text', sans-serif;
    font-size: 14px;
    text-align: center;
    border: 1px dashed rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
}

@media (max-width: 640px) {
    .eg-modal {
        padding: 10px;
    }
    .eg-modal__panel {
        border-radius: 14px;
    }
    .eg-modal__header {
        padding: 14px 14px;
    }
    .eg-modal__search {
        padding: 12px 14px 0;
    }
    .eg-modal__body {
        padding: 12px 14px 14px;
    }
    .eg-loc-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .eg-loc-item {
        white-space: normal;
    }
}

html {
    background-color: #060D1C;
    width: 100%;
    overflow-x: hidden;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #060D1C;
    color: #FFFFFF;
    width: 100%;
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.top-nav {
    background: linear-gradient(180deg, rgba(6, 13, 28, 0.98) 0%, rgba(6, 13, 28, 0.92) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 6000;
    padding: 10px 0;
}

.nav-container {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    /* No left gutter on desktop */
    padding: 0 20px;
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    align-items: center;
    justify-content: space-between;
    gap: clamp(10px, 1.5vw, 20px);
    flex-wrap: nowrap;
    position: relative;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    min-height: auto;
}

.mobile-menu-toggle,
.account-mobile-menu-toggle {
    grid-column: 1;
    justify-self: start;
}

.nav-logo {
    grid-column: 2;
    justify-self: start;
    margin-right: 0;
    flex-shrink: 0;
}

.nav-menu {
    overflow: visible;
}

.nav-menu-mobile {
    display: none;
}

.nav-logo .logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

/* Text logo (mobile) */
.logo-text{display:none}
.logo-text__escort{font-weight:800;letter-spacing:.06em}
.logo-text__global{font-weight:600;letter-spacing:.02em;opacity:.9}

.nav-logo .logo-link:hover {
    opacity: 0.8;
}

.logo-image {
    height: 100%;
    max-height: 82px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 6px;
    flex: 0 0 auto;
    min-width: 0;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
    grid-column: 3;
    justify-self: center;
    position: static;
    left: auto;
    transform: none;
    padding: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

/* Subtle neon edge glow (bottom) for main menu pill */
.nav-menu::after{
    content:'';
    position:absolute;
    left: 10px;
    right: 10px;
    bottom: -2px;
    height: 2px;
    border-radius: 999px;
    pointer-events:none;
    z-index:2;
    background: linear-gradient(90deg,
        rgba(198,9,151,0.00) 0%,
        rgba(198,9,151,0.55) 18%,
        rgba(124,58,237,0.38) 50%,
        rgba(198,9,151,0.55) 82%,
        rgba(198,9,151,0.00) 100%);
    box-shadow:
        0 0 10px rgba(198,9,151,0.18),
        0 0 14px rgba(124,58,237,0.10);
    opacity: 0.65;
}

.nav-item {
    display: inline-block;
    align-items: center;
    margin: 0;
    padding: 0;
    vertical-align: middle;
}

.nav-link {
    font-family: 'SF Pro Text', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    position: relative;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    padding: 10px 14px;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0;
    white-space: nowrap;
    flex-shrink: 0;
    vertical-align: middle;
    opacity: 1;
    border-radius: 999px;
    border: 1px solid transparent;
}

.nav-label {
    display: block;
}

.nav-underline {
    width: 117px;
    height: 2px;
    background: #C60997;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 1px;
}

.nav-link.active .nav-underline {
    opacity: 1;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.98);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.10);
    transform: translateY(-1px);
}

.nav-link:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(198, 9, 151, 0.18);
    border-color: rgba(198, 9, 151, 0.35);
}

.nav-item .nav-link.active {
    position: relative;
    margin-left: 0;
    margin-right: 0;
    color: #FFFFFF;
    font-weight: 700;
    background: linear-gradient(126deg, rgba(98, 83, 184, 0.40) 0%, rgba(237, 128, 194, 0.30) 100%);
    border-color: rgba(198, 9, 151, 0.35);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25), 0 0 18px rgba(198, 9, 151, 0.10);
}

.nav-item .nav-link.active::after {
    content: none;
}

.nav-link.active {
    color: #FFFFFF;
    font-weight: 700;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: clamp(8px, 1.2vw, 20px);
    flex-shrink: 0;
    grid-column: 4;
    justify-self: end;
    margin-left: 0;
}

.language-selector {
    position: relative;
    z-index: 5000;
}

.lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'SF Pro Text', sans-serif;
    font-size: clamp(11px, 1vw, 14px);
    white-space: nowrap;
    flex-shrink: 0;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.lang-icon {
    width: 20px;
    height: 20px;
}

.lang-btn .lang-flag {
    flex-shrink: 0;
    width: 20px;
    height: 15px;
}

.lang-text {
    display: none;
}

.lang-arrow {
    width: 8px;
    height: 5px;
    transition: transform 0.3s ease;
}

.lang-btn.active .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(6, 13, 28, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    will-change: opacity;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
    z-index: 5001;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #FFFFFF;
    text-decoration: none !important;
    transition: background 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.lang-flag {
    width: 20px;
    height: 15px;
    border-radius: 2px;
}

.lang-flag-emoji {
    font-size: 18px;
    line-height: 1;
    display: inline-block;
}

.profile-type-selector {
    position: relative;
    z-index: 1002;
}

.profile-type-btn {
    display: flex;
    align-items: center;
    gap: clamp(4px, 0.5vw, 8px);
    padding: clamp(6px, 0.7vw, 8px) clamp(8px, 1vw, 12px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'SF Pro Text', sans-serif;
    font-size: clamp(11px, 1vw, 14px);
    white-space: nowrap;
    flex-shrink: 0;
}

.profile-type-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.profile-type-icon {
    width: 20px;
    height: 20px;
}

.profile-type-text {
    text-transform: capitalize;
}

.profile-type-arrow {
    width: 8px;
    height: 5px;
    transition: transform 0.3s ease;
}

.profile-type-btn.active .profile-type-arrow {
    transform: rotate(180deg);
}

.profile-type-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(6, 13, 28, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    min-width: 180px;
    max-width: 300px;
    max-height: 400px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.profile-type-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.profile-type-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #FFFFFF;
    text-decoration: none !important;
    transition: background 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.profile-type-option:last-child {
    border-bottom: none;
}

.profile-type-option:hover {
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.profile-type-option.active {
    background: rgba(198, 9, 151, 0.2);
    color: #C60997;
}

.account-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid #C60997;
    border-radius: 50%;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: 'SF Pro Text', sans-serif;
    font-size: clamp(11px, 1vw, 14px);
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none;
}

.account-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(198, 9, 151, 0.3), transparent);
    transition: left 0.5s;
}

.account-btn:hover {
    border-color: #ff00ff;
    box-shadow: 0 0 10px rgba(198, 9, 151, 0.5);
    text-decoration: none;
}

.account-btn:hover::before {
    left: 100%;
}

.account-btn:hover .account-text {
    color: #ff00ff;
}

.account-icon {
    width: 20px;
    height: 20px;
}

.account-btn svg {
    stroke: #C60997;
    fill: none;
}

.account-btn svg circle,
.account-btn svg path {
    stroke: #C60997;
    fill: none;
}

.account-text {
    display: none;
}

.container {
    margin: 0 auto;
    padding: 20px 20px 20px 0; 
    position: relative;
    min-height: auto;
    min-width: 100%;
    max-width: none !important;
    background-color: #060D1C;
}

.background-blur {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    aspect-ratio: 650 / 460;
    background: #A93ADE;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    display: block;
    z-index: -1;
    pointer-events: none;
    will-change: transform;
}

.error-404-container {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    width: 100%;
    margin: 0 auto;
}

.error-404-content {
    text-align: center;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.error-404-content h1 {
    font-size: 120px;
    font-weight: bold;
    color: rgba(198, 9, 151, 0.8);
    margin: 0;
    line-height: 1;
}

.error-404-content h2 {
    font-size: 32px;
    color: #FFFFFF;
    margin: 20px 0;
    font-weight: 600;
}

.error-404-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin: 20px 0;
    line-height: 1.6;
}

.error-404-content a {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    background: rgba(198, 9, 151, 0.8);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
}

.error-404-content a:hover {
    background: rgba(198, 9, 151, 1);
}

@media (max-width: 768px) {
    .error-404-content h1 {
        font-size: 80px;
    }
    
    .error-404-content h2 {
        font-size: 24px;
    }
    
    .error-404-content p {
        font-size: 16px;
    }
}

.content-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: transparent;
    
    min-width: 0;
}

.content-area:has(.error-404-container) {
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 200px);
    width: 100%;
    display: flex;
    flex-direction: column;
}

.content-area:has(.error-404-container) .header,
.content-area:has(.error-404-container) .profiles-section {
    display: none;
}

.content-area:has(.error-404-container) .error-404-container {
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header {
    text-align: left;
    margin-bottom: 60px;
    padding-top: 0;
    position: relative;
}

.skip-to-main{position:absolute;left:-9999px;z-index:9999;padding:.75rem 1rem;background:#1a1a1a;color:#fff;text-decoration:none;border-radius:0 0 4px 0;font-weight:600}
.skip-to-main:focus{left:0;top:0;outline:2px solid #fff;outline-offset:2px}

.breadcrumbs {
    font-family: 'SF Pro Text', sans-serif;
    font-size: 13px;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 14px 0;
    position: relative;
    z-index: 2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.breadcrumb-separator {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.35);
}

.breadcrumb-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.breadcrumb-link:hover {
    color: #C60997;
    text-decoration: underline;
}

.breadcrumb-current {
    color: rgba(255, 255, 255, 0.6);
}

.header::after {
    content: '';
    display: block;
    position: absolute;
    width: 90vw;
    aspect-ratio: 900 / 500;
    top: 254px;
    left: 40%;
    transform: translateX(-50%) rotate(-15.52deg);
    background: radial-gradient(ellipse at center, rgba(169, 58, 222, 0.6) 0%, rgba(169, 58, 222, 0.3) 40%, rgba(169, 58, 222, 0) 70%);
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
    will-change: transform;
}

.header-banner-wrapper {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    --eg-banner-sync-offset: 0px;
}

.header-banner-wrapper[data-sync-height="1"]{
    overflow: hidden;
    border-radius: 40px;
}
.header-banner-wrapper[data-sync-height="1"] .header-banner-link,
.header-banner-wrapper[data-sync-height="1"] picture,
.header-banner-wrapper[data-sync-height="1"] .header-banner{
    height: 100%;
}

.header-banner-link {
    display: block;
    width: 100%;
    cursor: pointer;
    transition: opacity 0.3s;
}

.header-banner-link:hover {
    opacity: 0.9;
}

.header-banner {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 40px;
    object-fit: contain;
}

.header-banner-wrapper[data-sync-height="1"] .header-banner{
    height: 100%;
    width: 100%;
    border-radius: 0;
    object-fit: cover;
}

.header-copy-frame {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 22px 24px;
    border-radius: 24px;
    border: 1px solid var(--eg-soft-stroke, rgba(255,255,255,0.115));
    background:
        radial-gradient(140% 120% at 18% 0%,
            rgba(198,9,151,0.10) 0%,
            rgba(124,58,237,0.06) 32%,
            rgba(0,0,0,0.00) 62%,
            rgba(255,255,255,0.00) 100%),
        linear-gradient(180deg,
            rgba(255,255,255,0.065) 0%,
            rgba(255,255,255,0.018) 55%,
            rgba(255,255,255,0.012) 100%),
        linear-gradient(180deg,
            var(--eg-soft-bg, rgba(255,255,255,0.060)) 0%,
            var(--eg-soft-bg2, rgba(255,255,255,0.026)) 100%);
    box-shadow:
        0 18px 54px rgba(0,0,0,0.45),
        0 0 0 1px rgba(255,255,255,0.07) inset,
        0 1px 0 rgba(255,255,255,0.12) inset,
        0 -1px 0 rgba(0,0,0,0.35) inset,
        0 0 22px rgba(198,9,151,0.08),
        0 0 32px rgba(124,58,237,0.05);
    backdrop-filter: blur(24px) saturate(170%) contrast(112%);
    -webkit-backdrop-filter: blur(24px) saturate(170%) contrast(112%);
}

/* Subtle neon edge glow (top + bottom) for H1/H2 frames */
.header-copy-frame::before,
.header-copy-frame::after{
    content: '';
    position: absolute;
    left: 22px;
    right: 22px;
    height: 2px;
    border-radius: 999px;
    pointer-events: none;
    z-index: 2;
    background: linear-gradient(90deg,
        rgba(198,9,151,0.00) 0%,
        rgba(198,9,151,0.55) 18%,
        rgba(124,58,237,0.38) 50%,
        rgba(198,9,151,0.55) 82%,
        rgba(198,9,151,0.00) 100%);
    box-shadow:
        0 0 10px rgba(198,9,151,0.18),
        0 0 14px rgba(124,58,237,0.10);
    opacity: 0.70;
}

.header-copy-frame::before{ top: -1px; }
.header-copy-frame::after{ bottom: -1px; opacity: 0.55; }

.header-copy-frame .header-title {
    margin: 0;
}

.header-copy-divider {
    height: 1px;
    width: 100%;
    margin: 16px 0;
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.22) 45%,
        rgba(255, 255, 255, 0.12) 60%,
        rgba(255, 255, 255, 0) 100%);
}

.header-copy-frame .header-description {
    margin: 0;
}

.header-title {
    font-family: 'SF Pro Display', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 1.193;
    letter-spacing: 1.45%;
    margin: 0 0 30px 0;
    padding: 0;
    color: #FFFFFF;
    position: relative;
    z-index: 1;
}

.header-subtitle {
    margin: 0 0 30px 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.header-description {
    font-family: 'SF Pro Display', sans-serif;
    font-weight: 400;
    position: relative;
    z-index: 1;
    font-size: 16px;
    line-height: 1.34;
    letter-spacing: 1%;
    text-align: justify;
    margin: 0;
    padding: 0;
    color: #FFFFFF;
    opacity: 0.9;
}

/* Remove default paragraph spacing inside SEO text blocks */
.header-description p {
    margin: 0;
}

/* Mobile: collapse long text under H1 */
.eg-h1text{position:relative}
.eg-h1text__toggle{display:none}

@media (max-width: 768px){
    .eg-h1text{
        --eg-h1text-max: 180px; /* collapsed height */
        padding-bottom: 6px;
    }
    .eg-h1text__content{
        max-height: var(--eg-h1text-max);
        overflow: hidden;
        position: relative;
    }
    .eg-h1text:not(.is-expanded) .eg-h1text__content::after{
        content:'';
        position:absolute;
        left:0; right:0; bottom:0;
        height: 64px;
        background: linear-gradient(180deg,
            rgba(6,13,28,0) 0%,
            rgba(6,13,28,0.55) 55%,
            rgba(6,13,28,0.92) 100%);
        pointer-events:none;
    }
    .eg-h1text__toggle{
        display:inline-flex;
        margin-top: 10px;
        padding: 6px 0;
        background: transparent;
        border: 0;
        color: rgba(255,255,255,0.92);
        text-decoration: underline;
        text-decoration-color: rgba(198,9,151,0.55);
        font-family: 'SF Pro Text', sans-serif;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.01em;
        cursor: pointer;
    }
    .eg-h1text__toggle:hover{
        color: #fff;
        text-decoration-color: rgba(198,9,151,0.85);
    }
    .eg-h1text__toggle:focus-visible{
        outline: 2px solid rgba(198,9,151,0.6);
        outline-offset: 2px;
        border-radius: 6px;
    }
    .eg-h1text.eg-h1text--no-toggle .eg-h1text__toggle{display:none}
    .eg-h1text.eg-h1text--no-toggle .eg-h1text__content{max-height:none}
    .eg-h1text.is-expanded .eg-h1text__content{max-height:none}
    /* Desktop: prevent H1/SEO text jump on load */
    .eg-h1text .eg-h1text__content{max-height:none;overflow:visible}
    .eg-h1text .eg-h1text__toggle{display:none}
}

.main-content {
    display: grid;
    grid-template-columns: 370px minmax(0, 1fr);
    column-gap: 44px;
    row-gap: 30px;
    margin-top: 0;
    margin-bottom: 40px;
    align-items: start;
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

.main-content > header.header {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 0;
}

.main-content > .location-sidebar {
    grid-column: 1;
    grid-row: 1 / span 2;
}

.main-content > .content-area {
    grid-column: 2;
    grid-row: 2;
    min-width: 0;
}

@media (min-width: 769px) {
    .mobile-menu-overlay {
        display: none !important;
    }
}

.location-sidebar {
    width: 370px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 0;
    height: auto;
    max-height: none;
    overflow-y: visible;
    overflow-x: visible;
    align-self: flex-start;
    padding-left: 20px; 
    padding-bottom: 20px;
}

.location-sidebar-close {
    display: none; 
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1002;
    background: rgba(6, 13, 28, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.location-sidebar-close:hover {
    background: rgba(6, 13, 28, 1);
    border-color: rgba(255, 255, 255, 0.2);
}

.location-sidebar-close svg {
    width: 24px;
    height: 24px;
}

.location-block {
    background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    padding: 18px 18px;
    margin-bottom: 0;
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 18px 46px rgba(0,0,0,0.35);
    z-index: 10;
    overflow: visible;
}

@media (min-width: 1201px) {
    .location-sidebar .location-block {
        background: radial-gradient(120% 100% at 20% 0%, rgba(198,9,151,0.10) 0%, rgba(5,11,23,1) 55%, rgba(5,11,23,1) 100%);
        border-color: rgba(255,255,255,0.08);
    }
    
    .location-sidebar .filter-block {
        background: radial-gradient(120% 100% at 20% 0%, rgba(198,9,151,0.10) 0%, rgba(5,11,23,1) 55%, rgba(5,11,23,1) 100%);
        border: 1px solid rgba(255,255,255,0.08);
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    }
}

.filter-block {
    background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    padding: 18px 18px 20px;
    margin-top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    width: 100%;
    box-sizing: border-box;
    overflow: visible;
    min-height: fit-content;
    max-height: none;
    height: auto;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 18px 46px rgba(0,0,0,0.35);
}

/* Subtle neon edge glow (top + bottom) for location/filter cards */
.location-sidebar .location-block::before,
.location-sidebar .filter-block::before,
.location-sidebar .location-block::after,
.location-sidebar .filter-block::after{
    content: '';
    position: absolute;
    left: 14px;
    right: 14px;
    height: 2px;
    border-radius: 999px;
    pointer-events: none;
    z-index: 2;
    background: linear-gradient(90deg,
        rgba(198,9,151,0.00) 0%,
        rgba(198,9,151,0.55) 18%,
        rgba(124,58,237,0.38) 50%,
        rgba(198,9,151,0.55) 82%,
        rgba(198,9,151,0.00) 100%);
    box-shadow:
        0 0 10px rgba(198,9,151,0.20),
        0 0 14px rgba(124,58,237,0.12);
    opacity: 0.75;
}

.location-sidebar .location-block::before,
.location-sidebar .filter-block::before{
    top: -1px;
}

.location-sidebar .location-block::after,
.location-sidebar .filter-block::after{
    bottom: -1px;
    opacity: 0.55;
}

.filter-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-icon {
    width: 24px;
    height: 24px;
}

.filter-title {
    font-family: 'SF Pro Display', sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 1.193;
    letter-spacing: 0.01em;
    opacity: 0.92;
}

.filter-section {
    margin-bottom: 30px;
}

.filter-dropdown {
    position: relative;
    cursor: pointer;
}

.filter-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 12px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 50px;
    box-sizing: border-box;
    border-radius: 14px;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.filter-dropdown:hover .filter-header-row {
    background: rgba(255,255,255,0.04);
    border-bottom-color: rgba(255,255,255,0.14);
}

.filter-dropdown:focus-within .filter-header-row {
    background: rgba(255,255,255,0.04);
    outline: 2px solid rgba(198, 9, 151, 0.55);
    outline-offset: 2px;
}

.filter-label {
    display: block;
    font-family: 'SF Pro Text', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.076;
    letter-spacing: -0.62%;
    text-transform: uppercase;
    color: #FFFFFF;
    opacity: 0.5;
    margin: 0;
    flex: 1;
}

.dropdown-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 0;
}

.dropdown-content:empty {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.dropdown-content:hover {
    background: transparent;
}

.dropdown-value {
    font-family: 'SF Pro Display', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 2.125;
    letter-spacing: 1.21%;
    color: #FFFFFF;
}

.dropdown-arrow {
    width: 13px;
    height: 8px;
    opacity: 0.7;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 10px;
}

.filter-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.filter-dropdown.active .filter-header-row {
    border-bottom: none;
    padding-bottom: 15px;
    margin-bottom: 0;
}

.filter-expanded {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
    padding: 0;
    margin-top: 0;
}

.filter-dropdown.active .filter-expanded,
.filter-group.active .filter-expanded {
    max-height: none;
    height: auto;
    padding: 0;
    margin-top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
    overflow: visible;
}

.filter-text-input,
.filter-number-input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #FFFFFF;
    font-family: 'SF Pro Display', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.filter-text-input:focus,
.filter-number-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.filter-text-input::placeholder,
.filter-number-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.range-slider-container {
    padding: 10px 0;
}

.range-slider {
    position: relative;
    width: 100%;
    height: 4px;
    margin: 20px 0;
}

.range-track {
    position: absolute;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    top: 50%;
    transform: translateY(-50%);
    border-radius: 2px;
}

.range-progress {
    position: absolute;
    height: 2px;
    background: #C60997;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 2px;
    transition: all 0.1s ease;
}

.range-input {
    position: absolute;
    width: 100%;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    pointer-events: none;
    z-index: 2;
}

.range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 28px;
    height: 28px;
    background: #FFFFFF;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0px 3px 1px 0px rgba(0, 0, 0, 0.1), 0px 1px 1px 0px rgba(0, 0, 0, 0.16), 0px 3px 8px 0px rgba(0, 0, 0, 0.15);
    border: 0.5px solid rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
}

.range-input::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.range-input::-moz-range-thumb {
    width: 28px;
    height: 28px;
    background: #FFFFFF;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0px 3px 1px 0px rgba(0, 0, 0, 0.1), 0px 1px 1px 0px rgba(0, 0, 0, 0.16), 0px 3px 8px 0px rgba(0, 0, 0, 0.15);
    border: 0.5px solid rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
}

.range-input::-moz-range-thumb:hover {
    transform: scale(1.1);
}

.range-input::-webkit-slider-runnable-track {
    background: transparent;
}

.range-input::-moz-range-track {
    background: transparent;
}

.range-values {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-family: 'SF Pro Display', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #C7C7C9;
}

.filter-list-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
    width: 100%;
    box-sizing: border-box;
    overflow: visible;
    min-height: fit-content;
}

.filter-list-btn {
    padding: 13px 19px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(199, 199, 201, 0.2);
    border-radius: 100px;
    font-family: 'SF Pro Text', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.166;
    letter-spacing: -0.62%;
    text-transform: uppercase;
    color: #C7C7C9;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-list-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.filter-list-btn.active {
    background: linear-gradient(126deg, rgba(98, 83, 184, 1) 0%, rgba(237, 128, 194, 1) 100%);
    border-color: #FFFFFF;
    color: #FFFFFF;
}

.filter-dropdown-select {
    width: 100%;
    padding: 13px 19px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(199, 199, 201, 0.2);
    border-radius: 100px;
    font-family: 'SF Pro Text', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.166;
    letter-spacing: -0.62%;
    text-transform: uppercase;
    color: #C7C7C9;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='13' height='8' viewBox='0 0 13 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6.5 6L12 1' stroke='%23C7C7C9' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 19px center;
    padding-right: 45px;
    margin: 10px 0;
}

.filter-dropdown-select:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.filter-dropdown-select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.15);
}

.filter-dropdown-select option {
    background: #292437 !important;
    color: #ffffff !important;
    padding: 10px;
}

.filter-dropdown-select option:checked,
.filter-dropdown-select option:selected {
    background: #4CAF50 !important;
    color: #ffffff !important;
}

.filter-dropdown-select option:hover {
    background: #4CAF50 !important;
    color: #ffffff !important;
}

.filter-dropdown.has-value .filter-dropdown-select {
    background: linear-gradient(126deg, rgba(98, 83, 184, 1) 0%, rgba(237, 128, 194, 1) 100%);
    border-color: #FFFFFF;
    color: #FFFFFF;
    background-image: url("data:image/svg+xml,%3Csvg width='13' height='8' viewBox='0 0 13 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6.5 6L12 1' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 19px center;
}

.filter-group {
    margin-bottom: 30px;
    position: relative;
    cursor: pointer;
}

.filter-group .filter-buttons {
    cursor: pointer;
}

.filter-group-label {
    display: block;
    font-family: 'SF Pro Text', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.384;
    letter-spacing: -0.62%;
    text-transform: uppercase;
    color: #FFFFFF;
    opacity: 0.7;
    margin-bottom: 10px;
}

.filter-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 13px 19px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    color: #FFFFFF;
    font-family: 'SF Pro Text', sans-serif;
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.filter-btn.active {
    background: linear-gradient(126deg, rgba(98, 83, 184, 1) 0%, rgba(237, 128, 194, 1) 100%);
    border-color: #FFFFFF;
}

.filter-arrow {
    position: absolute;
    right: 0;
    top: 35px;
    width: 13px;
    height: 8px;
    opacity: 0.7;
    transition: transform 0.3s ease;
}

.filter-group.active .filter-arrow {
    transform: rotate(180deg);
}

.location-block {
    margin-bottom: 0;
}

.location-title {
    font-family: 'SF Pro Display', sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 1.193;
    letter-spacing: 0.01em;
    color: #FFFFFF;
    opacity: 0.92;
    margin-bottom: 16px;
}

.location-country-city-selector {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.location-selector-item {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-clear-btn {
    width: 24px;
    height: 24px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.location-clear-btn:hover {
    opacity: 1;
}

.location-clear-btn svg {
    width: 100%;
    height: 100%;
}

.location-main-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 19px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(199, 199, 201, 0.2);
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.location-main-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.location-main-text {
    font-family: 'SF Pro Text', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.166;
    letter-spacing: -0.62%;
    text-transform: uppercase;
    color: #C7C7C9;
    text-align: center;
    flex: 1;
}

.location-main-arrow {
    width: 5px;
    height: 3px;
    transition: transform 0.3s ease;
}

.location-main-btn.active .location-main-arrow {
    transform: rotate(180deg);
}

.location-main-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: rgb(6, 13, 28);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    max-height: 200px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1003;
}

.location-main-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.location-main-option {
    padding: 12px 19px;
    font-family: 'SF Pro Text', sans-serif;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    color: #C7C7C9;
    cursor: pointer;
    transition: background 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.location-main-option:last-child {
    border-bottom: none;
}

.location-main-option:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}

.location-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.location-label {
    font-family: 'SF Pro Text', sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 1.166;
    letter-spacing: -0.62%;
    text-transform: uppercase;
    color: #FFFFFF;
    min-width: 60px;
    flex-shrink: 0;
}

.location-selector-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 100px;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    width: 100%;
    box-shadow: 0 10px 24px rgba(0,0,0,0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.location-selector-btn:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(198, 9, 151, 0.45);
}

.location-selector-btn:focus-visible {
    outline: 2px solid rgba(198, 9, 151, 0.55);
    outline-offset: 2px;
}

.location-selector-text {
    font-family: 'SF Pro Text', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.166;
    letter-spacing: -0.62%;
    text-transform: uppercase;
    color: #C7C7C9;
    flex: 1;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.location-selector-arrow {
    width: 5px;
    height: 3px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.location-selector-btn.active .location-selector-arrow {
    transform: rotate(180deg);
}

.location-selector-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: rgb(6, 13, 28);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    max-height: 300px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1003;
    display: flex;
    flex-direction: column;
}

.location-selector-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.location-search-input {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    color: #FFFFFF;
    font-family: 'SF Pro Text', sans-serif;
    font-size: 14px;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}

.location-search-input:focus-visible {
    outline: 2px solid rgba(198, 9, 151, 0.55);
    outline-offset: -2px;
    border-bottom-color: rgba(198, 9, 151, 0.45);
}

.location-search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.location-selector-options {
    max-height: 250px;
    overflow-y: auto;
}

.location-selector-option {
    padding: 12px 19px;
    font-family: 'SF Pro Text', sans-serif;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    color: #C7C7C9;
    cursor: pointer;
    display: block;
    text-decoration: none;
    transition: background 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.location-selector-option-link{color:inherit;text-decoration:none}
.location-selector-option-link:hover{color:inherit;text-decoration:underline;text-decoration-color:rgba(198,9,151,.55)}

.location-selector-option:last-child {
    border-bottom: none;
}

.location-selector-option:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}

.location-selector-option-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 19px;
}

.location-selector-option-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #C60997;
}

.location-selector-option-checkbox label {
    cursor: pointer;
    flex: 1;
    margin: 0;
}
.location-selector-option-checkbox .location-selector-option-link{flex:1;display:block}
.location-selector-option-checkbox span{flex:1;display:block}

.location-subway-selected {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.subway-selected-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(198, 9, 151, 0.2);
    border: 1px solid rgba(198, 9, 151, 0.5);
    border-radius: 20px;
    font-family: 'SF Pro Text', sans-serif;
    font-size: 11px;
    color: #C60997;
    text-transform: uppercase;
}

.subway-selected-tag .remove-btn {
    background: none;
    border: none;
    color: #C60997;
    cursor: pointer;
    font-size: 14px;
    padding: 0;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.subway-selected-tag .remove-btn:hover {
    color: #FFFFFF;
}

.location-tag-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: rgb(6, 13, 28);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    max-height: 200px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1003;
}

.location-tag-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.location-tag-option {
    padding: 10px 13px;
    font-family: 'SF Pro Text', sans-serif;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    color: #C7C7C9;
    cursor: pointer;
    transition: background 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.location-tag-option:last-child {
    border-bottom: none;
}

.location-tag-option:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}

.location-subway-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    position: relative;
    flex: 1;
}

.subway-tag-btn {
    padding: 9px 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(199, 199, 201, 0.2);
    border-radius: 100px;
    font-family: 'SF Pro Text', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.166;
    letter-spacing: -0.62%;
    text-transform: uppercase;
    color: #C7C7C9;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.subway-tag-btn:hover,
.subway-tag-btn.active {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
}

.subway-tag-arrow {
    width: 5px;
    height: 3px;
    margin-left: 8px;
    opacity: 0.7;
}

.filter-show-all {
    margin-top: 20px;
    margin-bottom: 20px;
}

.show-all-btn,
.show-all-link {
    color: #FFFFFF;
    text-decoration: underline;
    font-family: 'SF Pro Text', sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

button.show-all-link,
button.show-options-link,
button.reset-filters-link {
    /* If these are <button>, remove native button look to match link design */
    background: transparent !important;
    background-color: transparent !important;
    border: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    outline: none;
}

button.show-all-link::-moz-focus-inner,
button.show-options-link::-moz-focus-inner,
button.reset-filters-link::-moz-focus-inner {
    border: 0;
    padding: 0;
}

button.show-all-link:focus-visible,
button.show-options-link:focus-visible,
button.reset-filters-link:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
    border-radius: 4px;
}

.show-all-link:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.filter-show-options {
    margin-top: 15px;
    margin-bottom: 10px;
}

.show-options-link {
    color: #FFFFFF;
    text-decoration: underline;
    font-family: 'SF Pro Text', sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.show-options-link:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.filter-option-hidden {
    display: none !important;
}

.show-all-arrow {
    width: 13px;
    height: 8px;
    transition: transform 0.3s ease;
}

.filter-reset {
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.reset-filters-link {
    color: #FFFFFF;
    text-decoration: underline;
    font-family: 'SF Pro Text', sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    text-transform: uppercase;
}

.reset-filters-link:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.show-all-arrow {
    width: 13px;
    height: 8px;
    transition: transform 0.3s ease;
}

.filter-text-input,
.filter-number-input {
    width: 100%;
    padding: 10px 13px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(199, 199, 201, 0.2);
    border-radius: 100px;
    font-family: 'SF Pro Text', sans-serif;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    color: #C7C7C9;
    outline: none;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.filter-text-input::placeholder,
.filter-number-input::placeholder {
    color: rgba(199, 199, 201, 0.5);
    text-transform: uppercase;
}

.filter-text-input:focus,
.filter-number-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
}

.checkbox-btn {
    position: relative;
    padding: 13px 19px;
    padding-left: 45px;
}

.checkbox-btn::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 2px solid rgba(199, 199, 201, 0.5);
    border-radius: 4px;
    background: transparent;
    transition: all 0.3s ease;
}

.checkbox-btn.active::before {
    background: #C60997;
    border-color: #C60997;
}

.checkbox-btn.active::after {
    content: '✓';
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: #FFFFFF;
    font-size: 12px;
    font-weight: bold;
}

.radiobox-btn {
    position: relative;
    padding: 13px 19px;
    padding-left: 45px;
}

.radiobox-btn::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 2px solid rgba(199, 199, 201, 0.5);
    border-radius: 50%;
    background: transparent;
    transition: all 0.3s ease;
}

.radiobox-btn.active::before {
    background: #C60997;
    border-color: #C60997;
}

.radiobox-btn.active::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #FFFFFF;
}

.filter-ok-button {
    margin-top: 40px;
}

.ok-btn {
    width: 100%;
    padding: 17px;
    background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.03) 100%);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 100px;
    color: #FFFFFF;
    font-family: 'SF Pro Text', sans-serif;
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.ok-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(198, 9, 151, 0.4);
    border-color: rgba(198, 9, 151, 0.55);
}

.ok-btn:focus-visible {
    outline: 2px solid rgba(198, 9, 151, 0.55);
    outline-offset: 2px;
}

.count-badge {
    position: static;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    padding: 2px 8px;
    font-size: 12px;
    opacity: 0.75;
    margin-left: 4px;
}

.profiles-section {
    width: 100%;
    min-width: 0; 
    margin-bottom: 40px;
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
    width: 100%;
    position: relative;
    z-index: 1;
    align-items: stretch;
}

.profile-card {
    background:
        radial-gradient(140% 120% at 18% 0%,
            rgba(198,9,151,0.08) 0%,
            rgba(124,58,237,0.05) 32%,
            rgba(0,0,0,0.00) 62%,
            rgba(255,255,255,0.00) 100%),
        linear-gradient(180deg, rgba(6,13,28,0.58) 0%, rgba(6,13,28,0.72) 100%),
        linear-gradient(180deg, rgba(255,255,255,0.035) 0%, rgba(255,255,255,0.014) 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    box-shadow:
        0 18px 54px rgba(0,0,0,0.42),
        0 0 0 1px rgba(255,255,255,0.05) inset,
        0 1px 0 rgba(255,255,255,0.10) inset;
}

.profile-card::before{
    content:'';
    position:absolute;
    inset:0;
    pointer-events:none;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.00) 34%),
        radial-gradient(120% 120% at 50% 0%, rgba(255,255,255,0.045) 0%, rgba(255,255,255,0.00) 60%);
    opacity: 0.55;
    z-index: 0;
}

.profile-card > *{ position: relative; z-index: 1; }

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(198, 9, 151, 0.2);
    border-color: rgba(198, 9, 151, 0.3);
}

.profile-image {
    width: 100%;
    flex-shrink: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
}

#photo-popup {
    position: fixed;
    pointer-events: none;
    display: none;
    z-index: 9999;
}

#photo-popup-img {
    display: block;
    max-width: 500px;
    max-height: 500px;
    object-fit: contain;
    border-radius: 8px;
    border: none;
}

#profile-image-zoomed {
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    display: none;
    transform: none;
    left: 0;
    top: 0;
}

#profile-image-zoomed.active {
    display: block;
}

#profile-image-zoomed img {
    display: block;
    max-width: 400px;
    max-height: 400px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.profile-photo-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
}

.profile-photo-modal.active {
    display: flex;
}

.profile-photo-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.profile-photo-modal-media {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.profile-photo-modal-media img {
    max-width: 100vw;
    max-height: 100vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

.profile-photo-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 40px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
    line-height: 1;
    padding: 0;
}

.profile-photo-modal-close:hover {
    opacity: 0.8;
}

.profile-status {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 4px;
    height: 4px;
    background: #FFFFFF;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.profile-info {
    flex: 1;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: auto;
}

.profile-header {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    margin-bottom: 0;
    margin-top: 12px;
    padding: 0 20px;
    /* Keep cards visually consistent even with long names */
    min-height: calc(2 * 1.34em + 4px);
}

.profile-name {
    font-family: 'SF Pro Display', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.34;
    letter-spacing: 1%;
    text-transform: uppercase;
    color: #FFFFFF;
    display: block;
    width: 100%;
    text-align: center;
    /* Reserve space for up to 2 lines so cards don't jump */
    min-height: calc(2 * 1.34em + 4px);
}

.profile-name-link {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.2s;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    overflow-wrap: anywhere;
}

.profile-name-link:hover {
    color: #ff00ff;
    text-decoration: none;
}

.profile-name-link:hover .profile-age {
    color: #ff00ff;
}

.profile-name-link:hover .profile-name-separator {
    color: #ff00ff;
}

.profile-name {
    position: relative;
    padding-bottom: 4px;
}

.profile-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(198, 9, 151, 0.8);
}

.profile-name-separator {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    vertical-align: middle;
    transition: color 0.2s;
}

.profile-age {
    font-family: 'SF Pro Display', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.34;
    letter-spacing: 1%;
    color: #FFFFFF;
    text-transform: uppercase;
    transition: color 0.2s;
}

.profile-details {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
    margin-top: 23px;
    padding-left: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.detail-item:last-of-type {
    margin-bottom: 0;
}

.detail-label {
    font-family: 'SF Pro Text', sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 1.193;
    letter-spacing: 1.45%;
    text-transform: uppercase;
    color: #FFFFFF;
}

.detail-value {
    font-family: 'SF Pro Text', sans-serif;
    font-weight: 300;
    font-size: 13px;
    line-height: 1.193;
    letter-spacing: 1.45%;
    text-transform: uppercase;
    color: #EAEAEA;
}

.profile-location {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 30px;
    margin-bottom: 0;
    padding-left: 20px;
    flex-shrink: 0;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
}

.location-item:last-child {
    margin-bottom: 0;
}

.show-phone-btn {
    width: calc(100% - 40px);
    height: 30px;
    padding: 0;
    background: transparent;
    border: 1px solid #C60997;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    margin: 20px auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profiles-grid .show-phone-btn,
.profile-card .show-phone-btn {
    width: calc(100% - 40px);
}

@media (max-width: 768px) {
    .profiles-grid .show-phone-btn,
    .profile-card .show-phone-btn,
    .profile-info .show-phone-btn {
        max-width: 750px;
    }
}

.profile-view-container .show-phone-btn {
    left: 0;
    width: 100%;
    right: 0;
}

.show-phone-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(198, 9, 151, 0.3), transparent);
    transition: left 0.5s;
}

.show-phone-btn:hover {
    border-color: #ff00ff;
    box-shadow: 0 0 10px rgba(198, 9, 151, 0.5);
}

.show-phone-btn:hover::before {
    left: 100%;
}

.show-phone-text {
    font-family: 'SF Pro Text', sans-serif;
    font-weight: 500;
    font-size: 11px;
    line-height: 1.273;
    letter-spacing: 1.5%;
    text-transform: uppercase;
    color: #FFFFFF;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.show-phone-btn:hover .show-phone-text {
    color: #ff00ff;
}

/* Phone modal (CTA on show phone) */
.eg-phone-modal .eg-modal__panel {
    width: min(420px, 100%);
    max-height: calc(100vh - 120px);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.14);
    background:
        radial-gradient(140% 120% at 20% 0%,
            rgba(198, 9, 151, 0.10) 0%,
            rgba(124, 58, 237, 0.06) 34%,
            rgba(0,0,0,0.00) 68%),
        rgba(8, 12, 22, 0.92);
    box-shadow:
        0 28px 80px rgba(0,0,0,0.78),
        0 0 0 1px rgba(255,255,255,0.04) inset;
}
.eg-phone-modal .eg-modal__header {
    border-bottom: none;
    padding: 16px 18px 10px;
    position: relative;
    justify-content: center;
}
.eg-phone-modal .eg-modal__title {
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: none;
    color: rgba(255,255,255,0.92);
    text-align: center;
    width: 100%;
    padding: 0 46px;
    text-transform: uppercase;
}
.eg-phone-modal .eg-modal__close {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    position: absolute;
    right: 14px;
    top: 12px;
    color: rgba(255,255,255,0.9);
}
.eg-phone-modal .eg-modal__close:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(198,9,151,0.22);
    transform: translateY(-1px);
}
.eg-phone-modal__body {
    padding: 0 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
}
.eg-phone-modal__phone {
    font-family: 'SF Pro Display', sans-serif;
    font-weight: 900;
    font-size: 28px;
    line-height: 1.08;
    letter-spacing: 0.01em;
    color: rgba(255,255,255,0.96);
    background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,59,212,0.95) 38%, rgba(124,58,237,0.95) 72%, rgba(255,255,255,0.92) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow:
        0 0 10px rgba(198, 9, 151, 0.16),
        0 0 18px rgba(124, 58, 237, 0.10);
    user-select: text;
    -webkit-user-select: text;
}
.eg-phone-modal__phone--loading {
    color: rgba(255,255,255,0.75);
    text-shadow: none;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    -webkit-text-fill-color: rgba(255,255,255,0.75);
}
.eg-phone-modal__call {
    appearance: none;
    -webkit-appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: min(320px, 100%);
    height: 48px;
    border-radius: 16px;
    border: 1px solid rgba(198, 9, 151, 0.40);
    background: linear-gradient(180deg, rgba(198, 9, 151, 0.30) 0%, rgba(124, 58, 237, 0.18) 100%);
    color: rgba(255,255,255,0.95);
    font-family: 'SF Pro Text', sans-serif;
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    user-select: none;
    box-shadow:
        0 18px 44px rgba(0,0,0,0.48),
        0 0 0 1px rgba(255,255,255,0.06) inset,
        0 0 22px rgba(198, 9, 151, 0.10);
    transition: transform .15s ease, box-shadow .15s ease, filter .15s ease, opacity .15s ease, border-color .15s ease;
}
.eg-phone-modal__call:hover {
    transform: translateY(-1px);
    filter: saturate(1.08);
    border-color: rgba(198, 9, 151, 0.60);
    box-shadow:
        0 22px 58px rgba(0,0,0,0.55),
        0 0 0 1px rgba(255,255,255,0.08) inset,
        0 0 28px rgba(198, 9, 151, 0.14);
}
.eg-phone-modal__call:active {
    transform: translateY(0);
    box-shadow:
        0 14px 38px rgba(0,0,0,0.50),
        0 0 0 1px rgba(255,255,255,0.08) inset;
}
.eg-phone-modal__call:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 3px rgba(198, 9, 151, 0.20),
        0 22px 58px rgba(0,0,0,0.55);
}
.eg-phone-modal__call.is-disabled,
.eg-phone-modal__call[aria-disabled="true"] {
    opacity: 0.55;
    filter: grayscale(0.35);
    cursor: default;
    box-shadow: 0 8px 20px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.06) inset;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.82);
    border-color: rgba(255,255,255,0.16);
}
.eg-phone-modal__call-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
}
.eg-phone-modal__call-icon svg {
    display: block;
}
.eg-phone-modal__closebtn {
    appearance: none;
    -webkit-appearance: none;
    width: min(320px, 100%);
    height: 48px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.16);
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.92);
    font-family: 'SF Pro Text', sans-serif;
    font-weight: 900;
    font-size: 14px;
    cursor: pointer;
    user-select: none;
    transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.eg-phone-modal__closebtn:hover {
    transform: translateY(-1px);
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.22);
    box-shadow: 0 18px 44px rgba(0,0,0,0.52), 0 0 0 1px rgba(255,255,255,0.06) inset;
}
.eg-phone-modal__closebtn:active {
    transform: translateY(0);
}
.eg-phone-modal__closebtn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.14), 0 18px 44px rgba(0,0,0,0.52);
}

@media (max-width: 420px) {
    .eg-phone-modal .eg-modal__panel {
        width: min(420px, 100%);
    }
    .eg-phone-modal__body {
        padding-left: 16px;
        padding-right: 16px;
        gap: 10px;
    }
    .eg-phone-modal__phone {
        font-size: 26px;
    }
    .eg-phone-modal__call {
        height: 46px;
        font-size: 13px;
    }
    .eg-phone-modal__closebtn {
        height: 42px;
        font-size: 13px;
    }
}

/* Phone reveal: big number + tel: + copy */
.eg-phone-reveal {
    width: calc(100% - 40px);
    min-height: 36px;
    margin: 20px auto;
    padding: 0 10px 0 14px;
    border: 1px solid #C60997;
    border-radius: 20px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
}
.profiles-grid .eg-phone-reveal,
.profile-card .eg-phone-reveal {
    width: calc(100% - 40px);
}
.eg-phone-reveal::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(198, 9, 151, 0.22), transparent);
    transition: left 0.5s;
    pointer-events: none;
}
.eg-phone-reveal:hover {
    border-color: #ff00ff;
    box-shadow: 0 0 12px rgba(198, 9, 151, 0.45);
}
.eg-phone-reveal:hover::before {
    left: 100%;
}
.eg-phone-reveal__tel {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #FFFFFF;
    text-decoration: none;
    font-family: 'SF Pro Text', sans-serif;
    font-weight: 900;
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-transform: none;
    user-select: text;
    -webkit-user-select: text;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    flex: 1 1 auto;
}
.eg-phone-reveal__tel:hover {
    color: #ff00ff;
    text-decoration: none;
}
.eg-phone-reveal__copy {
    position: relative;
    z-index: 1;
    height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.88);
    font-family: 'SF Pro Text', sans-serif;
    font-weight: 800;
    font-size: 12px;
    cursor: pointer;
    user-select: none;
    transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease, color .15s ease;
    flex: 0 0 auto;
}
.eg-phone-reveal__copy:hover {
    transform: translateY(-1px);
    border-color: rgba(198, 9, 151, 0.45);
    background: rgba(198, 9, 151, 0.12);
    color: rgba(255,255,255,0.98);
    box-shadow: 0 10px 18px rgba(0,0,0,0.32), 0 0 0 1px rgba(198,9,151,0.08) inset;
}
.eg-phone-reveal__copy:active {
    transform: translateY(0);
}
.eg-phone-reveal__copy:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(198,9,151,0.18), 0 10px 18px rgba(0,0,0,0.32);
}

.footer {
    text-align: left;
    padding: 40px 0;
    margin-top: 0;
    width: 100%;
}

.footer-description {
    font-family: 'SF Pro Display', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.34;
    letter-spacing: 1%;
    text-align: justify;
    margin: 0 0 20px 0;
    padding: 0;
    color: #FFFFFF;
    opacity: 0.9;
}

.seo-text2 {
    margin-top: 32px;
    margin-bottom: 0;
}

.footer-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.header-filters{margin:16px 0 18px}
.header-filters__list{display:flex;flex-wrap:wrap;gap:10px}
.header-filters__chip{display:inline-flex;align-items:center;justify-content:center;padding:8px 14px;border-radius:999px;border:1px solid rgba(255,255,255,.10);background:rgba(255,255,255,.02);color:rgba(255,255,255,.92);text-decoration:none;font-family:'SF Pro Text',sans-serif;font-size:12px;font-weight:500;letter-spacing:.01em;text-transform:none;backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);transition:background .2s ease,border-color .2s ease,color .2s ease}
.header-filters__chip:hover{background:rgba(255,255,255,.05);border-color:rgba(198,9,151,.55);color:#fff;text-decoration:none}
@media (max-width: 767px){.header-filters__list{flex-wrap:nowrap;overflow-x:auto;-webkit-overflow-scrolling:touch;padding-bottom:6px;mask-image:linear-gradient(90deg,transparent 0,#000 16px,#000 calc(100% - 16px),transparent 100%);-webkit-mask-image:linear-gradient(90deg,transparent 0,#000 16px,#000 calc(100% - 16px),transparent 100%)}.header-filters__chip{white-space:nowrap}}

/* =========================
   EG Top Filters Bar (under H1)
   Mega-dropdown internal linking block
   ========================= */
.eg-topfilters{margin:14px 0 16px;position:relative;z-index:5}

/* Premium frame (2-row layout) */
.eg-topfilters__frame{
    position:relative;
    padding:12px 12px;
    border-radius:22px;
    border:1px solid rgba(255,255,255,0.10);
    background:
        radial-gradient(140% 120% at 18% 0%,
            rgba(198,9,151,0.08) 0%,
            rgba(124,58,237,0.05) 32%,
            rgba(0,0,0,0.00) 62%,
            rgba(255,255,255,0.00) 100%),
        linear-gradient(180deg, rgba(255,255,255,0.040) 0%, rgba(255,255,255,0.018) 100%);
    box-shadow:
        0 18px 54px rgba(0,0,0,0.42),
        0 0 0 1px rgba(255,255,255,0.04) inset;
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
}

/* Subtle neon edge (top+bottom) */
.eg-topfilters__frame::before,
.eg-topfilters__frame::after{
    content:'';
    position:absolute;
    left: 18px;
    right: 18px;
    height:2px;
    border-radius:999px;
    pointer-events:none;
    background: linear-gradient(90deg,
        rgba(198,9,151,0.00) 0%,
        rgba(198,9,151,0.55) 18%,
        rgba(124,58,237,0.38) 50%,
        rgba(198,9,151,0.55) 82%,
        rgba(198,9,151,0.00) 100%);
    box-shadow:
        0 0 12px rgba(198,9,151,0.14),
        0 0 18px rgba(124,58,237,0.08);
    opacity:0.55;
}
.eg-topfilters__frame::before{top:-1px}
.eg-topfilters__frame::after{bottom:-1px;opacity:0.40}

.eg-topfilters__rule{
    height:1px;
    margin:10px 0;
    background: linear-gradient(90deg,
        rgba(255,255,255,0.00) 0%,
        rgba(255,255,255,0.10) 42%,
        rgba(255,255,255,0.06) 58%,
        rgba(255,255,255,0.00) 100%);
}

.eg-topfilters__row{
    display:flex;
    align-items:center;
    gap:12px;
    min-height:44px;
}

.eg-topfilters__row-label{
    flex:0 0 auto;
    font-family:'SF Pro Display',sans-serif;
    font-weight:800;
    font-size:12px;
    letter-spacing:0.10em;
    text-transform:uppercase;
    color:rgba(255,255,255,0.78);
    padding:0 4px;
    white-space:nowrap;
}

.eg-topfilters__row-scroll{
    flex:1;
    display:flex;
    flex-wrap:nowrap;
    gap:10px;
    align-items:center;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
    padding-bottom:6px;
    mask-image: linear-gradient(90deg, transparent 0, #000 16px, #000 calc(100% - 16px), transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 16px, #000 calc(100% - 16px), transparent 100%);
}
.eg-topfilters__row-scroll::-webkit-scrollbar{display:none}

/* Premium quick chips (like reference screenshot) */
.eg-topfilters__chip{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:40px;
    padding:0 18px;
    border-radius:999px;
    border:1px solid rgba(198,9,151,0.70);
    background: rgba(6,13,28,0.40);
    color: rgba(255,255,255,0.92);
    text-decoration:none;
    font-family:'SF Pro Text',sans-serif;
    font-size:13px;
    font-weight:700;
    letter-spacing:0.01em;
    box-shadow:
        0 14px 34px rgba(0,0,0,0.40),
        0 0 18px rgba(198,9,151,0.16),
        0 0 28px rgba(124,58,237,0.08),
        0 0 0 1px rgba(255,255,255,0.04) inset;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform .14s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease;
    flex: 0 0 auto;
    white-space: nowrap;
}
.eg-topfilters__chip:hover{
    transform: translateY(-1px);
    border-color: rgba(198,9,151,0.92);
    background: rgba(255,255,255,0.06);
    box-shadow:
        0 18px 44px rgba(0,0,0,0.52),
        0 0 26px rgba(198,9,151,0.22),
        0 0 38px rgba(124,58,237,0.12),
        0 0 0 1px rgba(255,255,255,0.05) inset;
    text-decoration:none;
}

.eg-topfilters__trigger{
    display:inline-flex;
    align-items:center;
    gap:10px;
    height:40px;
    padding:0 14px;
    border-radius:999px;
    border:1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.92);
    font-family:'SF Pro Text',sans-serif;
    font-size:13px;
    font-weight:600;
    letter-spacing:0.01em;
    cursor:pointer;
    transition: background .16s ease, border-color .16s ease, transform .14s ease, box-shadow .16s ease;
}
.eg-topfilters__trigger:hover{
    background: rgba(255,255,255,0.075);
    border-color: rgba(198,9,151,0.35);
    box-shadow: 0 0 18px rgba(198,9,151,0.10);
    transform: translateY(-1px);
}
.eg-topfilters__trigger[aria-expanded="true"]{
    border-color: rgba(198,9,151,0.55);
    background: rgba(198,9,151,0.10);
    box-shadow:
        0 12px 34px rgba(0,0,0,0.38),
        0 0 22px rgba(198,9,151,0.14);
}
.eg-topfilters__caret{opacity:.7;transform:translateY(-1px)}
.eg-topfilters__trigger[aria-expanded="true"] .eg-topfilters__caret{transform:rotate(180deg)}

.eg-topfilters__panel{
    margin-top:10px;
    border-radius:18px;
    border:1px solid rgba(255,255,255,0.12);
    background:
        radial-gradient(140% 120% at 18% 0%,
            rgba(198,9,151,0.10) 0%,
            rgba(124,58,237,0.06) 32%,
            rgba(0,0,0,0.00) 62%,
            rgba(255,255,255,0.00) 100%),
        rgba(6,13,28,0.92);
    box-shadow:
        0 34px 100px rgba(0,0,0,0.74),
        0 0 0 1px rgba(255,255,255,0.04) inset;
    overflow:hidden;
}
.eg-topfilters__panel-inner{padding:14px 14px 16px}
.eg-topfilters__group-title{
    font-family:'SF Pro Display',sans-serif;
    font-weight:800;
    font-size:13px;
    letter-spacing:0.08em;
    text-transform:uppercase;
    color:rgba(255,255,255,0.85);
    margin:0 0 12px;
}
.eg-topfilters__links{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap:8px 14px;
}
.eg-topfilters__link{
    display:inline-flex;
    align-items:center;
    min-height:34px;
    padding:8px 10px;
    border-radius:12px;
    border:1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    color: rgba(255,255,255,0.86);
    text-decoration:none;
    font-family:'SF Pro Text',sans-serif;
    font-size:13px;
    line-height:1.2;
    transition: background .14s ease, border-color .14s ease, transform .14s ease;
}
.eg-topfilters__link:hover{
    background: rgba(255,255,255,0.06);
    border-color: rgba(198,9,151,0.35);
    color:#fff;
    transform: translateY(-1px);
    text-decoration:none;
}
.eg-topfilters__link--disabled{
    opacity:0.55;
    cursor:default;
}

@media (max-width: 768px){
    .eg-topfilters__frame{padding:10px 10px}
    .eg-topfilters__rule{margin:8px 0}
    .eg-topfilters__row{gap:10px}
    .eg-topfilters__trigger{white-space:nowrap}
    .eg-topfilters__chip{white-space:nowrap}
    .eg-topfilters__panel{margin-top:8px}
    .eg-topfilters__links{grid-template-columns:1fr}
}

.footer-filter-link {
    display: inline-block;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid #C60997;
    border-radius: 20px;
    color: #FFFFFF;
    text-decoration: none;
    font-family: 'SF Pro Text', sans-serif;
    font-size: 12px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.footer-filter-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(198, 9, 151, 0.3), transparent);
    transition: left 0.5s;
}

.footer-filter-link:hover {
    border-color: #ff00ff;
    box-shadow: 0 0 10px rgba(198, 9, 151, 0.5);
    text-decoration: none;
}

.footer-filter-link:hover::before {
    left: 100%;
}

.footer-filter-link:hover {
    color: #ff00ff;
}

.site-footer{margin-top:0;border-top:1px solid rgba(255,255,255,.08);background:radial-gradient(140% 140% at 18% 0%,rgba(198,9,151,.12) 0%,rgba(124,58,237,.07) 32%,rgba(0,0,0,0) 62%,rgba(0,0,0,0) 100%),linear-gradient(180deg,rgba(255,255,255,.02) 0,rgba(255,255,255,.008) 100%);position:relative;z-index:1}
.site-footer::before{
    content:'';
    position:absolute;
    left:0;
    right:0;
    top:-1px;
    height:2px;
    pointer-events:none;
    z-index:2;
    background: linear-gradient(90deg,
        rgba(198,9,151,0.00) 0%,
        rgba(198,9,151,0.55) 18%,
        rgba(124,58,237,0.38) 50%,
        rgba(198,9,151,0.55) 82%,
        rgba(198,9,151,0.00) 100%);
    box-shadow:
        0 0 10px rgba(198,9,151,0.18),
        0 0 14px rgba(124,58,237,0.10);
    opacity:0.60;
}
.site-footer__container{width:100%;max-width:1400px;margin:0 auto;padding:18px 20px;box-sizing:border-box}
.site-footer__bottom{display:flex;align-items:center;justify-content:space-between;gap:10px;flex-wrap:wrap}
.site-footer__brandline{display:flex;align-items:center;gap:10px;min-width:0}
.site-footer__brand{color:rgba(255,255,255,.75);text-decoration:none;font-family:'SF Pro Text',sans-serif;font-size:12px;white-space:nowrap}
.site-footer__brand:hover{text-decoration:underline;color:#fff}
.site-footer__slogan{color:rgba(255,255,255,.55);font-family:'SF Pro Text',sans-serif;font-size:12px;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.site-footer__copy{color:rgba(255,255,255,.45);font-family:'SF Pro Text',sans-serif;font-size:12px}
@media (max-width: 767px){.site-footer__container{padding:16px 12px}}

.profiles-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: rgba(255, 255, 255, 0.5);
    grid-column: 1 / -1;
}

@media (max-width: 1200px) {
    .profiles-empty {
        width: 100vw;
    }
}

.profiles-empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.profiles-empty-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
}

.profiles-empty-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
}

.mobile-menu-toggle {
    display: none;
    position: relative;
    z-index: 1001;
    background: rgba(6, 13, 28, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.mobile-menu-toggle:hover {
    background: rgba(6, 13, 28, 1);
    border-color: rgba(255, 255, 255, 0.2);
}

.mobile-menu-toggle .menu-icon {
    display: block;
    width: 24px;
    height: 24px;
}

.mobile-menu-toggle .menu-logo-icon{
    display: none;
    width: 24px;
    height: 24px;
    transform: none;
    transform-origin: center;
}

body:has(.profile-view-container) .nav-container .nav-right {
    margin-left: auto !important;
    order: 999;
}

@media (max-width: 1400px) {
    
    .nav-link {
        font-size: 14px;
    }
    
    .nav-right {
        gap: 12px;
    }
    
    .lang-btn,
    .profile-type-btn,
    .account-btn {
        padding: 6px 10px;
        font-size: 12px;
    }
}

@media (max-width: 1199px) {
    .top-nav {
        padding: 6px 0 0 0;
    }
    
    .mobile-menu-toggle.hidden {
        display: none !important;
    }
    
    
    .nav-menu {
        display: none;
    }
    
    
    .nav-menu-mobile {
        display: flex;
        width: 100%;
        justify-content: flex-start;
        gap: 12px;
        padding: 10px 12px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        background: #060D1C;
    }
    
    .nav-menu-mobile::-webkit-scrollbar {
        display: none;
    }
    
    .nav-link {
        font-size: 12px;
        padding: 10px 12px;
    }
}

@media (min-width: 841px) {
    .nav-menu-mobile {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .main-content {
        display: block;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
    }

    .profiles-grid {
        grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    }
    
    
    .mobile-menu-toggle {
        display: block;
    }
    
    
    
    
    
    .location-sidebar {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        z-index: 1000;
        background: #060D1C;
        overflow-y: auto;
        padding: 20px;
        padding-top: 60px; 
        padding-bottom: 50px; 
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        flex-direction: column;
        visibility: hidden;
        opacity: 0;
    }
    
    
    .location-sidebar-close {
        display: flex;
    }
    
    
    .location-sidebar.mobile-open {
        transform: translateX(0);
        visibility: visible;
        opacity: 1;
    }
    
    
    .mobile-menu-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0);
        z-index: 999;
        backdrop-filter: blur(0px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                    background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                    backdrop-filter 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                    visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
    }
    
    .mobile-menu-overlay.active {
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(2px);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

@media (min-width: 769px) {
    .nav-logo {
        margin-left: 0;
        margin-right: auto;
        position: relative;
        left: auto;
        transform: none;
        z-index: auto;
    }
}

@media (max-width: 768px) {
    
    #profile-image-zoomed {
        display: none !important;
    }
    
    .top-nav {
        position: static;
        left: auto;
        right: auto;
        width: auto;
        z-index: 1000;
        /* Keep header compact on mobile */
        padding: 6px 0 0 0;
        background: rgba(6, 13, 28, 0.98) !important;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    
    
    .main-content {
        margin-top: 0;
    }
    
    .container {
        padding-top: 14px;
    }
    
    .profile-view-container {
        padding-top: 14px;
    }
    
    .profile-page-wrapper {
        margin-top: 14px;
    }
    
    
    .nav-menu-mobile {
        position: relative;
    }
    
    .nav-container {
        /* Mobile: center logo between left & right controls */
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        padding: 10px 12px;
        column-gap: 12px;
        min-height: 54px;
        position: relative;
    }
    
    
    .mobile-menu-toggle {
        display: block;
        grid-column: 1;
        justify-self: start;
        margin-right: 0;
    }

    /* Burger button with neon accent on mobile */
    .mobile-menu-toggle .menu-icon{ display:block; }
    .mobile-menu-toggle .menu-logo-icon{ display:none !important; }

    .mobile-menu-toggle{
        width: 40px;
        height: 40px;
        padding: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow:
            0 10px 26px rgba(0,0,0,0.45),
            0 0 0 1px rgba(255,255,255,0.05) inset;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-menu-toggle .menu-icon path{
        stroke: #C60997;
        filter: drop-shadow(0 0 6px rgba(198,9,151,0.22));
    }

    .mobile-menu-toggle:hover{
        border-color: rgba(198, 9, 151, 0.40);
        box-shadow:
            0 12px 30px rgba(0,0,0,0.50),
            0 0 0 1px rgba(255,255,255,0.06) inset,
            0 0 18px rgba(198, 9, 151, 0.14);
    }

    .mobile-menu-toggle:focus-visible{
        outline: none;
        box-shadow:
            0 12px 30px rgba(0,0,0,0.50),
            0 0 0 3px rgba(198,9,151,0.18),
            0 0 0 1px rgba(255,255,255,0.06) inset;
    }
    
    .nav-right {
        grid-column: 3;
        justify-self: end;
        margin-left: 0;
    }
    
    
    .nav-container:not(:has(.mobile-menu-toggle)) .nav-right {
        margin-left: auto;
    }
    
    
    .nav-logo {
        margin-left: 0;
        margin-right: 0;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        grid-column: auto;
        justify-self: auto;
        z-index: 2;
        min-width: 0;
        max-width: calc(100% - 140px);
    }

    .nav-logo .logo-image {
        /* Icon on mobile */
        height: 54px;
        max-width: none;
        filter: none;
    }

    /* Mobile: show text logo instead of image logo */
    .nav-logo picture{display:none}
    .nav-logo .logo-text{
        display:inline-flex;
        align-items:baseline;
        gap:0;
        font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        font-size:clamp(16px,4.4vw,20px);
        line-height:1;
        color:rgba(255,255,255,.92); /* fallback */
        text-transform:none;
        padding:4px 0;
        letter-spacing: 0.015em;
        text-shadow:
            0 0 10px rgba(0,0,0,.55),
            0 0 16px rgba(124,58,237,.12);
        white-space:nowrap;
    }

    .nav-logo .logo-text__escort{
        color: inherit;
        -webkit-text-stroke: 0 transparent;
        font-weight: 800;
        text-shadow: none;
        letter-spacing: 0.06em;
        position: relative;
    }
    /* Variant 2 accent: tiny neon dot between words */
    .nav-logo .logo-text__escort::after{
        content:'';
        display:inline-block;
        width:6px;
        height:6px;
        margin:0 10px;
        border-radius:999px;
        background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.35) 28%, rgba(255,255,255,0.00) 60%),
                    linear-gradient(135deg, rgba(198,9,151,0.95) 0%, rgba(124,58,237,0.85) 100%);
        box-shadow:
            0 0 10px rgba(198,9,151,0.22),
            0 0 16px rgba(124,58,237,0.14);
        transform: translateY(-1px);
        vertical-align: middle;
    }
    .nav-logo .logo-text__global{
        color: inherit;
        -webkit-text-stroke: 0 transparent;
        font-weight: 650;
        opacity: 1;
        text-shadow: none;
        letter-spacing: 0.02em;
    }

    .nav-logo .logo-link{
        padding: 0;
        border-radius: 0;
        background: transparent;
        border: 0;
        line-height: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: relative;
        padding-bottom: 6px; /* room for underline */
    }

    /* Subtle neon underline under mobile wordmark */
    .nav-logo .logo-link::after{
        content:'';
        position:absolute;
        left: 10%;
        right: 10%;
        bottom: 1px;
        height: 2px;
        border-radius: 999px;
        pointer-events:none;
        background: linear-gradient(90deg,
            rgba(198,9,151,0.00) 0%,
            rgba(198,9,151,0.50) 22%,
            rgba(124,58,237,0.34) 50%,
            rgba(198,9,151,0.50) 78%,
            rgba(198,9,151,0.00) 100%);
        box-shadow:
            0 0 10px rgba(198,9,151,0.16),
            0 0 14px rgba(124,58,237,0.10);
        opacity: 0.55;
    }
    
    
    .nav-menu {
        display: none;
    }
    
    
    .nav-menu-mobile {
        display: flex;
        width: 100%;
        justify-content: flex-start;
        align-items: center;
        gap: 12px;
        padding: 8px 12px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        background: #060D1C;
    }

    .nav-menu-mobile::-webkit-scrollbar {
        display: none;
    }

    .nav-menu-mobile .nav-item{
        display: flex;
        align-items: center;
        flex-shrink: 0;
    }

    .nav-menu-mobile .nav-link {
        font-size: 12px;
        padding: 0 12px;
        height: 32px;
        line-height: 32px;
        white-space: nowrap;
        flex-shrink: 0;
        box-sizing: border-box;
    }
    
    
    .nav-menu-mobile .nav-item .nav-link.active {
        position: relative;
        color: #FFFFFF;
        font-weight: 700;
        /* Use the same pill highlight as desktop; underline on mobile looked misaligned */
        background: linear-gradient(126deg, rgba(98, 83, 184, 0.40) 0%, rgba(237, 128, 194, 0.30) 100%);
        border-color: rgba(198, 9, 151, 0.35);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25), 0 0 18px rgba(198, 9, 151, 0.10);
    }
    
    .nav-menu-mobile .nav-item .nav-link.active::after {
        content: none;
    }

    .nav-right {
        gap: 8px;
        flex-shrink: 0;
        margin-left: 0;
    }
    
    
    body:has(.profile-view-container) .nav-right {
        margin-left: auto !important;
    }

    /* Keep profile-type button compact (if present) */
    .profile-type-btn{
        padding: 6px 10px;
        font-size: 11px;
        min-width: auto;
    }

    /* Make right-side icons match burger style */
    .nav-right .lang-btn,
    .nav-right .account-btn{
        width: 40px;
        height: 40px;
        padding: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow:
            0 10px 26px rgba(0,0,0,0.42),
            0 0 0 1px rgba(255,255,255,0.05) inset;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .nav-right .lang-btn:hover,
    .nav-right .account-btn:hover{
        border-color: rgba(198, 9, 151, 0.28);
        box-shadow:
            0 12px 30px rgba(0,0,0,0.50),
            0 0 0 1px rgba(255,255,255,0.06) inset,
            0 0 18px rgba(198, 9, 151, 0.12);
    }

    .lang-text,
    .profile-type-text {
        font-size: 11px;
    }

    .account-text {
        display: none;
    }

    
    .container {
        padding: 12px;
        /* top-nav is sticky on mobile; no need for large offset */
        padding-top: 12px;
    }
    
    .profile-view-container {
        padding-top: 12px;
    }
    
    .profiles-section {
        padding-top: 30px;
    }
    
    .profile-page-wrapper {
        margin-top: 12px;
    }
    
    .location-sidebar {
        padding: 16px;
        padding-bottom: 50px; 
        max-width: 100%;
    }

    
    .header {
        margin-bottom: 0;
    }

    .header-title {
        font-size: 22px;
        line-height: 1.3;
    }

    .header-description,
    .footer-description {
        font-size: 12px;
        line-height: 1.5;
    }

    .header-copy-frame {
        padding: 16px 16px;
        border-radius: 18px;
        max-width: 100%;
    }

    .header-copy-divider {
        margin: 12px 0;
    }

    
    .profiles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        padding: 0;
    }

    .profile-card {
        width: auto;
        margin: 0;
        height: auto;
        min-height: 0;
        flex-direction: column;
    }

    .profile-image {
        width: auto;
        height: auto;
        flex-shrink: 0;
        display: inline-block;
        margin: 0 auto;
        padding: 0;
        background: transparent;
        overflow: visible;
    }
    
    .profile-image img {
        width: auto;
        max-width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center;
        display: block;
        margin: 0;
        padding: 0;
    }

    .profile-info {
        flex: 1;
        min-height: auto;
        padding-bottom: 0;
    }

    .profile-header {
        padding: 0 12px;
        margin-top: 8px;
        justify-content: center;
        min-height: calc(2 * 1.34em + 4px);
    }

    .profile-name {
        font-size: 14px;
        min-height: calc(2 * 1.34em + 4px);
    }

    .profile-age {
        font-size: 14px;
    }

    .profile-details {
        padding-left: 12px;
        margin-top: 12px;
    }

    .detail-item {
        margin-bottom: 8px;
    }

    .detail-label,
    .detail-value {
        font-size: 11px;
    }

    .profile-location {
        padding-left: 12px;
        margin-top: 16px;
    }

    .location-item {
        margin-bottom: 8px;
    }

    .show-phone-btn {
        width: calc(100% - 24px);
        height: 32px;
        margin: 20px auto;
        font-size: 11px;
    }
    
    
    body:has(.profile-view-container) .nav-container {
        justify-content: flex-end;
    }

    
    .filter-section {
        padding: 12px;
    }

    .filter-item {
        margin-bottom: 16px;
    }

    
    .filter-ok-btn {
        width: 100%;
        padding: 14px;
        font-size: 14px;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 6px 10px;
        justify-content: flex-end;
    }
    
    
    body:has(.profile-view-container) .nav-container {
        justify-content: flex-end;
    }

    .nav-menu {
        gap: 8px;
        padding: 6px 0;
    }

    .nav-link {
        font-size: 12px;
        padding: 4px 0 10px;
    }

    .lang-btn,
    .profile-type-btn,
    .account-btn {
        padding: 5px 8px;
        font-size: 10px;
    }

    .container {
        padding: 10px;
        padding-top: 10px;
    }
    
    .profile-view-container {
        padding-top: 10px;
    }
    
    .profile-page-wrapper {
        margin-top: 10px;
    }

    .location-sidebar {
        padding: 12px;
        padding-bottom: 50px; 
    }

    .header-title {
        font-size: 20px;
    }

    .profiles-grid {
        gap: 12px;
    }

    .profile-card {
        border-radius: 12px;
        flex-direction: column;
        height: auto;
        align-items: center;
        padding: 0;
    }

    .profile-image {
        width: auto;
        height: auto;
        display: block;
        margin: 0;
        padding: 0;
        background: transparent;
        overflow: visible;
        flex-shrink: 0;
    }
    
    .profile-image img {
        width: auto;
        max-width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center;
        display: block;
        margin: 0;
        padding: 0;
    }

    .profile-info {
        min-height: auto;
        padding-bottom: 0;
        width: 100%;
    }

    .profile-header {
        padding: 0 12px;
        margin-top: 12px;
        justify-content: center;
    }

    .profile-details {
        padding-left: 12px;
        margin-top: 16px;
    }

    .profile-location {
        padding-left: 12px;
        margin-top: 20px;
    }

    .show-phone-btn {
        width: calc(100% - 50px) !important;
        height: 40px;
        margin: 20px auto;
        font-size: 12px;
    }
}

.location-sidebar::-webkit-scrollbar {
    width: 6px;
}

.location-sidebar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.location-sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.location-sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.profile-main-photo.clickable {
    cursor: pointer;
}

.profile-main-photo.default-cursor {
    cursor: default;
}

.profile-view-map {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.header-subtitle {
    font-size: 20px;
    color: #FFFFFF;
    opacity: 0.9;
}

.profile-image.clickable {
    cursor: pointer;
}

.location-selector-item.hidden,
.location-row.hidden,
.filter-option-hidden,
#hiddenFilters.hidden,
.filter-show-all.hidden {
    display: none;
}

/* =========================
   Pagination (profiles listing)
   ========================= */
.profiles-pagination{display:flex;justify-content:center;margin:24px 0 10px}
.profiles-pagination__list{display:flex;flex-wrap:wrap;gap:10px;list-style:none;margin:0;padding:0;align-items:center}
.profiles-pagination__item{display:flex;align-items:center}
.profiles-pagination__dots{color:rgba(255,255,255,.55);padding:0 6px}
.profiles-pagination__link{display:inline-flex;align-items:center;justify-content:center;min-width:38px;height:38px;padding:0 12px;border-radius:12px;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.08);color:#fff;text-decoration:none;font-weight:600;line-height:1;transition:background .15s ease,border-color .15s ease,transform .15s ease}
.profiles-pagination__link:hover{background:rgba(255,255,255,.10);border-color:rgba(198,9,151,.35);text-decoration:none;transform:translateY(-1px)}
.profiles-pagination__link:focus-visible{outline:2px solid rgba(198,9,151,.6);outline-offset:2px}
.profiles-pagination__link.is-active{background:rgba(198,9,151,.18);border-color:rgba(198,9,151,.45);cursor:default}

/* =========================
   Safari Performance Optimizations
   ========================= */
/* Disable heavy backdrop-filter blur on Safari for better performance */
@supports (-webkit-touch-callout: none) {
    .top-nav {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(6, 13, 28, 0.98);
    }

    .header-copy-frame {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(6, 13, 28, 0.92);
        border-color: rgba(255,255,255,0.12);
    }

    .location-block {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(6, 13, 28, 0.95);
    }

    .profile-card {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(6, 13, 28, 0.92);
        border-color: rgba(255,255,255,0.12);
    }

    .header-filters__chip {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(6, 13, 28, 0.8);
    }

    .mobile-menu-toggle {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(6, 13, 28, 0.98);
    }

    .location-sidebar-close {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(6, 13, 28, 0.98);
    }

    /* Reduce blur on decorative elements for Safari */
    .background-blur {
        filter: blur(40px);
    }

    .header::after {
        filter: blur(20px);
    }
}

/* =========================
   EG Cyber UI (sidebar)
   Try-only style pack: remove this block to rollback.
   ========================= */
:root{
    --eg-cyber-accent:#C60997;
    --eg-cyber-accent2:#7C3AED;
    --eg-cyber-bg1:#070715;
    --eg-cyber-bg2:#0B0B22;
    --eg-cyber-stroke:rgba(198,9,151,.45);
    --eg-cyber-stroke2:rgba(124,58,237,.30);
    --eg-cyber-text:rgba(255,255,255,.92);
    --eg-cyber-muted:rgba(255,255,255,.58);
}

.location-sidebar .location-block,
.location-sidebar .filter-block{
    background:
        radial-gradient(120% 120% at 18% 0%, rgba(198,9,151,.16) 0%, rgba(124,58,237,.10) 28%, rgba(7,7,21,1) 62%, rgba(7,7,21,1) 100%);
    border:1px solid rgba(255,255,255,.08);
    border-radius:16px;
    border-top-left-radius:16px;
    border-top-right-radius:16px;
    border-bottom-left-radius:16px;
    border-bottom-right-radius:16px;
    box-shadow:
        0 22px 70px rgba(0,0,0,.55),
        0 0 0 1px rgba(198,9,151,.08) inset;
}

/* Top bar: apply similar soft neon gradient */
.top-nav{
    background:
        radial-gradient(140% 140% at 18% 0%,
            rgba(198,9,151,0.12) 0%,
            rgba(124,58,237,0.07) 32%,
            rgba(0,0,0,0.00) 62%,
            rgba(0,0,0,0.00) 100%),
        linear-gradient(180deg, rgba(255,255,255,0.020) 0%, rgba(255,255,255,0.008) 100%);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 14px 40px rgba(0,0,0,0.35);
}

.location-sidebar .location-title,
.location-sidebar .filter-title{
    color:var(--eg-cyber-text);
    opacity:1;
    text-shadow:
        0 0 22px rgba(198,9,151,.25),
        0 0 36px rgba(124,58,237,.18);
    letter-spacing:.02em;
}

.location-sidebar .location-label,
.location-sidebar .filter-label{
    color:rgba(255,255,255,.78);
    opacity:1;
}

.location-sidebar .location-selector-btn{
    border-radius:14px;
    background:linear-gradient(180deg, rgba(11,11,34,.92) 0%, rgba(7,7,21,.92) 100%);
    border:1px solid rgba(255,255,255,.10);
    box-shadow:
        0 14px 34px rgba(0,0,0,.45),
        0 0 0 1px rgba(255,255,255,.04) inset;
}
.location-sidebar .location-selector-btn:hover{
    transform:translateY(-1px);
    border-color:var(--eg-cyber-stroke);
    box-shadow:
        0 18px 44px rgba(0,0,0,.55),
        0 0 0 1px rgba(198,9,151,.16) inset,
        0 0 22px rgba(198,9,151,.10);
}
.location-sidebar .location-selector-btn.active{
    border-color:rgba(198,9,151,.55);
    box-shadow:
        0 18px 44px rgba(0,0,0,.55),
        0 0 0 1px rgba(198,9,151,.18) inset,
        0 0 28px rgba(198,9,151,.12);
}
.location-sidebar .location-selector-btn:focus-visible{
    outline:2px solid rgba(198,9,151,.65);
    outline-offset:2px;
}

.location-sidebar .location-selector-text{
    color:rgba(255,255,255,.86);
}

.location-sidebar .location-selector-menu{
    border:1px solid rgba(255,255,255,.12);
    background:
        radial-gradient(120% 120% at 18% 0%, rgba(198,9,151,.14) 0%, rgba(124,58,237,.08) 30%, rgba(7,7,21,1) 78%);
    box-shadow:
        0 26px 70px rgba(0,0,0,.70),
        0 0 0 1px rgba(198,9,151,.12) inset;
}

.location-sidebar .location-search-input{
    background:rgba(255,255,255,.04);
    border-bottom:1px solid rgba(255,255,255,.10);
}
.location-sidebar .location-search-input:focus-visible{
    outline:2px solid rgba(198,9,151,.65);
    outline-offset:-2px;
    border-bottom-color:rgba(198,9,151,.40);
}

.location-sidebar .location-selector-option{
    color:rgba(255,255,255,.82);
}
.location-sidebar .location-selector-option:hover{
    background:linear-gradient(90deg, rgba(198,9,151,.14) 0%, rgba(124,58,237,.10) 55%, rgba(255,255,255,.02) 100%);
    color:#fff;
}

/* Filters: cyber rows */
.location-sidebar .filter-header-row{
    border-bottom-color:rgba(255,255,255,.10);
    border-radius:14px;
    padding:12px 12px;
    transition:background .18s ease, border-color .18s ease, transform .15s ease;
}
.location-sidebar .filter-dropdown:hover .filter-header-row{
    background:rgba(255,255,255,.03);
    border-bottom-color:rgba(198,9,151,.22);
    transform:translateY(-1px);
}
.location-sidebar .filter-dropdown.active .filter-header-row{
    background:linear-gradient(90deg, rgba(198,9,151,.10) 0%, rgba(124,58,237,.06) 60%, rgba(255,255,255,.02) 100%);
    border-bottom-color:rgba(198,9,151,.22);
}
.location-sidebar .filter-dropdown:focus-within .filter-header-row{
    outline:2px solid rgba(198,9,151,.65);
    outline-offset:2px;
}

.location-sidebar .filter-text-input,
.location-sidebar .filter-number-input,
.location-sidebar .filter-dropdown-select{
    background:rgba(255,255,255,.04);
    border-color:rgba(255,255,255,.12);
}
.location-sidebar .filter-text-input:focus,
.location-sidebar .filter-number-input:focus,
.location-sidebar .filter-dropdown-select:focus{
    border-color:rgba(198,9,151,.40);
    box-shadow:0 0 0 3px rgba(198,9,151,.16);
}

.location-sidebar .ok-btn{
    background:
        linear-gradient(180deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.02) 100%),
        linear-gradient(90deg, rgba(198,9,151,.24) 0%, rgba(124,58,237,.18) 55%, rgba(198,9,151,.18) 100%);
    border:1px solid rgba(255,255,255,.14);
    box-shadow:
        0 16px 42px rgba(0,0,0,.55),
        0 0 32px rgba(198,9,151,.12);
}
.location-sidebar .ok-btn:hover{
    border-color:rgba(198,9,151,.55);
    box-shadow:
        0 18px 50px rgba(0,0,0,.62),
        0 0 42px rgba(198,9,151,.16);
}
.location-sidebar .ok-btn:focus-visible{
    outline:2px solid rgba(198,9,151,.65);
    outline-offset:2px;
}
.location-sidebar .count-badge{
    background:rgba(198,9,151,.16);
    border-color:rgba(198,9,151,.38);
    opacity:.9;
}

/* =========================
   EG Soft Pill UI (sidebar)
   Try-only style pack: overrides Cyber pack above.
   ========================= */
:root{
    --eg-soft-bg: rgba(255,255,255,0.060);
    --eg-soft-bg2: rgba(255,255,255,0.026);
    --eg-soft-stroke: rgba(255,255,255,0.115);
    --eg-soft-stroke2: rgba(255,255,255,0.12);
    --eg-soft-text: rgba(255,255,255,0.92);
    --eg-soft-muted: rgba(255,255,255,0.62);
    --eg-soft-accent: #C60997;
}

.location-sidebar .location-block,
.location-sidebar .filter-block{
    background:
        radial-gradient(140% 120% at 18% 0%,
            rgba(198,9,151,0.10) 0%,
            rgba(124,58,237,0.06) 32%,
            rgba(0,0,0,0.00) 62%,
            rgba(255,255,255,0.00) 100%),
        linear-gradient(180deg,
            rgba(255,255,255,0.065) 0%,
            rgba(255,255,255,0.018) 55%,
            rgba(255,255,255,0.012) 100%),
        linear-gradient(180deg, var(--eg-soft-bg) 0%, var(--eg-soft-bg2) 100%);
    border: 1px solid var(--eg-soft-stroke);
    box-shadow:
        0 18px 54px rgba(0,0,0,0.45),
        0 0 0 1px rgba(255,255,255,0.07) inset,
        0 1px 0 rgba(255,255,255,0.12) inset,
        0 -1px 0 rgba(0,0,0,0.35) inset,
        0 0 22px rgba(198,9,151,0.08),
        0 0 32px rgba(124,58,237,0.05);
    backdrop-filter: blur(24px) saturate(170%) contrast(112%);
    -webkit-backdrop-filter: blur(24px) saturate(170%) contrast(112%);
}

.location-sidebar .location-title,
.location-sidebar .filter-title{
    text-shadow:
        0 0 16px rgba(198,9,151,0.16),
        0 0 26px rgba(124,58,237,0.10);
    letter-spacing: 0.01em;
}

/* Big soft pill buttons */
.location-sidebar .location-selector-item{ gap: 10px; }

.location-sidebar .location-selector-btn{
    border-radius: 999px;
    padding: 14px 18px;
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow:
        0 10px 26px rgba(0,0,0,0.32),
        0 1px 0 rgba(255,255,255,0.06) inset,
        0 -1px 0 rgba(0,0,0,0.35) inset;
    transform: none;
}
.location-sidebar .location-selector-btn:hover{
    background: rgba(255,255,255,0.075);
    border-color: rgba(198,9,151,0.30);
    box-shadow:
        0 12px 30px rgba(0,0,0,0.34),
        0 1px 0 rgba(255,255,255,0.08) inset,
        0 -1px 0 rgba(0,0,0,0.38) inset,
        0 0 22px rgba(198,9,151,0.10),
        0 0 34px rgba(124,58,237,0.06);
}
.location-sidebar .location-selector-btn.active{
    border-color: rgba(198,9,151,0.45);
    box-shadow:
        0 12px 34px rgba(0,0,0,0.36),
        0 1px 0 rgba(255,255,255,0.08) inset,
        0 -1px 0 rgba(0,0,0,0.40) inset,
        0 0 0 3px rgba(198,9,151,0.12),
        0 0 26px rgba(198,9,151,0.12),
        0 0 42px rgba(124,58,237,0.08);
}
.location-sidebar .location-selector-text{
    text-transform: none;
    letter-spacing: 0.01em;
    font-size: 13px;
    color: var(--eg-soft-text);
}

/* Menus: softer, more rounded */
.location-sidebar .location-selector-menu{
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(6, 13, 28, 0.96);
    box-shadow: 0 26px 70px rgba(0,0,0,0.65);
}
.location-sidebar .location-search-input{
    background: rgba(255,255,255,0.05);
    border-bottom-color: rgba(255,255,255,0.10);
}
.location-sidebar .location-selector-option{
    text-transform: none;
    letter-spacing: 0.01em;
    font-size: 13px;
}

/* Filters as “settings list” tiles */
.location-sidebar .filter-header-row{
    padding: 12px 14px;
    border-bottom: 0;
    margin: 8px 0;
    min-height: 52px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 16px;
    transform: none;
}
.location-sidebar .filter-dropdown:hover .filter-header-row{
    background: rgba(255,255,255,0.06);
    border-color: rgba(198,9,151,0.22);
    box-shadow: 0 0 18px rgba(198,9,151,0.06);
}
.location-sidebar .filter-dropdown.active .filter-header-row{
    background: rgba(198,9,151,0.10);
    border-color: rgba(198,9,151,0.22);
    box-shadow:
        0 0 22px rgba(198,9,151,0.08),
        0 0 34px rgba(124,58,237,0.05);
}
.location-sidebar .filter-label{
    text-transform: none;
    font-size: 13px;
    letter-spacing: 0.01em;
    color: var(--eg-soft-muted);
}
.location-sidebar .dropdown-value{
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.01em;
}

.location-sidebar .filter-dropdown.active .filter-expanded,
.location-sidebar .filter-group.active .filter-expanded{
    border-bottom: 0;
    margin-bottom: 10px;
}

/* APPLY button: soft big pill */
.location-sidebar .ok-btn{
    border-radius: 999px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow:
        0 14px 40px rgba(0,0,0,0.45),
        0 1px 0 rgba(255,255,255,0.06) inset,
        0 -1px 0 rgba(0,0,0,0.40) inset,
        0 0 34px rgba(198,9,151,0.10),
        0 0 48px rgba(124,58,237,0.07);
}
.location-sidebar .ok-btn:hover{
    transform: translateY(-1px);
    border-color: rgba(198,9,151,0.45);
    box-shadow:
        0 18px 50px rgba(0,0,0,0.52),
        0 0 0 3px rgba(198,9,151,0.10),
        0 0 46px rgba(198,9,151,0.14),
        0 0 64px rgba(124,58,237,0.10);
}
.location-sidebar .count-badge{
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.16);
    opacity: 0.9;
}

/* EG Topfilters: extra navigation buttons (not filter chips) */
.eg-topfilters__row-scroll--extras{gap:12px}
.eg-topfilters__search-input{appearance:none;-webkit-appearance:none;height:42px;padding:0 14px;border-radius:12px;border:1px solid rgba(255,255,255,.12);background:rgba(255,255,255,.05);color:rgba(255,255,255,.92);font-family:'SF Pro Text',sans-serif;font-size:13px;font-weight:600;min-width:160px;box-shadow:0 2px 10px rgba(0,0,0,.18),0 0 0 1px rgba(255,255,255,.03) inset}
.eg-topfilters__search-input::placeholder{color:rgba(255,255,255,.45);font-weight:600}
.eg-topfilters__search-input:focus{outline:none;border-color:rgba(198,9,151,.45);box-shadow:0 0 0 3px rgba(198,9,151,.12),0 8px 22px rgba(0,0,0,.28)}
.eg-topfilters__search-btn{appearance:none;-webkit-appearance:none;display:inline-flex;align-items:center;justify-content:center;height:42px;padding:0 16px;border-radius:12px;border:1px solid rgba(198,9,151,.55);background:linear-gradient(180deg,rgba(198,9,151,.22) 0%,rgba(124,58,237,.10) 100%);color:rgba(255,255,255,.95);font-family:'SF Pro Text',sans-serif;font-size:13px;font-weight:900;letter-spacing:.02em;cursor:pointer;user-select:none}
.eg-topfilters__search-clear{appearance:none;-webkit-appearance:none;display:inline-flex;align-items:center;justify-content:center;height:42px;padding:0 14px;border-radius:12px;border:1px solid rgba(255,255,255,.12);background:rgba(255,255,255,.04);color:rgba(255,255,255,.78);font-family:'SF Pro Text',sans-serif;font-size:13px;font-weight:800;cursor:pointer;user-select:none}

/* Search bar above profiles grid */
.eg-profiles-search{width:100%;margin:0 0 16px}
.eg-profiles-search__frame{position:relative;padding:12px 12px;border-radius:16px;border:1px solid rgba(255,255,255,.08);background:radial-gradient(120% 120% at 18% 0%,rgba(198,9,151,.14) 0%,rgba(124,58,237,.08) 28%,rgba(7,7,21,1) 62%,rgba(7,7,21,1) 100%);box-shadow:0 18px 54px rgba(0,0,0,.45),0 0 0 1px rgba(198,9,151,.06) inset,inset 0 0 0 1px rgba(255,255,255,.05);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px)}
.eg-profiles-search__label{font-size:11px;font-weight:900;letter-spacing:.12em;text-transform:uppercase;color:rgba(255,255,255,.72);padding:0 0 8px 12px;border-left:3px solid rgba(198,9,151,.6);line-height:1.2}
.eg-profiles-search__controls{display:grid;grid-template-columns:auto minmax(120px,1fr) minmax(120px,1fr) 96px 84px;gap:8px;align-items:center}
.eg-profiles-search__lead{font-size:11px;font-weight:900;letter-spacing:.12em;text-transform:uppercase;color:rgba(255,255,255,.72);padding:0 12px;border-left:3px solid rgba(198,9,151,.6);line-height:40px;white-space:nowrap}
.eg-profiles-search__input{appearance:none;-webkit-appearance:none;height:40px;padding:0 14px;border-radius:12px;border:1px solid rgba(255,255,255,.12);background:rgba(255,255,255,.05);color:rgba(255,255,255,.92);font-family:'SF Pro Text',sans-serif;font-size:13px;font-weight:600;min-width:0;box-shadow:0 2px 10px rgba(0,0,0,.18),0 0 0 1px rgba(255,255,255,.03) inset}
.eg-profiles-search__input::placeholder{color:rgba(255,255,255,.45);font-weight:600}
.eg-profiles-search__input:focus{outline:none;border-color:rgba(198,9,151,.45);box-shadow:0 0 0 3px rgba(198,9,151,.12),0 8px 22px rgba(0,0,0,.28)}
.eg-profiles-search__btn{appearance:none;-webkit-appearance:none;display:inline-flex;align-items:center;justify-content:center;height:40px;padding:0 14px;border-radius:12px;border:1px solid rgba(198,9,151,.55);background:linear-gradient(180deg,rgba(198,9,151,.22) 0%,rgba(124,58,237,.10) 100%);color:rgba(255,255,255,.95);font-family:'SF Pro Text',sans-serif;font-size:12px;font-weight:900;letter-spacing:.02em;cursor:pointer;user-select:none;transition:transform .15s ease,background .15s ease,border-color .15s ease,box-shadow .15s ease,color .15s ease,filter .15s ease}
.eg-profiles-search__btn:hover{transform:translateY(-1px);border-color:rgba(198,9,151,.75);background:linear-gradient(180deg,rgba(198,9,151,.30) 0%,rgba(124,58,237,.14) 100%);box-shadow:0 10px 26px rgba(0,0,0,.40),0 0 0 1px rgba(198,9,151,.10) inset,0 0 18px rgba(198,9,151,.18);filter:saturate(1.08)}
.eg-profiles-search__btn:active{transform:translateY(0);box-shadow:0 6px 18px rgba(0,0,0,.34),0 0 0 1px rgba(198,9,151,.10) inset}
.eg-profiles-search__btn:focus-visible{outline:none;box-shadow:0 0 0 3px rgba(198,9,151,.18),0 10px 26px rgba(0,0,0,.40)}
.eg-profiles-search__clear{appearance:none;-webkit-appearance:none;display:inline-flex;align-items:center;justify-content:center;height:40px;padding:0 12px;border-radius:12px;border:1px solid rgba(255,255,255,.12);background:rgba(255,255,255,.04);color:rgba(255,255,255,.78);font-family:'SF Pro Text',sans-serif;font-size:12px;font-weight:800;cursor:pointer;user-select:none;transition:transform .15s ease,background .15s ease,border-color .15s ease,box-shadow .15s ease,color .15s ease}
.eg-profiles-search__clear:hover{transform:translateY(-1px);border-color:rgba(255,255,255,.22);background:rgba(255,255,255,.07);color:rgba(255,255,255,.92);box-shadow:0 10px 22px rgba(0,0,0,.38),0 0 0 1px rgba(255,255,255,.06) inset}
.eg-profiles-search__clear:active{transform:translateY(0);box-shadow:0 6px 16px rgba(0,0,0,.32),0 0 0 1px rgba(255,255,255,.06) inset}
.eg-profiles-search__clear:focus-visible{outline:none;box-shadow:0 0 0 3px rgba(255,255,255,.12),0 10px 22px rgba(0,0,0,.38)}
@media (max-width:520px){.eg-profiles-search__controls{grid-template-columns:1fr 1fr}.eg-profiles-search__btn,.eg-profiles-search__clear{width:100%}}

/* Sidebar filter-block: Profiles here */
.filter-block .eg-filter-profiles-here{position:relative;display:flex;align-items:center;justify-content:space-between;gap:12px;margin:10px 12px 10px;padding:12px 14px;border-radius:12px;border:1px solid rgba(255,255,255,.08);background:linear-gradient(180deg,rgba(255,255,255,.06) 0%,rgba(255,255,255,.02) 100%);box-shadow:inset 0 0 0 1px rgba(255,255,255,.05)}
.filter-block .eg-filter-profiles-here::after{content:'';position:absolute;inset:0;border-radius:inherit;pointer-events:none;background:linear-gradient(180deg,rgba(255,255,255,.06) 0%,rgba(255,255,255,0) 55%);opacity:.75}
.filter-block .eg-filter-profiles-here__text,.filter-block .eg-filter-profiles-here__count{position:relative;z-index:1}
.filter-block .eg-filter-profiles-here__label{font-size:11px;font-weight:900;letter-spacing:.12em;text-transform:uppercase;color:rgba(255,255,255,.72);white-space:nowrap}
.filter-block .eg-filter-profiles-here__text{display:inline-flex;align-items:baseline;gap:8px;min-width:0}
.filter-block .eg-filter-profiles-here__sep{color:rgba(255,255,255,.38);font-weight:800}
.filter-block .eg-filter-profiles-here__place{color:rgba(255,255,255,.82);font-weight:800;font-size:14px;max-width:190px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.filter-block .eg-filter-profiles-here__count{display:inline-flex;align-items:center;justify-content:center;height:28px;padding:0 10px;border-radius:999px;border:1px solid rgba(198,9,151,.30);background:rgba(198,9,151,.12);color:rgba(255,255,255,.95);font-weight:900;font-size:13px;letter-spacing:.02em;box-shadow:0 0 0 1px rgba(255,255,255,.04) inset;flex:0 0 auto}
.eg-topfilters__action{
    appearance:none;-webkit-appearance:none;display:inline-flex;align-items:center;justify-content:center;
    height:42px;padding:0 16px;border-radius:12px;
    border:1px solid rgba(198,9,151,.55);
    background:linear-gradient(180deg,rgba(198,9,151,.14) 0%,rgba(124,58,237,.08) 100%);
    color:rgba(255,255,255,.92);
    font-family:'SF Pro Text',sans-serif;font-size:13px;font-weight:800;letter-spacing:.02em;
    cursor:default;user-select:none;
    box-shadow:0 10px 26px rgba(0,0,0,.35),0 0 0 1px rgba(255,255,255,.04) inset;
    transition:transform .2s ease,border-color .2s ease,background .2s ease,box-shadow .2s ease,color .2s ease
}
.eg-topfilters__action:hover{
    border-color:rgba(198,9,151,.8);
    background:linear-gradient(180deg,rgba(198,9,151,.18) 0%,rgba(124,58,237,.10) 100%);
    box-shadow:0 14px 32px rgba(198,9,151,.16),0 0 0 1px rgba(198,9,151,.12) inset;
    transform:translateY(-1px)
}
.eg-topfilters__action:active{transform:translateY(0)}
.eg-topfilters__action:focus{outline:none}
.eg-topfilters__action:focus-visible{outline:2px solid rgba(198,9,151,.55);outline-offset:2px}

/* EG Topfilters: compact layout */
.eg-topfilters--panel .eg-topfilters__panel-body{gap:14px}
.eg-topfilters--panel .eg-topfilters__row{display:grid;grid-template-columns:120px 1fr;align-items:start;column-gap:12px;row-gap:10px}
.eg-topfilters--panel .eg-topfilters__row-label{padding:8px 0 0 12px;margin:0}
.eg-topfilters--panel .eg-topfilters__row-scroll{padding-left:0;gap:10px}
@media (max-width:560px){
  .eg-topfilters--panel .eg-topfilters__frame{padding:16px 14px}
  .eg-topfilters--panel .eg-topfilters__panel-body{gap:12px}
  .eg-topfilters--panel .eg-topfilters__row{grid-template-columns:110px 1fr;column-gap:10px;row-gap:8px}
  .eg-topfilters--panel .eg-topfilters__row-scroll{gap:8px}
}
@media (max-width:420px){
  .eg-topfilters--panel .eg-topfilters__row{grid-template-columns:1fr}
  .eg-topfilters--panel .eg-topfilters__row-label{padding-top:0}
}

/* EG Topfilters: stable hover shape + glossy glow */
.eg-topfilters--panel .eg-topfilters__chip,.eg-topfilters--panel .eg-topfilters__trigger,.eg-topfilters--panel .eg-topfilters__action{position:relative;isolation:isolate;overflow:hidden;-webkit-font-smoothing:antialiased}
.eg-topfilters--panel .eg-topfilters__chip::after,.eg-topfilters--panel .eg-topfilters__trigger::after,.eg-topfilters--panel .eg-topfilters__action::after{content:'';position:absolute;inset:0;border-radius:inherit;pointer-events:none;opacity:0;background:radial-gradient(120% 140% at 20% 0%,rgba(198,9,151,.22) 0%,rgba(124,58,237,.10) 40%,rgba(0,0,0,0) 72%),linear-gradient(180deg,rgba(255,255,255,.12) 0%,rgba(255,255,255,.04) 55%,rgba(0,0,0,0) 100%);transition:opacity .2s ease}
.eg-topfilters--panel .eg-topfilters__chip:hover,.eg-topfilters--panel .eg-topfilters__trigger:hover,.eg-topfilters--panel .eg-topfilters__action:hover{transform:none !important}
.eg-topfilters--panel .eg-topfilters__chip:hover::after,.eg-topfilters--panel .eg-topfilters__trigger:hover::after,.eg-topfilters--panel .eg-topfilters__action:hover::after{opacity:1}

/* CLS guard (mobile): lock H1 text block and avoid intermediate style jumps */
@media (max-width:768px){
  .main-content > header.header .header-copy-frame{min-height:360px !important;height:auto !important;max-height:none !important;overflow:visible !important;background:radial-gradient(120% 120% at 18% 0%,rgba(198,9,151,.14) 0%,rgba(124,58,237,.08) 28%,rgba(7,7,21,1) 62%,rgba(7,7,21,1) 100%) !important;box-shadow:0 14px 42px rgba(0,0,0,.44),0 0 0 1px rgba(198,9,151,.06) inset,inset 0 0 0 1px rgba(255,255,255,.04) !important;backdrop-filter:none !important;-webkit-backdrop-filter:none !important}
  .main-content > header.header .header-copy-frame::before,
  .main-content > header.header .header-copy-frame::after{display:block !important}
  .main-content > header.header .eg-h1text{--eg-h1text-max:220px !important;padding-bottom:8px}
  .main-content > header.header .eg-h1text .eg-h1text__content{max-height:var(--eg-h1text-max) !important;overflow:hidden !important;position:relative}
  .main-content > header.header .eg-h1text.is-expanded .eg-h1text__content,
  .main-content > header.header .eg-h1text.eg-h1text--no-toggle .eg-h1text__content{max-height:none !important;overflow:visible !important}
  .main-content > header.header .eg-h1text:not(.eg-h1text--no-toggle) .eg-h1text__toggle{display:inline-flex !important}
  .main-content > header.header .eg-h1text__toggle{position:relative;z-index:4}
  .eg-profiles-search__mobile-trigger{display:flex !important}
  .eg-profiles-search:not(.eg-profiles-search--expanded) .eg-profiles-search__controls{display:none !important}
  .eg-profiles-search.eg-profiles-search--expanded .eg-profiles-search__controls{display:grid !important;visibility:visible !important;opacity:1 !important}
  .eg-profiles-search__input{font-size:16px !important}
  .main-content > header.header .eg-h1text.eg-h1text--no-toggle .eg-h1text__toggle{display:none !important}

  /* Mobile UX: keep search in normal flow while typing */
  .eg-profiles-search{position:relative;min-height:0}
  .eg-profiles-search.eg-profiles-search--expanded .eg-profiles-search__frame{position:relative;top:auto;left:auto;right:auto;z-index:2;box-shadow:0 22px 70px rgba(0,0,0,.5)}
  .eg-profiles-search.eg-profiles-search--typing .eg-profiles-search__frame,
  .eg-profiles-search:focus-within .eg-profiles-search__frame{position:relative !important;top:auto !important;left:auto !important;right:auto !important;transform:none !important;inset:auto !important}
}

/* Desktop CLS guard: stable nav/container geometry */
@media (min-width:769px){
  .top-nav .nav-container{min-height:72px !important;display:flex;align-items:center}
  .container{padding-top:var(--layout-padding) !important}
}
@media (min-width:1201px){
  .top-nav .nav-container{display:grid !important;grid-template-columns:auto 1fr auto !important;align-items:center !important;position:relative !important;column-gap:24px}
  .top-nav .nav-container .nav-logo{grid-column:1 !important;justify-self:start !important;position:relative !important;z-index:2;margin:0 !important}
  .top-nav .nav-container .nav-menu{display:flex !important;visibility:visible !important;opacity:1 !important;grid-column:2 !important;justify-self:center !important;position:relative !important;left:auto !important;transform:none !important;margin:0 auto !important;width:max-content !important;max-width:calc(100vw - 380px);justify-content:flex-start !important;overflow-x:auto !important;scrollbar-width:none;-ms-overflow-style:none;z-index:1}
  .top-nav .nav-container .nav-menu::-webkit-scrollbar{display:none}
  .top-nav .nav-container .nav-right{display:flex !important;grid-column:3 !important;justify-self:end !important;margin-left:0 !important;position:relative !important;z-index:2}
  .top-nav .mobile-menu-toggle,.top-nav .account-mobile-menu-toggle,.top-nav .mobile-right-menu-toggle{display:none !important}
  .top-nav .nav-menu-mobile{display:none !important}
}
@media (max-width:1200px){
  .top-nav .mobile-menu-toggle{width:40px !important;height:40px !important;padding:8px !important;border-radius:50% !important;background:rgba(255,255,255,.06) !important;border:1px solid rgba(255,255,255,.14) !important;box-shadow:0 10px 26px rgba(0,0,0,.45),0 0 0 1px rgba(255,255,255,.05) inset !important;backdrop-filter:blur(10px) !important;-webkit-backdrop-filter:blur(10px) !important;align-items:center !important;justify-content:center !important}
  .top-nav .mobile-menu-toggle .menu-icon{display:block !important}
  .top-nav .mobile-menu-toggle .menu-logo-icon{display:none !important}
  .top-nav .mobile-menu-toggle .menu-icon path{stroke:#C60997 !important;filter:drop-shadow(0 0 6px rgba(198,9,151,.22))}
  .main-content > header.header .eg-topfilters{display:none !important}
  .top-nav .nav-container .nav-menu,.top-nav .nav-menu-mobile{display:none !important;visibility:hidden !important}
  .top-nav .mobile-menu-toggle,.top-nav .account-mobile-menu-toggle,.top-nav .mobile-right-menu-toggle{display:flex !important}
}

@media (min-width:769px){
  .eg-topfilters__breadcrumbs{display:flex;flex-wrap:wrap;align-items:center;gap:8px;margin:0;padding-left:15px !important;font-size:13px;font-weight:700;color:rgba(175,182,196,.9);overflow:visible;text-overflow:clip;white-space:normal}
  .eg-topfilters__breadcrumbs .breadcrumb-link{color:rgba(175,182,196,.9);text-decoration:none;transition:color .3s ease}
  .eg-topfilters__breadcrumbs .breadcrumb-link:hover{color:rgba(207,212,224,.98);text-decoration:none}
  .eg-topfilters__breadcrumbs .breadcrumb-separator,.eg-topfilters__breadcrumbs .breadcrumb-current{color:rgba(149,156,172,.92)}
  .eg-topfilters__breadcrumbs .breadcrumb-separator{margin:0 4px}
}
.main-content > header.header .eg-h1text{--eg-h1text-max:190px;padding-bottom:8px}.main-content > header.header .eg-h1text .eg-h1text__content{max-height:var(--eg-h1text-max)!important;overflow:hidden!important;position:relative}.main-content > header.header .eg-h1text:not(.is-expanded):not(.eg-h1text--no-toggle) .eg-h1text__content::after{content:'';position:absolute;left:0;right:0;bottom:0;height:62px;background:linear-gradient(180deg,rgba(7,7,21,0) 0%,rgba(7,7,21,.3) 36%,rgba(7,7,21,.72) 72%,rgba(7,7,21,.96) 100%);pointer-events:none;z-index:2}.main-content > header.header .eg-h1text.is-expanded .eg-h1text__content,.main-content > header.header .eg-h1text.eg-h1text--no-toggle .eg-h1text__content{max-height:none!important;overflow:visible!important}.main-content > header.header .eg-h1text:not(.eg-h1text--no-toggle) .eg-h1text__toggle{display:inline-flex!important;align-items:center;margin-top:12px;padding:5px 0;border:none;border-radius:0;background:transparent;color:rgba(255,255,255,.78);font-size:12px;font-weight:600;letter-spacing:.03em;text-decoration:underline;text-decoration-color:rgba(198,9,151,.44);text-underline-offset:3px;cursor:pointer;transition:color .2s ease,text-decoration-color .2s ease}.main-content > header.header .eg-h1text:not(.eg-h1text--no-toggle) .eg-h1text__toggle:hover{color:rgba(255,255,255,.95);text-decoration-color:rgba(198,9,151,.74)}.main-content > header.header .eg-h1text:not(.eg-h1text--no-toggle) .eg-h1text__toggle:focus-visible{outline:2px solid rgba(198,9,151,.45);outline-offset:2px;border-radius:4px}.main-content > header.header .eg-h1text.eg-h1text--no-toggle .eg-h1text__toggle{display:none!important}
.location-selector-option.location-selector-option--country{display:flex;align-items:center;gap:8px}.location-country-flag{display:inline-flex;align-items:center;justify-content:center;min-width:1.25em;font-size:16px;line-height:1}.location-country-flag-img{width:20px;height:15px;display:block;border-radius:3px;box-shadow:0 0 0 1px rgba(255,255,255,.12) inset;object-fit:cover}.location-country-title{min-width:0}
.eg-loc-item--country{display:flex;align-items:center;gap:8px}.eg-loc-item__flag{display:inline-flex;align-items:center;justify-content:center;width:20px;min-width:20px}.eg-loc-item__label{min-width:0}
.main-content > header.header .eg-h1text .eg-h1text__content,.main-content > header.header .eg-h1text .eg-h1text__content p,.main-content > header.header .eg-h1text .eg-h1text__content li{color:rgba(198,206,220,.76)}