/* ============================================================
   frontend/static/css/public/escort_profile.css

   PROFILE HEADER
   MEDIA + PROFILE INFORMATION

   RESPONSIVE:
   DESKTOP
   LAPTOP       1200px
   TABLET        900px
   MOBILE        768px
   SMALL PHONE   480px

   ============================================================ */


/* ============================================================
   PAGE
   ============================================================ */
.profile-page {
    width: var(--header-width);
    max-width: none;
    margin: 10px auto 0;
    min-width: 0;
    padding-bottom: 64px;
    box-sizing: border-box;
}
/* ============================================================
   SHARED LABEL
   ============================================================ */

.section-label {
    display: inline-flex;
    align-items: center;
    color: var(--color-text-subtle);
    font-size: 10px;
    font-weight: var(--font-weight-bold);
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}


/* ============================================================
   PROFILE HEADER
   ============================================================ */

.profile-header {
    display: grid;

    /*
       Give the profile information more space.
       Gallery is intentionally narrower.
    */
    grid-template-columns:
        minmax(360px, 500px)
        minmax(320px, 1fr);

    align-items: start;

    justify-content: center;

    gap: 42px;

    width: 100%;
    min-width: 0;

    margin-bottom: 58px;

    box-sizing: border-box;
}


/* ============================================================
   PROFILE MEDIA VIEWER
   ============================================================ */

.profile-media-viewer {
    width: min(100%, 500px);
    min-width: 0;

    box-sizing: border-box;

    animation:
        profileMediaReveal
        0.55s
        var(--transition-slow)
        both;
}

.media-viewer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 12px;

    width: 100%;
    min-width: 0;

    margin-bottom: 9px;

    box-sizing: border-box;
}

.media-viewer-heading {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 10px;

    min-width: 0;
}

.media-total-count {
    flex: 0 0 auto;

    color: var(--color-text-subtle);

    font-size: 11px;
    font-weight: var(--font-weight-semibold);
    line-height: 1;
}


/* ============================================================
   MEDIA COUNTS
   ============================================================ */

.profile-media-counts {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 10px;

    min-width: 0;

    color: var(--color-text-subtle);

    font-size: 11px;
    line-height: 1.3;
}

.profile-media-counts span {
    display: inline-flex;
    align-items: center;

    white-space: nowrap;
}

.profile-media-counts span + span::before {
    content: "•";

    margin-right: 10px;

    color: var(--color-text-disabled);
}


/* ============================================================
   MEDIA STAGE
   ============================================================ */

.profile-media-stage {
    position: relative;

    width: 100%;

    /*
       IMPORTANT:
       The previous gallery was too tall because it was
       effectively a large portrait block.

       This ratio creates a much more compact gallery.
    */
    aspect-ratio: 1 / 1;

    overflow: hidden;

    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-xl);

    background: var(--color-surface-soft);

    cursor: pointer;

    isolation: isolate;

    box-sizing: border-box;
}

.profile-media-stage::after {
    position: absolute;
    inset: 0;

    z-index: 2;

    content: "";

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.07) 0%,
            transparent 20%,
            transparent 80%,
            rgba(0, 0, 0, 0.15) 100%
        );

    opacity: 0.45;

    transition:
        opacity var(--transition-normal);
}

.profile-media-stage:hover::after {
    opacity: 0.65;
}

.profile-media-stage-single {
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-media-stage-single .profile-placeholder {
    width: 100%;
    height: 100%;
}


/* ============================================================
   MEDIA SLIDES
   ============================================================ */

.profile-media-slide {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.28s ease,
        visibility 0.28s ease;
}

.profile-media-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* ============================================================
   PROFILE MEDIA
   ============================================================ */

.profile-gallery-media {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    cursor: pointer;

    user-select: none;

    -webkit-user-drag: none;

    transform: scale(1);

    transition:
        transform 0.42s var(--transition-slow),
        filter 0.3s ease;
}

.profile-media-stage:hover .profile-gallery-media {
    transform: scale(1.012);
}

.profile-media-slide video {
    background: #111;
    cursor: pointer;
}


/* ============================================================
   MEDIA EXPAND HINT
   ============================================================ */

.media-expand-hint {
    position: absolute;

    top: 12px;
    right: 12px;

    z-index: 6;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;

    background: rgba(15, 23, 42, 0.54);

    color: #fff;

    font-size: 17px;
    line-height: 1;

    pointer-events: none;

    opacity: 0.9;

    box-shadow:
        0 6px 18px rgba(0, 0, 0, 0.14);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    transition:
        opacity var(--transition-fast),
        transform var(--transition-fast),
        background var(--transition-fast);
}

.profile-media-stage:hover .media-expand-hint {
    opacity: 1;

    transform: scale(1.04);

    background: rgba(15, 23, 42, 0.66);
}

.media-expand-hint span {
    display: block;
    transform: translateY(-1px);
}


/* ============================================================
   MEDIA NAVIGATION
   ============================================================ */

.media-nav {
    position: absolute;
    top: 50%;

    z-index: 7;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;

    background: rgba(15, 23, 42, 0.50);

    color: #fff;

    font-family: inherit;

    cursor: pointer;

    transform: translateY(-50%);

    box-shadow:
        0 7px 20px rgba(0, 0, 0, 0.15);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    transition:
        background var(--transition-fast),
        transform var(--transition-fast),
        border-color var(--transition-fast);
}

.media-nav span {
    display: block;

    margin-top: -3px;

    font-size: 29px;
    font-weight: 300;
    line-height: 1;
}

.media-nav:hover {
    background: rgba(15, 23, 42, 0.70);

    border-color: rgba(255, 255, 255, 0.40);

    transform:
        translateY(-50%)
        scale(1.04);
}

.media-nav:active {
    transform:
        translateY(-50%)
        scale(0.96);
}

.media-nav:focus-visible {
    outline: none;

    box-shadow:
        0 0 0 var(--focus-width) var(--focus-color),
        0 7px 20px rgba(0, 0, 0, 0.16);
}

.media-nav-prev {
    left: 12px;
}

.media-nav-next {
    right: 12px;
}


/* ============================================================
   MEDIA POSITION
   ============================================================ */

.media-position {
    position: absolute;

    right: 50%;
    bottom: 12px;

    z-index: 7;

    display: inline-flex;
    align-items: center;

    gap: 5px;

    min-height: 26px;

    padding: 0 9px;

    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: var(--radius-pill);

    background: rgba(15, 23, 42, 0.58);

    color: #fff;

    font-size: 10px;
    font-weight: var(--font-weight-semibold);
    line-height: 1;

    transform: translateX(50%);

    box-sizing: border-box;

    box-shadow:
        0 6px 16px rgba(0, 0, 0, 0.13);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}


/* ============================================================
   MEDIA TYPE BADGE
   ============================================================ */

.media-type-badge {
    position: absolute;

    top: 12px;
    left: 12px;

    z-index: 6;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 23px;

    padding: 0 8px;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-xs);

    background: rgba(15, 23, 42, 0.68);

    color: #fff;

    font-size: 9px;
    font-weight: var(--font-weight-bold);

    line-height: 1;

    letter-spacing: 0.08em;
    text-transform: uppercase;

    pointer-events: none;

    box-sizing: border-box;

    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
}


/* ============================================================
   PROFILE PLACEHOLDER
   ============================================================ */

.profile-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;

    background:
        radial-gradient(
            circle at 50% 42%,
            var(--color-surface) 0,
            var(--color-surface-soft) 48%,
            var(--color-border-light) 100%
        );

    color: var(--color-text-subtle);

    font-size: clamp(44px, 6vw, 70px);

    font-weight: var(--font-weight-semibold);

    box-sizing: border-box;
}


/* ============================================================
   PROFILE INFORMATION
   ============================================================ */

.profile-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    width: 100%;
    min-width: 0;

    padding: 8px 0;

    box-sizing: border-box;

    animation:
        profileInfoReveal
        0.55s
        var(--transition-slow)
        0.06s
        both;
}

.profile-info-inner {
    width: 100%;
    min-width: 0;

    box-sizing: border-box;
}

.profile-info > .section-label {
    margin-bottom: 11px;
}

.profile-info h1 {
    max-width: 100%;

    margin: 0;

    color: var(--color-text);

    font-size: clamp(34px, 4vw, 54px);

    font-weight: var(--font-weight-bold);

    line-height: 1.04;

    letter-spacing: -0.035em;

    overflow-wrap: anywhere;
}


/* ============================================================
   PROFILE DETAILS
   ============================================================ */

.profile-details {
    display: flex;
    flex-direction: column;

    width: 100%;
    min-width: 0;

    margin-top: 22px;

    box-sizing: border-box;
}

.profile-detail {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    gap: 9px 15px;

    width: 100%;
    min-width: 0;

    padding: 12px 0;

    border-top: 1px solid var(--color-border-light);

    box-sizing: border-box;
}

.profile-detail:last-child {
    border-bottom: 1px solid var(--color-border-light);
}


/* ============================================================
   DETAIL LABEL / VALUE
   ============================================================ */

.detail-label {
    flex: 0 0 auto;

    color: var(--color-text-faint);

    font-size: 9px;
    font-weight: var(--font-weight-bold);

    line-height: 1;

    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.detail-value {
    min-width: 0;

    color: var(--color-text-secondary);

    font-size: 14px;
    font-weight: var(--font-weight-medium);

    line-height: 1.45;

    overflow-wrap: anywhere;
}


/* ============================================================
   PHONE
   ============================================================ */

.profile-phone {
    align-items: flex-start;
    padding: 14px 0;
}

.phone-number {
    flex: 1 1 auto;
    min-width: 120px;

    font-weight: var(--font-weight-semibold);
}

.phone-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 6px;

    flex: 0 0 auto;
    width: auto;

    box-sizing: border-box;
}

.phone-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 34px;

    padding: 0 11px;

    border: 1px solid var(--color-border-dark);
    border-radius: var(--radius-xs);

    background: var(--color-surface);

    color: var(--color-text-secondary);

    font-family: inherit;

    font-size: 11px;
    font-weight: var(--font-weight-semibold);

    line-height: 1;

    text-decoration: none;

    cursor: pointer;

    box-sizing: border-box;

    transition:
        background var(--transition-fast),
        border-color var(--transition-fast),
        color var(--transition-fast),
        transform var(--transition-fast),
        box-shadow var(--transition-fast);
}

.phone-btn:hover {
    background: var(--color-surface-hover);

    border-color: var(--color-primary-light);

    color: var(--color-primary-dark);

    transform: translateY(-1px);
}

.phone-btn:active {
    transform: translateY(0);
}

.phone-btn:focus-visible {
    outline: none;

    border-color: var(--color-primary);

    box-shadow:
        0 0 0 var(--focus-width) var(--focus-color);
}

.copy-phone {
    appearance: none;
}

.copy-phone.copied {
    background: var(--color-primary-soft);

    border-color: var(--color-primary-soft-hover);

    color: var(--color-primary-dark);
}


/* ============================================================
   LOCATION / SERVICES / BIO
   ============================================================ */

.profile-location-section,
.profile-services,
.profile-bio-section {
    width: 100%;
    min-width: 0;

    margin-top: 28px;
    padding-top: 24px;

    border-top: 1px solid var(--color-border-light);

    box-sizing: border-box;
}

.profile-location-section > .section-label,
.profile-services > .section-label,
.profile-bio-section > .section-label {
    display: block;
}

.profile-location-section > .section-label {
    margin-bottom: 13px;
}

.profile-services > .section-label {
    margin-bottom: 12px;
}

.profile-bio-section > .section-label {
    margin-bottom: 11px;
}


/* ============================================================
   LOCATION
   ============================================================ */

.profile-location {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 8px;

    width: 100%;
    min-width: 0;

    box-sizing: border-box;
}

.location-detail {
    display: flex;
    flex-direction: column;
    justify-content: center;

    min-width: 0;
    min-height: 60px;

    padding: 11px 12px;

    border: 1px solid var(--color-border-soft);
    border-radius: var(--radius-sm);

    background: var(--color-surface-soft);

    box-sizing: border-box;

    transition:
        border-color var(--transition-fast),
        background var(--transition-fast),
        transform var(--transition-fast);
}

.location-detail:hover {
    border-color: var(--color-border-dark);

    background: var(--color-surface);

    transform: translateY(-1px);
}

.location-detail .detail-label {
    margin-bottom: 6px;
}

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


/* ============================================================
   SERVICES
   ============================================================ */

.services-list {
    display: flex;
    flex-wrap: wrap;

    gap: 7px;

    width: 100%;
    min-width: 0;

    box-sizing: border-box;
}

.service-tag {
    display: inline-flex;
    align-items: center;

    max-width: 100%;
    min-height: 31px;

    padding: 5px 10px;

    border: 1px solid var(--color-border-soft);
    border-radius: var(--radius-pill);

    background: var(--color-surface-soft);

    color: var(--color-text-secondary);

    font-size: 12px;
    font-weight: var(--font-weight-medium);

    line-height: 1.2;

    overflow-wrap: anywhere;

    box-sizing: border-box;

    transition:
        background var(--transition-fast),
        border-color var(--transition-fast),
        color var(--transition-fast),
        transform var(--transition-fast);
}

.service-tag:hover {
    background: var(--color-primary-soft);

    border-color: var(--color-primary-soft-hover);

    color: var(--color-primary-dark);

    transform: translateY(-1px);
}


/* ============================================================
   BIO / ABOUT
   ============================================================ */

.profile-bio {
    width: 100%;
    min-width: 0;

    color: var(--color-text-muted);

    font-size: 15px;
    line-height: 1.75;

    white-space: pre-line;

    overflow-wrap: anywhere;

    box-sizing: border-box;
}


/* ============================================================
   ANIMATION
   ============================================================ */

@keyframes profileMediaReveal {

    from {
        opacity: 0;
        transform: translateY(var(--animation-distance));
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes profileInfoReveal {

    from {
        opacity: 0;
        transform: translateY(var(--animation-distance));
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ============================================================
   LAPTOP
   1200px
   ============================================================ */

@media (max-width: 1200px) {

    .profile-page {
        width: min(
            var(--content-max-width),
            calc(100% - 40px)
        );
    }

    .profile-header {
        grid-template-columns:
            minmax(330px, 460px)
            minmax(300px, 1fr);

        gap: 30px;
    }

    .profile-media-viewer {
        width: min(100%, 460px);
    }

    .profile-media-stage {
        aspect-ratio: 1 / 1;
    }

    .profile-info h1 {
        font-size: clamp(33px, 4.5vw, 50px);
    }

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


/* ============================================================
   TABLET
   900px

   Gallery is centered and intentionally capped.
   ============================================================ */

@media (max-width: 900px) {

    .profile-page {
        width: calc(100% - 32px);
    }

    .profile-header {
        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 28px;

        margin-bottom: 48px;
    }

    .profile-media-viewer {
        width: min(100%, 500px);
        max-width: 500px;

        margin: 0 auto;
    }

    .profile-media-stage {
        width: 100%;
        aspect-ratio: 1 / 1;

        border-radius: var(--radius-xl);
    }

    .profile-info {
        width: 100%;
        padding: 0;
    }

    .profile-info-inner {
        width: min(100%, 760px);
    }

    .profile-info h1 {
        font-size: clamp(34px, 6vw, 50px);
    }

    .profile-details {
        margin-top: 21px;
    }

    .profile-location {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }
}


/* ============================================================
   MOBILE
   768px

   ============================================================ */

@media (max-width: 768px) {

    .profile-page {
        width: calc(100% - 24px);
        padding-bottom: 48px;
    }

    .profile-header {
        gap: 24px;
        margin-bottom: 42px;
    }

    .profile-media-viewer {
        width: min(100%, 440px);
        max-width: 440px;
    }

    /*
       Square gallery on mobile.
       No oversized portrait height.
    */
    .profile-media-stage {
        aspect-ratio: 1 / 1;

        border-radius: var(--radius-lg);
    }

    .media-viewer-top {
        margin-bottom: 8px;
    }

    .media-viewer-heading {
        gap: 8px;
    }

    .profile-media-counts {
        gap: 8px;
        font-size: 10px;
    }

    .profile-media-counts span + span::before {
        margin-right: 8px;
    }

    .media-total-count {
        font-size: 10px;
    }

    .media-nav {
        width: 39px;
        height: 39px;
    }

    .media-nav span {
        font-size: 27px;
    }

    .media-nav-prev {
        left: 8px;
    }

    .media-nav-next {
        right: 8px;
    }

    .media-position {
        bottom: 8px;

        min-height: 24px;
        padding: 0 8px;

        font-size: 9px;
    }

    .media-type-badge {
        top: 8px;
        left: 8px;

        min-height: 21px;
        padding: 0 7px;

        font-size: 8px;
    }

    .media-expand-hint {
        top: 8px;
        right: 8px;

        width: 31px;
        height: 31px;

        font-size: 15px;
    }

    .profile-info {
        width: 100%;
    }

    .profile-info-inner {
        width: auto;
        max-width: 100%;
    }

    .profile-info h1 {
        font-size: clamp(31px, 8.5vw, 44px);
        letter-spacing: -0.03em;
    }

    .profile-details {
        margin-top: 19px;
    }

    .profile-detail {
        align-items: flex-start;

        gap: 8px 13px;

        padding: 12px 0;
    }

    .profile-phone {
        gap: 8px;
    }

    .phone-number {
        width: 100%;
        min-width: 0;
    }

    .phone-actions {
        width: 100%;
    }

    .phone-btn {
        flex: 1 1 0;

        min-width: 0;
        min-height: 37px;
    }

    .profile-location-section,
    .profile-services,
    .profile-bio-section {
        margin-top: 24px;
        padding-top: 21px;
    }

    .profile-location {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 8px;
    }

    .location-detail {
        min-height: 58px;
        padding: 10px 11px;
    }

    .service-tag {
        min-height: 29px;

        padding: 5px 9px;

        font-size: 11px;
    }

    .profile-bio {
        font-size: 14px;
        line-height: 1.7;
    }
}


/* ============================================================
   SMALL PHONE
   480px
   ============================================================ */

@media (max-width: 480px) {

    .profile-page {
        width: calc(100% - 18px);
        padding-bottom: 36px;
    }

    .profile-header {
        gap: 21px;
        margin-bottom: 36px;
    }

    .profile-media-viewer {
        width: min(100%, 360px);
        max-width: 360px;
    }

    .profile-media-stage {
        aspect-ratio: 1 / 1;

        border-radius: var(--radius-md);
    }

    .media-viewer-heading {
        gap: 6px;
    }

    .profile-media-counts {
        gap: 6px;
    }

    .profile-media-counts span + span::before {
        margin-right: 6px;
    }

    .media-nav {
        width: 35px;
        height: 35px;
    }

    .media-nav span {
        font-size: 24px;
    }

    .media-nav-prev {
        left: 6px;
    }

    .media-nav-next {
        right: 6px;
    }

    .media-position {
        bottom: 7px;

        min-height: 22px;
        padding: 0 7px;

        font-size: 9px;
    }

    .media-type-badge {
        top: 7px;
        left: 7px;
    }

    .media-expand-hint {
        top: 7px;
        right: 7px;

        width: 29px;
        height: 29px;

        font-size: 14px;
    }

    .profile-info h1 {
        font-size: clamp(29px, 10vw, 39px);
    }

    .profile-details {
        margin-top: 17px;
    }

    .profile-detail {
        flex-direction: column;
        align-items: flex-start;

        gap: 6px;

        padding: 11px 0;
    }

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

    .profile-phone {
        gap: 8px;
    }

    .phone-actions {
        gap: 5px;
    }

    .phone-btn {
        min-height: 36px;

        padding: 0 8px;

        font-size: 10px;
    }

    .profile-location {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .location-detail {
        min-height: 54px;
    }

    .profile-location-section,
    .profile-services,
    .profile-bio-section {
        margin-top: 22px;
        padding-top: 19px;
    }

    .services-list {
        gap: 6px;
    }

    .service-tag {
        min-height: 28px;

        padding: 5px 8px;

        font-size: 10px;
    }

    .profile-bio {
        font-size: 13px;
        line-height: 1.68;
    }
}


/* ============================================================
   VERY SMALL PHONE
   380px
   ============================================================ */

@media (max-width: 380px) {

    .profile-page {
        width: calc(100% - 14px);
    }

    .profile-header {
        gap: 19px;
        margin-bottom: 32px;
    }

    .profile-media-viewer {
        width: min(100%, 320px);
        max-width: 320px;
    }

    .profile-media-stage {
        aspect-ratio: 1 / 1;
    }

    .profile-info h1 {
        font-size: 28px;
    }

    .phone-actions {
        display: grid;

        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        width: 100%;
    }

    .phone-btn {
        width: 100%;

        padding: 0 5px;

        font-size: 9px;
    }

    .profile-location-section,
    .profile-services,
    .profile-bio-section {
        margin-top: 20px;
        padding-top: 18px;
    }
}


/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

    .profile-media-viewer,
    .profile-info {
        animation: none;
    }

    .profile-gallery-media,
    .profile-media-stage::after,
    .media-expand-hint,
    .media-nav,
    .phone-btn,
    .location-detail,
    .service-tag {
        transition: none;
    }
}























/* ============================================================
   VIEW PROFILE / DISCOVERY NAVIGATION
   ESCORT WITHIN — PUBLIC BASE
   ============================================================ */
.profile-discovery {
    width: 100%;
    max-width: none;
    margin: 48px 0 0;
    padding: 30px 32px 32px;
    position: relative;
    box-sizing: border-box;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.98),
            rgba(248, 250, 252, 0.96)
        );
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-2xl);
    box-shadow:
        0 10px 30px rgba(15, 23, 42, 0.055),
        0 2px 8px rgba(15, 23, 42, 0.025);
    overflow: hidden;
    animation: discoveryFadeUp 0.6s var(--transition-slow) both;
}

/* ============================================================
   SUBTLE BRAND GLOW
   ============================================================ */
.profile-discovery::before {
    content: "";
    position: absolute;
    top: -90px;
    left: -70px;
    width: 220px;
    height: 220px;
    background: rgba(37, 99, 235, 0.07);
    border-radius: 50%;
    filter: blur(4px);
    pointer-events: none;
}

/* ============================================================
   FINE TOP ACCENT
   ============================================================ */
.profile-discovery::after {
    content: "";
    position: absolute;
    top: 0;
    left: 32px;
    right: 32px;
    height: 2px;
    background:
        linear-gradient(
            90deg,
            transparent,
            var(--color-primary),
            transparent
        );
    opacity: 0.7;
}

/* ============================================================
   DISCOVERY HEADING
   ============================================================ */
.discovery-heading {
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 8px;
    color: var(--color-primary);
    font-size: 11px;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.section-label::before {
    content: "";
    width: 22px;
    height: 2px;
    background: var(--color-primary);
    border-radius: var(--radius-pill);
    transition:
        width var(--transition-normal),
        opacity var(--transition-normal);
}

.discovery-heading:hover .section-label::before {
    width: 30px;
}

.discovery-heading h2 {
    margin: 0;
    color: var(--color-text);
    font-size: clamp(21px, 2vw, 27px);
    font-weight: var(--font-weight-extrabold);
    line-height: 1.2;
    letter-spacing: -0.025em;
}

/* ============================================================
   QUICK LINKS
   ============================================================ */
.discovery-links {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

/* ============================================================
   DISCOVERY LINK
   ============================================================ */
.discovery-link {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 92px;
    padding: 17px 19px;
    box-sizing: border-box;
    color: inherit;
    text-decoration: none;
    background: var(--color-surface);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    box-shadow:
        0 3px 10px rgba(15, 23, 42, 0.025);
    overflow: hidden;
    transform: translate3d(0, 0, 0);
    transition:
        transform var(--transition-slow),
        border-color var(--transition-normal),
        background var(--transition-normal),
        box-shadow var(--transition-slow);
}

/* ============================================================
   ANIMATED LEFT ACCENT
   ============================================================ */
.discovery-link::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 3px;
    background: var(--color-primary);
    transform: scaleY(0);
    transform-origin: center;
    transition: transform var(--transition-slow);
}

/* ============================================================
   SOFT HOVER HIGHLIGHT
   ============================================================ */
.discovery-link::after {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 170px;
    height: 170px;
    background: rgba(37, 99, 235, 0.055);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.7);
    transition:
        opacity var(--transition-slow),
        transform var(--transition-slow);
}

.discovery-link:hover {
    background: var(--color-surface-hover);
    border-color: rgba(37, 99, 235, 0.24);
    box-shadow:
        0 12px 28px rgba(15, 23, 42, 0.075),
        0 3px 10px rgba(37, 99, 235, 0.045);
    transform: translateY(-3px);
}

.discovery-link:hover::before {
    transform: scaleY(1);
}

.discovery-link:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* ============================================================
   LINK TITLE
   ============================================================ */
.discovery-link-title {
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 5px;
    color: var(--color-text);
    font-size: 14px;
    font-weight: var(--font-weight-bold);
    line-height: 1.3;
    transition:
        color var(--transition-fast),
        transform var(--transition-normal);
}

.discovery-link:hover .discovery-link-title {
    color: var(--color-primary-dark);
    transform: translateX(2px);
}

/* ============================================================
   LINK DESCRIPTION
   ============================================================ */
.discovery-link-text {
    position: relative;
    z-index: 2;
    display: block;
    color: var(--color-text-muted);
    font-size: 12px;
    font-weight: var(--font-weight-medium);
    line-height: 1.45;
    transition:
        color var(--transition-fast),
        transform var(--transition-normal);
}

.discovery-link:hover .discovery-link-text {
    color: var(--color-text-secondary);
    transform: translateX(2px);
}

/* ============================================================
   VIP LINK
   ============================================================ */
.discovery-vip-link {
    background:
        linear-gradient(
            135deg,
            var(--color-primary-soft),
            rgba(255, 255, 255, 0.98)
        );
    border-color: rgba(37, 99, 235, 0.18);
}

.discovery-vip-link .discovery-link-title {
    color: var(--color-primary-dark);
}

.discovery-vip-link:hover {
    background:
        linear-gradient(
            135deg,
            var(--color-primary-soft-hover),
            #ffffff
        );
    border-color: rgba(37, 99, 235, 0.32);
}

/* ============================================================
   KEYBOARD ACCESSIBILITY
   ============================================================ */
.discovery-link:focus-visible {
    outline: none;
    border-color: var(--color-primary);
    box-shadow:
        0 0 0 var(--focus-width) var(--focus-color),
        0 10px 25px rgba(15, 23, 42, 0.07);
    transform: translateY(-2px);
}

/* ============================================================
   ENTRANCE ANIMATION
   ============================================================ */
@keyframes discoveryFadeUp {
    from {
        opacity: 0;
        transform: translateY(var(--animation-distance));
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
   LAPTOP — 1200px
   PROFILE PAGE CONTROLS THE WIDTH
   ============================================================ */
@media (max-width: 1200px) {
    .profile-discovery {
        width: 100%;
        max-width: none;
        padding: 28px 28px 30px;
    }
    .discovery-links {
        gap: 11px;
    }
    .discovery-link {
        min-height: 88px;
        padding: 16px 17px;
    }
}

/* ============================================================
   TABLET / SMALL LAPTOP — 900px
   PROFILE PAGE CONTROLS THE WIDTH
   ============================================================ */
@media (max-width: 900px) {
    .profile-discovery {
        width: 100%;
        max-width: none;
        margin-top: 40px;
        padding: 26px 24px 28px;
    }
    .profile-discovery::after {
        left: 24px;
        right: 24px;
    }
    .discovery-heading {
        margin-bottom: 20px;
    }
    .discovery-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 11px;
    }
    .discovery-link {
        min-height: 86px;
    }
}

/* ============================================================
   BIG PHONE / TABLET — 768px
   ============================================================ */
@media (max-width: 768px) {
    .profile-discovery {
        width: 100%;
        max-width: none;
        margin-top: 34px;
        padding: 23px 18px 20px;
        border-radius: var(--radius-xl);
    }
    .profile-discovery::after {
        left: 18px;
        right: 18px;
    }
    .discovery-heading {
        margin-bottom: 18px;
    }
    .discovery-heading h2 {
        font-size: 21px;
    }
    .section-label {
        font-size: 10px;
    }
    .discovery-links {
        grid-template-columns: 1fr;
        gap: 9px;
    }
    .discovery-link {
        min-height: 72px;
        padding: 14px 16px;
    }
    .discovery-link-title {
        font-size: 13px;
    }
    .discovery-link-text {
        font-size: 11.5px;
    }
}

/* ============================================================
   MOBILE — 480px
   ============================================================ */
@media (max-width: 480px) {
    .profile-discovery {
        width: 100%;
        max-width: none;
        margin-top: 28px;
        padding: 21px 14px 15px;
        border-radius: var(--radius-lg);
        box-shadow:
            0 7px 22px rgba(15, 23, 42, 0.05);
    }
    .profile-discovery::before {
        width: 160px;
        height: 160px;
    }
    .profile-discovery::after {
        left: 14px;
        right: 14px;
    }
    .discovery-heading {
        margin-bottom: 16px;
    }
    .discovery-heading h2 {
        font-size: 20px;
    }
    .discovery-links {
        gap: 8px;
    }
    .discovery-link {
        min-height: 68px;
        padding: 13px 14px;
        border-radius: var(--radius-md);
    }
    .discovery-link::before {
        width: 2px;
    }
    .discovery-link-title {
        margin-bottom: 4px;
        font-size: 13px;
    }
    .discovery-link-text {
        font-size: 11px;
        line-height: 1.4;
    }
    .discovery-link::after {
        display: none;
    }
}

/* ============================================================
   SMALL PHONE — 380px
   ============================================================ */
@media (max-width: 380px) {
    .profile-discovery {
        width: 100%;
        max-width: none;
        padding: 19px 12px 13px;
    }
    .profile-discovery::after {
        left: 12px;
        right: 12px;
    }
    .discovery-heading {
        margin-bottom: 14px;
    }
    .discovery-heading h2 {
        font-size: 18px;
    }
    .section-label {
        margin-bottom: 7px;
        font-size: 9px;
    }
    .section-label::before {
        width: 18px;
    }
    .discovery-link {
        min-height: 64px;
        padding: 12px 13px;
    }
    .discovery-link-title {
        font-size: 12.5px;
    }
    .discovery-link-text {
        font-size: 10.5px;
    }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    .profile-discovery,
    .discovery-link,
    .discovery-link::before,
    .discovery-link::after,
    .discovery-link-title,
    .discovery-link-text,
    .section-label::before {
        animation: none !important;
        transition: none !important;
    }
    .discovery-link:hover,
    .discovery-link:focus-visible {
        transform: none;
    }
}



























/* ============================================================
   SUGGESTIONS / RELATED PROFILES
   ESCORT WITHIN — PUBLIC PROFILE
   ============================================================ */

.related-section {
    width: 100%;
    margin: 52px auto 0;
    padding: 0;
    animation: relatedFadeUp 0.65s var(--transition-slow) both;
}
/* ============================================================
   RELATED HEADING
   ============================================================ */

.related-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.related-heading > div {
    min-width: 0;
}

.related-heading .section-label {
    display: inline-block;
    margin-bottom: 7px;
}

.related-heading h2 {
    margin: 0;
    color: var(--color-text);
    font-size: clamp(21px, 2vw, 27px);
    font-weight: var(--font-weight-extrabold);
    line-height: 1.2;
    letter-spacing: -0.025em;
}

/* ============================================================
   VIEW ALL / EXPLORE
   ============================================================ */

.section-more-link {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 38px;
    padding: 8px 15px;
    color: var(--color-primary-dark);
    background: var(--color-primary-soft);
    border: 1px solid rgba(37, 99, 235, 0.14);
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: var(--font-weight-bold);
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition:
        color var(--transition-fast),
        background var(--transition-fast),
        border-color var(--transition-fast),
        box-shadow var(--transition-normal),
        transform var(--transition-normal);
}

.section-more-link:hover {
    color: #ffffff;
    background: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow:
        0 7px 18px rgba(37, 99, 235, 0.22);
    transform: translateY(-2px);
}

.section-more-link:active {
    transform: translateY(0);
    box-shadow:
        0 3px 9px rgba(37, 99, 235, 0.16);
}

.section-more-link:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 var(--focus-width) var(--focus-color),
        0 6px 16px rgba(37, 99, 235, 0.16);
}

/* ============================================================
   RELATED GRID
   ============================================================ */

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

/* ============================================================
   RELATED CARD
   ============================================================ */

.related-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    background: var(--color-surface);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-xl);
    box-shadow:
        0 4px 14px rgba(15, 23, 42, 0.035);
    overflow: hidden;
    opacity: 0;
    animation: relatedCardEnter 0.55s var(--transition-slow) forwards;
    transition:
        transform var(--transition-slow),
        border-color var(--transition-normal),
        box-shadow var(--transition-slow);
}

.related-card:nth-child(2) {
    animation-delay: 0.06s;
}

.related-card:nth-child(3) {
    animation-delay: 0.12s;
}

.related-card:nth-child(4) {
    animation-delay: 0.18s;
}

.related-card:nth-child(5) {
    animation-delay: 0.24s;
}

.related-card:nth-child(6) {
    animation-delay: 0.30s;
}

.related-card:nth-child(7) {
    animation-delay: 0.36s;
}

.related-card:nth-child(8) {
    animation-delay: 0.42s;
}

.related-card:hover {
    border-color: rgba(37, 99, 235, 0.20);
    box-shadow:
        0 16px 34px rgba(15, 23, 42, 0.085),
        0 4px 12px rgba(37, 99, 235, 0.045);
    transform: translateY(-5px);
}

/* ============================================================
   IMAGE WRAPPER
   ============================================================ */

.related-card-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* ============================================================
   CARD IMAGE
   ============================================================ */

.related-card-image {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 4.45;
    background:
        linear-gradient(
            135deg,
            var(--color-surface-soft),
            var(--color-surface-muted)
        );
    overflow: hidden;
    text-decoration: none;
}

.related-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(15, 23, 42, 0) 52%,
            rgba(15, 23, 42, 0.18) 100%
        );
    opacity: 0;
    pointer-events: none;
    transition:
        opacity var(--transition-normal);
}

.related-card:hover .related-card-image::after {
    opacity: 1;
}

.related-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.001);
    transition:
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        filter var(--transition-normal);
}

.related-card:hover .related-card-image img {
    transform: scale(1.045);
}

/* ============================================================
   IMAGE PLACEHOLDER
   ============================================================ */

.related-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-dark);
    background:
        radial-gradient(
            circle at 30% 25%,
            rgba(96, 165, 250, 0.25),
            transparent 38%
        ),
        linear-gradient(
            135deg,
            var(--color-primary-soft),
            var(--color-surface-soft)
        );
    font-size: clamp(32px, 4vw, 48px);
    font-weight: var(--font-weight-black);
    user-select: none;
    transition:
        transform var(--transition-slow),
        background var(--transition-normal);
}

.related-card:hover .related-placeholder {
    transform: scale(1.025);
}

/* ============================================================
   VIP / PREMIUM BADGES
   ============================================================ */
.vip-badge,
.escort-vip-tag,
.escort-premium-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    max-width: max-content;
    min-width: 0;
    min-height: 25px;
    padding: 5px 9px;
    color: #ffffff;
    border-radius: var(--radius-pill);
    font-size: 9px;
    font-weight: var(--font-weight-black);
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
    box-sizing: border-box;
    transition:
        transform var(--transition-fast),
        box-shadow var(--transition-normal),
        filter var(--transition-fast);
}

.vip-badge,
.escort-vip-tag {
    background:
        linear-gradient(
            135deg,
            var(--color-vip),
            var(--color-vip-dark)
        );
    border: 1px solid var(--color-vip-border);
    box-shadow:
        0 6px 16px var(--color-vip-shadow);
}

.escort-premium-tag {
    background:
        linear-gradient(
            135deg,
            var(--color-premium),
            var(--color-premium-dark)
        );
    border: 1px solid var(--color-premium-border);
    box-shadow:
        0 6px 16px var(--color-premium-shadow);
}


/* ============================================================
   CARD INFORMATION
   ============================================================ */

.related-card-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 14px 14px 15px;
}

/* ============================================================
   NAME
   ============================================================ */

.related-card-info h3 {
    margin: 0;
    color: var(--color-text);
    font-size: 14px;
    font-weight: var(--font-weight-bold);
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition:
        color var(--transition-fast);
}

.related-card:hover .related-card-info h3 {
    color: var(--color-primary-dark);
}

/* ============================================================
   AGE
   ============================================================ */

.related-age {
    display: block;
    margin-top: 3px;
    color: var(--color-text-muted);
    font-size: 11px;
    font-weight: var(--font-weight-medium);
    line-height: 1.4;
}

/* ============================================================
   LOCATION
   ============================================================ */

.related-location {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3px 7px;
    margin-top: 8px;
    min-height: 17px;
}

.related-location span {
    position: relative;
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    color: var(--color-text-secondary);
    font-size: 11px;
    font-weight: var(--font-weight-medium);
    line-height: 1.35;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.related-location span + span::before {
    content: "•";
    margin-right: 7px;
    color: var(--color-text-faint);
}

/* ============================================================
   PHONE NUMBER
   ============================================================ */

.related-phone {
    width: 100%;
    margin-top: 10px;
}

.related-phone .phone-number {
    display: block;
    width: 100%;
    padding: 7px 9px;
    color: var(--color-text);
    background: var(--color-surface-soft);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: var(--font-weight-semibold);
    line-height: 1.25;
    text-align: center;
    letter-spacing: 0.015em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    user-select: text;
    cursor: text;
    transition:
        color var(--transition-fast),
        background var(--transition-fast),
        border-color var(--transition-fast),
        box-shadow var(--transition-normal);
}

.related-phone .phone-number:hover {
    color: var(--color-primary-dark);
    background: var(--color-primary-soft);
    border-color: rgba(37, 99, 235, 0.18);
}

.related-phone .phone-number::selection {
    color: var(--color-primary-dark);
    background: rgba(96, 165, 250, 0.28);
}

/* ============================================================
   PHONE ACTIONS
   ============================================================ */

.related-phone-actions {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 5px;
    width: 100%;
    margin-top: 7px;
}

/* ============================================================
   PHONE BUTTON
   ============================================================ */

.related-phone-btn {
    min-width: 0;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 7px;
    color: var(--color-text-secondary);
    background: var(--color-surface-soft);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 10.5px;
    font-weight: var(--font-weight-bold);
    line-height: 1;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition:
        color var(--transition-fast),
        background var(--transition-fast),
        border-color var(--transition-fast),
        box-shadow var(--transition-normal),
        transform var(--transition-fast);
}

.related-phone-btn:hover {
    color: var(--color-primary-dark);
    background: var(--color-primary-soft);
    border-color: rgba(37, 99, 235, 0.20);
    transform: translateY(-1px);
}

.related-phone-btn:active {
    transform: translateY(0);
    box-shadow: none;
}

.related-phone-btn:focus-visible {
    outline: none;
    border-color: var(--color-primary);
    box-shadow:
        0 0 0 var(--focus-width) var(--focus-color);
}

/* ============================================================
   VIEW PROFILE
   ============================================================ */

.related-profile-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 36px;
    margin-top: 9px;
    padding: 8px 12px;
    color: #ffffff;
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: var(--font-weight-bold);
    line-height: 1;
    text-align: center;
    text-decoration: none;
    box-shadow:
        0 4px 10px rgba(37, 99, 235, 0.13);
    transition:
        background var(--transition-fast),
        border-color var(--transition-fast),
        box-shadow var(--transition-normal),
        transform var(--transition-fast);
}

.related-profile-link:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    box-shadow:
        0 7px 17px rgba(37, 99, 235, 0.22);
    transform: translateY(-1px);
}

.related-profile-link:active {
    transform: translateY(0);
    box-shadow:
        0 3px 8px rgba(37, 99, 235, 0.16);
}

.related-profile-link:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 var(--focus-width) var(--focus-color),
        0 5px 14px rgba(37, 99, 235, 0.18);
}

/* ============================================================
   VIP SECTION
   ============================================================ */

.vip-section .related-card {
    position: relative;
}

.vip-section .related-card:hover {
    border-color: rgba(124, 58, 237, 0.20);
}

.vip-section .related-phone .phone-number:hover {
    color: #7c3aed;
    background: rgba(124, 58, 237, 0.06);
    border-color: rgba(124, 58, 237, 0.18);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes relatedFadeUp {
    from {
        opacity: 0;
        transform: translateY(var(--animation-distance));
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes relatedCardEnter {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
   LAPTOP — 1200px
   ============================================================ */

@media (max-width: 1200px) {
    .related-section {
        width: 100%;
    }
    .related-grid {
        grid-template-columns:
            repeat(4, minmax(0, 1fr));
        gap: 13px;
    }

    .related-card-info {
        padding: 13px;
    }

    .related-card-image {
        aspect-ratio: 4 / 4.3;
    }

    .related-phone .phone-number {
        padding: 7px 8px;
        font-size: 10.5px;
    }
}

/* ============================================================
   TABLET / SMALL LAPTOP — 900px
   ============================================================ */

@media (max-width: 900px) {
    .related-section {
        margin-top: 42px;
    }

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

    .related-card-image {
        aspect-ratio: 4 / 4.25;
    }

    .related-card-info {
        padding: 13px;
    }

    .related-phone {
        margin-top: 9px;
    }

    .related-phone .phone-number {
        padding: 7px 6px;
        font-size: 10px;
    }

    .related-phone-actions {
        gap: 4px;
    }

    .related-phone-btn {
        font-size: 10px;
        padding-inline: 5px;
    }

    .vip-badge,
    .escort-vip-tag,
    .escort-premium-tag {
        top: 9px;
        right: 9px;
        width: fit-content;
        max-width: max-content;
        min-width: 0;
        padding: 4px 8px;
        font-size: 8.5px;
    }
}

/* ============================================================
   BIG PHONE / TABLET — 768px
   ============================================================ */

@media (max-width: 768px) {
    .related-section {
        width: 100%;
        margin-top: 36px;
    }

    .related-heading {
        align-items: center;
        margin-bottom: 18px;
    }

    .related-heading h2 {
        font-size: 21px;
    }

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

    .related-card {
        border-radius: var(--radius-lg);
    }

    .related-card-image {
        aspect-ratio: 4 / 4.15;
    }

    .related-card-info {
        padding: 12px;
    }

    .related-card-info h3 {
        font-size: 13px;
    }

    .related-age,
    .related-location span {
        font-size: 10.5px;
    }

    .related-phone {
        margin-top: 8px;
    }

    .related-phone .phone-number {
        min-height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 6px 7px;
        font-size: 10px;
    }

    .related-phone-actions {
        margin-top: 6px;
    }

    .related-phone-btn {
        min-height: 31px;
    }

    .related-profile-link {
        min-height: 34px;
    }

    .vip-badge,
    .escort-vip-tag,
    .escort-premium-tag {
        top: 8px;
        right: 8px;
        width: fit-content;
        max-width: max-content;
        min-width: 0;
        min-height: 23px;
        padding: 4px 8px;
        font-size: 8px;
    }
}

/* ============================================================
   MOBILE — 480px
   ============================================================ */

@media (max-width: 480px) {
    .related-section {
        width: 100%;
        margin-top: 30px;
    }

    .related-heading {
        gap: 12px;
        margin-bottom: 15px;
    }

    .related-heading .section-label {
        margin-bottom: 6px;
    }

    .related-heading h2 {
        font-size: 19px;
    }

    .section-more-link {
        min-height: 34px;
        padding: 7px 12px;
        font-size: 10.5px;
    }

    .related-grid {
        gap: 9px;
    }

    .related-card {
        border-radius: var(--radius-md);
        box-shadow:
            0 3px 11px rgba(15, 23, 42, 0.04);
    }

    .related-card:hover {
        transform: translateY(-3px);
        box-shadow:
            0 10px 23px rgba(15, 23, 42, 0.07);
    }

    .related-card-image {
        aspect-ratio: 4 / 4.05;
    }

    .related-card-info {
        padding: 10px;
    }

    .related-card-info h3 {
        font-size: 12px;
    }

    .related-age {
        margin-top: 2px;
        font-size: 10px;
    }

    .related-location {
        gap: 2px 5px;
        margin-top: 6px;
    }

    .related-location span {
        font-size: 9.5px;
    }

    .related-location span + span::before {
        margin-right: 5px;
    }

    .related-phone {
        margin-top: 7px;
    }

    .related-phone .phone-number {
        min-height: 29px;
        padding: 6px 5px;
        font-size: 9.5px;
    }

    .related-phone-actions {
        margin-top: 5px;
        gap: 4px;
    }

    .related-phone-btn {
        min-height: 29px;
        padding: 5px 4px;
        font-size: 9px;
    }

    .related-profile-link {
        min-height: 32px;
        margin-top: 7px;
        padding: 7px 8px;
        font-size: 10px;
    }

    .vip-badge,
    .escort-vip-tag,
    .escort-premium-tag {
        top: 7px;
        right: 7px;
        width: fit-content;
        max-width: max-content;
        min-width: 0;
        min-height: 21px;
        padding: 4px 7px;
        font-size: 7.5px;
    }
}

/* ============================================================
   SMALL PHONE — 380px
   ============================================================ */

@media (max-width: 380px) {
    .related-section {
        width: 100%;
        margin-top: 27px;
    }

    .related-heading {
        gap: 8px;
    }

    .related-heading h2 {
        font-size: 17px;
    }

    .section-more-link {
        min-height: 31px;
        padding: 6px 10px;
        font-size: 9.5px;
    }

    .related-grid {
        gap: 7px;
    }

    .related-card-image {
        aspect-ratio: 4 / 3.9;
    }

    .related-card-info {
        padding: 9px;
    }

    .related-card-info h3 {
        font-size: 11.5px;
    }

    .related-age {
        font-size: 9.5px;
    }

    .related-location {
        margin-top: 5px;
    }

    .related-location span {
        font-size: 9px;
    }

    .related-phone {
        margin-top: 6px;
    }

    .related-phone .phone-number {
        min-height: 27px;
        padding: 5px 4px;
        font-size: 8.5px;
    }

    .related-phone-actions {
        gap: 3px;
        margin-top: 4px;
    }

    .related-phone-btn {
        min-height: 27px;
        font-size: 8.5px;
    }

    .related-profile-link {
        min-height: 30px;
        font-size: 9.5px;
    }

    .vip-badge,
    .escort-vip-tag,
    .escort-premium-tag {
        top: 6px;
        right: 6px;
        width: fit-content;
        max-width: max-content;
        min-width: 0;
        min-height: 19px;
        padding: 3px 6px;
        font-size: 7px;
    }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
    .related-section,
    .related-card,
    .related-card-image img,
    .related-placeholder,
    .section-more-link,
    .related-phone .phone-number,
    .related-phone-btn,
    .related-profile-link {
        animation: none !important;
        transition: none !important;
    }

    .related-card:hover,
    .related-card:hover .related-card-image img,
    .related-card:hover .related-placeholder,
    .section-more-link:hover,
    .related-phone-btn:hover,
    .related-profile-link:hover {
        transform: none;
    }
}












/* ============================================================
   MOST POPULAR
   ESCORT WITHIN — PUBLIC PROFILE
   ============================================================ */

.popular-section {
    position: relative;

    margin-top: 58px;

    padding-top: 30px;
    padding-bottom: 4px;
}


/* ============================================================
   POPULAR SECTION DIVIDER
   ============================================================ */

.popular-section::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;
    right: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--color-border),
            transparent
        );

    opacity: 0.9;
}


/* ============================================================
   POPULAR LABEL
   ============================================================ */

.popular-section .section-label {
    position: relative;

    color: var(--color-primary-dark);
}

.popular-section .section-label::before {
    background: var(--color-primary);
}


/* ============================================================
   POPULAR CARDS
   ============================================================ */

.popular-section .related-card {
    position: relative;

    transition:
        transform var(--transition-slow),
        border-color var(--transition-normal),
        box-shadow var(--transition-slow);
}


/* Small premium indicator */
.popular-section .related-card::before {
    content: "";

    position: absolute;
    z-index: 5;

    top: 10px;
    left: 10px;

    width: 6px;
    height: 6px;

    background: var(--color-primary-light);

    border-radius: 50%;

    box-shadow:
        0 0 0 4px rgba(96, 165, 250, 0.15);

    opacity: 0;

    transform: scale(0.6);

    transition:
        opacity var(--transition-normal),
        transform var(--transition-normal);
}

.popular-section .related-card:hover::before {
    opacity: 1;
    transform: scale(1);
}


/* ============================================================
   POPULAR IMAGE
   ============================================================ */

.popular-section .related-card-image {
    aspect-ratio: 4 / 4.2;
}


/* ============================================================
   POPULAR IMAGE HOVER
   ============================================================ */

.popular-section .related-card-image img {
    transition:
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        filter var(--transition-normal);
}

.popular-section .related-card:hover .related-card-image img {
    transform: scale(1.05);
}


/* ============================================================
   POPULAR NAME
   ============================================================ */

.popular-section .related-card-info h3 {
    transition:
        color var(--transition-fast),
        transform var(--transition-normal);
}

.popular-section .related-card:hover .related-card-info h3 {
    color: var(--color-primary-dark);
    transform: translateX(2px);
}


/* ============================================================
   POPULAR VIEW PROFILE
   ============================================================ */

.popular-section .related-profile-link {
    background:
        linear-gradient(
            135deg,
            var(--color-primary),
            var(--color-primary-dark)
        );

    box-shadow:
        0 5px 13px rgba(37, 99, 235, 0.14);

    transition:
        background var(--transition-normal),
        box-shadow var(--transition-normal),
        transform var(--transition-fast);
}

.popular-section .related-profile-link:hover {
    background:
        linear-gradient(
            135deg,
            var(--color-primary-dark),
            var(--color-primary-darker)
        );

    box-shadow:
        0 8px 20px rgba(37, 99, 235, 0.23);

    transform: translateY(-2px);
}


/* ============================================================
   POPULAR PHONE ACTIONS
   ============================================================ */

.popular-section .related-phone-btn {
    transition:
        color var(--transition-fast),
        background var(--transition-fast),
        border-color var(--transition-fast),
        box-shadow var(--transition-normal),
        transform var(--transition-fast);
}

.popular-section .related-phone-btn:hover {
    color: var(--color-primary-dark);
    background: var(--color-primary-soft);
    border-color: rgba(37, 99, 235, 0.22);

    box-shadow:
        0 3px 9px rgba(37, 99, 235, 0.08);

    transform: translateY(-1px);
}


/* ============================================================
   POPULAR SECTION ENTRANCE
   ============================================================ */

.popular-section .related-card {
    animation-name: popularCardEnter;
}

@keyframes popularCardEnter {
    from {
        opacity: 0;
        transform: translateY(14px) scale(0.985);
    }

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


/* ============================================================
   LAPTOP — 1200px
   ============================================================ */

@media (max-width: 1200px) {

    .popular-section {
        margin-top: 52px;
        padding-top: 28px;
    }

    .popular-section .related-card-image {
        aspect-ratio: 4 / 4.1;
    }
}


/* ============================================================
   TABLET / SMALL LAPTOP — 900px
   ============================================================ */

@media (max-width: 900px) {

    .popular-section {
        margin-top: 46px;
        padding-top: 26px;
    }

    .popular-section .related-card-image {
        aspect-ratio: 4 / 4;
    }

    .popular-section .related-card::before {
        top: 8px;
        left: 8px;
    }
}


/* ============================================================
   BIG PHONE / TABLET — 768px
   ============================================================ */

@media (max-width: 768px) {

    .popular-section {
        margin-top: 40px;
        padding-top: 23px;
    }

    .popular-section .related-card-image {
        aspect-ratio: 4 / 3.95;
    }
}


/* ============================================================
   MOBILE — 480px
   ============================================================ */

@media (max-width: 480px) {

    .popular-section {
        margin-top: 34px;
        padding-top: 20px;
    }

    .popular-section .related-card-image {
        aspect-ratio: 4 / 3.9;
    }

    .popular-section .related-card::before {
        top: 7px;
        left: 7px;

        width: 5px;
        height: 5px;

        box-shadow:
            0 0 0 3px rgba(96, 165, 250, 0.14);
    }
}


/* ============================================================
   SMALL PHONE — 380px
   ============================================================ */

@media (max-width: 380px) {

    .popular-section {
        margin-top: 30px;
        padding-top: 18px;
    }

    .popular-section .related-card-image {
        aspect-ratio: 4 / 3.8;
    }
}


/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

    .popular-section .related-card,
    .popular-section .related-card-image img,
    .popular-section .related-card-info h3,
    .popular-section .related-phone-btn,
    .popular-section .related-profile-link,
    .popular-section .related-card::before {
        animation: none !important;
        transition: none !important;
    }

    .popular-section .related-card:hover,
    .popular-section .related-card:hover .related-card-image img,
    .popular-section .related-card:hover .related-card-info h3,
    .popular-section .related-phone-btn:hover,
    .popular-section .related-profile-link:hover {
        transform: none;
    }
}



/* ============================================================
   MOST POPULAR
   SUBSCRIPTION BADGES
   ============================================================ */

.popular-section .related-card-image-wrapper {
    position: relative;
}


/* ============================================================
   VIP BADGE
   ============================================================ */

.popular-section .escort-vip-tag {

    position: absolute;

    top: 12px;
    left: 12px;

    z-index: 10;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 28px;

    padding: 5px 11px;

    border-radius: var(--radius-pill);

    background:
        linear-gradient(
            135deg,
            var(--color-vip),
            var(--color-vip-dark)
        );

    color: #ffffff;

    font-size: 0.68rem;

    font-weight: var(--font-weight-extrabold);

    line-height: 1;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    border: 1px solid var(--color-vip-border);

    box-shadow:
        0 5px 14px var(--color-vip-shadow),
        0 2px 5px rgba(0, 0, 0, 0.14);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    pointer-events: none;

    animation:
        popularBadgeIn
        0.45s
        ease
        both;
}


/* ============================================================
   PREMIUM BADGE
   ============================================================ */

.popular-section .escort-premium-tag {

    position: absolute;

    top: 12px;
    left: 12px;

    z-index: 10;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 28px;

    padding: 5px 11px;

    border-radius: var(--radius-pill);

    background:
        linear-gradient(
            135deg,
            var(--color-premium),
            var(--color-premium-dark)
        );

    color: #ffffff;

    font-size: 0.68rem;

    font-weight: var(--font-weight-extrabold);

    line-height: 1;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    border: 1px solid var(--color-premium-border);

    box-shadow:
        0 5px 14px var(--color-premium-shadow),
        0 2px 5px rgba(0, 0, 0, 0.14);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    pointer-events: none;

    animation:
        popularBadgeIn
        0.45s
        ease
        both;
}


/* ============================================================
   BADGE ENTRANCE
   ============================================================ */

@keyframes popularBadgeIn {

    from {
        opacity: 0;
        transform:
            translateY(-6px)
            scale(0.9);
    }

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

}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 768px) {

    .popular-section .escort-vip-tag,
    .popular-section .escort-premium-tag {

        top: 9px;
        left: 9px;

        min-height: 26px;

        padding: 4px 9px;

        font-size: 0.63rem;
    }

}


/* ============================================================
   SMALL PHONE
   ============================================================ */

@media (max-width: 480px) {

    .popular-section .escort-vip-tag,
    .popular-section .escort-premium-tag {

        top: 8px;
        left: 8px;

        min-height: 24px;

        padding: 4px 8px;

        font-size: 0.59rem;
    }

}


/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

    .popular-section .escort-vip-tag,
    .popular-section .escort-premium-tag {

        animation: none;
    }

}
















/* ============================================================
   VIP ESCORTS
   ESCORT WITHIN — PUBLIC PROFILE
   ============================================================ */

.vip-section{
    position:relative;
    margin-top:58px;
    padding:30px 0 4px;
    animation:vipSectionEnter 0.65s var(--transition-slow) both;
}

/* ============================================================
   VIP SECTION DIVIDER
   ============================================================ */

.vip-section::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:1px;
    background:
        linear-gradient(
            90deg,
            transparent,
            var(--color-vip-border),
            transparent
        );
}

/* ============================================================
   VIP HEADING
   ============================================================ */

.vip-section .section-label{
    color:var(--color-vip-dark);
}

.vip-section .section-label::before{
    background:var(--color-vip);
}

/* ============================================================
   VIP GRID
   ============================================================ */

.vip-grid{
    position:relative;
}

/* ============================================================
   VIP CARD
   ============================================================ */

.vip-card{
    position:relative;
    border-color:var(--color-vip-border);
    background:
        linear-gradient(
            180deg,
            var(--color-surface),
            rgba(248,250,252,0.96)
        );
    box-shadow:
        0 5px 16px rgba(15,23,42,0.045),
        0 1px 3px rgba(5,150,105,0.025);
    overflow:hidden;
}

.vip-card:hover{
    border-color:var(--color-vip);
    box-shadow:
        0 18px 38px rgba(15,23,42,0.095),
        0 5px 15px var(--color-vip-shadow);
    transform:translateY(-6px);
}

/* ============================================================
   VIP IMAGE
   ============================================================ */

.vip-card .related-card-image{
    position:relative;
    aspect-ratio:4 / 4.2;
    background:
        linear-gradient(
            135deg,
            var(--color-vip-soft),
            var(--color-surface-soft)
        );
}

/* ============================================================
   VIP IMAGE OVERLAY
   ============================================================ */

.vip-card .related-card-image::before{
    content:"";
    position:absolute;
    z-index:2;
    inset:0;
    background:
        linear-gradient(
            180deg,
            rgba(5,150,105,0.04) 0%,
            transparent 35%,
            rgba(15,23,42,0.12) 100%
        );
    opacity:0;
    pointer-events:none;
    transition:opacity var(--transition-normal);
}

.vip-card:hover .related-card-image::before{
    opacity:1;
}

.vip-card .related-card-image img{
    transition:
        transform 0.65s cubic-bezier(0.22,1,0.36,1),
        filter var(--transition-normal);
}

.vip-card:hover .related-card-image img{
    transform:scale(1.055);
}

/* ============================================================
   VIP BADGE
   ============================================================ */

.vip-badge{
    position:absolute;
    z-index:5;
    top:11px;
    left:11px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:42px;
    min-height:23px;
    padding:4px 9px;
    color:var(--color-surface);
    background:
        linear-gradient(
            135deg,
            var(--color-vip),
            var(--color-vip-dark)
        );
    border:1px solid var(--color-vip-border);
    border-radius:var(--radius-pill);
    box-shadow:0 5px 13px var(--color-vip-shadow);
    font-size:9px;
    font-weight:var(--font-weight-extrabold);
    letter-spacing:0.08em;
    line-height:1;
    text-transform:uppercase;
    transform:translateY(0);
    transition:
        transform var(--transition-normal),
        box-shadow var(--transition-normal),
        background var(--transition-normal);
}

.vip-card:hover .vip-badge{
    background:
        linear-gradient(
            135deg,
            var(--color-vip-dark),
            var(--color-vip)
        );
    box-shadow:0 7px 17px var(--color-vip-shadow);
    transform:translateY(-2px);
}

/* ============================================================
   VIP BADGE GLOW
   ============================================================ */

.vip-badge::before{
    content:"";
    width:5px;
    height:5px;
    margin-right:5px;
    background:var(--color-vip-light);
    border-radius:50%;
    box-shadow:0 0 0 3px var(--color-vip-border);
    animation:vipPulse 2.4s ease-in-out infinite;
}

/* ============================================================
   VIP PLACEHOLDER
   ============================================================ */

.vip-card .related-placeholder{
    background:
        radial-gradient(
            circle at 25% 20%,
            rgba(52,211,153,0.28),
            transparent 36%
        ),
        linear-gradient(
            135deg,
            var(--color-vip-soft),
            var(--color-surface-soft)
        );
    color:var(--color-vip-dark);
}

/* ============================================================
   VIP CARD INFO
   ============================================================ */

.vip-card .related-card-info{
    padding-top:15px;
}

/* ============================================================
   VIP NAME
   ============================================================ */

.vip-card .related-card-info h3{
    transition:
        color var(--transition-fast),
        transform var(--transition-normal);
}

.vip-card:hover .related-card-info h3{
    color:var(--color-vip-dark);
    transform:translateX(2px);
}

/* ============================================================
   VIP LOCATION
   ============================================================ */

.vip-card .related-location{
    margin-top:8px;
}

/* ============================================================
   VIP PROFILE BUTTON
   ============================================================ */

.vip-card .related-profile-link{
    margin-top:12px;
    background:
        linear-gradient(
            135deg,
            var(--color-vip),
            var(--color-vip-dark)
        );
    border-color:var(--color-vip);
    box-shadow:0 5px 14px var(--color-vip-shadow);
}

.vip-card .related-profile-link:hover{
    background:
        linear-gradient(
            135deg,
            var(--color-vip-dark),
            var(--color-vip)
        );
    border-color:var(--color-vip-dark);
    box-shadow:0 9px 21px var(--color-vip-shadow);
    transform:translateY(-2px);
}

/* ============================================================
   VIP CARD FOCUS
   ============================================================ */

.vip-card .related-card-image:focus-visible{
    outline:none;
    box-shadow:
        inset 0 0 0 var(--focus-width) var(--color-vip),
        inset 0 0 0 5px rgba(255,255,255,0.65);
}

/* ============================================================
   VIP ANIMATIONS
   ============================================================ */

@keyframes vipSectionEnter{
    from{
        opacity:0;
        transform:translateY(var(--animation-distance));
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes vipPulse{
    0%,100%{
        opacity:0.65;
        transform:scale(0.9);
    }

    50%{
        opacity:1;
        transform:scale(1.15);
    }
}

/* ============================================================
   LAPTOP — 1200px
   ============================================================ */

@media (max-width:1200px){
    .vip-section{
        margin-top:52px;
        padding-top:28px;
    }

    .vip-card .related-card-image{
        aspect-ratio:4 / 4.1;
    }

    .vip-badge{
        top:10px;
        left:10px;
    }
}

/* ============================================================
   TABLET / SMALL LAPTOP — 900px
   ============================================================ */

@media (max-width:900px){
    .vip-section{
        margin-top:46px;
        padding-top:26px;
    }

    .vip-card .related-card-image{
        aspect-ratio:4 / 4;
    }

    .vip-badge{
        min-width:40px;
        min-height:22px;
        padding:4px 8px;
        font-size:8.5px;
    }
}

/* ============================================================
   BIG PHONE / TABLET — 768px
   ============================================================ */

@media (max-width:768px){
    .vip-section{
        margin-top:40px;
        padding-top:23px;
    }

    .vip-card{
        border-radius:var(--radius-lg);
    }

    .vip-card .related-card-image{
        aspect-ratio:4 / 3.95;
    }

    .vip-badge{
        top:8px;
        left:8px;
        min-width:38px;
        min-height:21px;
        padding:4px 7px;
        font-size:8px;
    }
}

/* ============================================================
   MOBILE — 480px
   ============================================================ */

@media (max-width:480px){
    .vip-section{
        margin-top:34px;
        padding-top:20px;
    }

    .vip-card{
        border-radius:var(--radius-md);
        box-shadow:
            0 3px 12px rgba(15,23,42,0.045);
    }

    .vip-card:hover{
        transform:translateY(-3px);
        box-shadow:
            0 11px 25px rgba(15,23,42,0.075);
    }

    .vip-card .related-card-image{
        aspect-ratio:4 / 3.9;
    }

    .vip-card .related-card-info{
        padding-top:10px;
    }

    .vip-badge{
        top:7px;
        left:7px;
        min-width:34px;
        min-height:19px;
        padding:3px 6px;
        font-size:7.5px;
    }

    .vip-badge::before{
        width:4px;
        height:4px;
        margin-right:4px;
        box-shadow:
            0 0 0 2px var(--color-vip-border);
    }

    .vip-card .related-profile-link{
        margin-top:9px;
    }
}

/* ============================================================
   SMALL PHONE — 380px
   ============================================================ */

@media (max-width:380px){
    .vip-section{
        margin-top:30px;
        padding-top:18px;
    }

    .vip-card .related-card-image{
        aspect-ratio:4 / 3.8;
    }

    .vip-badge{
        top:6px;
        left:6px;
        min-width:31px;
        min-height:18px;
        padding:3px 5px;
        font-size:7px;
    }

    .vip-card .related-profile-link{
        margin-top:8px;
    }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion:reduce){
    .vip-section,
    .vip-card,
    .vip-card .related-card-image img,
    .vip-card .related-card-info h3,
    .vip-card .related-profile-link,
    .vip-badge,
    .vip-badge::before{
        animation:none!important;
        transition:none!important;
    }

    .vip-card:hover,
    .vip-card:hover .related-card-image img,
    .vip-card:hover .related-card-info h3,
    .vip-card:hover .related-profile-link,
    .vip-card:hover .vip-badge{
        transform:none;
    }
}













/* ============================================================
   FINAL NAVIGATION
   ESCORT WITHIN — PUBLIC PROFILE
   ============================================================ */
.profile-footer-links {
    width: 100%;
    margin: 48px auto 0;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 7px 8px;
    background:
        linear-gradient(
            180deg,
            var(--color-surface),
            var(--color-surface-soft)
        );
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-xl);
    box-shadow:
        0 5px 18px rgba(15, 23, 42, 0.035);
    animation: footerNavigationEnter 0.6s var(--transition-slow) both;
}

/* ============================================================
   NAVIGATION LINK
   ============================================================ */

.footer-navigation-link {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 34px;
    padding: 7px 12px;

    color: var(--color-text-secondary);
    background: transparent;

    border: 1px solid transparent;
    border-radius: var(--radius-pill);

    font-size: 11px;
    font-weight: var(--font-weight-semibold);
    line-height: 1.2;

    text-align: center;
    text-decoration: none;
    white-space: nowrap;

    transition:
        color var(--transition-fast),
        background var(--transition-fast),
        border-color var(--transition-fast),
        box-shadow var(--transition-normal),
        transform var(--transition-fast);
}


/* ============================================================
   SEPARATOR DOT
   ============================================================ */

.footer-navigation-link:not(:last-child)::after {
    content: "";

    position: absolute;

    right: -5px;

    width: 3px;
    height: 3px;

    background: var(--color-border-dark);

    border-radius: 50%;

    pointer-events: none;

    transition:
        background var(--transition-fast),
        transform var(--transition-fast);
}


/* ============================================================
   HOVER
   ============================================================ */

.footer-navigation-link:hover {
    color: var(--color-primary-dark);

    background: var(--color-primary-soft);

    border-color: rgba(37, 99, 235, 0.12);

    box-shadow:
        0 4px 10px rgba(37, 99, 235, 0.07);

    transform: translateY(-1px);
}

.footer-navigation-link:hover::after {
    background: var(--color-primary-light);

    transform: scale(1.2);
}


/* ============================================================
   FIRST / MAIN LINK
   ============================================================ */

.footer-navigation-link:first-child {
    color: var(--color-primary-dark);
    font-weight: var(--font-weight-bold);
}

.footer-navigation-link:first-child:hover {
    color: #ffffff;
    background: var(--color-primary);

    border-color: var(--color-primary);

    box-shadow:
        0 6px 15px rgba(37, 99, 235, 0.20);
}


/* ============================================================
   FOCUS
   ============================================================ */

.footer-navigation-link:focus-visible {
    outline: none;

    color: var(--color-primary-dark);

    border-color: var(--color-primary);

    box-shadow:
        0 0 0 var(--focus-width) var(--focus-color);

    transform: translateY(-1px);
}


/* ============================================================
   ACTIVE PRESS
   ============================================================ */

.footer-navigation-link:active {
    transform: translateY(0);

    box-shadow: none;
}


/* ============================================================
   ENTRANCE ANIMATION
   ============================================================ */

@keyframes footerNavigationEnter {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ============================================================
   LAPTOP — 1200px
   ============================================================ */

@media (max-width: 1200px) {

    .profile-footer-links {
        width: 100%;

        margin-top: 44px;
        padding: 18px 20px;
    }

    .footer-navigation-link {
        min-height: 33px;
        padding: 7px 11px;
    }
}


/* ============================================================
   TABLET / SMALL LAPTOP — 900px
   ============================================================ */

@media (max-width: 900px) {

    .profile-footer-links {
        margin-top: 40px;
        padding: 17px 18px;

        gap: 6px 7px;
    }

    .footer-navigation-link {
        font-size: 10.5px;
    }
}


/* ============================================================
   BIG PHONE / TABLET — 768px
   ============================================================ */

@media (max-width: 768px) {

    .profile-footer-links {
        width: 100%;

        margin-top: 34px;
        padding: 16px 14px;

        border-radius: var(--radius-lg);

        gap: 6px;
    }

    .footer-navigation-link {
        min-height: 32px;
        padding: 6px 10px;

        font-size: 10px;
    }

    .footer-navigation-link:not(:last-child)::after {
        display: none;
    }
}


/* ============================================================
   MOBILE — 480px
   ============================================================ */

@media (max-width: 480px) {

    .profile-footer-links {
        width: 100%;

        margin-top: 28px;
        padding: 14px 11px;

        border-radius: var(--radius-md);

        gap: 5px;
    }

    .footer-navigation-link {
        min-height: 30px;
        padding: 6px 9px;

        font-size: 9.5px;
    }

    .footer-navigation-link:hover {
        transform: none;
    }
}


/* ============================================================
   SMALL PHONE — 380px
   ============================================================ */

@media (max-width: 380px) {

    .profile-footer-links {
        width: 100%;

        margin-top: 25px;
        padding: 12px 9px;

        gap: 4px;
    }

    .footer-navigation-link {
        min-height: 28px;
        padding: 5px 8px;

        font-size: 9px;
    }
}


/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

    .profile-footer-links,
    .footer-navigation-link {
        animation: none !important;
        transition: none !important;
    }

    .footer-navigation-link:hover,
    .footer-navigation-link:focus-visible {
        transform: none;
    }
}

















/* GALLERY FULL SCREEN MODAL */
/* ============================================================
   MEDIA EXPAND HINT
   ============================================================ */
/* ============================================================
   MEDIA EXPAND HINT
   ============================================================ */

.profile-media-stage {
    cursor: zoom-in;
}

.profile-media-stage-single {
    cursor: zoom-in;
}

.media-expand-hint {
    position: absolute;
    right: 12px;
    top: 12px;
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.52);
    color: #fff;
    font-family: var(--font-family-base);
    font-size: 18px;
    line-height: 1;
    pointer-events: none;
    opacity: 0.9;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.media-expand-hint span {
    display: block;
    transform: translateY(-1px);
}


/* ============================================================
   FULLSCREEN MEDIA LIGHTBOX
   ============================================================ */

.media-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2147483000;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100vw;
    height: 100vh;
    height: 100dvh;

    min-width: 100vw;
    min-height: 100vh;
    min-height: 100dvh;

    max-width: none;
    max-height: none;

    margin: 0;
    padding: 20px;

    box-sizing: border-box;
    overflow: hidden;

    background: rgba(0, 0, 0, 0.94);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    isolation: isolate;
    overscroll-behavior: contain;

    transition:
        opacity var(--transition-normal),
        visibility var(--transition-normal);
}

.media-lightbox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* ============================================================
   LIGHTBOX BACKDROP
   ============================================================ */

.media-lightbox-backdrop {
    position: absolute;
    inset: 0;
    z-index: 1;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.94);
}


/* ============================================================
   LIGHTBOX DIALOG
   ============================================================ */

.media-lightbox-dialog {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;

    width: min(96vw, 1400px);
    height: min(94vh, 1000px);

    min-width: 0;
    min-height: 0;
    margin: 0;
}


/* ============================================================
   LIGHTBOX HEADER
   ============================================================ */

.media-lightbox-header {
    position: relative;
    z-index: 3;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 16px;

    flex: 0 0 auto;

    width: 100%;
    min-height: 54px;

    padding: 0 4px 12px;

    box-sizing: border-box;
}

.media-lightbox-title {
    overflow: hidden;

    color: rgba(255, 255, 255, 0.9);

    font-family: var(--font-family-base);
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-semibold);
    line-height: 1.2;

    text-overflow: ellipsis;
    white-space: nowrap;
}

.media-lightbox-close {
    position: relative;
    z-index: 4;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    width: 42px;
    height: 42px;

    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);

    color: #fff;

    font-family: var(--font-family-base);
    font-size: 29px;
    font-weight: 300;
    line-height: 1;

    cursor: pointer;

    transition:
        background var(--transition-fast),
        transform var(--transition-fast);
}

.media-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: scale(1.04);
}

.media-lightbox-close:active {
    transform: scale(0.96);
}

.media-lightbox-close:focus-visible {
    outline: var(--focus-width) solid rgba(255, 255, 255, 0.55);
    outline-offset: var(--focus-offset);
}


/* ============================================================
   LIGHTBOX STAGE
   ============================================================ */

.media-lightbox-stage {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 1 1 auto;

    width: 100%;

    min-width: 0;
    min-height: 0;

    overflow: hidden;

    border-radius: var(--radius-lg);

    box-sizing: border-box;
}

.media-lightbox-content {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;

    min-width: 0;
    min-height: 0;
}

.media-lightbox-content img {
    display: block;

    max-width: calc(100% - 120px);
    max-height: calc(100% - 40px);

    width: auto;
    height: auto;

    object-fit: contain;

    border-radius: var(--radius-sm);

    user-select: none;
    -webkit-user-drag: none;

    cursor: default;
}

.media-lightbox-content video {
    display: block;

    max-width: calc(100% - 120px);
    max-height: calc(100% - 40px);

    width: auto;
    height: auto;

    object-fit: contain;

    border-radius: var(--radius-sm);

    background: #000;

    cursor: default;
}


/* ============================================================
   LIGHTBOX NAVIGATION
   ============================================================ */

.media-lightbox-nav {
    position: absolute;
    top: 50%;
    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.52);

    color: #fff;

    font-family: var(--font-family-base);
    font-size: 40px;
    font-weight: 300;
    line-height: 1;

    cursor: pointer;

    transform: translateY(-50%);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    transition:
        background var(--transition-fast),
        transform var(--transition-fast);
}

.media-lightbox-nav:hover {
    background: rgba(0, 0, 0, 0.72);
}

.media-lightbox-nav:active {
    transform: translateY(-50%) scale(0.94);
}

.media-lightbox-nav:focus-visible {
    outline: var(--focus-width) solid rgba(255, 255, 255, 0.55);
    outline-offset: var(--focus-offset);
}

.media-lightbox-nav span {
    display: block;
    margin-top: -4px;
}

.media-lightbox-prev {
    left: 18px;
}

.media-lightbox-next {
    right: 18px;
}


/* ============================================================
   MEDIA POSITION
   ============================================================ */

.media-lightbox-position {
    position: absolute;
    left: 50%;
    bottom: 14px;
    z-index: 5;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 6px;

    min-height: 30px;

    padding: 0 12px;

    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-pill);

    background: rgba(0, 0, 0, 0.64);

    color: #fff;

    font-family: var(--font-family-base);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    line-height: 1;

    transform: translateX(-50%);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}


/* ============================================================
   PREVENT PAGE SCROLL WHEN LIGHTBOX IS OPEN
   ============================================================ */

body.media-lightbox-open {
    overflow: hidden;
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 760px) {

    .media-lightbox {
        padding: 10px;
    }

    .media-lightbox-dialog {
        width: 100%;
        height: 100%;
    }

    .media-lightbox-header {
        min-height: 48px;
        padding-bottom: 8px;
    }

    .media-lightbox-stage {
        border-radius: var(--radius-sm);
    }

    .media-lightbox-content img,
    .media-lightbox-content video {
        max-width: calc(100% - 80px);
        max-height: calc(100% - 30px);
        border-radius: var(--radius-xs);
    }

    .media-lightbox-nav {
        width: 44px;
        height: 44px;
        font-size: 34px;
    }

    .media-lightbox-prev {
        left: 8px;
    }

    .media-lightbox-next {
        right: 8px;
    }

    .media-lightbox-position {
        bottom: 8px;
        min-height: 27px;
        padding: 0 10px;
        font-size: 10px;
    }
}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 600px) {

    .media-expand-hint {
        right: 9px;
        top: 9px;

        width: 31px;
        height: 31px;

        font-size: 16px;
    }

    .media-lightbox {
        padding: 0;
    }

    .media-lightbox-dialog {
        width: 100%;
        height: 100vh;
        height: 100dvh;
    }

    .media-lightbox-header {
        min-height: 52px;
        padding: 10px 12px;
    }

    .media-lightbox-close {
        width: 38px;
        height: 38px;
        font-size: 26px;
    }

    .media-lightbox-content img,
    .media-lightbox-content video {
        max-width: calc(100% - 70px);
        max-height: calc(100% - 30px);
        border-radius: 4px;
    }

    .media-lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 31px;
    }

    .media-lightbox-prev {
        left: 8px;
    }

    .media-lightbox-next {
        right: 8px;
    }
}


/* ============================================================
   SMALL MOBILE
   ============================================================ */

@media (max-width: 380px) {

    .media-lightbox-content img,
    .media-lightbox-content video {
        max-width: calc(100% - 60px);
    }

    .media-lightbox-nav {
        width: 36px;
        height: 36px;
        font-size: 28px;
    }
}


/* ============================================================
   CURSORS
   ============================================================ */

.profile-media-stage,
.profile-media-stage-single,
.profile-gallery-media {
    cursor: pointer;
}

.media-lightbox {
    cursor: default;
}

.media-lightbox-content img,
.media-lightbox-content video {
    cursor: default;
}

.media-lightbox-nav,
.media-lightbox-close {
    cursor: pointer;
}