/* Profile page styles (moved out of profile-view.php inline <style>). */

/* Wrapper для страницы анкеты с сайдбаром */
.profile-view-wrapper {
    display: flex;
    min-height: 100vh;
    background-color: #060D1C;
    position: relative;
}

/* Сайдбар на странице анкеты */
.profile-view-sidebar {
    width: 350px;
    flex-shrink: 0;
}

/* Контент-обертка */
.profile-view-content-wrapper {
    flex: 1;
    min-width: 0;
    overflow-x: hidden;
}

.profile-view-container {
    min-height: 100vh;
    background-color: #060D1C;
    padding: 20px;
}

.profile-view-content {
    color: #FFFFFF;
    padding: 0 40px;
    position: relative;
}

/* Градиентная блямба после баннера */
.profile-view-content::after {
    content: '';
    position: absolute;
    width: 60vw;
    aspect-ratio: 900 / 500;
    top: 350px;
    left: 50%;
    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(100px);
    pointer-events: none;
    z-index: 0;
}

@media (min-width: 1200px) {
    .profile-view-content,
    .breadcrumbs {
        padding: 0 15%;
    }
}

/* Кнопка-бургер - скрыта по умолчанию, видна только на мобильных */
/* Используем более специфичный селектор для переопределения правил из frontend.css */
.profile-view-wrapper .mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
    background: rgba(6, 13, 28, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    color: white;
    transition: opacity 0.3s ease;
}

.profile-view-wrapper .mobile-menu-toggle:hover {
    opacity: 0.8;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.mobile-menu-overlay.active {
    display: block;
}

/* Мобильная версия сайдбара */
@media (max-width: 1200px) {
    .profile-view-wrapper {
        position: relative;
    }
    
    .profile-view-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100%;
        max-width: 400px;
        z-index: 1000;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        background-color: #060D1C;
    }
    
    .profile-view-sidebar.mobile-open {
        transform: translateX(0);
    }
    
    /* Переопределяем правило из frontend.css с !important */
    .profile-view-wrapper .mobile-menu-toggle {
        display: block !important;
    }
    
    .profile-view-content-wrapper {
        width: 100%;
    }
}

.profile-back-section {
    margin-bottom: 30px;
}

.profile-back-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 16px;
    cursor: pointer;
    padding: 10px 20px;
    transition: opacity 0.2s;
}

.profile-back-btn:hover {
    opacity: 0.7;
}


/* Хлебные крошки */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #FFFFFF;
    flex-wrap: wrap;
}

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

.breadcrumb-link {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

/* 1. Баннер */
.profile-banner {
    width: 100%;
    margin-bottom: 30px;
}

.profile-banner img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* 2. H1 - Имя */
.profile-view-name {
    position: relative;
    z-index: 1;
    font-family: 'SF Pro Display', sans-serif;
    font-weight: 600;
    /* Slightly smaller + responsive to long EN H1 */
    font-size: clamp(22px, 3vw, 28px);
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 20px;
}

/* H2 - Подзаголовок */
.profile-view-subtitle {
    position: relative;
    z-index: 1;
    margin: -8px 0 20px;
    font-family: 'SF Pro Display', sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

/* 3. About */
.profile-view-description {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #EAEAEA;
    font-size: 16px;
}

/* Локация */
.profile-view-location {
    margin-bottom: 20px;
}

.profile-view-location .location-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.profile-view-location .location-label {
    font-weight: 500;
    color: #FFFFFF;
    text-transform: uppercase;
    font-size: 14px;
}

.profile-view-location .location-value {
    color: #EAEAEA;
    text-transform: uppercase;
    font-size: 14px;
}

.profile-view-location .breadcrumb-link {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
}

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

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

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

.location-label {
    font-weight: 500;
    color: #FFFFFF;
    text-transform: uppercase;
    font-size: 14px;
    min-width: 100px;
}

.location-value {
    color: #EAEAEA;
    text-transform: uppercase;
    font-size: 14px;
}

/* 4. Параметры с фото слева */
.profile-params-section {
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

/* Десктопная версия */
.profile-params-desktop {
    display: block;
}

.profile-content-desktop {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.profile-header-desktop {
    margin-bottom: 30px;
}

.profile-photo-wrapper-desktop {
    flex-shrink: 0;
    width: 300px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
}

.profile-info-wrapper-desktop {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.profile-view-description-desktop {
    margin-bottom: 30px;
}

/* Мобильная версия - скрыта на десктопе */
.profile-params-mobile {
    display: none;
}

.profile-view-name-mobile {
    display: none;
}

/* Модалка для видео - скрыта на десктопе */
.video-modal {
    display: none;
}

.profile-photo-wrapper {
    flex-shrink: 0;
    width: 300px;
    max-width: 100%;
}

.profile-info-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.profile-main-photo {
    width: 100%;
}

.profile-main-photo img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.profile-phone-section {
    margin-top: 10px;
    width: 100%;
    margin-left: 0;
    position: relative;
    z-index: 10;
}

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

.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;
}

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

.profile-view-attributes {
    flex: 1;
}

.profile-attribute-item {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    align-items: center;
}

.attribute-label {
    font-weight: 500;
    color: #FFFFFF;
    text-transform: uppercase;
    font-size: 14px;
    min-width: 150px;
}

.attribute-value {
    color: #EAEAEA;
    text-transform: uppercase;
    font-size: 14px;
}

/* 6. Заголовок галереи */
.gallery-title {
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-align: center;
}

/* 7. Галерея (адаптивная) */
.profile-view-gallery {
    margin-bottom: 40px;
    position: relative;
}

.profile-view-gallery::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(to left, rgba(6, 13, 28, 0.9) 0%, rgba(6, 13, 28, 0.7) 50%, transparent 100%);
    pointer-events: none;
    z-index: 5;
    display: none;
}

.profile-view-gallery:has(.gallery-desktop)::after {
    display: block;
}

.gallery-grid {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(198, 9, 151, 0.5) transparent;
    padding-bottom: 10px;
    position: relative;
}

.gallery-grid::-webkit-scrollbar {
    height: 8px;
}

.gallery-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.gallery-grid::-webkit-scrollbar-thumb {
    background: rgba(198, 9, 151, 0.5);
    border-radius: 4px;
}

.gallery-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(198, 9, 151, 0.8);
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    width: clamp(220px, 22vw, 360px);
    aspect-ratio: 3 / 4;
    min-height: clamp(300px, 30vw, 480px);
    height: auto;
    flex-shrink: 0;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item picture {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: inherit;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    border-radius: 20px !important;
    cursor: pointer;
    transition: opacity 0.2s ease;
}
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px !important;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
    opacity: 0.95;
}

/* Мобильная версия галереи */
.gallery-mobile {
    display: none;
}

.gallery-desktop {
    display: flex;
}

.gallery {
    background: linear-gradient(135deg, rgba(169, 58, 222, 0.3) 0%, rgba(198, 9, 151, 0.2) 100%);
    padding: 40px 20px 60px;
    border-radius: 20px;
    margin: 0 auto;
}

.gallery__viewport {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    max-width: 100%;
}

.gallery__track {
    position: relative;
    width: 70%;
    max-width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery__slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery__slide--active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
}

.gallery__slide img {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    display: block;
    object-fit: cover;
    object-position: top center;
    max-height: 60vh;
}
.gallery__slide video {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    display: block;
    object-fit: cover;
    max-height: 60vh;
}

.gallery__arrow {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    padding: 0;
    flex-shrink: 0;
}

.gallery__arrow:hover {
    background: rgba(198, 9, 151, 0.8);
    border-color: #C60997;
    transform: scale(1.1);
}

.gallery__arrow--prev {
    left: 10px;
}

.gallery__arrow--next {
    right: 10px;
}

.gallery__arrow svg {
    width: 24px;
    height: 24px;
}

.gallery__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 0;
}

.gallery__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    flex-shrink: 0;
}

.gallery__dot--active {
    width: 24px;
    border-radius: 4px;
    background: #FFFFFF;
}

.gallery__dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* Модальное окно с фото при наведении */
.profile-photo-modal {
    position: fixed;
    z-index: 10000;
    display: none;
    pointer-events: none;
    max-width: 400px;
    max-height: 400px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 8px;
    overflow: hidden;
}

.profile-photo-modal img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Модальное окно для галереи */
.gallery-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;
}

.gallery-modal.active {
    display: flex;
}

.gallery-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 80px; /* Место для стрелочек слева и справа */
}

.gallery-modal-media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal-media img,
.gallery-modal-media video {
    max-width: calc(90vw - 140px); /* Оставляем место для стрелочек слева и справа */
    max-height: calc(100vh - 80px); /* Ограничение по высоте с учетом крестика */
    object-fit: contain;
}

.gallery-modal-close {
    position: absolute;
    top: -40px;
    right: 30px;
    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;
}

.gallery-modal-content {
    max-height: calc(100vh - 80px); /* Ограничение по высоте с учетом крестика */
}

.gallery-modal-prev,
.gallery-modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 10002;
    transition: background 0.3s ease;
    user-select: none;
}

.gallery-modal-prev:hover,
.gallery-modal-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.gallery-modal-prev {
    left: 0;
    transform: translate(-50%, -50%);
}

.gallery-modal-next {
    right: 0;
    left: auto;
    transform: translate(50%, -50%);
}

.gallery-video {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Индикатор плеера (треугольник) для немобильных версий */
.gallery-desktop .gallery-video::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 30px solid rgba(255, 255, 255, 0.9);
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    pointer-events: none;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.gallery-desktop .gallery-video:hover::after {
    opacity: 0.8;
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #FFFFFF;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
}

/* 8. Цены */
.profile-view-rates {
    margin-bottom: 30px;
}

.rates-title {
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-align: center;
}

/* Таблица скрыта по умолчанию (показывается только в мобильной версии) */
.rates-table {
    display: none;
}

.rates-cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.rates-card {
    flex: 1;
    min-width: 200px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.rates-card-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #FFFFFF;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rates-card-content {
    padding: 0;
    display: flex;
    flex-direction: column;
}

.rates-card-item {
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    text-align: center;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    box-sizing: border-box;
}

.rates-card-item:last-child {
    border-bottom: none;
}

.rates-unavailable {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 300;
    color: #C60997;
    text-shadow: 0 0 15px rgba(198, 9, 151, 0.8), 0 0 30px rgba(198, 9, 151, 0.6);
    line-height: 1;
}

/* Description под ценами */
.profile-view-description-bottom {
    margin-top: 30px;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #EAEAEA;
    font-size: 16px;
}

/* ==================== МОБИЛЬНАЯ ВЕРСТКА ==================== */
@media (max-width: 768px) {
    .profile-view-container {
        padding: 12px;
    }

    .profile-back-section {
        margin-bottom: 20px;
    }

    .profile-back-btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    .profile-view-content {
        padding: 0 12px;
    }

    /* Баннер */
    .profile-banner {
        margin-bottom: 20px;
    }

    .profile-banner img {
        border-radius: 12px;
    }

    /* Имя */
    .profile-view-name {
        font-size: clamp(18px, 5.2vw, 22px);
        margin-bottom: 16px;
        line-height: 1.3;
    }

    .profile-view-subtitle {
        margin: -6px 0 16px;
        font-size: 14px;
        line-height: 1.4;
        text-align: center;
    }
    
    /* Используем один (десктопный) блок параметров и фотки — адаптируем его под мобилку */
    .profile-params-desktop {
        display: block !important;
    }
    .profile-params-mobile {
        display: none !important;
    }
    .profile-content-desktop {
        flex-direction: column;
        gap: 18px;
        align-items: stretch;
    }
    .profile-photo-wrapper-desktop {
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
    }
    .profile-info-wrapper-desktop {
        width: 100%;
    }
    
    /* Скрываем десктопное имя в мобильной версии */
    .profile-view-name-desktop {
        display: none;
    }
    
    /* Параметры: показываем десктопный вариант (теперь он единственный) */
    .profile-view-attributes-desktop {
        display: block;
        margin-top: 18px;
        width: 100%;
    }

    /* Описание */
    .profile-view-description {
        margin-bottom: 24px;
        font-size: 16px;
        line-height: 1.6;
    }

    /* Локация */
    .profile-view-location {
        margin-bottom: 20px;
    }

    .location-item {
        margin-bottom: 10px;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .location-label {
        font-size: 12px;
        min-width: auto;
    }

    .location-value {
        font-size: 13px;
    }

    /* Параметры с фото */
    .profile-params-section {
        flex-direction: row;
        gap: 20px;
        margin-bottom: 30px;
        align-items: flex-start;
        flex-wrap: wrap;
    }
    
    .profile-photo-wrapper {
        width: 100%;
        max-width: 100%;
        flex-shrink: 0;
        margin: 0;
        display: flex;
        flex-direction: row;
        gap: 20px;
        align-items: flex-start;
    }
    
    .profile-photo-left {
        flex-shrink: 0;
        width: 40%;
        max-width: 200px;
        display: flex;
        flex-direction: column;
    }

    .profile-main-photo {
        width: 100%;
        max-width: 100%;
    }
    
    /* Описание справа от фотки в мобильной версии */
    .profile-view-description-mobile {
        flex: 1;
        display: block;
        margin-top: 0;
        width: 100%;
    }

    .profile-main-photo img {
        border-radius: 12px;
        width: 100%;
    }

    .profile-phone-section {
        margin-top: 20px;
        margin-left: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .show-phone-btn {
        width: 80%;
        max-width: 300px;
        height: 44px; /* Увеличен для удобства касания */
        font-size: 13px;
        margin: 0 auto;
    }
    
    .profile-info-wrapper {
        flex: 1;
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    
    /* Параметры под фоткой в мобильной версии */
    .profile-view-attributes-mobile {
        display: block;
        margin-top: 20px;
        width: 100%;
        order: 2;
    }
    

    .profile-view-attributes {
        width: 100%;
    }
    
    .profile-attribute-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        margin-bottom: 16px;
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .profile-attribute-item:last-child {
        border-bottom: none;
    }
    
    .attribute-label {
        min-width: auto;
        font-size: 12px;
        margin-bottom: 4px;
    }

    .attribute-value {
        font-size: 13px;
        word-break: break-word;
    }

    /* Галерея */
    .gallery-title {
        font-size: 24px;
        margin-bottom: 12px;
        text-align: center;
    }
    
    /* Убираем тень справа на мобильной версии */
    .profile-view-gallery::after {
        display: none !important;
    }
    
    /* Скрываем десктопную версию на мобильной */
    .gallery-desktop {
        display: none !important;
    }
    
    /* Показываем мобильную версию */
    .gallery-mobile {
        display: block !important;
    }
    
    .gallery {
        padding: 40px 15px 50px;
    }
    
    .gallery__track {
        width: 80%;
    }
    
    .gallery__arrow {
        width: 40px;
        height: 40px;
    }
    
    .gallery__arrow--prev {
        left: 5px;
    }

    .gallery__arrow--next {
        right: 5px;
    }
    
    .gallery__arrow svg {
        width: 20px;
        height: 20px;
    }
    
    .gallery__slide img,
    .gallery__slide video {
        max-height: 50vh;
    }
    
    /* Обертка для видео с оверлеем */
    .gallery__video-wrapper {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Видео без pointer-events, чтобы iOS не ловил долгий тап */
    .gallery__video-wrapper video {
        width: 100%;
        height: auto;
        max-height: 50vh;
        object-fit: contain;
        pointer-events: none;
        display: block;
    }
    
    /* Оверлей поверх видео */
    .gallery__video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.3);
        cursor: pointer;
        pointer-events: auto;
        z-index: 10;
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.3);
        -webkit-touch-callout: none;
        touch-action: manipulation;
        user-select: none;
    }
    
    /* Скрываем оверлей на фото (если он случайно есть) */
    .gallery__slide img + .gallery__video-overlay,
    .gallery__slide:has(img):not(:has(video)) .gallery__video-overlay {
        display: none !important;
        pointer-events: none !important;
        visibility: hidden !important;
    }
    
    /* Дополнительная защита: отключаем pointer-events для оверлея на слайдах с фото */
    .gallery__slide:has(img):not(:has(video)) .gallery__video-wrapper {
        pointer-events: none;
    }
    
    .gallery__slide:has(img):not(:has(video)) .gallery__video-wrapper .gallery__video-overlay {
        pointer-events: none !important;
    }
    
    /* Иконка Play */
    .gallery__video-play-icon {
        width: 60px;
        height: 60px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        color: #000;
        transition: all 0.3s ease;
    }
    
    .gallery__video-overlay:hover .gallery__video-play-icon {
        background: rgba(255, 255, 255, 1);
        transform: scale(1.1);
    }
    
    .gallery__dots {
        margin-top: 16px;
    }

    /* Цены */
    .rates-title {
        font-size: 24px;
        margin-bottom: 12px;
        text-align: center;
    }

    .rates-cards {
        flex-direction: column;
        gap: 16px;
    }

    .rates-card {
        min-width: 100%;
    }

    .rates-card-header {
        padding: 14px 16px;
        font-size: 14px;
    }

    .rates-card-item {
        padding: 14px 16px;
        font-size: 14px;
        height: 48px;
    }

    .rates-unavailable {
        font-size: 28px;
    }

    /* Description под ценами */
    .profile-view-description-bottom {
        margin-top: 24px;
        margin-bottom: 24px;
        font-size: 16px;
        line-height: 1.6;
    }
}

@media (max-width: 768px) {
    /* Параметры: название и значение в одну строку */
    .profile-attribute-item {
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }
    
    .attribute-label {
        margin-bottom: 0;
    }
    
    .attribute-value {
        margin-left: 0;
    }
    
    /* Местоположение: тип и название в одну строку */
    .location-item {
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }
    
    .location-label {
        min-width: auto;
        margin-bottom: 0;
    }
    
    /* Цены: таблица */
    .rates-cards {
        display: none !important;
    }
    
    .rates-table {
        display: table !important;
        width: 100%;
        border-collapse: collapse;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        overflow: hidden;
    }
    
    .rates-table thead {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .rates-table th,
    .rates-table td {
        padding: 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: #FFFFFF;
        font-size: 14px;
        text-transform: uppercase;
    }
    
    .rates-table th {
        font-weight: 600;
        text-align: left;
    }
    
    .rates-table td:first-child {
        text-align: left;
    }
    
    .rates-table td:not(:first-child) {
        text-align: center;
    }
    
    .rates-table tr:last-child td {
        border-bottom: none;
    }
    
    /* Модалка галереи для мобильных устройств */
    .gallery-modal {
        background: rgba(0, 0, 0, 0.95);
    }
    
    /* Блокировка скролла при открытой модалке */
    body.gallery-modal-open {
        overflow: hidden !important;
        position: fixed;
        width: 100%;
        height: 100%;
    }
    
    .gallery-modal.active {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    
    .gallery-modal-content {
        padding: 0;
        width: 100%;
        height: 100%;
        flex-direction: column;
        justify-content: center;
        position: relative;
    }
    
    .gallery-modal-prev,
    .gallery-modal-next {
        display: none !important;
    }
    
    .gallery-modal-media {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        position: relative;
        touch-action: pan-y pan-x pinch-zoom;
        -webkit-overflow-scrolling: touch;
    }
    
    .gallery-modal-media img,
    .gallery-modal-media video {
        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;
        transition: transform 0.1s ease-out;
        touch-action: pan-y pan-x pinch-zoom;
    }
    
    .gallery-modal-media img.zoomed,
    .gallery-modal-media video.zoomed {
        cursor: move;
    }
    
    .gallery-modal-close {
        top: 20px;
        right: 20px;
        z-index: 10003;
        position: fixed;
    }
    
    /* Индикаторы точек */
    .gallery-modal-indicators {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        padding: 20px;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 10002;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
    }
    
    .gallery-modal-indicator {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        cursor: pointer;
        transition: background 0.3s ease, transform 0.3s ease;
        flex-shrink: 0;
    }
    
    .gallery-modal-indicator.active {
        background: #C60997;
        transform: scale(1.2);
    }
    
    /* Модалка для видео */
    .video-modal {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 10002;
        display: none;
        align-items: center;
        justify-content: center;
    }
    
    .video-modal.active {
        display: flex;
    }
    
    .video-modal-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.9);
        cursor: pointer;
    }
    
    .video-modal-content {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 60px 20px 20px;
        box-sizing: border-box;
        z-index: 3;
    }
    
    .video-modal-close {
        position: fixed;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        color: #FFFFFF;
        font-size: 28px;
        line-height: 1;
        cursor: pointer;
        z-index: 10003;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    .video-modal-close:hover {
        background: rgba(255, 255, 255, 0.3);
        border-color: rgba(255, 255, 255, 0.5);
    }
    
    #videoModalPlayer {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .profile-view-container {
        padding: 10px;
    }

    .profile-view-content {
        padding: 0 10px;
    }

    .profile-view-name {
        font-size: 20px;
    }

    .profile-view-description {
        font-size: 16px;
    }

    .profile-params-section {
        gap: 20px;
        flex-direction: column;
    }
    
    .profile-photo-wrapper {
        width: 100%;
    }

    .profile-phone-section {
        margin-top: 12px;
    }

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

    .gallery-grid {
        gap: 8px;
    }

    .rates-col {
        padding: 10px;
        font-size: 12px;
    }
    
    .profile-view-map-section {
        margin-top: 40px;
    }
    
    .map-title {
        font-size: 24px;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .profile-view-map {
        width: 100%;
        height: 300px;
    }
}

/* Стили для карты */
.profile-view-map-section {
    margin-top: 40px;
    margin-bottom: 40px;
}

.map-title {
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-align: center;
}

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


/* =========================
   Profile page redesign (v2)
   Scope: only profile page wrapper
   ========================= */

/* Хлебные крошки сверху main (вариант 1) — выравнивание с контентом анкеты */
.profile-page-wrapper > .breadcrumbs--profile {
    padding: 0 var(--layout-padding, 24px);
    margin-bottom: 12px;
    font-size: 14px;
}
@media (max-width: 1200px) {
    .profile-page-wrapper > .breadcrumbs--profile {
        padding: 0 14px;
        margin-bottom: 10px;
    }
}

.profile-view-wrapper.eg-profile-v2 {
    background:
        radial-gradient(1200px 520px at 65% -10%, rgba(198, 9, 151, 0.20) 0%, rgba(124, 58, 237, 0.12) 45%, rgba(6, 13, 28, 0) 70%),
        radial-gradient(900px 420px at 10% 30%, rgba(124, 58, 237, 0.16) 0%, rgba(6, 13, 28, 0) 62%),
        #060D1C;
}

/* Remove heavy blob behind content for v2 */
.profile-view-wrapper.eg-profile-v2 .profile-view-content::after {
    content: none !important;
}

/* =========================
   Layout alignment (match city page gutters)
   ========================= */
@media (min-width: 1201px) {
    .profile-view-wrapper.eg-profile-v2 {
        display: grid;
        grid-template-columns: 370px minmax(0, 1fr);
        gap: var(--layout-gap, 24px);
        padding: var(--layout-padding, 24px);
        align-items: start;
    }
    .profile-view-wrapper.eg-profile-v2 .profile-view-sidebar {
        width: auto;
    }
    .profile-view-wrapper.eg-profile-v2 .profile-view-content-wrapper {
        overflow: visible;
    }
}

@media (max-width: 1200px) {
    .profile-view-wrapper.eg-profile-v2 {
        /* keep existing mobile sidebar behavior */
        padding: 14px;
    }
}

.profile-view-wrapper.eg-profile-v2 .profile-view-container {
    /* wrapper controls page padding; keep container clean */
    min-height: auto;
    padding: 0;
    background: transparent;
}

/* v2: match city page top alignment + card tones */
@media (min-width: 769px) {
    /* Remove extra top offset so Top Filters starts at same height as Location card */
    .profile-view-wrapper.eg-profile-v2 .eg-topfilters {
        margin-top: 0;
    }
    .profile-view-wrapper.eg-profile-v2 .eg-topfilters__breadcrumbs {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 8px;
        margin: 0;
        padding-left: 15px;
        font-size: 13px;
        font-weight: 700;
        color: rgba(175, 182, 196, 0.9);
    }
    .profile-view-wrapper.eg-profile-v2 .eg-topfilters__breadcrumbs .breadcrumb-link {
        color: rgba(175, 182, 196, 0.9);
    }
    .profile-view-wrapper.eg-profile-v2 .eg-topfilters__breadcrumbs .breadcrumb-link:hover {
        color: rgba(207, 212, 224, 0.98);
    }
    .profile-view-wrapper.eg-profile-v2 .eg-topfilters__breadcrumbs .breadcrumb-separator,
    .profile-view-wrapper.eg-profile-v2 .eg-topfilters__breadcrumbs .breadcrumb-current {
        color: rgba(149, 156, 172, 0.92);
    }
}

/* Мобильная анкета: блок SECTIONS/QUICK FILTERS/CATEGORIES уже в правом меню — не дублируем */
@media (max-width: 1200px) {
    .profile-view-wrapper.eg-profile-v2 .eg-profile-landing .eg-topfilters.eg-topfilters--panel {
        display: none !important;
    }
}

.profile-view-wrapper.eg-profile-v2 .location-sidebar .location-block {
    /* Make Location card background match Filters/Topfilters blocks */
    background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
    border-color: rgba(255,255,255,0.08);
}
.profile-view-wrapper.eg-profile-v2 .location-sidebar .location-block,
.profile-view-wrapper.eg-profile-v2 .location-sidebar .filter-block {
    border-radius: 22px;
}
.profile-view-wrapper.eg-profile-v2 .location-sidebar .location-block::before,
.profile-view-wrapper.eg-profile-v2 .location-sidebar .location-block::after,
.profile-view-wrapper.eg-profile-v2 .location-sidebar .filter-block::before,
.profile-view-wrapper.eg-profile-v2 .location-sidebar .filter-block::after {
    border-radius: inherit;
}
@media (min-width: 1201px) {
    .profile-view-wrapper.eg-profile-v2 .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%);
    }
}
.profile-view-wrapper.eg-profile-v2 .profile-view-content {
    padding: 0;
}
@media (min-width: 1200px) {
    .profile-view-wrapper.eg-profile-v2 .profile-view-content,
    .profile-view-wrapper.eg-profile-v2 .breadcrumbs {
        padding: 0;
    }
}

/* Content width */
.profile-view-wrapper.eg-profile-v2 .profile-view-container {
    /* Align to left edge (no centered max-width) */
    max-width: none;
    margin: 0;
}

/* Landing wrapper on profile page */
.profile-view-wrapper.eg-profile-v2 .eg-profile-landing {
    padding-top: 0;
}

/* Minimal section rhythm (landing style) */
.profile-view-wrapper.eg-profile-v2 .eg-profile-landing > * {
    margin-top: 0;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-landing .profile-banner {
    margin-bottom: 18px;
}

/* Softer, minimal text vibe */
.profile-view-wrapper.eg-profile-v2 .eg-profile-landing,
.profile-view-wrapper.eg-profile-v2 .eg-profile-landing p {
    color: rgba(255,255,255,0.88);
}

/* v0: only H1 + main photo */
.profile-view-wrapper.eg-profile-v2 .eg-profile-hero {
    margin: 10px 0 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-hero__mobile-head {
    display: none;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-hero__h1 {
    margin: 0;
    font-size: clamp(22px, 1.8vw, 30px);
    font-weight: 900;
    letter-spacing: 0.01em;
    line-height: 1.16;
    color: rgba(255,255,255,0.96);
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-hero__h1-name {
    color: #ffd7f5;
    background: linear-gradient(90deg, #ffd7f5 0%, #ff8dd3 45%, #b695ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    text-shadow:
        0 0 12px rgba(198, 9, 151, 0.34),
        0 0 22px rgba(124, 58, 237, 0.28),
        0 0 34px rgba(198, 9, 151, 0.18);
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-hero__breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 2px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(175, 182, 196, 0.9);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-hero__breadcrumbs .breadcrumb-link {
    color: rgba(175, 182, 196, 0.9);
    text-decoration: none;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-hero__breadcrumbs .breadcrumb-separator,
.profile-view-wrapper.eg-profile-v2 .eg-profile-hero__breadcrumbs .breadcrumb-current {
    color: rgba(149, 156, 172, 0.92);
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-hero__breadcrumbs .breadcrumb-link:hover {
    color: rgba(207, 212, 224, 0.98);
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-hero__media {
    /* При колонке (фото сверху, About снизу) — одинаковая ширина с блоком About */
    width: 100%;
    margin: 0;
    position: relative;
}
/* Photo verified badge: removed for now */
.profile-view-wrapper.eg-profile-v2 .eg-profile-hero__media picture,
.profile-view-wrapper.eg-profile-v2 .eg-profile-hero__media img {
    display: block;
    width: 100%;
    height: auto;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-hero__media img {
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow:
        0 30px 110px rgba(0,0,0,0.68),
        0 0 46px rgba(198, 9, 151, 0.14),
        0 0 68px rgba(124, 58, 237, 0.10);
}

@media (max-width: 979px) {
    .profile-view-wrapper.eg-profile-v2 .eg-profile-hero__mobile-head {
        display: flex;
        flex-direction: column;
        gap: 14px;
        padding: 14px;
        border-radius: 18px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        background:
            radial-gradient(130% 115% at 18% 0%,
                rgba(49, 212, 255, 0.14) 0%,
                rgba(198, 9, 151, 0.12) 30%,
                rgba(124, 58, 237, 0.08) 58%,
                rgba(6, 13, 28, 0.75) 100%),
            linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
        box-shadow:
            0 18px 54px rgba(0, 0, 0, 0.45),
            0 0 0 1px rgba(255, 255, 255, 0.04) inset;
    }
    .profile-view-wrapper.eg-profile-v2 .eg-profile-hero__breadcrumbs--desktop,
    .profile-view-wrapper.eg-profile-v2 .eg-profile-hero__h1--desktop {
        display: none;
    }
    .profile-view-wrapper.eg-profile-v2 .eg-profile-hero__breadcrumbs--mobile {
        margin: 0;
        font-size: 13px;
        font-weight: 700;
        color: rgba(185, 191, 205, 0.92);
        white-space: nowrap;
        overflow-x: auto;
        flex-wrap: nowrap;
        scrollbar-width: none;
    }
    .profile-view-wrapper.eg-profile-v2 .eg-profile-hero__breadcrumbs--mobile::-webkit-scrollbar {
        display: none;
    }
    .profile-view-wrapper.eg-profile-v2 .eg-profile-hero__h1--mobile {
        width: 100%;
        margin-inline: auto;
        text-align: center;
        font-size: clamp(24px, 7vw, 42px);
        line-height: 1.2;
        font-weight: 800;
    }
    .profile-view-wrapper.eg-profile-v2 .eg-profile-hero__call-btn {
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
        height: 56px;
        border-radius: 16px;
        border: 1px solid rgba(49, 212, 255, 0.35);
        background: linear-gradient(180deg, rgba(14, 17, 28, 0.72) 0%, rgba(15, 20, 34, 0.9) 100%);
        box-shadow:
            0 14px 34px rgba(0, 0, 0, 0.42),
            0 0 0 1px rgba(49, 212, 255, 0.14) inset;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    .profile-view-wrapper.eg-profile-v2 .eg-profile-hero__call-btn .show-phone-text {
        font-size: 16px;
        letter-spacing: 0.01em;
        font-weight: 700;
        text-transform: none;
        color: #6ee9ff;
    }
    .profile-view-wrapper.eg-profile-v2 .eg-profile-hero__call-icon {
        color: #55e1ff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .profile-view-wrapper.eg-profile-v2 .eg-profile-about__footer {
        display: none;
    }
}

@media (min-width: 980px) {
    .profile-view-wrapper.eg-profile-v2 .eg-profile-hero {
        --eg-hero-pane-h: clamp(405px, 67.15vh, 633px);
        display: grid;
        grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
        grid-template-areas:
            "crumb h1"
            "media about";
        grid-template-rows: auto var(--eg-hero-pane-h);
        gap: 22px;
        align-items: start;
        row-gap: 14px;
    }
    .profile-view-wrapper.eg-profile-v2 .eg-profile-hero__breadcrumbs {
        display: none;
        grid-area: crumb;
        margin: 0;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        font-weight: 700;
        color: rgba(255,255,255,0.82);
        align-self: center;
        min-height: 34px;
    }
    .profile-view-wrapper.eg-profile-v2 .eg-profile-hero__h1 {
        grid-area: h1;
        text-align: center;
        justify-self: stretch;
        margin: 0;
        align-self: center;
        min-height: 34px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    /* Блок фото и About — одна высота по высоте ряда; фото задаёт более высокий блок */
    .profile-view-wrapper.eg-profile-v2 .eg-profile-hero__media {
        grid-area: media;
        width: 100%;
        min-height: 0;
        height: var(--eg-hero-pane-h);
        max-height: var(--eg-hero-pane-h);
        position: relative;
        aspect-ratio: auto;
    }
    .profile-view-wrapper.eg-profile-v2 .eg-profile-hero__media picture,
    .profile-view-wrapper.eg-profile-v2 .eg-profile-hero__media img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    .profile-view-wrapper.eg-profile-v2 .eg-profile-hero__media picture {
        display: block;
    }
}

/* Safe range for common desktop resolutions to keep visual baseline with sidebar filter. */
@media (min-width: 980px) and (max-width: 1279px) {
    .profile-view-wrapper.eg-profile-v2 .eg-profile-hero {
        --eg-hero-pane-h: clamp(396px, 66.2vh, 610px);
    }
}
@media (min-width: 1280px) and (max-width: 1599px) {
    .profile-view-wrapper.eg-profile-v2 .eg-profile-hero {
        --eg-hero-pane-h: clamp(405px, 67.15vh, 633px);
    }
}
@media (min-width: 1600px) {
    .profile-view-wrapper.eg-profile-v2 .eg-profile-hero {
        --eg-hero-pane-h: clamp(420px, 68vh, 668px);
    }
}

/* "About me" card (right of the main photo) */
.profile-view-wrapper.eg-profile-v2 .eg-profile-about {
    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),
        /* softer underglow / volume (less glow than other cards) */
        0 34px 70px -40px rgba(198, 9, 151, 0.28),
        0 34px 70px -44px rgba(124, 58, 237, 0.18),
        0 0 0 1px rgba(255,255,255,0.04) inset;
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    padding: 18px 18px 2px;
    display: flex;
    flex-direction: column;
    min-width: 0;
    position: relative;
    isolation: isolate;
    overflow: hidden;
}
@media (min-width: 980px) {
    .profile-view-wrapper.eg-profile-v2 .eg-profile-about {
        grid-area: about;
        height: var(--eg-hero-pane-h);
        max-height: var(--eg-hero-pane-h);
        min-height: 0;
        align-self: stretch;
    }
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-about__title {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.72);
    padding-bottom: 12px;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Premium edge highlight (top) */
.profile-view-wrapper.eg-profile-v2 .eg-profile-about::before {
    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.70) 22%,
        rgba(124, 58, 237, 0.56) 50%,
        rgba(198, 9, 151, 0.70) 78%,
        rgba(198, 9, 151, 0.00) 100%);
    box-shadow:
        0 0 14px rgba(198, 9, 151, 0.34),
        0 0 22px rgba(124, 58, 237, 0.22),
        0 1px 0 rgba(255,255,255,0.08) inset;
    opacity: 0.92;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-about::before { top: 0; }

/* Bottom frame neon (inside the card edge) */
.profile-view-wrapper.eg-profile-v2 .eg-profile-about::after {
    content: '';
    position: absolute;
    left: 14px;
    right: 14px;
    height: 2px;
    bottom: 0;
    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.70) 22%,
        rgba(124, 58, 237, 0.56) 50%,
        rgba(198, 9, 151, 0.70) 78%,
        rgba(198, 9, 151, 0.00) 100%);
    box-shadow:
        0 0 14px rgba(198, 9, 151, 0.34),
        0 0 22px rgba(124, 58, 237, 0.22),
        0 -1px 0 rgba(255,255,255,0.08) inset;
    opacity: 0.92;
}

.profile-view-wrapper.eg-profile-v2 .eg-profile-about > * {
    position: relative;
    z-index: 2;
}

/* Keep content scrollable when it overflows (desktop) */
@media (min-width: 980px) {
    .profile-view-wrapper.eg-profile-v2 .eg-profile-about__body {
        flex: 1 1 auto;
        min-height: 0; /* required for overflow in flex column */
        overflow-y: auto;
        overflow-x: hidden;
        padding-right: 8px;
        scrollbar-gutter: stable;
        scrollbar-width: thin;
        scrollbar-color: rgba(198, 9, 151, 0.42) rgba(255,255,255,0.03);
        scroll-behavior: smooth;
    }
    .profile-view-wrapper.eg-profile-v2 .eg-profile-about__body::-webkit-scrollbar {
        width: 7px;
    }
    .profile-view-wrapper.eg-profile-v2 .eg-profile-about__body::-webkit-scrollbar-track {
        background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
        border-radius: 999px;
        border: 1px solid rgba(255,255,255,0.06);
    }
    .profile-view-wrapper.eg-profile-v2 .eg-profile-about__body::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, rgba(198, 9, 151, 0.72), rgba(124, 58, 237, 0.58));
        border-radius: 999px;
        border: 1px solid rgba(255,255,255,0.16);
        box-shadow: 0 0 0 1px rgba(0,0,0,0.16) inset, 0 0 10px rgba(198, 9, 151, 0.20);
        transition: background 0.2s ease, box-shadow 0.2s ease;
    }
    .profile-view-wrapper.eg-profile-v2 .eg-profile-about__body:hover::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, rgba(198, 9, 151, 0.86), rgba(124, 58, 237, 0.72));
        box-shadow: 0 0 0 1px rgba(0,0,0,0.18) inset, 0 0 14px rgba(198, 9, 151, 0.28);
    }
    .profile-view-wrapper.eg-profile-v2 .eg-profile-about__body::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(180deg, rgba(198, 9, 151, 0.95), rgba(124, 58, 237, 0.80));
    }
}

/* Call button inside About card */
.profile-view-wrapper.eg-profile-v2 .eg-profile-about__footer {
    margin-top: 16px;
    padding-top: 0;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-about__call-btn {
    width: 100%;
    margin-top: 0;
}

/* Gallery frame (match top filters premium frame) */
.profile-view-wrapper.eg-profile-v2 .eg-profile-gallery__frame {
    position: relative;
    border-radius: 18px;
    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),
        /* stronger underglow / volume */
        0 34px 70px -40px rgba(198, 9, 151, 0.38),
        0 34px 70px -44px rgba(124, 58, 237, 0.28),
        0 0 44px rgba(198, 9, 151, 0.10),
        0 0 62px rgba(124, 58, 237, 0.08),
        0 0 0 1px rgba(255,255,255,0.04) inset;
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    padding: 16px 14px 12px;
    /* Uniform media height; width keeps intrinsic aspect ratio */
    --eg-gallery-item-height: clamp(260px, 32vw, 520px);
    isolation: isolate;
    overflow: hidden;
}

/* Галерея, PRICES и LOCATION — одинаковая ширина контейнера на desktop */
.profile-view-wrapper.eg-profile-v2 .eg-profile-gallery__frame,
.profile-view-wrapper.eg-profile-v2 .profile-view-rates,
.profile-view-wrapper.eg-profile-v2 .eg-profile-location__frame {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
}

.profile-view-wrapper.eg-profile-v2 .eg-profile-gallery__frame::before {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    height: 2px;
    top: -1px;
    border-radius: 999px;
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(90deg,
        rgba(198,9,151,0.00) 0%,
        rgba(198,9,151,0.58) 18%,
        rgba(124,58,237,0.40) 50%,
        rgba(198,9,151,0.58) 82%,
        rgba(198,9,151,0.00) 100%);
    box-shadow:
        0 0 18px rgba(198,9,151,0.24),
        0 0 26px rgba(124,58,237,0.14);
    opacity: 0.86;
}

.profile-view-wrapper.eg-profile-v2 .eg-profile-gallery__frame::after {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    height: 44px;
    bottom: -28px;
    border-radius: 999px;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(closest-side,
            rgba(198, 9, 151, 0.40) 0%,
            rgba(124, 58, 237, 0.28) 42%,
            rgba(198, 9, 151, 0.00) 72%);
    filter: blur(16px);
    opacity: 0.58;
}

.profile-view-wrapper.eg-profile-v2 .eg-profile-gallery__frame > * {
    position: relative;
    z-index: 1;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-gallery__frame .gallery-title {
    margin: 0 0 12px;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-gallery__frame .gallery-desktop {
    display: block;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-gallery__frame .gallery-grid {
    padding-bottom: 8px;
}

/* Swiper + Fancybox premium gallery */
.profile-view-wrapper.eg-profile-v2 .eg-profile-gallery__frame .eg-gallery-swiper {
    margin-top: 2px;
    padding-bottom: 30px; /* room for pagination */
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-gallery__frame .eg-gallery-swiper.swiper {
    overflow: hidden;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-gallery__frame .eg-gallery-swiper .swiper-wrapper {
    display: flex;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-gallery__frame .swiper-slide {
    height: var(--eg-gallery-item-height);
    width: auto;
    min-width: clamp(220px, 22vw, 360px);
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.02);
    box-shadow: 0 22px 70px rgba(0,0,0,0.35);
    display: flex;
    align-items: stretch;
    justify-content: center;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-gallery__frame .eg-gallery-link,
.profile-view-wrapper.eg-profile-v2 .eg-profile-gallery__frame .eg-gallery-video {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 100%;
    min-height: 0;
    flex: 0 0 auto;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-gallery__frame img {
    width: auto;
    height: 100%;
    max-width: none;
    object-fit: contain;
    object-position: center;
    display: block;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-gallery__frame video {
    width: auto;
    height: 100%;
    max-width: none;
    object-fit: contain;
    object-position: center;
    display: block;
    background: rgba(0,0,0,0.35);
}

/* Fancybox overlay must be above top nav */
.fancybox__container {
    --fancybox-zIndex: 999999;
    z-index: 999999 !important;
}
html.with-fancybox .top-nav,
html.with-fancybox .language-selector {
    visibility: hidden !important;
}

/* Some Fancybox builds toggle class on <body> instead of <html> */
body.with-fancybox .top-nav,
body.with-fancybox .language-selector {
    visibility: hidden !important;
}

/* Fancybox backdrop must stay BEHIND the media */
.fancybox__backdrop {
    z-index: 0 !important;
    /* Semi-transparent, slightly "matte" backdrop */
    background: rgba(6, 13, 28, 0.62) !important;
    opacity: 1 !important;
    backdrop-filter: blur(8px) saturate(125%);
    -webkit-backdrop-filter: blur(8px) saturate(125%);
}

/* Center navigation arrows vertically (not at the bottom) */
.fancybox__container .fancybox__nav {
    /* Make nav span full viewport so arrows can be centered */
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 14px !important;
    opacity: 1 !important;
    pointer-events: none !important; /* only buttons clickable */
}
.fancybox__container .fancybox__nav .f-button {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background: rgba(6,13,28,0.62);
    border: 1px solid rgba(255,255,255,0.16);
    box-shadow:
        0 18px 54px rgba(0,0,0,0.55),
        0 0 0 1px rgba(255,255,255,0.05) inset,
        0 0 18px rgba(198,9,151,0.18);
    backdrop-filter: blur(12px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    opacity: 1 !important;
    pointer-events: auto !important;
}
.fancybox__container .fancybox__nav .f-button::after {
    font-size: 18px;
    font-weight: 900;
}

/* Center media within Fancybox viewport */
.fancybox__container .fancybox__carousel {
    height: 100vh !important;
}
.fancybox__container .fancybox__viewport,
.fancybox__container .fancybox__track,
.fancybox__container .fancybox__slide {
    height: 100% !important;
}
.fancybox__container .fancybox__slide {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.fancybox__container .fancybox__content {
    margin: 0 auto !important;
}
.fancybox__container img.fancybox-image,
.fancybox__container video.fancybox-video {
    max-height: calc(100vh - 120px) !important; /* leave space for header/thumbs */
    max-width: min(92vw, 1100px) !important;
}

/* Make sure infobar (1 / N) is visible in the top-left */
.fancybox__infobar {
    color: rgba(255,255,255,0.92) !important;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-shadow: 0 10px 30px rgba(0,0,0,0.55);
    opacity: 1 !important;
}

/* Ensure media itself is not dimmed by inherited styles */
.fancybox__container img,
.fancybox__container video,
.fancybox__container picture,
.fancybox__content,
.fancybox__carousel,
.fancybox__viewport {
    opacity: 1 !important;
    filter: none !important;
    mix-blend-mode: normal !important;
}

.profile-view-wrapper.eg-profile-v2 .eg-profile-gallery__frame .swiper-button-next,
.profile-view-wrapper.eg-profile-v2 .eg-profile-gallery__frame .swiper-button-prev {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(6,13,28,0.68);
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow:
        0 16px 44px rgba(0,0,0,0.55),
        0 0 0 1px rgba(255,255,255,0.05) inset,
        0 0 18px rgba(198,9,151,0.16);
    backdrop-filter: blur(12px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-gallery__frame .swiper-button-next::after,
.profile-view-wrapper.eg-profile-v2 .eg-profile-gallery__frame .swiper-button-prev::after {
    font-size: 16px;
    font-weight: 900;
    color: rgba(255,255,255,0.92);
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-gallery__frame .swiper-button-next:hover,
.profile-view-wrapper.eg-profile-v2 .eg-profile-gallery__frame .swiper-button-prev:hover {
    transform: translateY(-1px);
    border-color: rgba(198,9,151,0.40);
    box-shadow:
        0 18px 54px rgba(0,0,0,0.62),
        0 0 0 1px rgba(255,255,255,0.06) inset,
        0 0 26px rgba(198,9,151,0.22);
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-gallery__frame .swiper-pagination {
    bottom: 10px !important;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-gallery__frame .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    background: rgba(255,255,255,0.22);
    opacity: 1;
    margin: 0 5px !important;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-gallery__frame .swiper-pagination-bullet-active {
    background: rgba(198,9,151,0.85);
    box-shadow: 0 0 0 3px rgba(198,9,151,0.18);
}

@media (max-width: 980px) {
    .profile-view-wrapper.eg-profile-v2 .eg-profile-gallery__frame {
        --eg-gallery-item-height: clamp(440px, 112vw, 760px);
    }
    .profile-view-wrapper.eg-profile-v2 .eg-profile-gallery__frame .swiper-slide {
        width: min(92vw, 520px);
        min-width: min(92vw, 520px);
    }
    .profile-view-wrapper.eg-profile-v2 .eg-profile-gallery__frame .eg-gallery-link {
        width: 100%;
        flex: 1 1 auto;
    }
    .profile-view-wrapper.eg-profile-v2 .eg-profile-gallery__frame .eg-gallery-link img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-about__list {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 6px;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-about__row {
    display: grid;
    grid-template-columns: max-content 1fr max-content;
    gap: 14px;
    align-items: center;
    padding: 12px 0;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-about__row + .eg-profile-about__row {
    border-top: 1px solid rgba(255,255,255,0.06);
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-about__k {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.50);
    white-space: nowrap;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-about__v {
    font-size: 14px;
    font-weight: 800;
    color: rgba(255,255,255,0.92);
    white-space: nowrap;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-about__line {
    height: 1px;
    border-radius: 999px;
    background: linear-gradient(90deg,
        rgba(255,255,255,0.00) 0%,
        rgba(255,255,255,0.16) 50%,
        rgba(255,255,255,0.00) 100%);
    opacity: 0.65;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-about__text {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255,255,255,0.80);
}

/* Banner as premium hero strip */
.profile-view-wrapper.eg-profile-v2 .profile-banner img {
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 18px 58px rgba(0,0,0,0.55);
}

/* H1 */
.profile-view-wrapper.eg-profile-v2 .profile-view-name {
    text-transform: none;
    letter-spacing: 0.01em;
    font-weight: 800;
    font-size: clamp(22px, 2.4vw, 34px);
    margin: 10px 0 18px;
}

/* Main hero card */
.profile-view-wrapper.eg-profile-v2 .profile-params-section {
    margin-bottom: 28px;
}
.profile-view-wrapper.eg-profile-v2 .profile-params-desktop {
    border-radius: 22px;
    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(255,255,255,0.035);
    box-shadow:
        0 28px 90px rgba(0,0,0,0.58),
        0 0 0 1px rgba(255,255,255,0.05) inset;
    padding: 18px;
}
.profile-view-wrapper.eg-profile-v2 .profile-content-desktop {
    display: grid;
    grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

/* Photo */
.profile-view-wrapper.eg-profile-v2 .profile-photo-wrapper-desktop {
    width: auto;
}
.profile-view-wrapper.eg-profile-v2 .profile-main-photo img {
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 18px 58px rgba(0,0,0,0.55);
}

/* Show phone button (works with global modal) */
.profile-view-wrapper.eg-profile-v2 .show-phone-btn {
    height: 48px;
    border-radius: 16px;
    border: 1px solid rgba(198, 9, 151, 0.40);
    background: linear-gradient(180deg, rgba(198, 9, 151, 0.28) 0%, rgba(124, 58, 237, 0.16) 100%);
    box-shadow:
        0 18px 44px rgba(0,0,0,0.46),
        0 0 0 1px rgba(255,255,255,0.06) inset,
        0 0 22px rgba(198, 9, 151, 0.10);
}
.profile-view-wrapper.eg-profile-v2 .show-phone-btn:hover {
    border-color: rgba(198, 9, 151, 0.70);
    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);
}
.profile-view-wrapper.eg-profile-v2 .show-phone-text {
    font-weight: 800;
    letter-spacing: 0.06em;
    font-size: 12px;
}
.profile-view-wrapper.eg-profile-v2 .show-phone-btn:hover .show-phone-text {
    color: rgba(255,255,255,0.96);
}

/* Right column */
.profile-view-wrapper.eg-profile-v2 .profile-info-wrapper-desktop {
    gap: 16px;
}
.profile-view-wrapper.eg-profile-v2 .profile-view-description {
    color: rgba(255,255,255,0.88);
    font-size: 16px;
    line-height: 1.66;
    letter-spacing: 0.01em;
    margin-bottom: 6px;
}

/* Attributes as grid chips */
.profile-view-wrapper.eg-profile-v2 .profile-view-attributes {
    margin-top: 6px;
}
.profile-view-wrapper.eg-profile-v2 .profile-view-attributes-desktop {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
}
.profile-view-wrapper.eg-profile-v2 .profile-attribute-item {
    margin: 0;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.03);
    align-items: baseline;
}
.profile-view-wrapper.eg-profile-v2 .attribute-label {
    min-width: 0;
    font-size: 12px;
    letter-spacing: 0.06em;
    opacity: 0.85;
}
.profile-view-wrapper.eg-profile-v2 .attribute-value {
    font-size: 13px;
    color: rgba(255,255,255,0.88);
    text-transform: none;
}
.profile-view-wrapper.eg-profile-v2 .attribute-value a {
    color: rgba(255,255,255,0.92);
    text-decoration: none;
    border-bottom: 1px solid rgba(198,9,151,0.45);
}
.profile-view-wrapper.eg-profile-v2 .attribute-value a:hover {
    color: #fff;
    border-bottom-color: rgba(198,9,151,0.85);
}

/* Section titles */
.profile-view-wrapper.eg-profile-v2 .rates-title,
.profile-view-wrapper.eg-profile-v2 .gallery-title,
.profile-view-wrapper.eg-profile-v2 .map-title {
    text-align: left;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 22px 0 14px;
    color: rgba(255,255,255,0.92);
}

/* Rates as card */
.profile-view-wrapper.eg-profile-v2 .profile-view-rates {
    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),
        /* stronger underglow / volume */
        0 34px 70px -40px rgba(198, 9, 151, 0.38),
        0 34px 70px -44px rgba(124, 58, 237, 0.28),
        0 0 52px rgba(198, 9, 151, 0.10),
        0 0 70px rgba(124, 58, 237, 0.08),
        0 0 0 1px rgba(255,255,255,0.04) inset;
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    padding: 18px;
    position: relative;
    isolation: isolate;
}

.profile-view-wrapper.eg-profile-v2 .profile-view-rates::before {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    height: 2px;
    top: -1px;
    border-radius: 999px;
    pointer-events: none;
    z-index: 0;
    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 18px rgba(198,9,151,0.28),
        0 0 26px rgba(124,58,237,0.16);
    opacity: 0.88;
}

.profile-view-wrapper.eg-profile-v2 .profile-view-rates::after {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    height: 44px;
    bottom: -28px;
    border-radius: 999px;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(closest-side,
            rgba(198, 9, 151, 0.38) 0%,
            rgba(124, 58, 237, 0.26) 42%,
            rgba(198, 9, 151, 0.00) 72%);
    filter: blur(16px);
    opacity: 0.60;
}

.profile-view-wrapper.eg-profile-v2 .profile-view-rates > * {
    position: relative;
    z-index: 1;
}

.profile-view-wrapper.eg-profile-v2 .profile-view-rates .rates-title {
    margin: 0 0 16px;
    font-size: 12px;
    letter-spacing: 0.18em;
    opacity: 0.92;
}

.profile-view-wrapper.eg-profile-v2 .profile-view-rates .rates-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.018);
    box-shadow:
        0 18px 56px rgba(0,0,0,0.40),
        0 0 0 1px rgba(255,255,255,0.03) inset;
}

.profile-view-wrapper.eg-profile-v2 .profile-view-rates .rates-card {
    background: transparent;
    border: 0;
    border-radius: 0;
    min-width: 0;
}
.profile-view-wrapper.eg-profile-v2 .profile-view-rates .rates-card + .rates-card {
    border-left: 1px solid rgba(255,255,255,0.08);
}

.profile-view-wrapper.eg-profile-v2 .profile-view-rates .rates-card-header {
    padding: 14px 16px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.92);
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(140% 120% at 50% 0%,
            rgba(198,9,151,0.18) 0%,
            rgba(124,58,237,0.10) 46%,
            rgba(255,255,255,0.00) 72%),
        linear-gradient(180deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.018) 100%);
    border-bottom: 1px solid rgba(255,255,255,0.10);
    text-shadow: 0 14px 34px rgba(0,0,0,0.55);
}

/* Subtle neon underline for the header words (TIME / INCALL / OUTCALL) */
.profile-view-wrapper.eg-profile-v2 .profile-view-rates .rates-card-header__label {
    display: inline-block;
    position: relative;
    padding: 0 2px 6px;
    color: inherit;
}
.profile-view-wrapper.eg-profile-v2 .profile-view-rates .rates-card-header__label::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 1px;
    border-radius: 999px;
    background: linear-gradient(90deg,
        rgba(198,9,151,0.00) 0%,
        rgba(198,9,151,0.42) 28%,
        rgba(124,58,237,0.34) 50%,
        rgba(198,9,151,0.42) 72%,
        rgba(198,9,151,0.00) 100%);
    box-shadow:
        0 0 10px rgba(198,9,151,0.12),
        0 0 14px rgba(124,58,237,0.08);
    opacity: 0.72;
}

/* Elegant highlight line under the header row */
.profile-view-wrapper.eg-profile-v2 .profile-view-rates .rates-card-header::after {
    content: '';
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: -1px;
    height: 2px;
    border-radius: 999px;
    pointer-events: none;
    z-index: -1;
    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.16),
        0 0 22px rgba(124,58,237,0.10);
    opacity: 0.90;
}

.profile-view-wrapper.eg-profile-v2 .profile-view-rates .rates-card-content {
    display: flex;
    flex-direction: column;
}

.profile-view-wrapper.eg-profile-v2 .profile-view-rates .rates-card-item {
    height: 56px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.90);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.00);
}
.profile-view-wrapper.eg-profile-v2 .profile-view-rates .rates-card-item:nth-child(even) {
    background: rgba(255,255,255,0.018);
}
.profile-view-wrapper.eg-profile-v2 .profile-view-rates .rates-card-item:last-child {
    border-bottom: 0;
}

.profile-view-wrapper.eg-profile-v2 .profile-view-rates .rates-unavailable {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 900;
    color: rgba(198, 9, 151, 0.92);
    text-shadow:
        0 0 14px rgba(198, 9, 151, 0.55),
        0 0 26px rgba(124, 58, 237, 0.28);
}

@media (max-width: 980px) {
    .profile-view-wrapper.eg-profile-v2 .profile-view-rates .rates-card-item {
        height: 52px;
        padding: 0 12px;
        font-size: 12px;
    }
}

/* =========================
   Services block (premium)
   ========================= */
.profile-view-wrapper.eg-profile-v2 .eg-profile-services {
    margin: 22px 0 0;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-services__frame {
    position: relative;
    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),
        /* stronger underglow / volume */
        0 34px 70px -40px rgba(198, 9, 151, 0.38),
        0 34px 70px -44px rgba(124, 58, 237, 0.28),
        0 0 52px rgba(198, 9, 151, 0.10),
        0 0 70px rgba(124, 58, 237, 0.08),
        0 0 0 1px rgba(255,255,255,0.04) inset;
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    padding: 16px 14px 14px;
    overflow: hidden;
    isolation: isolate;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-services__frame::before {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    height: 2px;
    top: -1px;
    border-radius: 999px;
    pointer-events: none;
    z-index: 0;
    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 18px rgba(198,9,151,0.26),
        0 0 26px rgba(124,58,237,0.14);
    opacity: 0.86;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-services__frame::after {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    height: 44px;
    bottom: -28px;
    border-radius: 999px;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(closest-side,
            rgba(198, 9, 151, 0.38) 0%,
            rgba(124, 58, 237, 0.26) 42%,
            rgba(198, 9, 151, 0.00) 72%);
    filter: blur(16px);
    opacity: 0.58;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-services__frame > * {
    position: relative;
    z-index: 1;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-services__title {
    text-align: left;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 0 0 12px;
    color: rgba(255,255,255,0.92);
    text-shadow: 0 14px 34px rgba(0,0,0,0.55);
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-services__groups {
    display: grid;
    /* Premium: avoid empty space when few categories */
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 16px;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-services__group {
    display: flex;
    flex-direction: column;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-services__group {
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.022) 0%, rgba(255,255,255,0.010) 100%);
    box-shadow:
        0 18px 54px rgba(0,0,0,0.34),
        0 0 0 1px rgba(255,255,255,0.02) inset;
    padding: 16px 16px 14px;
    min-width: 0;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-services__groups > .eg-profile-services__group:only-child {
    grid-column: 1 / -1;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-services__group-title {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.70);
    margin: 0 0 10px;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-services__list {
    display: grid;
    /* 4 columns on desktop, responsive below */
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px 36px;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-services__item {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    /* Match About keys typography */
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.62);
    line-height: 1.35;
    white-space: normal;
    user-select: text; /* allow copying */
    -webkit-tap-highlight-color: transparent;
    transition: color .18s ease;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-services__item:hover {
    color: rgba(255,255,255,0.82);
}

/* subtle neon underline (less dense) */
.profile-view-wrapper.eg-profile-v2 .eg-profile-services__item::after {
    content: '';
    position: absolute;
    left: 0;
    right: 40%;
    bottom: -5px;
    height: 1px;
    border-radius: 999px;
    background: linear-gradient(90deg,
        rgba(198,9,151,0.00) 0%,
        rgba(198,9,151,0.22) 30%,
        rgba(124,58,237,0.14) 52%,
        rgba(198,9,151,0.00) 100%);
    opacity: 0.55;
    pointer-events: none;
}

@media (min-width: 1600px) {
    .profile-view-wrapper.eg-profile-v2 .eg-profile-services__groups {
        grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    }
}

@media (max-width: 980px) {
    .profile-view-wrapper.eg-profile-v2 .eg-profile-services__groups {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .profile-view-wrapper.eg-profile-v2 .eg-profile-services__list {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .profile-view-wrapper.eg-profile-v2 .eg-profile-services__item {
        font-size: 12px;
        letter-spacing: 0.10em;
    }
}

@media (max-width: 1400px) {
    .profile-view-wrapper.eg-profile-v2 .eg-profile-services__list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px 22px;
    }
}

@media (max-width: 1100px) {
    .profile-view-wrapper.eg-profile-v2 .eg-profile-services__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 20px;
    }
}

/* =========================
   Location block (premium)
   ========================= */
.profile-view-wrapper.eg-profile-v2 .eg-profile-location {
    margin: 22px 0 0;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-location__frame {
    position: relative;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.12);
    background:
        radial-gradient(140% 120% at 18% 0%,
            rgba(49, 212, 255, 0.06) 0%,
            rgba(198, 9, 151, 0.06) 24%,
            rgba(124, 58, 237, 0.05) 48%,
            rgba(0,0,0,0.00) 70%),
        linear-gradient(180deg, rgba(255,255,255,0.040) 0%, rgba(255,255,255,0.018) 100%);
    box-shadow:
        0 22px 70px rgba(0,0,0,0.45),
        0 34px 70px -44px rgba(49, 212, 255, 0.22),
        0 34px 70px -44px rgba(198, 9, 151, 0.20),
        0 0 52px rgba(49, 212, 255, 0.10),
        0 0 70px rgba(198, 9, 151, 0.10),
        0 0 0 1px rgba(255,255,255,0.04) inset;
.profile-view-wrapper.eg-profile-v2 .eg-profile-location__frame::before {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    height: 2px;
    top: -1px;
    border-radius: 999px;
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(90deg,
        rgba(49,212,255,0.00) 0%,
        rgba(49,212,255,0.55) 18%,
        rgba(198,9,151,0.45) 50%,
        rgba(49,212,255,0.55) 82%,
        rgba(49,212,255,0.00) 100%);
    box-shadow:
        0 0 18px rgba(49,212,255,0.22),
        0 0 26px rgba(198,9,151,0.18);
    opacity: 0.86;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-location__frame::after {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    height: 44px;
    bottom: -28px;
    border-radius: 999px;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(closest-side,
            rgba(49, 212, 255, 0.32) 0%,
            rgba(198, 9, 151, 0.24) 42%,
            rgba(49, 212, 255, 0.00) 72%);
    filter: blur(16px);
    opacity: 0.60;
}
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    padding: 18px;
    overflow: hidden;
    isolation: isolate;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-location__frame > * {
    position: relative;
    z-index: 1;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-location__title {
    text-align: left;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 0 0 14px;
    color: rgba(255,255,255,0.92);
    text-shadow: 0 14px 34px rgba(0,0,0,0.55);
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-location__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 0 0 14px;
    align-items: stretch;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-location__card {
    position: relative;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.10);
    background:
        radial-gradient(140% 120% at 12% 0%,
            rgba(198, 9, 151, 0.10) 0%,
            rgba(124, 58, 237, 0.06) 38%,
            rgba(0,0,0,0.00) 72%),
        linear-gradient(180deg, rgba(255,255,255,0.022) 0%, rgba(255,255,255,0.010) 100%);
    box-shadow:
        0 18px 54px rgba(0,0,0,0.34),
        0 0 34px rgba(198, 9, 151, 0.08),
        0 0 0 1px rgba(255,255,255,0.02) inset;
    padding: 12px 16px 12px;
    min-width: 0;
    min-height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    overflow: hidden;
    isolation: isolate;
    transition:
        transform .18s ease,
        border-color .18s ease,
        box-shadow .18s ease;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-location__card::before {
    content: '';
    position: absolute;
    left: 14px;
    right: 14px;
    height: 2px;
    top: -1px;
    border-radius: 999px;
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(90deg,
        rgba(198,9,151,0.00) 0%,
        rgba(198,9,151,0.55) 22%,
        rgba(124,58,237,0.34) 50%,
        rgba(198,9,151,0.55) 78%,
        rgba(198,9,151,0.00) 100%);
    box-shadow:
        0 0 14px rgba(198,9,151,0.20),
        0 0 18px rgba(124,58,237,0.12);
    opacity: 0.78;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-location__card > * {
    position: relative;
    z-index: 1;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-location__card:hover {
    transform: translateY(-1px);
    border-color: rgba(198, 9, 151, 0.28);
    box-shadow:
        0 22px 62px rgba(0,0,0,0.38),
        0 0 44px rgba(198, 9, 151, 0.12),
        0 0 0 1px rgba(255,255,255,0.03) inset;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-location__card-label {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.62);
    margin: 0;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-location__card-value {
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.01em;
    /* calmer accent (less flashy than full magenta) */
    color: rgba(198, 9, 151, 0.72);
    line-height: 1.25;
    text-shadow: 0 10px 28px rgba(0,0,0,0.55);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-location__card-value .breadcrumb-link,
.profile-view-wrapper.eg-profile-v2 .eg-profile-location__card-value a {
    color: rgba(198, 9, 151, 0.72);
    text-decoration: none;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-location__card-value .breadcrumb-link:visited,
.profile-view-wrapper.eg-profile-v2 .eg-profile-location__card-value a:visited {
    color: rgba(198, 9, 151, 0.72);
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-location__card-value .breadcrumb-link:hover,
.profile-view-wrapper.eg-profile-v2 .eg-profile-location__card-value a:hover {
    color: rgba(255,255,255,0.92);
    text-decoration: underline;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-location__map {
    margin-top: 6px;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-location__map .profile-view-map {
    height: 420px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: none; /* already inside a premium frame */
}

@media (max-width: 1200px) {
    .profile-view-wrapper.eg-profile-v2 .eg-profile-location__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 720px) {
    .profile-view-wrapper.eg-profile-v2 .eg-profile-location__cards {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 12px;
    }
    .profile-view-wrapper.eg-profile-v2 .eg-profile-location__map .profile-view-map {
        height: 320px;
    }
}

/* =========================
   Similar Escort Girls block
   ========================= */
.profile-view-wrapper.eg-profile-v2 .eg-profile-similar {
    margin: 22px 0 0;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-similar__frame {
    position: relative;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.12);
    background:
        radial-gradient(140% 120% at 18% 0%,
            rgba(49, 212, 255, 0.06) 0%,
            rgba(198, 9, 151, 0.06) 24%,
            rgba(124, 58, 237, 0.05) 48%,
            rgba(0,0,0,0.00) 70%),
        linear-gradient(180deg, rgba(255,255,255,0.040) 0%, rgba(255,255,255,0.018) 100%);
    box-shadow:
        0 22px 70px rgba(0,0,0,0.45),
        0 34px 70px -44px rgba(49, 212, 255, 0.22),
        0 34px 70px -44px rgba(198, 9, 151, 0.20),
        0 0 52px rgba(49, 212, 255, 0.10),
        0 0 70px rgba(198, 9, 151, 0.10),
        0 0 0 1px rgba(255,255,255,0.04) inset;
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    padding: 18px;
    overflow: hidden;
    isolation: isolate;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-similar__frame::before {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    height: 2px;
    top: -1px;
    border-radius: 999px;
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(90deg,
        rgba(49,212,255,0.00) 0%,
        rgba(49,212,255,0.55) 18%,
        rgba(198,9,151,0.45) 50%,
        rgba(49,212,255,0.55) 82%,
        rgba(49,212,255,0.00) 100%);
    box-shadow:
        0 0 18px rgba(49,212,255,0.22),
        0 0 26px rgba(198,9,151,0.18);
    opacity: 0.86;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-similar__frame > * {
    position: relative;
    z-index: 1;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-similar__title {
    text-align: left;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 0 0 14px;
    color: rgba(255,255,255,0.92);
    text-shadow: 0 14px 34px rgba(0,0,0,0.55);
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-similar__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-similar__card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.02);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-similar__card:hover {
    border-color: rgba(198,9,151,0.35);
    box-shadow: 0 8px 28px rgba(198,9,151,0.18);
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-similar__card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-similar__card-img-wrap {
    display: block;
    aspect-ratio: 200 / 260;
    overflow: hidden;
    background: rgba(0,0,0,0.2);
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-similar__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    vertical-align: middle;
}
.profile-view-wrapper.eg-profile-v2 .eg-profile-similar__card-name {
    display: block;
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255,255,255,0.92);
    text-align: center;
}
@media (max-width: 720px) {
    .profile-view-wrapper.eg-profile-v2 .eg-profile-similar__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
}

.profile-view-wrapper.eg-profile-v2 .rates-table {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.10);
}
.profile-view-wrapper.eg-profile-v2 .rates-table th {
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.86);
    letter-spacing: 0.06em;
}
.profile-view-wrapper.eg-profile-v2 .rates-table td {
    background: rgba(255,255,255,0.02);
}
.profile-view-wrapper.eg-profile-v2 .rates-cards {
    margin-top: 14px;
}

/* Gallery grid rounding */
.profile-view-wrapper.eg-profile-v2 .gallery-grid {
    gap: 12px;
}
.profile-view-wrapper.eg-profile-v2 .gallery-item {
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.02);
    overflow: hidden;
}

/* Map card */
.profile-view-wrapper.eg-profile-v2 .profile-view-map-section {
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.03);
    box-shadow: 0 22px 70px rgba(0,0,0,0.45);
    padding: 18px;
}
.profile-view-wrapper.eg-profile-v2 .profile-view-map-section .map-title {
    margin-top: 0;
}
.profile-view-wrapper.eg-profile-v2 .profile-view-map {
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 22px 70px rgba(0,0,0,0.45);
}

@media (max-width: 980px) {
    .profile-view-wrapper.eg-profile-v2 .profile-content-desktop {
        grid-template-columns: 1fr;
    }
    .profile-view-wrapper.eg-profile-v2 .profile-view-attributes-desktop {
        grid-template-columns: 1fr;
    }
}
