body.theme-compact {
    --pm-primary: #2563eb;
    --pm-primary-dark: #1d4ed8;
    --pm-bg: #f8fafc;
    --pm-card: #ffffff;
    --pm-border: rgba(15, 23, 42, 0.08);
    --pm-muted: #64748b;
    --pm-text: #0f172a;
    --pm-r: 3px;
    --pm-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    --pm-blue: #2563eb;

    /* 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(37, 99, 235, 0.05);
    --booking-radius: 3px;
    --booking-shadow: var(--pm-shadow);
}

/* ── 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;
}

.section-reborn {
    background-color: var(--pm-bg) !important;
    color: var(--pm-text);
    position: relative;
    z-index: 5;
}

body {
    background-color: var(--pm-bg) !important;
    color: var(--pm-text);
}

.main-content {
    background-color: var(--pm-bg) !important;
}

.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.68rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--pm-muted);
    margin-top: 6px;
}

/* ── GLASS CARD ───────────────────────────────── */
.pm-card {
    background: var(--pm-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--pm-border);
    border-radius: var(--pm-r);
    padding: 28px;
    box-shadow: var(--pm-shadow);
    margin-bottom: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 768px) {
    #heroActionButtons {
        flex-direction: column;
        width: 100%;
        padding: 0 10px;
        gap: 12px !important;
    }

    #heroActionButtons .btn-reborn,
    #heroActionButtons .btn-primary-custom,
    #heroActionButtons a,
    #heroActionButtons button {
        width: 100% !important;
        justify-content: center;
        padding: 14px !important;
    }
}

/* Header padding fix for mobile */
@media (max-width: 991px) {
    .header .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .header-user-avatar {
        width: 38px !important;
        height: 38px !important;
    }
}

.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: 2px;
    color: var(--pm-blue);
    font-weight: 700;
    margin-bottom: 4px;
}

/* ── SERVICE ROW ──────────────────────────────── */
.pm-service-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 14px 18px;
    background: var(--pm-card);
    border: 1px solid var(--pm-border);
    border-radius: 3px;
    margin-bottom: 8px;
    transition: all 0.25s ease;
    gap: 12px;
}

.pm-service-row:hover {
    background: rgba(59, 130, 246, 0.07);
    border-color: rgba(59, 130, 246, 0.25);
    transform: translateX(4px);
}

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

.pm-service-name:hover {
    color: var(--pm-blue);
}

.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: 2px;
    font-weight: 700;
    color: var(--pm-blue);
    padding: 22px 0 8px;
    border-bottom: 1px solid var(--pm-border);
    margin-bottom: 10px;
}

/* ── REVIEWS ──────────────────────────────────── */
.pm-review {
    padding: 20px;
    background: var(--pm-card);
    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: 200px;
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid var(--pm-border);
    margin-bottom: 20px;
}

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

/* ── 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);
}

/* ── CATEGORY PILLS ──────────────────────────── */
.nav-pills-custom {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 12px;
    margin-bottom: 24px;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.nav-pills-custom::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.nav-link-pill {
    background: var(--pm-card);
    border: 1px solid var(--pm-border);
    border-radius: 3px;
    padding: 10px 22px;
    color: var(--pm-muted);
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.nav-link-pill:hover {
    background: rgba(37, 99, 235, 0.04);
    color: var(--pm-blue);
    border-color: rgba(37, 99, 235, 0.2);
    transform: translateY(-1px);
}

.nav-link-pill.active {
    background: var(--pm-blue);
    color: #fff;
    border-color: var(--pm-blue);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

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

.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: 5px;
    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;
}