body.theme-elegant {
    --pm-primary: #3b82f6;
    --pm-primary-dark: #2563eb;
    --pm-bg: #0f172a;
    --pm-surface: #1e293b;
    --pm-card: #1e293b;
    --pm-border: rgba(255, 255, 255, 0.08);
    --pm-muted: #94a3b8;
    --pm-text: #f8fafc;
    --pm-r: 3px;
    --pm-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
    --pm-blue: #3b82f6;
    --pm-indigo: #6366f1;
    --pm-glass: rgba(30, 41, 59, 0.7);
    --pm-glass-border: rgba(255, 255, 255, 0.08);

    /* Core Mapping */
    --color-bg-body: var(--pm-bg);
    --color-bg-card: var(--pm-card);
    --color-text-main: var(--pm-text);
    --color-border: var(--pm-border);
    --color-primary: var(--pm-primary);

    /* Booking Variable Overrides */
    --booking-bg: var(--pm-bg);
    --booking-card-bg: var(--pm-card);
    --booking-text-dark: var(--pm-text);
    --booking-text-muted: var(--pm-muted);
    --booking-border: var(--pm-border);
    --booking-primary: var(--pm-primary);
    --booking-primary-light: rgba(59, 130, 246, 0.1);
    --booking-radius: 3px;
    --booking-shadow: var(--pm-shadow);
}

body.theme-elegant h1,
body.theme-elegant h2,
body.theme-elegant h3,
body.theme-elegant h4,
body.theme-elegant h5,
body.theme-elegant h6 {
    color: #ffffff;
    font-family: var(--font-heading, inherit);
}

[contenteditable="true"]:focus {
    outline: none;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 2px;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

[contenteditable="true"]:hover {
    cursor: text;
    background: rgba(255, 255, 255, 0.03);
}

/* ── HERO SECTION ────────────────────────────── */
.pm-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

.pm-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.6);
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.pm-hero:hover .pm-hero-img {
    transform: scale(1.05);
}

.pm-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.8) 100%);
    z-index: 2;
}

.pm-hero-content {
    position: relative;
    z-index: 10;
    color: #fff;
    text-align: left;
    width: 100%;
}

/* ── BADGE & DOT ─────────────────────────────── */
.pm-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 16px;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.pm-live-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    ;
    position: relative;
}

.pm-live-dot::after {
    content: '';
    position: absolute;
    inset: -2px;
    ;
    background: #10b981;
    animation: live-pulse 2s infinite;
}

@keyframes live-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* ── HERO FLOAT ACTION BAR ─────────────────────── */
.pm-hero-float {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-top: 2px solid rgba(59, 130, 246, 0.4);
    padding: 20px 30px;
    border-radius: 3px;
    margin-top: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(59, 130, 246, 0.08);
    gap: 20px;
}

.pm-hero-float .pm-btn-icon {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.25);
    color: #93c5fd;
}

.pm-hero-float .pm-btn-icon:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
    color: #fff;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

.pm-hero-float .pm-btn-icon.is-favorite {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
    color: #f87171;
}

.pm-hero-float .pm-btn-icon.is-contact {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
    color: #60a5fa;
}

@media (max-width: 768px) {
    .pm-hero {
        height: auto;
        min-height: 100svh;
        padding: 100px 0 60px;
    }

    .pm-hero-float {
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
        margin-top: 30px;
        gap: 15px;
        border-radius: 3px;
    }
}

/* ── STATS STRIP ──────────────────────────────── */
.pm-stats {
    display: flex;
    gap: 0;
    background: var(--pm-card);
    border: 1px solid var(--pm-border);
    border-radius: var(--pm-r);
    overflow: hidden;
    margin-bottom: 48px;
}

.pm-stat {
    flex: 1;
    text-align: center;
    padding: 28px 16px;
    border-right: 1px solid var(--pm-border);
    transition: background 0.3s;
    min-width: 0;
}

@media (max-width: 575px) {
    .pm-stats {
        flex-wrap: wrap;
    }

    .pm-stat {
        flex: 0 0 50%;
        border-right: none;
        border-bottom: 1px solid var(--pm-border);
        padding: 20px 8px;
    }

    .pm-stat:nth-child(odd) {
        border-right: 1px solid var(--pm-border);
    }

    .pm-stat:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

.pm-stat:last-child {
    border-right: none;
}

.pm-stat:hover {
    background: rgba(59, 130, 246, 0.05);
}

.pm-stat-val {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--pm-blue);
    line-height: 1.5;
}

.pm-stat-lbl {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--pm-muted);
    margin-top: 8px;
    font-weight: 800;
}

/* ── GLASS CARD ───────────────────────────────── */
.pm-card {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 32px;
    margin-bottom: 24px;
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--pm-shadow);
}

.pm-card:hover {
    border-color: rgba(59, 130, 246, 0.25);
    transform: translateY(-3px);
}

/* Section label */
.pm-section-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--pm-blue);
    font-weight: 800;
    margin-bottom: 12px;
    display: block;
    opacity: 0.9;
}

/* ── SERVICE ROW ──────────────────────────────── */
.pm-service-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    margin-bottom: 12px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.pm-service-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--pm-blue);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pm-service-row:hover {
    background: rgba(59, 130, 246, 0.06) !important;
    border-color: rgba(59, 130, 246, 0.25);
    transform: translateX(4px);
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.2);
}

.pm-service-row:hover::before {
    opacity: 1;
}

.pm-service-name {
    font-weight: 700;
    color: #fff;
    font-size: 0.93rem;
    text-decoration: none;
    display: block;
}

.pm-service-name:hover {
    color: #93c5fd;
}

.pm-service-dur {
    font-size: 0.78rem;
    color: var(--pm-muted);
    margin-top: 2px;
}

.pm-service-price {
    font-weight: 800;
    color: #60a5fa;
    font-size: 0.95rem;
    white-space: nowrap;
}

.pm-service-desc {
    font-size: 0.8rem;
    color: var(--pm-muted);
    margin-top: 6px;
    line-height: 1.6;
    opacity: 0.85;
    overflow-wrap: anywhere;
}

.pm-service-detail-link {
    font-size: 0.72rem;
    color: var(--pm-blue);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
    transition: opacity 0.2s;
}

.pm-service-detail-link:hover {
    opacity: 1;
    color: #93c5fd;
}

/* ── CATEGORY LABEL ───────────────────────────── */
.pm-cat-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 800;
    color: #fff;
    padding: 32px 0 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 20px;
    opacity: 0.85;
}

/* ── REVIEWS ──────────────────────────────────── */
.pm-review {
    padding: 20px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--pm-border);
    border-radius: 3px;
    margin-bottom: 12px;
    transition: all 0.25s ease;
}

.pm-review:hover {
    border-color: rgba(59, 130, 246, 0.2);
}

.pm-review-avatar {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--pm-blue), var(--pm-indigo));
    ;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    color: #fff;
    flex-shrink: 0;
}

.pm-review-text {
    font-size: 0.88rem;
    color: var(--pm-muted);
    font-style: italic;
    line-height: 1.65;
    margin-top: 8px;
}

.load-more-btn {
    display: block;
    width: 100%;
    padding: 13px;
    background: transparent;
    border: 1px solid var(--pm-border);
    border-radius: 3px;
    color: var(--pm-muted);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-top: 12px;
    text-align: center;
}

.load-more-btn:hover {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.3);
    color: #93c5fd;
}

/* ── HOURS TABLE ──────────────────────────────── */
.pm-hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.875rem;
}

.pm-hours-row.is-today {
    background: rgba(59, 130, 246, 0.05);
    border-radius: 3px;
    padding-left: 8px;
    padding-right: 8px;
}

.pm-hours-row.is-today .pm-day {
    color: #93c5fd;
    font-weight: 700;
}

/* ── TEAM ─────────────────────────────────────── */
.pm-team-card {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--pm-border);
    border-radius: var(--pm-r);
    transition: all 0.3s ease;
}

.pm-team-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-4px);
}

.pm-team-avatar {
    width: 80px;
    height: 80px;
    ;
    object-fit: cover;
    margin: 0 auto 14px;
    border: 2px solid var(--pm-border);
    display: block;
    transition: border-color 0.3s;
}

.pm-team-card:hover .pm-team-avatar {
    border-color: var(--pm-blue);
}

/* ── ACTION BTNS ──────────────────────────────── */
.pm-btn-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--pm-border);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pm-text);
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    flex-shrink: 0;
}

.pm-btn-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    color: #fff;
}

.pm-btn-icon.is-favorite {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.2);
}

.pm-btn-book {
    background: linear-gradient(135deg, var(--pm-blue), var(--pm-indigo));
    color: #fff;
    border: none;
    padding: 11px 24px;
    border-radius: 3px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.pm-btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(59, 130, 246, 0.45);
    color: #fff;
}

/* ── SOCIAL LINKS ─────────────────────────────── */
.pm-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.pm-social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--pm-border);
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--pm-muted);
    text-decoration: none;
    transition: all 0.25s ease;
}

.pm-social-link:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.25);
    color: #93c5fd;
}

/* ── MAP ──────────────────────────────────────── */
.pm-map {
    height: 220px;
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pm-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: invert(100%) hue-rotate(180deg) brightness(1.1) contrast(0.85);
}

/* ── MOBILE FLOAT CTA ─────────────────────────── */
.pm-float-cta {
    display: none;
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2070 !important;
    /* Higher than modals (2060) */
    width: calc(100% - 40px);
    max-width: 400px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.pm-float-cta.hidden {
    display: none !important;
}

@media (max-width: 991px) {
    .pm-float-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(15, 23, 42, 0.85);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-top: 2px solid rgba(59, 130, 246, 0.4);
        padding: 14px;
        border-radius: 3px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
        text-decoration: none;
        color: #fff;
        font-weight: 700;
        gap: 8px;
    }
}

/* ── REVEAL ───────────────────────────────────── */
.reveal-up {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .55s ease, transform .55s ease;
}

.reveal-up.active {
    opacity: 1;
    transform: none;
}

/* ── SHOWCASE CARD ────────────────────────────── */
.pm-showcase-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 3px 3px 0 0;
    filter: brightness(0.75);
}

.pm-showcase-card {
    background: var(--pm-card);
    border: 1px solid var(--pm-border);
    border-radius: var(--pm-r);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.pm-showcase-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
}

/* ── PREMIUM SERVICES NAVIGATION ──────────────── */
.services-nav-premium {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: relative;
    gap: 16px;
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(16px);
    padding: 16px;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .services-nav-premium {
        flex-direction: column;
        align-items: stretch;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
    }
}

.search-container-premium {
    position: relative;
    width: 100%;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .search-container-premium {
        width: 100%;
        margin-bottom: 12px;
    }
}

.search-input-premium {
    width: 100%;
    height: 48px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    padding: 0 16px 0 46px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.search-input-premium:focus {
    background: rgba(15, 23, 42, 0.8);
    border-color: var(--pm-blue);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
    outline: none;
}

.search-icon-premium {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--pm-muted);
    font-size: 1rem;
    pointer-events: none;
    transition: color 0.3s ease;
}

.search-input-premium:focus+.search-icon-premium {
    color: var(--pm-blue);
}

.categories-wrapper-premium {
    width: 100%;
    overflow: hidden;
}

.categories-inner-premium {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 4px 0;
    scrollbar-width: none;
}

.categories-inner-premium::-webkit-scrollbar {
    display: none;
}

.nav-link-pill {
    white-space: nowrap;
    padding: 10px 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 3px;
    color: var(--pm-muted);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.nav-link-pill:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.nav-link-pill.active {
    background: var(--pm-blue);
    color: #ffffff !important;
    border-color: var(--pm-blue);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.pm-btn-icon.is-contact {
    color: var(--pm-blue);
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}

/* ── LIGHTBOX ── */
.pm-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    z-index: 99999 !important;
    /* High enough to be on top of everything */
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    touch-action: none;
    /* Prevent background scroll/zoom on mobile */
}

.pm-lightbox.active {
    display: flex;
    opacity: 1;
}

.pm-lb-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pm-lb-img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 3px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pm-lightbox.active .pm-lb-img {
    transform: scale(1);
}

.pm-lb-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: 0.3s;
}

.pm-lb-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.pm-lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10;
}

.pm-lb-nav:hover {
    background: var(--pm-blue);
    border-color: var(--pm-blue);
}

.pm-lb-prev {
    left: -70px;
}

.pm-lb-next {
    right: -70px;
}

@media (max-width: 991px) {
    .pm-lb-prev {
        left: 10px;
    }

    .pm-lb-next {
        right: 10px;
    }

    .pm-lb-nav {
        background: rgba(0, 0, 0, 0.3);
    }
}

.pm-lb-caption {
    color: #fff;
    margin-top: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.8;
}

.pm-gallery-item {
    cursor: pointer;
    overflow: hidden;
    border-radius: 3px;
    background: var(--pm-surface);
}

.pm-gallery-item:hover img {
    transform: scale(1.15) !important;
}