/* ============================================================
   ESCORT PROFILE — light & airy layout
   ============================================================ */
.escort-page {
    background: #fdf6f4;
    padding-top: 28px;
    padding-bottom: 12px;
}

/* ---------- INTRO (hero) ---------- */
.escort-intro {
    max-width: 1200px;
    margin: 0 auto 48px;
    padding: 0 32px;
}
.escort-intro__inner {
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) 1fr;
    gap: 40px;
    align-items: start;
}

.escort-intro__media {
    position: relative;
    max-width: 440px;
}
.escort-intro__photo {
    width: 100%;
    aspect-ratio: 4 / 5;
    max-height: 480px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
    box-shadow: 0 22px 56px rgba(58, 24, 32, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.6);
    cursor: zoom-in;
}
.escort-intro__photo-badge {
    position: absolute;
    top: 18px; left: 18px;
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255, 255, 255, 0.96);
    color: #2a1118;
    padding: 8px 16px;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(6px);
}
.escort-intro__photo-badge::before {
    content: '';
    width: 8px; height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
    animation: introPulse 1.8s ease-in-out infinite;
}
@keyframes introPulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18); }
    50% { box-shadow: 0 0 0 7px rgba(34, 197, 94, 0.08); }
}
.escort-intro__photo-tag {
    position: absolute;
    bottom: 22px; right: 22px;
    background: #fff;
    color: #c54343;
    padding: 8px 16px;
    border-radius: 12px;
    font-family: 'Caveat', cursive;
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0 10px 28px rgba(58, 24, 32, 0.18);
}

.escort-intro__thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 14px;
}
.escort-intro__thumb {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: 0 10px 24px rgba(58, 24, 32, 0.08);
    transition: transform 0.25s, box-shadow 0.25s;
}
.escort-intro__thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}
.escort-intro__thumb:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(58, 24, 32, 0.16); }
.escort-intro__thumb:hover img { transform: scale(1.06); }

.escort-intro__info {
    padding-top: 8px;
}
.escort-crumb {
    display: flex; align-items: center; gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8a6f72;
    margin-bottom: 18px;
}
.escort-crumb a { color: #8a6f72; text-decoration: none; transition: color 0.2s; }
.escort-crumb a:hover { color: #c54343; }
.escort-crumb .sep { color: #d6c0c4; }
.escort-crumb .current { color: #2a1118; font-weight: 600; }

.escort-intro__pre {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: 'Caveat', cursive;
    color: #f97392;
    font-size: 26px;
    margin-bottom: 4px;
}
.escort-intro__pre::before {
    content: ''; width: 32px; height: 2px; background: #f97392;
}

.escort-intro__name {
    margin: 0 0 10px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(44px, 5.4vw, 72px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #2a1118;
    text-transform: none !important;
}

.escort-intro__cat {
    display: inline-flex; align-items: center; gap: 6px;
    background: linear-gradient(135deg, #f97392, #ec6f64);
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
    box-shadow: 0 6px 16px rgba(249, 115, 146, 0.25);
}

.escort-intro__rating {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 22px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #6f5d60;
}
.escort-intro__rating .stars { display: inline-flex; gap: 2px; color: #ffc756; }
.escort-intro__rating .stars svg { width: 16px; height: 16px; }
.escort-intro__rating .score { font-weight: 700; color: #2a1118; }

.escort-intro__chips {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-bottom: 24px;
}
.escort-intro__chip {
    display: inline-flex; align-items: center; gap: 7px;
    background: #fff;
    border: 1px solid #f3dde0;
    color: #2a1118;
    padding: 9px 14px;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
}
.escort-intro__chip svg { width: 14px; height: 14px; color: #c54343; }
.escort-intro__chip strong { color: #c54343; font-weight: 700; margin-right: 1px; }

.escort-intro__rate-card {
    background: #fff;
    border: 1px solid #f3dde0;
    border-radius: 20px;
    padding: 22px 26px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: center;
    margin-bottom: 18px;
    box-shadow: 0 8px 24px rgba(58, 24, 32, 0.06);
}
.escort-intro__rate-label {
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    color: #8a6f72;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
    display: block;
}
.escort-intro__rate-value {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: #c54343;
    line-height: 1;
    letter-spacing: -0.02em;
}
.escort-intro__rate-value small {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #8a6f72;
    margin-left: 6px;
}
.escort-intro__rate-note {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #8a6f72;
    text-align: right;
}
.escort-intro__rate-note svg {
    width: 14px; height: 14px;
    color: #22c55e;
    vertical-align: middle;
    margin-right: 4px;
}

.escort-intro__cta {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}
.ep-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 18px;
    border-radius: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    border: none;
    cursor: pointer;
    line-height: 1;
}
.ep-btn svg { width: 16px; height: 16px; }
.ep-btn--primary {
    background: linear-gradient(135deg, #ec6f64, #d94a42);
    color: #fff;
    box-shadow: 0 10px 24px rgba(236, 111, 100, 0.3);
}
.ep-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(236, 111, 100, 0.4); }
.ep-btn--whatsapp {
    background: #25d366;
    color: #fff;
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.25);
}
.ep-btn--whatsapp:hover { background: #1ebe57; transform: translateY(-2px); }
.ep-btn--call {
    background: #fff;
    color: #2a1118;
    border: 1.5px solid #f3dde0;
}
.ep-btn--call:hover { border-color: #f97392; color: #c54343; transform: translateY(-2px); }
.ep-btn--block { width: 100%; }

/* ---------- BODY (2-column main + sidebar) ---------- */
.escort-body {
    max-width: 1200px;
    margin: 0 auto 48px;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 36px;
    align-items: start;
}
.escort-body__main { min-width: 0; }
.escort-body__aside { position: sticky; top: 96px; display: grid; gap: 18px; }

/* ---------- CARD ---------- */
.ep-card {
    background: #fff;
    border-radius: 22px;
    padding: 30px 34px;
    border: 1px solid #f3e2e5;
    box-shadow: 0 6px 20px rgba(58, 24, 32, 0.05);
    margin-bottom: 22px;
}
.ep-card__title {
    margin: 0 0 18px !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #2a1118 !important;
    letter-spacing: -0.015em !important;
    text-transform: none !important;
    display: flex; align-items: center; gap: 12px;
}
.ep-card__title::before {
    content: '';
    width: 4px; height: 22px;
    background: linear-gradient(135deg, #f97392, #ec6f64);
    border-radius: 4px;
}
.ep-card p {
    font-family: 'Inter', sans-serif;
    font-size: 15.5px;
    line-height: 1.75;
    color: #4a3a3d;
    margin: 0 0 14px;
}
.ep-card p:last-child { margin-bottom: 0; }
.ep-card a {
    color: #c54343;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1.5px;
}
.ep-card a:hover { color: #d94a42; }

/* SPEC GRID */
.ep-spec {
    margin: 0; padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.ep-spec > div {
    padding: 14px 16px;
    background: #fdf6f7;
    border-radius: 14px;
    border: 1px solid #f6eaec;
}
.ep-spec dt {
    font-family: 'Inter', sans-serif;
    font-size: 11.5px;
    color: #8a6f72;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}
.ep-spec dd {
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #2a1118;
}

/* TAG CLOUD */
.ep-tags {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-wrap: wrap; gap: 8px;
}
.ep-tags li {
    padding: 8px 16px;
    background: #fef0f1;
    color: #c54343;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    border: 1px solid rgba(197, 67, 67, 0.12);
    transition: all 0.2s;
}
.ep-tags li:hover {
    background: #c54343;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(197, 67, 67, 0.25);
}
.ep-disclaimer {
    margin-top: 16px !important;
    padding: 12px 16px;
    background: #fffaeb;
    border-left: 3px solid #f4b942;
    border-radius: 6px;
    font-size: 13px !important;
    color: #826300 !important;
    font-style: italic;
}

/* ---------- SIDEBAR CARDS ---------- */
.ep-booking {
    background: linear-gradient(170deg, #fff 0%, #fff7f3 100%);
    border: 1px solid #f3d8dd;
    border-radius: 22px;
    padding: 26px;
    box-shadow: 0 14px 36px rgba(58, 24, 32, 0.08);
}
.ep-booking__head {
    text-align: center;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px dashed #f3d8dd;
}
.ep-booking__pre {
    display: block;
    font-family: 'Caveat', cursive;
    color: #f97392;
    font-size: 22px;
    line-height: 1;
}
.ep-booking__title {
    margin: 4px 0 0 !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #2a1118 !important;
    text-transform: none !important;
    letter-spacing: -0.01em !important;
}

.ep-rates {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 18px;
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
}
.ep-rates th {
    text-align: left;
    padding: 8px 0;
    font-size: 11px;
    font-weight: 600;
    color: #8a6f72;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 1px solid #f3e2e5;
}
.ep-rates th:nth-child(2), .ep-rates th:nth-child(3) { text-align: right; }
.ep-rates td {
    padding: 11px 0;
    color: #2a1118;
    border-bottom: 1px dashed #f6eaec;
    font-weight: 500;
}
.ep-rates tbody tr:last-child td { border-bottom: none; }
.ep-rates td:first-child { color: #6f5d60; }
.ep-rates td:nth-child(2), .ep-rates td:nth-child(3) {
    text-align: right;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: #c54343;
}

.ep-booking__cta { display: grid; gap: 10px; }
.ep-booking__note {
    margin-top: 16px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #8a6f72;
}
.ep-booking__note svg {
    width: 13px; height: 13px;
    color: #22c55e;
    vertical-align: middle;
    margin-right: 4px;
}

.ep-info {
    background: #fff;
    border: 1px solid #f3e2e5;
    border-radius: 18px;
    padding: 22px 24px;
}
.ep-info__title {
    margin: 0 0 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #2a1118;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.ep-info ul { list-style: none; margin: 0; padding: 0; }
.ep-info li {
    display: flex; justify-content: space-between; gap: 12px;
    padding: 10px 0;
    border-bottom: 1px dashed #f3e2e5;
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
}
.ep-info li:last-child { border-bottom: none; }
.ep-info li span { color: #8a6f72; flex-shrink: 0; }
.ep-info li strong { color: #2a1118; font-weight: 600; text-align: right; }

.ep-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    text-align: center;
}
.ep-trust > div {
    padding: 14px 6px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #f3e2e5;
    font-family: 'Inter', sans-serif;
    font-size: 11.5px;
    font-weight: 600;
    color: #4a3a3d;
}
.ep-trust svg {
    width: 22px; height: 22px;
    color: #c54343;
    margin-bottom: 6px;
    display: block;
    margin-inline: auto;
}

/* ---------- REVIEWS ---------- */
.escort-reviews-light {
    max-width: 1200px;
    margin: 0 auto 56px;
    padding: 0 32px;
}
.ep-reviews-head {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 28px;
    align-items: center;
    background: #fff;
    border: 1px solid #f3e2e5;
    border-radius: 22px;
    padding: 26px 32px;
    margin-bottom: 22px;
    box-shadow: 0 6px 20px rgba(58, 24, 32, 0.05);
}
.ep-reviews-head__score {
    text-align: center;
    padding-right: 32px;
    border-right: 1px dashed #f3e2e5;
}
.ep-reviews-head__num {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    color: #c54343;
    line-height: 1;
    letter-spacing: -0.02em;
}
.ep-reviews-head__stars {
    display: inline-flex; gap: 3px;
    color: #ffc756;
    margin: 6px 0;
}
.ep-reviews-head__stars svg { width: 16px; height: 16px; }
.ep-reviews-head__count {
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    color: #8a6f72;
}
.ep-reviews-head__text {
    font-family: 'Inter', sans-serif;
}
.ep-reviews-head__text h2 {
    margin: 0 0 4px !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #2a1118 !important;
    letter-spacing: -0.02em !important;
    text-transform: none !important;
}
.ep-reviews-head__text p {
    margin: 0;
    font-size: 14px;
    color: #6f5d60;
}

.ep-reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.ep-review {
    background: #fff;
    border-radius: 18px;
    padding: 22px 24px;
    border: 1px solid #f3e2e5;
    box-shadow: 0 4px 14px rgba(58, 24, 32, 0.04);
}
.ep-review__head {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 12px;
}
.ep-review__avatar {
    width: 40px; height: 40px;
    border-radius: 12px;
    display: grid; place-items: center;
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
}
.ep-review__avatar--a { background: linear-gradient(135deg, #f97392, #c54343); }
.ep-review__avatar--b { background: linear-gradient(135deg, #ec6f64, #d94a42); }
.ep-review__avatar--c { background: linear-gradient(135deg, #c9a55e, #9d7001); }
.ep-review__avatar--d { background: linear-gradient(135deg, #5e8bc9, #2d5fa8); }
.ep-review__name {
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #2a1118;
    text-transform: capitalize;
}
.ep-review__date {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #8a6f72;
}
.ep-review__stars {
    display: inline-flex; gap: 2px;
    color: #ffc756;
    margin-left: auto;
}
.ep-review__stars svg { width: 13px; height: 13px; }
.ep-review__stars .off { color: #e5d3d6; }
.ep-review__body {
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    line-height: 1.6;
    color: #4a3a3d;
    margin: 0;
}

/* ---------- MOBILE STICKY CTA ---------- */
.ep-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-top: 1px solid #f3d8dd;
    padding: 10px 14px;
    z-index: 50;
    box-shadow: 0 -10px 28px rgba(58, 24, 32, 0.12);
}
.ep-mobile-cta__inner {
    display: grid;
    grid-template-columns: auto 1fr 1fr;
    gap: 8px;
    align-items: center;
}
.ep-mobile-cta__price {
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.1;
    padding-right: 8px;
}
.ep-mobile-cta__price small {
    display: block;
    font-size: 10.5px;
    font-weight: 500;
    color: #8a6f72;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1px;
}
.ep-mobile-cta__price strong {
    font-size: 17px;
    color: #c54343;
    font-weight: 800;
}
.ep-mobile-cta .ep-btn { padding: 12px 14px; font-size: 13px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .escort-page { padding-top: 22px; }
    .escort-intro { padding: 0 24px; }
    .escort-intro__inner { grid-template-columns: 1fr; gap: 28px; max-width: 600px; margin: 0 auto; }
    .escort-intro__media { max-width: 460px; margin: 0 auto; }
    .escort-body { grid-template-columns: 1fr; padding: 0 24px; gap: 22px; }
    .escort-body__aside { position: static; max-width: 600px; margin: 0 auto; width: 100%; }
    .ep-reviews-grid { grid-template-columns: 1fr; }
    .escort-reviews-light { padding: 0 24px; }
}
@media (max-width: 720px) {
    .escort-page { padding-top: 14px; }
    .escort-intro { padding: 0 14px; }
    .escort-intro__media { max-width: 100%; }
    .escort-intro__photo { border-radius: 20px; max-height: 420px; aspect-ratio: 4 / 4.4; }
    .escort-intro__thumbs { gap: 8px; margin-top: 10px; }
    .escort-intro__thumb { border-radius: 12px; }
    .escort-intro__name { font-size: 38px; }
    .escort-intro__cta { grid-template-columns: 1fr; }
    .escort-crumb { margin-bottom: 12px; font-size: 11.5px; }
    .escort-body { padding: 0 14px; }
    .ep-card { padding: 24px 20px; border-radius: 18px; }
    .ep-card__title { font-size: 19px !important; }
    .ep-spec { grid-template-columns: 1fr; }
    .ep-reviews-head {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 22px 20px;
        border-radius: 18px;
    }
    .ep-reviews-head__score {
        padding: 0 0 18px;
        border-right: none;
        border-bottom: 1px dashed #f3e2e5;
    }
    .ep-review { padding: 20px 22px; border-radius: 16px; }
    .escort-reviews-light { padding: 0 14px; }
    .ep-mobile-cta { display: block; }
    body.has-mobile-cta { padding-bottom: 88px; }
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 6, 8, 0.97);
    z-index: 2147483647;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    overflow: hidden;
    animation: lightboxFade 0.2s ease;
}
@keyframes lightboxFade {
    from { opacity: 0; }
    to { opacity: 1; }
}
body.lightbox-open { overflow: hidden; }
.lightbox__img {
    display: block !important;
    width: auto !important;
    height: auto !important;
    max-width: 92vw !important;
    max-height: 88vh !important;
    min-width: 0;
    min-height: 0;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    object-fit: contain;
    user-select: none;
    animation: lightboxZoom 0.25s ease;
}
@keyframes lightboxZoom {
    from { opacity: 0; transform: scale(0.96); }
    to { opacity: 1; transform: scale(1); }
}
.lightbox__btn {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, border-color 0.2s;
    backdrop-filter: blur(10px);
    padding: 0;
    outline: none;
}
.lightbox__btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.35);
    transform: scale(1.05);
}
.lightbox__btn:focus { outline: none; }
.lightbox__btn svg {
    width: 22px; height: 22px;
    stroke: currentColor;
    stroke-width: 2.4;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.lightbox__close { top: 24px; right: 24px; }
.lightbox__prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__prev:hover { transform: translateY(-50%) scale(1.05); }
.lightbox__next:hover { transform: translateY(-50%) scale(1.05); }
.lightbox__counter {
    position: absolute;
    bottom: 24px; left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 7px 18px;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}
@media (max-width: 720px) {
    .lightbox__img {
        max-width: 96vw !important;
        max-height: 80vh !important;
    }
    .lightbox__btn { width: 44px; height: 44px; }
    .lightbox__btn svg { width: 18px; height: 18px; }
    .lightbox__close { top: 14px; right: 14px; }
    .lightbox__prev { left: 10px; }
    .lightbox__next { right: 10px; }
    .lightbox__counter { bottom: 14px; font-size: 12px; }
}

/* Active thumbnail highlight */
.escort-intro__thumb.is-active {
    outline: 2px solid #ec6f64;
    outline-offset: 2px;
}
