@import '_content/CampgroundViews.Shared.UI/CampgroundViews.Shared.UI.qkoh6yp3kk.bundle.scp.css';

/* /Components/Layout/CookieConsent.razor.rz.scp.css */
/* CookieConsent — bottom banner */
.cookie-banner[b-8xqzvm86ei] {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--card-warm, #fdfaf4);
    border-top: 1px solid var(--border, #ddd8c4);
    box-shadow: 0 -2px 12px rgba(44, 62, 45, 0.08);
    padding: 1rem 1.5rem;
}

.cookie-banner-inner[b-8xqzvm86ei] {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-banner-body[b-8xqzvm86ei] {
    flex: 1 1 400px;
}

.cookie-banner-text[b-8xqzvm86ei] {
    font-size: 0.9rem;
    color: var(--text-muted, #5a7a5c);
    margin: 0 0 0.5rem;
    line-height: 1.5;
}

.cookie-banner-link[b-8xqzvm86ei] {
    color: var(--brand-green, #3a7d44);
    font-weight: 600;
    text-decoration: underline;
}

.cookie-banner-link:hover[b-8xqzvm86ei] {
    color: var(--brand-green-dark, #2d6435);
}

.cookie-banner-actions[b-8xqzvm86ei] {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* Customize panel — toggle switches */
.cookie-options[b-8xqzvm86ei] {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: var(--surface, #f4f1e8);
    border-radius: 8px;
    border: 1px solid var(--border-light, #ece8d8);
}

.cookie-toggle[b-8xqzvm86ei] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.cookie-toggle input[type="checkbox"][b-8xqzvm86ei] {
    width: 18px;
    height: 18px;
    accent-color: var(--brand-green, #3a7d44);
    flex-shrink: 0;
}

.cookie-toggle input[type="checkbox"]:disabled[b-8xqzvm86ei] {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-toggle-label[b-8xqzvm86ei] {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.cookie-toggle-label strong[b-8xqzvm86ei] {
    font-size: 0.85rem;
    color: var(--text, #2c3e2d);
}

.cookie-toggle-label small[b-8xqzvm86ei] {
    font-size: 0.78rem;
    color: var(--text-dim, #6d8a6f);
}

@media (max-width: 600px) {
    .cookie-banner-inner[b-8xqzvm86ei] {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner-actions[b-8xqzvm86ei] {
        width: 100%;
        justify-content: center;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-jp7i3d0p24],
.components-reconnect-repeated-attempt-visible[b-jp7i3d0p24],
.components-reconnect-failed-visible[b-jp7i3d0p24],
.components-pause-visible[b-jp7i3d0p24],
.components-resume-failed-visible[b-jp7i3d0p24],
.components-rejoining-animation[b-jp7i3d0p24] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-jp7i3d0p24],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-jp7i3d0p24],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-jp7i3d0p24],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-jp7i3d0p24],
#components-reconnect-modal.components-reconnect-retrying[b-jp7i3d0p24],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-jp7i3d0p24],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-jp7i3d0p24],
#components-reconnect-modal.components-reconnect-failed[b-jp7i3d0p24],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-jp7i3d0p24] {
    display: block;
}


#components-reconnect-modal[b-jp7i3d0p24] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-jp7i3d0p24 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-jp7i3d0p24 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-jp7i3d0p24 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-jp7i3d0p24]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-jp7i3d0p24 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-jp7i3d0p24 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-jp7i3d0p24 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-jp7i3d0p24 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-jp7i3d0p24] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-jp7i3d0p24] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-jp7i3d0p24] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-jp7i3d0p24] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-jp7i3d0p24] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-jp7i3d0p24] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-jp7i3d0p24] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-jp7i3d0p24 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-jp7i3d0p24] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-jp7i3d0p24 {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/Account.razor.rz.scp.css */
/* ── Layout ── */
.page-wrapper[b-q398ykb5mf] {
    display: flex;
    min-height: calc(100vh - var(--nav-height));
}

/* ── Sidebar ── */
.sidebar[b-q398ykb5mf] {
    width: 240px;
    background: var(--surface);
    border-right: 1px solid var(--border);
    padding: var(--sp-lg) 0;
    flex-shrink: 0;
}
.sidebar-profile[b-q398ykb5mf] {
    padding: 0 20px 24px;
    border-bottom: 1px solid var(--border);
    text-align: center;
}
.sidebar-avatar[b-q398ykb5mf] {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-green-pale), var(--brand-green-mist));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: var(--brand-green-dark);
    margin: 0 auto 12px;
}
.sidebar-name[b-q398ykb5mf] {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}
.sidebar-email[b-q398ykb5mf] {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.badge-pro[b-q398ykb5mf] {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
}
.sidebar-nav[b-q398ykb5mf] {
    padding: var(--sp-md) 0;
}
.sidebar-nav-item[b-q398ykb5mf] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s;
    border: none;
    border-left: 3px solid transparent;
    width: 100%;
    text-align: left;
    background: none;
    text-decoration: none;
}
.sidebar-nav-item:hover[b-q398ykb5mf] {
    color: var(--text);
    background: var(--brand-green-pale);
}
.sidebar-nav-item.active[b-q398ykb5mf],
.sidebar-nav-item[aria-selected="true"][b-q398ykb5mf] {
    color: var(--brand-green);
    background: var(--brand-green-pale);
    border-left-color: var(--brand-green);
}
.sidebar-nav-item .icon[b-q398ykb5mf] {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

/* ── Main Content ── */
.account-main[b-q398ykb5mf] {
    flex: 1;
    padding: var(--sp-xl);
    overflow-y: auto;
}
.content-header[b-q398ykb5mf] {
    margin-bottom: 28px;
}
.content-header h1[b-q398ykb5mf] {
    margin-bottom: 6px;
}
.content-header p[b-q398ykb5mf] {
    color: var(--text-muted);
    font-size: 14px;
}

/* ── Section Cards ── */
.section-card[b-q398ykb5mf] {
    background: var(--card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--sp-lg);
    margin-bottom: var(--sp-lg);
}
.section-card:hover[b-q398ykb5mf] {
    transform: none;
    box-shadow: none;
}
.section-card-title[b-q398ykb5mf] {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ── Profile Photo ── */
.photo-upload-area[b-q398ykb5mf] {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border-light);
}
.photo-circle[b-q398ykb5mf] {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-green-pale), var(--brand-green-mist));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 700;
    color: var(--brand-green-dark);
    position: relative;
    flex-shrink: 0;
}
.photo-overlay[b-q398ykb5mf] {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
}
.photo-info h3[b-q398ykb5mf] {
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
}
.photo-info p[b-q398ykb5mf] {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

/* ── Form extras ── */
.input-with-badge[b-q398ykb5mf] {
    position: relative;
}
.input-badge[b-q398ykb5mf] {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--brand-green-pale);
    color: var(--brand-green);
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
}

/* ── Progress ── */
.progress-section[b-q398ykb5mf] {
    margin-bottom: 20px;
}
.progress-header[b-q398ykb5mf] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.progress-label[b-q398ykb5mf] {
    font-size: 14px;
    font-weight: 500;
}
.progress-pct[b-q398ykb5mf] {
    font-size: 13px;
    color: var(--brand-green);
    font-weight: 600;
}

/* ── Nudge Cards ── */
.nudge-cards[b-q398ykb5mf] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: var(--sp-md);
}
.nudge-card[b-q398ykb5mf] {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.15s;
    text-decoration: none;
    color: var(--text);
}
.nudge-card:hover[b-q398ykb5mf] {
    border-color: var(--brand-green);
    background: var(--brand-green-pale);
}
.nudge-icon[b-q398ykb5mf] {
    width: 36px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--brand-green-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.nudge-text[b-q398ykb5mf] {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}
.nudge-text strong[b-q398ykb5mf] {
    display: block;
    color: var(--text);
    font-weight: 500;
    margin-bottom: 2px;
}
.nudge-arrow[b-q398ykb5mf] {
    margin-left: auto;
    color: var(--text-dim);
    font-size: 16px;
}

/* ── Billing ── */
.plan-status[b-q398ykb5mf] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--sp-md);
    background: var(--surface);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    border: 1px solid var(--border-light);
}
.plan-info h3[b-q398ykb5mf] {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.plan-info p[b-q398ykb5mf] {
    font-size: 13px;
    color: var(--text-muted);
}
.status-dot[b-q398ykb5mf] {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-green);
    margin-right: 4px;
}
.billing-table[b-q398ykb5mf] {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 14px;
}
.billing-table th[b-q398ykb5mf] {
    text-align: left;
    padding: 8px 12px;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border);
}
.billing-table td[b-q398ykb5mf] {
    padding: 12px 12px;
    border-bottom: 1px solid var(--border-light);
}
.billing-table tr:last-child td[b-q398ykb5mf] {
    border-bottom: none;
}
.status-paid[b-q398ykb5mf] {
    display: inline-block;
    background: var(--brand-green-pale);
    color: var(--brand-green);
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
}
.btn-row[b-q398ykb5mf] {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 4px;
}
.btn-danger-outline[b-q398ykb5mf] {
    background: transparent;
    color: var(--red);
    border: 1px solid var(--red);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
}
.btn-danger-outline:hover[b-q398ykb5mf] {
    background: var(--red-pale);
}

/* ── Favorites ── */
.favorites-grid[b-q398ykb5mf] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-md);
}
.camp-card[b-q398ykb5mf] {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.15s, border-color 0.15s;
    text-decoration: none;
    color: inherit;
}
.camp-card:hover[b-q398ykb5mf] {
    transform: translateY(-2px);
    border-color: var(--brand-green);
}
.camp-card-img[b-q398ykb5mf] {
    height: 130px;
    position: relative;
}
.camp-card-body[b-q398ykb5mf] {
    padding: 14px;
}
.camp-card-name[b-q398ykb5mf] {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}
.camp-card-state[b-q398ykb5mf] {
    font-size: 12px;
    color: var(--text-muted);
}
.badge-360[b-q398ykb5mf] {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--sky);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
}
.remove-btn[b-q398ykb5mf] {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.45);
    border: none;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    color: #fff;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}
.remove-btn:hover[b-q398ykb5mf] {
    background: var(--red);
}

/* ── RV Profile ── */
.rv-grid[b-q398ykb5mf] {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--sp-md);
    margin-bottom: var(--sp-md);
}
.info-banner[b-q398ykb5mf] {
    background: var(--sky-pale);
    border: 1px solid rgba(74, 144, 184, 0.2);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 13px;
    color: var(--sky);
    margin-bottom: var(--sp-md);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ── Notification Settings ── */
.notification-item[b-q398ykb5mf] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
.notification-item + .notification-item[b-q398ykb5mf] {
    border-top: 1px solid var(--border-light);
    padding-top: var(--sp-md);
}
.notification-label[b-q398ykb5mf] {
    font-weight: 500;
    font-size: 14px;
}
.notification-desc[b-q398ykb5mf] {
    color: var(--text-muted);
    font-size: 13px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .sidebar[b-q398ykb5mf] {
        width: 200px;
    }
}

@media (max-width: 600px) {
    .page-wrapper[b-q398ykb5mf] {
        flex-direction: column;
    }
    .sidebar[b-q398ykb5mf] {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 0;
    }
    .sidebar-profile[b-q398ykb5mf] {
        display: none;
    }
    .sidebar-nav[b-q398ykb5mf] {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        padding: 0;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    .sidebar-nav[b-q398ykb5mf]::-webkit-scrollbar {
        display: none;
    }
    .sidebar-nav-item[b-q398ykb5mf] {
        flex-shrink: 0;
        border-left: none;
        border-bottom: 3px solid transparent;
        padding: 12px 16px;
        font-size: 13px;
        white-space: nowrap;
        min-height: 44px;
    }
    .sidebar-nav-item.active[b-q398ykb5mf],
    .sidebar-nav-item[aria-selected="true"][b-q398ykb5mf] {
        border-left-color: transparent;
        border-bottom-color: var(--brand-green);
    }
    .sidebar-nav-item .icon[b-q398ykb5mf] {
        display: none;
    }
    .account-main[b-q398ykb5mf] {
        padding: var(--sp-md);
    }
    .content-header h1[b-q398ykb5mf] {
        font-size: 20px;
    }
    .form-row[b-q398ykb5mf] {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .form-group[b-q398ykb5mf] {
        margin-bottom: 14px;
    }
    .form-control[b-q398ykb5mf] {
        min-height: 44px;
        font-size: 16px;
    }
    .photo-upload-area[b-q398ykb5mf] {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .favorites-grid[b-q398ykb5mf] {
        grid-template-columns: 1fr;
    }
    .rv-grid[b-q398ykb5mf] {
        grid-template-columns: 1fr 1fr;
    }
    .billing-table[b-q398ykb5mf],
    .billing-table thead[b-q398ykb5mf],
    .billing-table tbody[b-q398ykb5mf],
    .billing-table th[b-q398ykb5mf],
    .billing-table td[b-q398ykb5mf],
    .billing-table tr[b-q398ykb5mf] {
        display: block;
    }
    .billing-table thead[b-q398ykb5mf] {
        display: none;
    }
    .billing-table tr[b-q398ykb5mf] {
        background: var(--surface);
        border: 1px solid var(--border-light);
        border-radius: var(--radius-md);
        margin-bottom: 10px;
        padding: 12px;
    }
    .billing-table td[b-q398ykb5mf] {
        border-bottom: none;
        padding: 4px 0;
        font-size: 13px;
        display: flex;
        justify-content: space-between;
    }
    .billing-table td[b-q398ykb5mf]::before {
        content: attr(data-label);
        color: var(--text-muted);
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.4px;
        flex-shrink: 0;
        margin-right: 8px;
    }
    .btn-primary[b-q398ykb5mf],
    .btn-gold[b-q398ykb5mf],
    .btn-secondary[b-q398ykb5mf],
    .btn-danger-outline[b-q398ykb5mf] {
        width: 100%;
        min-height: 44px;
        justify-content: center;
        text-align: center;
    }
    .btn-row[b-q398ykb5mf] {
        flex-direction: column;
        gap: 10px;
    }
    .plan-status[b-q398ykb5mf] {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .section-card[b-q398ykb5mf] {
        padding: var(--sp-md);
    }
}

@media (max-width: 400px) {
    .rv-grid[b-q398ykb5mf] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Pages/AdminAds.razor.rz.scp.css */
/* ══════════════════════════════════════════
   ADMIN ADS — Editor Styles
   ══════════════════════════════════════════ */

/* ── Toast notification ── */
[b-2ddtbpfovg] .editor-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    padding: 14px 24px;
    border-radius: var(--radius-sm, 6px);
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    animation: editor-toast-in-b-2ddtbpfovg 0.25s ease-out;
    max-width: 400px;
}
[b-2ddtbpfovg] .editor-toast-success {
    background: var(--brand-green, #2d6a4f);
    color: #fff;
}
[b-2ddtbpfovg] .editor-toast-error {
    background: var(--red, #d9534f);
    color: #fff;
}
@keyframes editor-toast-in-b-2ddtbpfovg {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Loading / empty state ── */
[b-2ddtbpfovg] .editor-loading-state {
    text-align: center;
    padding: 60px 0;
    color: var(--text-muted);
}

/* ── Clickable table row ── */
[b-2ddtbpfovg] .editor-clickable-row {
    cursor: pointer;
}

/* ── Form sections ── */
[b-2ddtbpfovg] .editor-section {
    background: var(--card, #fff);
    border: 1px solid var(--border-light, #e8e4da);
    border-radius: var(--radius-lg, 12px);
    padding: var(--sp-lg, 24px);
    margin-bottom: var(--sp-md, 16px);
}
[b-2ddtbpfovg] .editor-section:hover {
    transform: none;
    box-shadow: none;
}
[b-2ddtbpfovg] .editor-section-title {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: var(--sp-md, 16px);
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-light, #e8e4da);
}

/* ── Editor grid (form + preview) ── */
[b-2ddtbpfovg] .ad-editor-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 24px;
    align-items: start;
}
@media (max-width: 1024px) {
    [b-2ddtbpfovg] .ad-editor-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Ad preview boxes ── */
[b-2ddtbpfovg] .ad-preview-box {
    background: var(--surface, #f5f2eb);
    border: 2px dashed var(--border, #d4cfc4);
    border-radius: var(--radius-sm, 6px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
[b-2ddtbpfovg] .ad-preview-box img {
    max-width: 100%;
    height: auto;
    display: block;
}
[b-2ddtbpfovg] .ad-preview-desktop {
    min-height: 90px;
}
[b-2ddtbpfovg] .ad-preview-mobile {
    max-width: 300px;
    min-height: 120px;
}

/* ── Stats grid ── */
[b-2ddtbpfovg] .ad-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
[b-2ddtbpfovg] .ad-stat-card {
    background: var(--surface, #f5f2eb);
    border-radius: var(--radius-sm, 6px);
    padding: 16px;
    text-align: center;
}
[b-2ddtbpfovg] .ad-stat-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
}
[b-2ddtbpfovg] .ad-stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ── Danger button ── */
[b-2ddtbpfovg] .btn-danger {
    background: var(--red, #d9534f);
    color: #fff;
    border: none;
}
[b-2ddtbpfovg] .btn-danger:hover {
    background: #c9302c;
}
/* /Components/Pages/AdminBlog.razor.rz.scp.css */
/* ══════════════════════════════════════════
   ADMIN BLOG — Editor Styles
   ══════════════════════════════════════════ */

/* ── Toast notification ── */
[b-5oaev9nqir] .editor-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    padding: 14px 24px;
    border-radius: var(--radius-sm, 6px);
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    animation: editor-toast-in-b-5oaev9nqir 0.25s ease-out;
    max-width: 400px;
}
[b-5oaev9nqir] .editor-toast-success {
    background: var(--brand-green, #2d6a4f);
    color: #fff;
}
[b-5oaev9nqir] .editor-toast-error {
    background: var(--red, #d9534f);
    color: #fff;
}
@keyframes editor-toast-in-b-5oaev9nqir {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Loading / empty state ── */
[b-5oaev9nqir] .editor-loading-state {
    text-align: center;
    padding: 60px 0;
    color: var(--text-muted);
}

/* ── Clickable table row ── */
[b-5oaev9nqir] .editor-clickable-row {
    cursor: pointer;
}

/* ── Form sections ── */
[b-5oaev9nqir] .editor-section {
    background: var(--card, #fff);
    border: 1px solid var(--border-light, #e8e4da);
    border-radius: var(--radius-lg, 12px);
    padding: var(--sp-lg, 24px);
    margin-bottom: var(--sp-md, 16px);
}
[b-5oaev9nqir] .editor-section:hover {
    transform: none;
    box-shadow: none;
}
[b-5oaev9nqir] .editor-section-title {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 var(--sp-md, 16px) 0;
    padding-bottom: var(--sp-sm, 8px);
    border-bottom: 1px solid var(--border-light, #e8e4da);
}

/* ── Two-column grid for form fields ── */
[b-5oaev9nqir] .editor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-md, 16px);
}

/* ── Textarea heights ── */
[b-5oaev9nqir] .editor-textarea {
    min-height: 80px;
    resize: vertical;
}

/* ── Blog content textarea — extra tall (legacy, kept for fallback) ── */
[b-5oaev9nqir] .blog-textarea-content {
    min-height: 400px;
    resize: vertical;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ── Quill WYSIWYG editor container ── */
[b-5oaev9nqir] .quill-editor-container {
    min-height: 400px;
    background: #fff;
    border-radius: 0 0 var(--radius-sm, 6px) var(--radius-sm, 6px);
    font-size: 0.95rem;
    line-height: 1.7;
}
[b-5oaev9nqir] .quill-editor-container .ql-editor {
    min-height: 380px;
}
/* Override Quill toolbar to match theme */
[b-5oaev9nqir] .ql-toolbar.ql-snow {
    border: 1px solid var(--border-light, #e8e4da);
    border-radius: var(--radius-sm, 6px) var(--radius-sm, 6px) 0 0;
    background: var(--bg-muted, #f5f3ee);
}
[b-5oaev9nqir] .ql-container.ql-snow {
    border: 1px solid var(--border-light, #e8e4da);
    border-top: none;
    border-radius: 0 0 var(--radius-sm, 6px) var(--radius-sm, 6px);
}

/* ── Featured Image ── */
[b-5oaev9nqir] .featured-image-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 12px;
}
[b-5oaev9nqir] .featured-image-preview {
    max-width: 100%;
    max-height: 300px;
    border-radius: var(--radius-sm, 6px);
    display: block;
}
[b-5oaev9nqir] .featured-image-remove {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 28px;
    text-align: center;
    transition: background 0.15s;
}
[b-5oaev9nqir] .featured-image-remove:hover {
    background: rgba(200, 40, 40, 0.9);
}
[b-5oaev9nqir] .featured-image-dropzone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 32px 20px;
    border: 2px dashed var(--border, #c9c3b5);
    border-radius: var(--radius-sm, 6px);
    cursor: pointer;
    color: var(--text-muted);
    font-size: 0.92rem;
    transition: border-color 0.15s, background 0.15s;
}
[b-5oaev9nqir] .featured-image-dropzone:hover {
    border-color: var(--brand-green, #2d6a4f);
    background: rgba(45, 106, 79, 0.04);
}
[b-5oaev9nqir] .featured-image-dropzone-icon {
    font-size: 2rem;
}

/* ── Required asterisk ── */
[b-5oaev9nqir] .editor-required {
    color: var(--red, #d9534f);
    font-weight: 700;
}

/* ── Save bar ── */
[b-5oaev9nqir] .editor-save-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding: var(--sp-lg, 24px) 0;
    margin-top: var(--sp-sm, 8px);
    border-top: 1px solid var(--border-light, #e8e4da);
}

/* ── Spinner ── */
[b-5oaev9nqir] .editor-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: editor-spin-b-5oaev9nqir 0.6s linear infinite;
    vertical-align: middle;
}
@keyframes editor-spin-b-5oaev9nqir {
    to { transform: rotate(360deg); }
}

/* ── Delete confirmation overlay ── */
[b-5oaev9nqir] .editor-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: editor-fade-in-b-5oaev9nqir 0.15s ease-out;
}
@keyframes editor-fade-in-b-5oaev9nqir {
    from { opacity: 0; }
    to   { opacity: 1; }
}
[b-5oaev9nqir] .editor-dialog {
    background: var(--card, #fff);
    border: 1px solid var(--border-light, #e8e4da);
    border-radius: var(--radius-lg, 12px);
    padding: var(--sp-lg, 24px) var(--sp-xl, 32px);
    max-width: 460px;
    width: 90%;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}
[b-5oaev9nqir] .editor-dialog-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 var(--sp-sm, 8px) 0;
}

/* ── Select styling ── */
[b-5oaev9nqir] select.form-control {
    appearance: auto;
    cursor: pointer;
}

/* ── AI Draft Preview Panel ── */
[b-5oaev9nqir] .ai-draft-preview {
    margin-top: var(--sp-md, 16px);
    border: 1px solid var(--border-light, #e8e4da);
    border-radius: var(--radius-sm, 6px);
    overflow: hidden;
}
[b-5oaev9nqir] .ai-draft-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--sp-sm, 8px) var(--sp-md, 16px);
    background: var(--bg-muted, #f5f3ee);
    border-bottom: 1px solid var(--border-light, #e8e4da);
}
[b-5oaev9nqir] .ai-draft-label {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}
[b-5oaev9nqir] .ai-draft-body {
    padding: var(--sp-md, 16px) var(--sp-lg, 24px);
    max-height: 500px;
    overflow-y: auto;
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text);
}
[b-5oaev9nqir] .ai-draft-body h2 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 1.2em 0 0.5em;
    color: var(--text);
}
[b-5oaev9nqir] .ai-draft-body h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 1em 0 0.4em;
    color: var(--text);
}
[b-5oaev9nqir] .ai-draft-body p {
    margin: 0 0 0.8em;
}
[b-5oaev9nqir] .ai-draft-body ul,
[b-5oaev9nqir] .ai-draft-body ol {
    margin: 0 0 0.8em;
    padding-left: 1.5em;
}
[b-5oaev9nqir] .ai-draft-body li {
    margin-bottom: 0.3em;
}

/* ── AI Draft error/info message ── */
[b-5oaev9nqir] .ai-draft-message {
    margin-top: var(--sp-md, 16px);
    padding: var(--sp-sm, 8px) var(--sp-md, 16px);
    background: var(--bg-muted, #f5f3ee);
    border: 1px solid var(--border-light, #e8e4da);
    border-radius: var(--radius-sm, 6px);
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    [b-5oaev9nqir] .editor-grid {
        grid-template-columns: 1fr;
    }
    [b-5oaev9nqir] .editor-section {
        padding: var(--sp-md, 16px);
    }
    [b-5oaev9nqir] .editor-toast {
        left: 12px;
        right: 12px;
        max-width: none;
    }
    [b-5oaev9nqir] .editor-save-bar {
        flex-direction: column;
    }
    [b-5oaev9nqir] .editor-save-bar .btn {
        width: 100%;
    }
    [b-5oaev9nqir] .ai-draft-header {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
}
/* /Components/Pages/AdminDashboard.razor.rz.scp.css */
/* ── Dashboard: Stats Grid ── */
[b-w0lv5jf946] .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-md, 16px);
    margin-bottom: var(--sp-lg, 24px);
}
[b-w0lv5jf946] .stat-card {
    background: var(--card, #fff);
    border: 1px solid var(--border-light, #e8e4da);
    border-radius: var(--radius-md, 10px);
    padding: 20px;
    text-align: center;
    transition: border-color 0.15s;
}
[b-w0lv5jf946] .stat-card:hover {
    border-color: var(--brand-green-mist);
}
[b-w0lv5jf946] .stat-card-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 8px;
}
[b-w0lv5jf946] .stat-card-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
}

/* ── Dashboard: Pending Grid ── */
[b-w0lv5jf946] .pending-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-md, 16px);
    margin-bottom: var(--sp-md, 16px);
}
[b-w0lv5jf946] .pending-card {
    display: block;
    background: var(--card, #fff);
    border: 1px solid var(--border-light, #e8e4da);
    border-radius: var(--radius-md, 10px);
    padding: 24px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.15s, box-shadow 0.15s;
}
[b-w0lv5jf946] .pending-card:hover {
    border-color: var(--brand-green-mist);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
[b-w0lv5jf946] .pending-card-count {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-green);
    line-height: 1;
    margin-bottom: 8px;
}
[b-w0lv5jf946] .pending-card-count.pending-warn {
    color: var(--gold, #b8860b);
}
[b-w0lv5jf946] .pending-card-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}
[b-w0lv5jf946] .pending-card-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ── Dashboard: Quick Links ── */
[b-w0lv5jf946] .quick-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
[b-w0lv5jf946] .quick-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border: 1px solid var(--border-light, #e8e4da);
    border-radius: var(--radius, 8px);
    text-decoration: none;
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.15s;
}
[b-w0lv5jf946] .quick-link:hover {
    background: var(--brand-green-pale);
    border-color: var(--brand-green-mist);
    color: var(--brand-green);
}
[b-w0lv5jf946] .quick-link-icon {
    font-size: 1.2rem;
}

/* ── Dashboard: Activity Feed ── */
[b-w0lv5jf946] .activity-feed {
    display: flex;
    flex-direction: column;
}
[b-w0lv5jf946] .activity-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light, #e8e4da);
}
[b-w0lv5jf946] .activity-item:last-child {
    border-bottom: none;
}
[b-w0lv5jf946] .activity-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}
[b-w0lv5jf946] .dot-green { background: var(--brand-green); }
[b-w0lv5jf946] .dot-yellow { background: var(--yellow, #f0c040); }
[b-w0lv5jf946] .dot-red { background: var(--red, #d9534f); }
[b-w0lv5jf946] .dot-blue { background: var(--sky, #4a90d9); }
[b-w0lv5jf946] .activity-content {
    flex: 1;
}
[b-w0lv5jf946] .activity-text {
    font-size: 0.88rem;
    color: var(--text);
    line-height: 1.4;
}
[b-w0lv5jf946] .activity-time {
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-top: 2px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    [b-w0lv5jf946] .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    [b-w0lv5jf946] .quick-links {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    [b-w0lv5jf946] .stats-grid {
        grid-template-columns: 1fr;
    }
    [b-w0lv5jf946] .pending-grid {
        grid-template-columns: 1fr;
    }
    [b-w0lv5jf946] .quick-links {
        grid-template-columns: 1fr;
    }
}
/* /Components/Pages/AdminGoogleSync.razor.rz.scp.css */
/* ══════════════════════════════════════════
   ADMIN GOOGLE SYNC — Google Places Sync Styles
   ══════════════════════════════════════════ */

/* ── Toast notification ── */
[b-hmalsdgsy8] .gsync-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    padding: 14px 24px;
    border-radius: var(--radius-sm, 6px);
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    animation: gsync-toast-in-b-hmalsdgsy8 0.25s ease-out;
    max-width: 400px;
}
[b-hmalsdgsy8] .gsync-toast-success {
    background: var(--brand-green, #2d6a4f);
    color: #fff;
}
[b-hmalsdgsy8] .gsync-toast-error {
    background: var(--red, #d9534f);
    color: #fff;
}
@keyframes gsync-toast-in-b-hmalsdgsy8 {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Loading / empty states ── */
[b-hmalsdgsy8] .gsync-loading {
    text-align: center;
    padding: 60px 0;
    color: var(--text-muted);
}
[b-hmalsdgsy8] .gsync-empty {
    text-align: center;
    padding: 60px 0;
}
[b-hmalsdgsy8] .gsync-empty-icon {
    font-size: 2.5rem;
    color: var(--brand-green, #2d6a4f);
    margin-bottom: var(--sp-sm, 8px);
}
[b-hmalsdgsy8] .gsync-empty-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}
[b-hmalsdgsy8] .gsync-empty-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ── Tabs ── */
[b-hmalsdgsy8] .gsync-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: var(--sp-md, 16px);
    border-bottom: 2px solid var(--border-light, #e8e4da);
    padding-bottom: 0;
}
[b-hmalsdgsy8] .gsync-tab {
    padding: 10px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    transition: color 0.15s, border-color 0.15s;
    border-radius: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}
[b-hmalsdgsy8] .gsync-tab:hover {
    color: var(--text);
}
[b-hmalsdgsy8] .gsync-tab-active {
    color: var(--brand-green, #2d6a4f);
    border-bottom-color: var(--brand-green, #2d6a4f);
}
[b-hmalsdgsy8] .gsync-tab-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #fff;
    background: var(--gold-dark, #b8860b);
    border-radius: 10px;
}

/* ── Stats Cards Grid ── */
[b-hmalsdgsy8] .gsync-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-md, 16px);
    margin-bottom: var(--sp-lg, 24px);
}
[b-hmalsdgsy8] .gsync-stat-card {
    background: var(--card, #fff);
    border: 1px solid var(--border-light, #e8e4da);
    border-radius: var(--radius-md, 10px);
    padding: 20px;
    text-align: center;
    transition: border-color 0.15s;
}
[b-hmalsdgsy8] .gsync-stat-card:hover {
    border-color: var(--brand-green-mist);
}
[b-hmalsdgsy8] .gsync-stat-clickable {
    cursor: pointer;
}
[b-hmalsdgsy8] .gsync-stat-clickable:hover {
    border-color: var(--brand-green);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
[b-hmalsdgsy8] .gsync-stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 8px;
}
[b-hmalsdgsy8] .gsync-stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
}

/* ── Sections ── */
[b-hmalsdgsy8] .gsync-section {
    background: var(--card, #fff);
    border: 1px solid var(--border-light, #e8e4da);
    border-radius: var(--radius-lg, 12px);
    padding: var(--sp-lg, 24px);
    margin-bottom: var(--sp-md, 16px);
}
[b-hmalsdgsy8] .gsync-section-title {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 var(--sp-md, 16px) 0;
    padding-bottom: var(--sp-sm, 8px);
    border-bottom: 1px solid var(--border-light, #e8e4da);
}

/* ── Spinner ── */
[b-hmalsdgsy8] .gsync-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: gsync-spin-b-hmalsdgsy8 0.6s linear infinite;
    vertical-align: middle;
}
@keyframes gsync-spin-b-hmalsdgsy8 {
    to { transform: rotate(360deg); }
}

/* ── Single result panel ── */
[b-hmalsdgsy8] .gsync-single-result {
    margin-top: var(--sp-md, 16px);
    background: var(--surface, #f9f7f2);
    border: 1px solid var(--border-light, #e8e4da);
    border-radius: var(--radius-md, 10px);
    padding: var(--sp-md, 16px);
}
[b-hmalsdgsy8] .gsync-result-header {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: var(--sp-sm, 8px);
}
[b-hmalsdgsy8] .gsync-result-name {
    font-weight: 700;
    font-size: 0.95rem;
}
[b-hmalsdgsy8] .gsync-result-message {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: var(--sp-sm, 8px);
}
[b-hmalsdgsy8] .gsync-result-changes {
    font-size: 0.85rem;
    color: var(--text);
    padding-left: 18px;
    margin: 0;
}
[b-hmalsdgsy8] .gsync-result-changes li {
    margin-bottom: 4px;
}

/* ── POI link in tables ── */
[b-hmalsdgsy8] .gsync-poi-link {
    font-weight: 600;
    color: var(--brand-green, #2d6a4f);
    text-decoration: none;
}
[b-hmalsdgsy8] .gsync-poi-link:hover {
    text-decoration: underline;
}

/* ── Note cell truncation ── */
[b-hmalsdgsy8] .gsync-note-cell {
    font-size: 0.82rem;
    color: var(--text-muted);
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ── Action buttons ── */
[b-hmalsdgsy8] .gsync-btn-approve {
    background: var(--brand-green, #2d6a4f);
    color: #fff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
}
[b-hmalsdgsy8] .gsync-btn-approve:hover:not(:disabled) {
    background: var(--brand-green-dark, #1b4332);
}
[b-hmalsdgsy8] .gsync-btn-reject {
    background: var(--red, #d9534f);
    color: #fff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
}
[b-hmalsdgsy8] .gsync-btn-reject:hover:not(:disabled) {
    background: #c9302c;
}
[b-hmalsdgsy8] .gsync-btn-confirm-close {
    background: var(--gold-dark, #b8860b);
    color: #fff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
}
[b-hmalsdgsy8] .gsync-btn-confirm-close:hover:not(:disabled) {
    background: #996600;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    [b-hmalsdgsy8] .gsync-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    [b-hmalsdgsy8] .gsync-stats-grid {
        grid-template-columns: 1fr;
    }
    [b-hmalsdgsy8] .gsync-section {
        padding: var(--sp-md, 16px);
    }
    [b-hmalsdgsy8] .gsync-toast {
        left: 12px;
        right: 12px;
        max-width: none;
    }
    [b-hmalsdgsy8] .gsync-tabs {
        overflow-x: auto;
    }
    [b-hmalsdgsy8] .gsync-note-cell {
        max-width: 160px;
    }
}
/* /Components/Pages/AdminListings.razor.rz.scp.css */
/* ══════════════════════════════════════════
   ADMIN LISTINGS — Editor Styles
   ══════════════════════════════════════════ */

/* ── Toast notification ── */
[b-bxlie0qede] .editor-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    padding: 14px 24px;
    border-radius: var(--radius-sm, 6px);
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    animation: editor-toast-in-b-bxlie0qede 0.25s ease-out;
    max-width: 400px;
}
[b-bxlie0qede] .editor-toast-success {
    background: var(--brand-green, #2d6a4f);
    color: #fff;
}
[b-bxlie0qede] .editor-toast-error {
    background: var(--red, #d9534f);
    color: #fff;
}
@keyframes editor-toast-in-b-bxlie0qede {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Loading / empty state ── */
[b-bxlie0qede] .editor-loading-state {
    text-align: center;
    padding: 60px 0;
    color: var(--text-muted);
}

/* ── Clickable table row ── */
[b-bxlie0qede] .editor-clickable-row {
    cursor: pointer;
}

/* ── Form sections ── */
[b-bxlie0qede] .editor-section {
    background: var(--card, #fff);
    border: 1px solid var(--border-light, #e8e4da);
    border-radius: var(--radius-lg, 12px);
    padding: var(--sp-lg, 24px);
    margin-bottom: var(--sp-md, 16px);
}
[b-bxlie0qede] .editor-section:hover {
    transform: none;
    box-shadow: none;
}
[b-bxlie0qede] .editor-section-title {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 var(--sp-md, 16px) 0;
    padding-bottom: var(--sp-sm, 8px);
    border-bottom: 1px solid var(--border-light, #e8e4da);
}

/* ── Two-column grid for form fields ── */
[b-bxlie0qede] .editor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-md, 16px);
}

/* ── Textarea heights ── */
[b-bxlie0qede] .editor-textarea {
    min-height: 80px;
    resize: vertical;
}
[b-bxlie0qede] .editor-textarea-tall {
    min-height: 180px;
    resize: vertical;
}

/* ── Required asterisk ── */
[b-bxlie0qede] .editor-required {
    color: var(--red, #d9534f);
    font-weight: 700;
}

/* ── Checkbox label ── */
[b-bxlie0qede] .editor-checkbox-label {
    display: flex !important;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding-top: 8px;
}
[b-bxlie0qede] .editor-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--brand-green, #2d6a4f);
    cursor: pointer;
}

/* ── Save bar ── */
[b-bxlie0qede] .editor-save-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding: var(--sp-lg, 24px) 0;
    margin-top: var(--sp-sm, 8px);
    border-top: 1px solid var(--border-light, #e8e4da);
}

/* ── Spinner ── */
[b-bxlie0qede] .editor-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: editor-spin-b-bxlie0qede 0.6s linear infinite;
    vertical-align: middle;
}
@keyframes editor-spin-b-bxlie0qede {
    to { transform: rotate(360deg); }
}

/* ── Delete confirmation overlay ── */
[b-bxlie0qede] .editor-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: editor-fade-in-b-bxlie0qede 0.15s ease-out;
}
@keyframes editor-fade-in-b-bxlie0qede {
    from { opacity: 0; }
    to   { opacity: 1; }
}
[b-bxlie0qede] .editor-dialog {
    background: var(--card, #fff);
    border: 1px solid var(--border-light, #e8e4da);
    border-radius: var(--radius-lg, 12px);
    padding: var(--sp-lg, 24px) var(--sp-xl, 32px);
    max-width: 460px;
    width: 90%;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}
[b-bxlie0qede] .editor-dialog-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 var(--sp-sm, 8px) 0;
}

/* ── Select styling ── */
[b-bxlie0qede] select.form-control {
    appearance: auto;
    cursor: pointer;
}

/* ══════════════════════════════════════════
   VISUAL DESCRIPTION EDITOR
   ══════════════════════════════════════════ */

[b-bxlie0qede] .editor-html-toolbar {
    display: flex;
    gap: 4px;
    padding: 6px 8px;
    background: var(--bg-subtle, #f5f3ee);
    border: 1px solid var(--border-light, #e8e4da);
    border-bottom: none;
    border-radius: var(--radius-sm, 6px) var(--radius-sm, 6px) 0 0;
}

[b-bxlie0qede] .editor-toolbar-btn {
    background: var(--card, #fff);
    border: 1px solid var(--border-light, #e8e4da);
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 0.82rem;
    cursor: pointer;
    color: var(--text);
    line-height: 1.4;
    transition: background 0.15s, border-color 0.15s;
}
[b-bxlie0qede] .editor-toolbar-btn:hover {
    background: var(--border-light, #e8e4da);
    border-color: var(--text-muted, #999);
}

[b-bxlie0qede] .editor-contenteditable {
    min-height: 180px;
    max-height: 420px;
    overflow-y: auto;
    padding: 12px 14px;
    border: 1px solid var(--border-light, #e8e4da);
    border-radius: 0 0 var(--radius-sm, 6px) var(--radius-sm, 6px);
    background: var(--card, #fff);
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text);
    outline: none;
    transition: border-color 0.15s;
}
[b-bxlie0qede] .editor-contenteditable:focus {
    border-color: var(--brand-green, #2d6a4f);
    box-shadow: 0 0 0 2px rgba(45, 106, 79, 0.12);
}
[b-bxlie0qede] .editor-contenteditable h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0.6em 0 0.3em 0;
}
[b-bxlie0qede] .editor-contenteditable ul,
[b-bxlie0qede] .editor-contenteditable ol {
    padding-left: 1.5em;
    margin: 0.4em 0;
}
[b-bxlie0qede] .editor-contenteditable p {
    margin: 0.3em 0;
}

/* ══════════════════════════════════════════
   GEOCODING SEARCH / AUTOCOMPLETE
   ══════════════════════════════════════════ */

[b-bxlie0qede] .geocode-search-wrap {
    position: relative;
}

[b-bxlie0qede] .geocode-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 500;
    background: var(--card, #fff);
    border: 1px solid var(--border-light, #e8e4da);
    border-top: none;
    border-radius: 0 0 var(--radius-sm, 6px) var(--radius-sm, 6px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    max-height: 260px;
    overflow-y: auto;
}

[b-bxlie0qede] .geocode-dropdown-item {
    padding: 10px 14px;
    font-size: 0.88rem;
    color: var(--text);
    cursor: pointer;
    border-bottom: 1px solid var(--border-light, #e8e4da);
    transition: background 0.12s;
}
[b-bxlie0qede] .geocode-dropdown-item:last-child {
    border-bottom: none;
}
[b-bxlie0qede] .geocode-dropdown-item:hover {
    background: var(--bg-subtle, #f5f3ee);
}

/* ══════════════════════════════════════════
   INLINE MAP
   ══════════════════════════════════════════ */

[b-bxlie0qede] .editor-inline-map {
    width: 100%;
    height: 300px;
    border-radius: var(--radius-sm, 6px);
    border: 1px solid var(--border-light, #e8e4da);
    overflow: hidden;
}

/* ══════════════════════════════════════════
   FEATURED SCOPE DISPLAY
   ══════════════════════════════════════════ */

[b-bxlie0qede] .editor-featured-scope-display {
    padding: 10px 14px;
    background: var(--bg-subtle, #f5f3ee);
    border: 1px solid var(--border-light, #e8e4da);
    border-radius: var(--radius-sm, 6px);
    font-size: 0.88rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ══════════════════════════════════════════
   PHOTOS & MEDIA
   ══════════════════════════════════════════ */

[b-bxlie0qede] .media-upload-area {
    border: 2px dashed var(--border-light, #e8e4da);
    border-radius: var(--radius-sm, 6px);
    padding: 32px 24px;
    text-align: center;
    margin-bottom: var(--sp-md, 16px);
    background: var(--bg-subtle, #f5f3ee);
    transition: border-color 0.15s, background 0.15s;
    position: relative;
}
[b-bxlie0qede] .media-upload-area:hover {
    border-color: var(--brand-green, #2d6a4f);
    background: rgba(45, 106, 79, 0.04);
}
[b-bxlie0qede] .media-upload-area p {
    margin: 8px 0 0;
    font-size: 0.88rem;
    color: var(--text-muted);
}

[b-bxlie0qede] .media-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-sm, 8px);
}

[b-bxlie0qede] .media-card {
    position: relative;
    border: 2px solid var(--border-light, #e8e4da);
    border-radius: var(--radius-sm, 6px);
    overflow: hidden;
    background: var(--card, #fff);
}
[b-bxlie0qede] .media-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}
[b-bxlie0qede] .media-card input[type="text"] {
    width: 100%;
    border: none;
    border-top: 1px solid var(--border-light, #e8e4da);
    padding: 6px 8px;
    font-size: 0.8rem;
    color: var(--text);
    background: var(--bg-subtle, #f5f3ee);
    outline: none;
}
[b-bxlie0qede] .media-card input[type="text"]:focus {
    background: #fff;
}

[b-bxlie0qede] .media-card-featured {
    border-color: #d4a017;
    box-shadow: 0 0 0 2px rgba(212, 160, 23, 0.25);
}

[b-bxlie0qede] .media-card-actions {
    position: absolute;
    top: 6px;
    right: 6px;
    display: flex;
    gap: 4px;
}
[b-bxlie0qede] .media-card-actions button {
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}
[b-bxlie0qede] .media-card-actions button:hover {
    background: rgba(0, 0, 0, 0.8);
}

[b-bxlie0qede] .media-featured-badge {
    display: inline-block;
    background: #d4a017;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 10px;
    text-transform: uppercase;
}

/* ── Video cards ── */
[b-bxlie0qede] .video-grid {
    grid-template-columns: repeat(3, 1fr);
}
[b-bxlie0qede] .video-card {
    position: relative;
}
[b-bxlie0qede] .video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -70%);
    font-size: 2rem;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
[b-bxlie0qede] .media-card-info {
    padding: 8px 10px;
    font-size: 0.82rem;
    color: var(--text);
    background: var(--bg-subtle, #f5f3ee);
    border-top: 1px solid var(--border-light, #e8e4da);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ══════════════════════════════════════════
   OWNER / OPERATOR
   ══════════════════════════════════════════ */

[b-bxlie0qede] .owner-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    background: var(--bg-subtle, #f5f3ee);
    border: 1px solid var(--border-light, #e8e4da);
    border-radius: var(--radius-sm, 6px);
    margin-bottom: 8px;
}

[b-bxlie0qede] .owner-search-results {
    margin-top: 8px;
    border: 1px solid var(--border-light, #e8e4da);
    border-radius: var(--radius-sm, 6px);
    background: var(--card, #fff);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    max-height: 240px;
    overflow-y: auto;
}

[b-bxlie0qede] .owner-search-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-bottom: 1px solid var(--border-light, #e8e4da);
    transition: background 0.12s;
}
[b-bxlie0qede] .owner-search-item:last-child {
    border-bottom: none;
}
[b-bxlie0qede] .owner-search-item:hover {
    background: var(--bg-subtle, #f5f3ee);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    [b-bxlie0qede] .editor-grid {
        grid-template-columns: 1fr;
    }
    [b-bxlie0qede] .editor-section {
        padding: var(--sp-md, 16px);
    }
    [b-bxlie0qede] .editor-toast {
        left: 12px;
        right: 12px;
        max-width: none;
    }
    [b-bxlie0qede] .editor-save-bar {
        flex-direction: column;
    }
    [b-bxlie0qede] .editor-save-bar .btn {
        width: 100%;
    }
    [b-bxlie0qede] .editor-inline-map {
        height: 220px;
    }
    [b-bxlie0qede] .media-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    [b-bxlie0qede] .video-grid {
        grid-template-columns: 1fr;
    }
}
/* /Components/Pages/AdminMedia.razor.rz.scp.css */
/* ══════════════════════════════════════════
   Media Library — Grid & Detail Styles
   ══════════════════════════════════════════ */

/* Grid layout */
.media-grid[b-jzizfkfvsx] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

.media-grid-item[b-jzizfkfvsx] {
    background: var(--card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 0.15s, border-color 0.15s;
}

.media-grid-item:hover[b-jzizfkfvsx] {
    border-color: var(--brand-green);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.media-grid-thumb[b-jzizfkfvsx] {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--surface);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-grid-thumb img[b-jzizfkfvsx] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-grid-placeholder[b-jzizfkfvsx] {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.media-featured-badge[b-jzizfkfvsx] {
    position: absolute;
    top: 6px;
    right: 6px;
    font-size: 1rem;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

.media-grid-info[b-jzizfkfvsx] {
    padding: 10px 12px;
}

.media-grid-name[b-jzizfkfvsx] {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}

.media-grid-meta[b-jzizfkfvsx] {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* Detail layout */
.media-detail-layout[b-jzizfkfvsx] {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--sp-lg);
    align-items: start;
}

.media-detail-preview[b-jzizfkfvsx] {
    background: var(--surface);
    border-radius: var(--radius-md);
    padding: var(--sp-md);
    text-align: center;
}

.media-detail-info[b-jzizfkfvsx] {
    min-width: 0;
}

/* Properties definition list */
.media-props[b-jzizfkfvsx] {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 6px 14px;
    font-size: 0.88rem;
    margin: 0;
}

.media-props dt[b-jzizfkfvsx] {
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
}

.media-props dd[b-jzizfkfvsx] {
    margin: 0;
    color: var(--text);
    word-break: break-all;
}

/* URL rows */
.media-urls[b-jzizfkfvsx] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.media-url-row[b-jzizfkfvsx] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
}

.media-url-label[b-jzizfkfvsx] {
    font-weight: 600;
    color: var(--text-muted);
    width: 60px;
    flex-shrink: 0;
}

.media-url-value[b-jzizfkfvsx] {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.78rem;
    background: var(--surface);
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    color: var(--text);
}

/* Modal */
.modal-overlay[b-jzizfkfvsx] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-dialog[b-jzizfkfvsx] {
    background: var(--card);
    padding: 24px;
    border-radius: var(--radius-lg);
    max-width: 420px;
    width: 90%;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}

/* Danger button */
.btn-danger[b-jzizfkfvsx] {
    background: #d9534f;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    font-size: 0.88rem;
}
.btn-danger:hover[b-jzizfkfvsx] {
    background: #c9302c;
}
.btn-danger:disabled[b-jzizfkfvsx] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 900px) {
    .media-detail-layout[b-jzizfkfvsx] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .media-grid[b-jzizfkfvsx] {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 10px;
    }
}
/* /Components/Pages/AdminModeration.razor.rz.scp.css */
/* ══════════════════════════════════════════
   ADMIN MODERATION — Queue Styles
   ══════════════════════════════════════════ */

/* ── Toast notification ── */
[b-qp9o5yg3sr] .mod-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    padding: 14px 24px;
    border-radius: var(--radius-sm, 6px);
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    animation: mod-toast-in-b-qp9o5yg3sr 0.25s ease-out;
    max-width: 400px;
}
[b-qp9o5yg3sr] .mod-toast-success {
    background: var(--brand-green, #2d6a4f);
    color: #fff;
}
[b-qp9o5yg3sr] .mod-toast-error {
    background: var(--red, #d9534f);
    color: #fff;
}
@keyframes mod-toast-in-b-qp9o5yg3sr {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Loading state ── */
[b-qp9o5yg3sr] .mod-loading {
    text-align: center;
    padding: 60px 0;
    color: var(--text-muted);
}

/* ── Spinner ── */
[b-qp9o5yg3sr] .mod-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: mod-spin-b-qp9o5yg3sr 0.6s linear infinite;
    vertical-align: middle;
    margin-right: 4px;
}
@keyframes mod-spin-b-qp9o5yg3sr {
    to { transform: rotate(360deg); }
}

/* ── Tabs ── */
[b-qp9o5yg3sr] .mod-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--border-light, #e8e4da);
    margin-bottom: var(--sp-md, 16px);
}

[b-qp9o5yg3sr] .mod-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Nunito', sans-serif;
    color: var(--text-muted);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    transition: color 0.15s, border-color 0.15s;
}
[b-qp9o5yg3sr] .mod-tab:hover {
    color: var(--text);
}
[b-qp9o5yg3sr] .mod-tab-active {
    color: var(--brand-green, #2d6a4f);
    border-bottom-color: var(--brand-green, #2d6a4f);
}

[b-qp9o5yg3sr] .mod-tab-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 7px;
    border-radius: 11px;
    font-size: 0.75rem;
    font-weight: 700;
    background: var(--brand-green, #2d6a4f);
    color: #fff;
    line-height: 1;
}

/* ── Empty state ── */
[b-qp9o5yg3sr] .mod-empty {
    text-align: center;
    padding: 80px 20px;
    background: var(--card, #fff);
    border: 1px solid var(--border-light, #e8e4da);
    border-radius: var(--radius-lg, 12px);
}
[b-qp9o5yg3sr] .mod-empty-icon {
    font-size: 3rem;
    color: var(--brand-green, #2d6a4f);
    margin-bottom: var(--sp-sm, 8px);
    line-height: 1;
}
[b-qp9o5yg3sr] .mod-empty-title {
    font-family: 'Nunito', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}
[b-qp9o5yg3sr] .mod-empty-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ── Queue container ── */
[b-qp9o5yg3sr] .mod-queue {
    display: flex;
    flex-direction: column;
    gap: var(--sp-md, 16px);
}

/* ── Moderation card ── */
[b-qp9o5yg3sr] .mod-card {
    background: var(--card, #fff);
    border: 1px solid var(--border-light, #e8e4da);
    border-radius: var(--radius-lg, 12px);
    padding: var(--sp-lg, 24px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}
[b-qp9o5yg3sr] .mod-card:hover {
    transform: none;
    box-shadow: none;
}

/* Fade-out animation class */
[b-qp9o5yg3sr] .mod-card-fade {
    opacity: 0;
    transform: translateX(40px);
    pointer-events: none;
}

/* ── Card header ── */
[b-qp9o5yg3sr] .mod-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--sp-sm, 8px);
}

/* ── Star rating ── */
[b-qp9o5yg3sr] .mod-stars {
    display: inline-flex;
    gap: 2px;
}
[b-qp9o5yg3sr] .mod-star {
    font-size: 1.2rem;
    color: var(--border-light, #d5d0c4);
    line-height: 1;
}
[b-qp9o5yg3sr] .mod-star-filled {
    color: #f0ad4e;
}

/* ── Date ── */
[b-qp9o5yg3sr] .mod-date {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ── Card body ── */
[b-qp9o5yg3sr] .mod-card-body {
    margin-bottom: var(--sp-md, 16px);
}

[b-qp9o5yg3sr] .mod-review-content {
    font-size: 0.93rem;
    line-height: 1.65;
    color: var(--text);
    white-space: pre-wrap;
    word-break: break-word;
}

/* ── Media body ── */
[b-qp9o5yg3sr] .mod-media-body {
    display: flex;
    gap: var(--sp-md, 16px);
    align-items: flex-start;
}

[b-qp9o5yg3sr] .mod-media-thumb {
    flex-shrink: 0;
    width: 120px;
    height: 90px;
    border-radius: var(--radius-sm, 6px);
    overflow: hidden;
    background: var(--bg-muted, #f5f2ec);
    border: 1px solid var(--border-light, #e8e4da);
}
[b-qp9o5yg3sr] .mod-media-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

[b-qp9o5yg3sr] .mod-media-info {
    flex: 1;
    min-width: 0;
}

[b-qp9o5yg3sr] .mod-media-filename {
    font-weight: 600;
    font-size: 0.93rem;
    color: var(--text);
    margin-bottom: 6px;
    word-break: break-all;
}

/* ── Meta rows ── */
[b-qp9o5yg3sr] .mod-card-meta {
    margin-bottom: var(--sp-md, 16px);
    padding-top: var(--sp-sm, 8px);
    border-top: 1px solid var(--border-light, #e8e4da);
}

[b-qp9o5yg3sr] .mod-meta-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.87rem;
    color: var(--text);
    line-height: 1.8;
    flex-wrap: wrap;
}

[b-qp9o5yg3sr] .mod-meta-label {
    font-weight: 600;
    color: var(--text-muted);
    flex-shrink: 0;
}

[b-qp9o5yg3sr] .mod-meta-muted {
    color: var(--text-muted);
    font-size: 0.82rem;
}

[b-qp9o5yg3sr] .mod-campground-link {
    color: var(--brand-green, #2d6a4f);
    text-decoration: none;
    font-weight: 600;
}
[b-qp9o5yg3sr] .mod-campground-link:hover {
    text-decoration: underline;
}

/* ── Action buttons ── */
[b-qp9o5yg3sr] .mod-card-actions {
    display: flex;
    gap: 8px;
    padding-top: var(--sp-sm, 8px);
    border-top: 1px solid var(--border-light, #e8e4da);
}

[b-qp9o5yg3sr] .mod-btn-approve {
    background: var(--brand-green, #2d6a4f);
    color: #fff;
    border: none;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: var(--radius-sm, 6px);
    cursor: pointer;
    transition: background 0.15s;
}
[b-qp9o5yg3sr] .mod-btn-approve:hover:not(:disabled) {
    background: #245a42;
}
[b-qp9o5yg3sr] .mod-btn-approve:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

[b-qp9o5yg3sr] .mod-btn-reject {
    background: var(--red, #d9534f);
    color: #fff;
    border: none;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: var(--radius-sm, 6px);
    cursor: pointer;
    transition: background 0.15s;
}
[b-qp9o5yg3sr] .mod-btn-reject:hover:not(:disabled) {
    background: #c12e2a;
}
[b-qp9o5yg3sr] .mod-btn-reject:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    [b-qp9o5yg3sr] .mod-tabs {
        gap: 0;
    }
    [b-qp9o5yg3sr] .mod-tab {
        padding: 10px 16px;
        font-size: 0.88rem;
    }
    [b-qp9o5yg3sr] .mod-card {
        padding: var(--sp-md, 16px);
    }
    [b-qp9o5yg3sr] .mod-media-body {
        flex-direction: column;
    }
    [b-qp9o5yg3sr] .mod-media-thumb {
        width: 100%;
        height: 160px;
    }
    [b-qp9o5yg3sr] .mod-card-actions {
        flex-direction: column;
    }
    [b-qp9o5yg3sr] .mod-btn-approve,
    [b-qp9o5yg3sr] .mod-btn-reject {
        width: 100%;
        text-align: center;
    }
    [b-qp9o5yg3sr] .mod-toast {
        left: 12px;
        right: 12px;
        max-width: none;
    }
}
/* /Components/Pages/AdminPipeline.razor.rz.scp.css */
/* ══════════════════════════════════════════
   ADMIN PIPELINE — Content Pipeline Styles
   ══════════════════════════════════════════ */

/* ── Toast notification ── */
[b-f38n80gy6k] .editor-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    padding: 14px 24px;
    border-radius: var(--radius-sm, 6px);
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    animation: pipeline-toast-in-b-f38n80gy6k 0.25s ease-out;
    max-width: 400px;
}
[b-f38n80gy6k] .editor-toast-success {
    background: var(--brand-green, #2d6a4f);
    color: #fff;
}
[b-f38n80gy6k] .editor-toast-error {
    background: var(--red, #d9534f);
    color: #fff;
}
@keyframes pipeline-toast-in-b-f38n80gy6k {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Loading / empty state ── */
[b-f38n80gy6k] .pipeline-loading-state {
    text-align: center;
    padding: 60px 0;
    color: var(--text-muted);
}

/* ── Status Cards Grid ── */
[b-f38n80gy6k] .pipeline-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-md, 16px);
    margin-bottom: var(--sp-lg, 24px);
}
[b-f38n80gy6k] .pipeline-stat-card {
    background: var(--card, #fff);
    border: 1px solid var(--border-light, #e8e4da);
    border-radius: var(--radius-md, 10px);
    padding: 20px;
    text-align: center;
    transition: border-color 0.15s;
}
[b-f38n80gy6k] .pipeline-stat-card:hover {
    border-color: var(--brand-green-mist);
}
[b-f38n80gy6k] .pipeline-stat-clickable {
    cursor: pointer;
}
[b-f38n80gy6k] .pipeline-stat-clickable:hover {
    border-color: var(--brand-green);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
[b-f38n80gy6k] .pipeline-stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 8px;
}
[b-f38n80gy6k] .pipeline-stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
}
[b-f38n80gy6k] .pipeline-stat-highlight {
    color: var(--gold-dark, #b8860b);
}

/* ── Brand-green badge (published) ── */
[b-f38n80gy6k] .badge-brand-green {
    background: var(--brand-green, #2d6a4f);
    color: #fff;
}

/* ── Tab Filters ── */
[b-f38n80gy6k] .pipeline-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: var(--sp-md, 16px);
    border-bottom: 2px solid var(--border-light, #e8e4da);
    padding-bottom: 0;
}
[b-f38n80gy6k] .pipeline-tab {
    padding: 10px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    transition: color 0.15s, border-color 0.15s;
    border-radius: 0;
}
[b-f38n80gy6k] .pipeline-tab:hover {
    color: var(--text);
}
[b-f38n80gy6k] .pipeline-tab-active {
    color: var(--brand-green, #2d6a4f);
    border-bottom-color: var(--brand-green, #2d6a4f);
}

/* ── Spinner ── */
[b-f38n80gy6k] .pipeline-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: pipeline-spin-b-f38n80gy6k 0.6s linear infinite;
    vertical-align: middle;
}
@keyframes pipeline-spin-b-f38n80gy6k {
    to { transform: rotate(360deg); }
}

/* ── Warning button (pause) ── */
[b-f38n80gy6k] .btn-warning {
    background: var(--gold, #b8860b);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: var(--radius-sm, 6px);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
}
[b-f38n80gy6k] .btn-warning:hover {
    background: var(--gold-dark, #996600);
}

/* ── Success button (approve/resume) ── */
[b-f38n80gy6k] .btn-success {
    background: var(--brand-green, #2d6a4f);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: var(--radius-sm, 6px);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
}
[b-f38n80gy6k] .btn-success:hover {
    background: var(--brand-green-dark, #1b4332);
}

/* ── Review Panel Sections ── */
[b-f38n80gy6k] .pipeline-section {
    background: var(--card, #fff);
    border: 1px solid var(--border-light, #e8e4da);
    border-radius: var(--radius-lg, 12px);
    padding: var(--sp-lg, 24px);
    margin-bottom: var(--sp-md, 16px);
}
[b-f38n80gy6k] .pipeline-section:hover {
    transform: none;
    box-shadow: none;
}
[b-f38n80gy6k] .pipeline-section-title {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 var(--sp-md, 16px) 0;
    padding-bottom: var(--sp-sm, 8px);
    border-bottom: 1px solid var(--border-light, #e8e4da);
}

/* ── Source section ── */
[b-f38n80gy6k] .pipeline-source-section {
    border-left: 3px solid var(--sky, #4a90d9);
}
[b-f38n80gy6k] .pipeline-source-info {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}
[b-f38n80gy6k] .pipeline-source-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
}
[b-f38n80gy6k] .pipeline-source-link {
    font-size: 0.92rem;
    color: var(--brand-green, #2d6a4f);
    text-decoration: none;
    font-weight: 500;
}
[b-f38n80gy6k] .pipeline-source-link:hover {
    text-decoration: underline;
}

/* ── Two-column grid for form fields ── */
[b-f38n80gy6k] .pipeline-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-md, 16px);
}

/* ── Word count display ── */
[b-f38n80gy6k] .pipeline-word-count {
    padding: 10px 14px;
    background: var(--surface, #f9f7f2);
    border: 1px solid var(--border-light, #e8e4da);
    border-radius: var(--radius-sm, 6px);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text);
}

/* ── Textarea heights ── */
[b-f38n80gy6k] .pipeline-textarea {
    min-height: 80px;
    resize: vertical;
}
[b-f38n80gy6k] .pipeline-textarea-content {
    min-height: 400px;
    resize: vertical;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ── Image preview ── */
[b-f38n80gy6k] .pipeline-image-preview {
    margin-bottom: var(--sp-md, 16px);
    border-radius: var(--radius-sm, 6px);
    overflow: hidden;
    border: 1px solid var(--border-light, #e8e4da);
    max-width: 600px;
}
[b-f38n80gy6k] .pipeline-image-preview img {
    display: block;
    width: 100%;
    height: auto;
}
[b-f38n80gy6k] .pipeline-image-prompt {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    padding: var(--sp-sm, 8px) var(--sp-md, 16px);
    background: var(--bg-muted, #f5f3ee);
    border: 1px solid var(--border-light, #e8e4da);
    border-radius: var(--radius-sm, 6px);
}
[b-f38n80gy6k] .pipeline-prompt-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ── Action bar ── */
[b-f38n80gy6k] .pipeline-action-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: var(--sp-lg, 24px) 0;
    margin-top: var(--sp-sm, 8px);
    border-top: 1px solid var(--border-light, #e8e4da);
}

/* ── Select styling ── */
[b-f38n80gy6k] select.form-control {
    appearance: auto;
    cursor: pointer;
}

/* ── Reject confirmation overlay ── */
[b-f38n80gy6k] .pipeline-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pipeline-fade-in-b-f38n80gy6k 0.15s ease-out;
}
@keyframes pipeline-fade-in-b-f38n80gy6k {
    from { opacity: 0; }
    to   { opacity: 1; }
}
[b-f38n80gy6k] .pipeline-dialog {
    background: var(--card, #fff);
    border: 1px solid var(--border-light, #e8e4da);
    border-radius: var(--radius-lg, 12px);
    padding: var(--sp-lg, 24px) var(--sp-xl, 32px);
    max-width: 500px;
    width: 90%;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}
[b-f38n80gy6k] .pipeline-dialog-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 var(--sp-sm, 8px) 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    [b-f38n80gy6k] .pipeline-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    [b-f38n80gy6k] .pipeline-stats-grid {
        grid-template-columns: 1fr;
    }
    [b-f38n80gy6k] .pipeline-grid {
        grid-template-columns: 1fr;
    }
    [b-f38n80gy6k] .pipeline-section {
        padding: var(--sp-md, 16px);
    }
    [b-f38n80gy6k] .editor-toast {
        left: 12px;
        right: 12px;
        max-width: none;
    }
    [b-f38n80gy6k] .pipeline-action-bar {
        flex-direction: column;
        align-items: stretch;
    }
    [b-f38n80gy6k] .pipeline-action-bar .btn {
        width: 100%;
    }
    [b-f38n80gy6k] .pipeline-tabs {
        overflow-x: auto;
    }
}
/* /Components/Pages/AdminUsers.razor.rz.scp.css */
/* ══════════════════════════════════════════
   ADMIN USERS — Editor Styles
   ══════════════════════════════════════════ */

/* ── Toast notification ── */
[b-u1a4fkg4h7] .editor-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    padding: 14px 24px;
    border-radius: var(--radius-sm, 6px);
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    animation: editor-toast-in-b-u1a4fkg4h7 0.25s ease-out;
    max-width: 400px;
}
[b-u1a4fkg4h7] .editor-toast-success {
    background: var(--brand-green, #2d6a4f);
    color: #fff;
}
[b-u1a4fkg4h7] .editor-toast-error {
    background: var(--red, #d9534f);
    color: #fff;
}
@keyframes editor-toast-in-b-u1a4fkg4h7 {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Loading / empty state ── */
[b-u1a4fkg4h7] .editor-loading-state {
    text-align: center;
    padding: 60px 0;
    color: var(--text-muted);
}

/* ── Clickable table row ── */
[b-u1a4fkg4h7] .editor-clickable-row {
    cursor: pointer;
}

/* ── Form sections ── */
[b-u1a4fkg4h7] .editor-section {
    background: var(--card, #fff);
    border: 1px solid var(--border-light, #e8e4da);
    border-radius: var(--radius-lg, 12px);
    padding: var(--sp-lg, 24px);
    margin-bottom: var(--sp-md, 16px);
}
[b-u1a4fkg4h7] .editor-section:hover {
    transform: none;
    box-shadow: none;
}
[b-u1a4fkg4h7] .editor-section-title {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 var(--sp-md, 16px) 0;
    padding-bottom: var(--sp-sm, 8px);
    border-bottom: 1px solid var(--border-light, #e8e4da);
}

/* ── Two-column grid for form fields ── */
[b-u1a4fkg4h7] .editor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-md, 16px);
}

/* ── Save bar ── */
[b-u1a4fkg4h7] .editor-save-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding: var(--sp-lg, 24px) 0 0 0;
    margin-top: var(--sp-sm, 8px);
    border-top: 1px solid var(--border-light, #e8e4da);
}

/* ── Spinner ── */
[b-u1a4fkg4h7] .editor-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: editor-spin-b-u1a4fkg4h7 0.6s linear infinite;
    vertical-align: middle;
}
@keyframes editor-spin-b-u1a4fkg4h7 {
    to { transform: rotate(360deg); }
}

/* ── Confirmation overlay & dialog ── */
[b-u1a4fkg4h7] .editor-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: editor-fade-in-b-u1a4fkg4h7 0.15s ease-out;
}
@keyframes editor-fade-in-b-u1a4fkg4h7 {
    from { opacity: 0; }
    to   { opacity: 1; }
}
[b-u1a4fkg4h7] .editor-dialog {
    background: var(--card, #fff);
    border: 1px solid var(--border-light, #e8e4da);
    border-radius: var(--radius-lg, 12px);
    padding: var(--sp-lg, 24px) var(--sp-xl, 32px);
    max-width: 460px;
    width: 90%;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}
[b-u1a4fkg4h7] .editor-dialog-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 var(--sp-sm, 8px) 0;
}

/* ── Select styling ── */
[b-u1a4fkg4h7] select.form-control {
    appearance: auto;
    cursor: pointer;
}

/* ══════════════════════════════════════════
   USER-SPECIFIC STYLES
   ══════════════════════════════════════════ */

/* ── Read-only field display ── */
[b-u1a4fkg4h7] .user-readonly-value {
    padding: 10px 14px;
    background: var(--surface, #faf8f4);
    border: 1px solid var(--border-light, #e8e4da);
    border-radius: var(--radius-sm, 6px);
    font-size: 0.92rem;
    color: var(--text);
    min-height: 42px;
    display: flex;
    align-items: center;
}

/* ── Profile completion progress bar ── */
[b-u1a4fkg4h7] .user-progress-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 6px;
}
[b-u1a4fkg4h7] .user-progress-bar {
    flex: 1;
    height: 10px;
    background: var(--border-light, #e8e4da);
    border-radius: 5px;
    overflow: hidden;
}
[b-u1a4fkg4h7] .user-progress-fill {
    height: 100%;
    background: var(--brand-green, #2d6a4f);
    border-radius: 5px;
    transition: width 0.4s ease;
}
[b-u1a4fkg4h7] .user-progress-label {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text);
    min-width: 38px;
}

/* ── Activity stats grid ── */
[b-u1a4fkg4h7] .user-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-md, 16px);
}
[b-u1a4fkg4h7] .user-stat-card {
    background: var(--surface, #faf8f4);
    border: 1px solid var(--border-light, #e8e4da);
    border-radius: var(--radius-sm, 6px);
    padding: var(--sp-md, 16px);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
[b-u1a4fkg4h7] .user-stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    font-family: 'Nunito', sans-serif;
}
[b-u1a4fkg4h7] .user-stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ── Inline form (Grant Pro) ── */
[b-u1a4fkg4h7] .user-inline-form {
    margin-top: var(--sp-md, 16px);
    padding: var(--sp-md, 16px);
    background: var(--surface, #faf8f4);
    border: 1px solid var(--border-light, #e8e4da);
    border-radius: var(--radius-sm, 6px);
}
[b-u1a4fkg4h7] .user-inline-form-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 var(--sp-sm, 8px) 0;
}

/* ── Danger zone section ── */
[b-u1a4fkg4h7] .user-danger-section {
    border-color: var(--red, #d9534f);
    border-style: dashed;
}
[b-u1a4fkg4h7] .user-danger-title {
    color: var(--red, #d9534f) !important;
    border-bottom-color: var(--red, #d9534f) !important;
}

/* ── Danger outline button ── */
[b-u1a4fkg4h7] .btn-danger-outline {
    background: transparent;
    color: var(--red, #d9534f);
    border: 1px solid var(--red, #d9534f);
    padding: 8px 18px;
    border-radius: var(--radius-sm, 6px);
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.15s ease;
}
[b-u1a4fkg4h7] .btn-danger-outline:hover {
    background: var(--red, #d9534f);
    color: #fff;
}
[b-u1a4fkg4h7] .btn-danger-outline:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ── Purple badge for moderators ── */
[b-u1a4fkg4h7] .badge-purple {
    background: rgba(128, 90, 213, 0.12);
    color: #805ad5;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    [b-u1a4fkg4h7] .editor-grid {
        grid-template-columns: 1fr;
    }
    [b-u1a4fkg4h7] .editor-section {
        padding: var(--sp-md, 16px);
    }
    [b-u1a4fkg4h7] .editor-toast {
        left: 12px;
        right: 12px;
        max-width: none;
    }
    [b-u1a4fkg4h7] .editor-save-bar {
        flex-direction: column;
    }
    [b-u1a4fkg4h7] .editor-save-bar .btn {
        width: 100%;
    }
    [b-u1a4fkg4h7] .user-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    [b-u1a4fkg4h7] .user-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}
/* /Components/Pages/Blog.razor.rz.scp.css */
/* ── Blog Listing Page — Light Theme ── */

/* PAGE HEADER */
.blog-page-header[b-f4n0zhsqel] {
    background: linear-gradient(135deg, #e8f5e9 0%, var(--surface, #f4f1e8) 50%, #dcedc8 100%);
    border-bottom: 1px solid var(--border, #ddd8c4);
    padding: 56px 24px;
    text-align: center;
}
.blog-page-header-inner[b-f4n0zhsqel] {
    max-width: 560px;
    margin: 0 auto;
}
[b-f4n0zhsqel] .blog-page-header h1 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    color: var(--text, #2c3e2d);
}
[b-f4n0zhsqel] .blog-page-header p {
    font-size: 1.1rem;
    color: var(--text-muted, #5a7a5c);
    line-height: 1.6;
    margin: 0;
}

/* CONTAINER */
.blog-container[b-f4n0zhsqel] {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}
.blog-section[b-f4n0zhsqel] {
    padding: 40px 0;
}

/* ── FEATURED POST ── */
.featured-post[b-f4n0zhsqel] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--card, #ffffff);
    border: 1px solid var(--border, #ddd8c4);
    border-radius: var(--radius-lg, 16px);
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
}
.featured-post:hover[b-f4n0zhsqel] {
    border-color: var(--brand-green, #3a7d44);
    box-shadow: var(--shadow-md, 0 4px 16px rgba(44,62,45,0.10));
}
.featured-img[b-f4n0zhsqel] {
    position: relative;
    min-height: 340px;
    background: var(--surface, #f4f1e8);
    overflow: hidden;
}
.featured-img img[b-f4n0zhsqel] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.featured-img-overlay[b-f4n0zhsqel] {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 40%, var(--card, #ffffff));
    z-index: 1;
}
.featured-content[b-f4n0zhsqel] {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Badge */
.blog-badge[b-f4n0zhsqel] {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 14px;
    align-self: flex-start;
}
.blog-badge-green[b-f4n0zhsqel] {
    background: var(--brand-green-pale, #e8f5e9);
    color: var(--brand-green, #3a7d44);
}

.featured-title[b-f4n0zhsqel] {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.35rem, 2.5vw, 1.6rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
    color: var(--text, #2c3e2d);
}
.blog-post-meta[b-f4n0zhsqel] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 0.82rem;
    color: var(--text-muted, #5a7a5c);
    flex-wrap: wrap;
}
.meta-dot[b-f4n0zhsqel] {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--text-light, #8a9f8b);
    flex-shrink: 0;
}
.featured-excerpt[b-f4n0zhsqel] {
    font-size: 0.92rem;
    color: var(--text-muted, #5a7a5c);
    line-height: 1.7;
    margin-bottom: 24px;
}
.btn-read-article[b-f4n0zhsqel] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--brand-green, #3a7d44);
    color: #ffffff;
    border: none;
    padding: 11px 22px;
    border-radius: var(--radius-sm, 6px);
    font-size: 0.88rem;
    font-weight: 600;
    align-self: flex-start;
    transition: background 0.15s;
}
.featured-post:hover .btn-read-article[b-f4n0zhsqel] {
    background: var(--brand-green-dark, #2d6435);
}

/* ── CATEGORY PILLS ── */
.category-pills[b-f4n0zhsqel] {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}
.category-pills[b-f4n0zhsqel]::-webkit-scrollbar { display: none; }
.pill[b-f4n0zhsqel] {
    display: flex;
    align-items: center;
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    border: 1px solid var(--border, #ddd8c4);
    color: var(--text-muted, #5a7a5c);
    background: var(--card, #ffffff);
    transition: all 0.15s;
    text-decoration: none;
}
.pill:hover[b-f4n0zhsqel] {
    color: var(--text, #2c3e2d);
    border-color: var(--text-muted, #5a7a5c);
}
.pill.active[b-f4n0zhsqel] {
    background: var(--brand-green, #3a7d44);
    color: #ffffff;
    border-color: var(--brand-green, #3a7d44);
    font-weight: 600;
}

/* ── SECTION HEADER ── */
.section-header[b-f4n0zhsqel] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}
[b-f4n0zhsqel] .section-header h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text, #2c3e2d);
    margin: 0;
}

/* ── POST GRID ── */
.blog-post-grid[b-f4n0zhsqel] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.post-card[b-f4n0zhsqel] {
    background: var(--card, #ffffff);
    border: 1px solid var(--border, #ddd8c4);
    border-radius: var(--radius-md, 10px);
    overflow: hidden;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}
.post-card:hover[b-f4n0zhsqel] {
    transform: translateY(-3px);
    border-color: var(--brand-green, #3a7d44);
    box-shadow: var(--shadow-md, 0 4px 16px rgba(44,62,45,0.10));
}
.post-card-img[b-f4n0zhsqel] {
    height: 180px;
    position: relative;
    overflow: hidden;
    background: var(--surface, #f4f1e8);
}
.post-card-img img[b-f4n0zhsqel] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.post-card:hover .post-card-img img[b-f4n0zhsqel] {
    transform: scale(1.04);
}
.post-card-img-placeholder[b-f4n0zhsqel] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light, #8a9f8b);
}
.post-card-badge[b-f4n0zhsqel] {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--brand-green, #3a7d44);
    backdrop-filter: blur(4px);
    z-index: 1;
}
.post-card-body[b-f4n0zhsqel] {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.post-card-title[b-f4n0zhsqel] {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
    color: var(--text, #2c3e2d);
}
.post-card-author[b-f4n0zhsqel] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 0.76rem;
    color: var(--text-muted, #5a7a5c);
}
.author-avatar-sm[b-f4n0zhsqel] {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.62rem;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
}
.post-card-excerpt[b-f4n0zhsqel] {
    font-size: 0.82rem;
    color: var(--text-muted, #5a7a5c);
    line-height: 1.6;
    margin-bottom: 14px;
    flex: 1;
}
.post-card-footer[b-f4n0zhsqel] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}
.read-time[b-f4n0zhsqel] {
    color: var(--text-light, #8a9f8b);
}
.read-link[b-f4n0zhsqel] {
    color: var(--brand-green, #3a7d44);
    font-weight: 500;
}

/* ── PAGINATION ── */
.blog-pagination[b-f4n0zhsqel] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 32px 0;
}
.page-btn[b-f4n0zhsqel] {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm, 6px);
    border: 1px solid var(--border, #ddd8c4);
    background: var(--card, #ffffff);
    color: var(--text-muted, #5a7a5c);
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.15s;
}
.page-btn:hover[b-f4n0zhsqel] {
    color: var(--text, #2c3e2d);
    border-color: var(--text-muted, #5a7a5c);
}
.page-btn.active[b-f4n0zhsqel] {
    background: var(--brand-green, #3a7d44);
    color: #ffffff;
    border-color: var(--brand-green, #3a7d44);
}
.page-text[b-f4n0zhsqel] {
    padding: 0 16px;
    color: var(--brand-green, #3a7d44);
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.15s;
}
.page-text:hover[b-f4n0zhsqel] {
    color: var(--brand-green-dark, #2d6435);
}
.page-text.disabled[b-f4n0zhsqel] {
    color: var(--text-light, #8a9f8b);
    pointer-events: none;
}
.page-ellipsis[b-f4n0zhsqel] {
    color: var(--text-light, #8a9f8b);
    padding: 0 4px;
    font-size: 0.88rem;
}

/* ── NEWSLETTER BANNER ── */
.newsletter-banner[b-f4n0zhsqel] {
    background: linear-gradient(135deg, #e8f5e9 0%, var(--card-warm, #fdfaf4) 100%);
    border: 1px solid var(--border, #ddd8c4);
    border-radius: var(--radius-lg, 16px);
    padding: 48px;
    text-align: center;
    margin: 16px 0 40px;
}
[b-f4n0zhsqel] .newsletter-banner h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text, #2c3e2d);
}
[b-f4n0zhsqel] .newsletter-banner p {
    color: var(--text-muted, #5a7a5c);
    margin-bottom: 24px;
    font-size: 0.92rem;
}
.newsletter-form[b-f4n0zhsqel] {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
}
.newsletter-form input[b-f4n0zhsqel] {
    flex: 1;
    background: var(--card, #ffffff);
    border: 1px solid var(--border, #ddd8c4);
    border-radius: var(--radius-sm, 6px);
    padding: 12px 16px;
    color: var(--text, #2c3e2d);
    font-size: 0.88rem;
    font-family: inherit;
    outline: none;
}
.newsletter-form input:focus[b-f4n0zhsqel] {
    border-color: var(--brand-green, #3a7d44);
    box-shadow: 0 0 0 3px rgba(58, 125, 68, 0.15);
}
.newsletter-form button[b-f4n0zhsqel] {
    background: var(--brand-green, #3a7d44);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: var(--radius-sm, 6px);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s;
}
.newsletter-form button:hover[b-f4n0zhsqel] {
    background: var(--brand-green-dark, #2d6435);
}
.newsletter-fine-print[b-f4n0zhsqel] {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light, #8a9f8b);
    margin-top: 12px;
}

/* ── EMPTY STATE ── */
.blog-empty-state[b-f4n0zhsqel] {
    text-align: center;
    padding: 80px 0;
}
[b-f4n0zhsqel] .blog-empty-state h2 {
    font-size: 1.5rem;
    margin: 16px 0 8px;
    color: var(--text, #2c3e2d);
}
[b-f4n0zhsqel] .blog-empty-state p {
    color: var(--text-muted, #5a7a5c);
    margin-bottom: 24px;
}
.btn-back-all[b-f4n0zhsqel] {
    display: inline-block;
    background: var(--brand-green, #3a7d44);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: var(--radius-sm, 6px);
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    transition: background 0.15s;
}
.btn-back-all:hover[b-f4n0zhsqel] {
    background: var(--brand-green-dark, #2d6435);
}

/* ── SKELETON LOADING ── */
.skeleton-featured[b-f4n0zhsqel],
.skeleton-card[b-f4n0zhsqel] {
    background: var(--card, #ffffff);
    border: 1px solid var(--border, #ddd8c4);
    border-radius: var(--radius-md, 10px);
    overflow: hidden;
}
.skeleton-pulse[b-f4n0zhsqel] {
    background: linear-gradient(90deg, var(--surface, #f4f1e8) 25%, var(--border-light, #ece8d8) 50%, var(--surface, #f4f1e8) 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer-b-f4n0zhsqel 1.5s infinite;
    border-radius: var(--radius-sm, 6px);
}
@keyframes skeleton-shimmer-b-f4n0zhsqel {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ── RESPONSIVE: TABLET ── */
@media (max-width: 900px) {
    .featured-post[b-f4n0zhsqel] {
        grid-template-columns: 1fr;
    }
    .featured-img[b-f4n0zhsqel] { min-height: 220px; }
    .featured-img-overlay[b-f4n0zhsqel] {
        background: linear-gradient(to bottom, transparent 40%, var(--card, #ffffff));
    }
    .featured-content[b-f4n0zhsqel] { padding: 24px; }

    .blog-post-grid[b-f4n0zhsqel] {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .newsletter-banner[b-f4n0zhsqel] { padding: 32px 24px; }

    .blog-page-header[b-f4n0zhsqel] { padding: 40px 24px; }
    [b-f4n0zhsqel] .blog-page-header h1 { font-size: 1.8rem; }
}

/* ── RESPONSIVE: MOBILE ── */
@media (max-width: 600px) {
    .blog-page-header[b-f4n0zhsqel] { padding: 32px 16px; }
    [b-f4n0zhsqel] .blog-page-header h1 { font-size: 1.5rem; }
    [b-f4n0zhsqel] .blog-page-header p { font-size: 0.95rem; }

    .blog-container[b-f4n0zhsqel] { padding: 0 16px; }
    .blog-section[b-f4n0zhsqel] { padding: 24px 0; }

    .featured-post[b-f4n0zhsqel] { grid-template-columns: 1fr; }
    .featured-img[b-f4n0zhsqel] { min-height: 180px; }
    .featured-content[b-f4n0zhsqel] { padding: 20px; }
    .featured-title[b-f4n0zhsqel] { font-size: 1.2rem; }
    .featured-excerpt[b-f4n0zhsqel] { font-size: 0.88rem; }

    .category-pills[b-f4n0zhsqel] {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }

    .blog-post-grid[b-f4n0zhsqel] {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .post-card-img[b-f4n0zhsqel] { height: 160px; }

    .newsletter-banner[b-f4n0zhsqel] { padding: 28px 16px; }
    [b-f4n0zhsqel] .newsletter-banner h2 { font-size: 1.25rem; }
    .newsletter-form[b-f4n0zhsqel] {
        flex-direction: column;
        gap: 10px;
    }
    .newsletter-form input[b-f4n0zhsqel],
    .newsletter-form button[b-f4n0zhsqel] {
        width: 100%;
    }

    .blog-pagination[b-f4n0zhsqel] { flex-wrap: wrap; justify-content: center; gap: 6px; }
}
/* /Components/Pages/BlogPost.razor.rz.scp.css */
/* ── Blog Post Detail Page — Light Theme ── */

/* CONTAINER */
.blogpost-container[b-zns1kvr6bx] {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

/* TWO-COLUMN LAYOUT */
.blogpost-layout[b-zns1kvr6bx] {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    padding: 40px 0 60px;
    align-items: start;
}

/* ── ARTICLE COLUMN ── */
.blogpost-article[b-zns1kvr6bx] {
    min-width: 0;
}

/* Breadcrumb */
.breadcrumb[b-zns1kvr6bx] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-muted, #5a7a5c);
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.breadcrumb a[b-zns1kvr6bx] {
    color: var(--brand-green, #3a7d44);
    text-decoration: none;
    transition: color 0.15s;
}
.breadcrumb a:hover[b-zns1kvr6bx] {
    color: var(--brand-green-dark, #2d6435);
    text-decoration: underline;
}
.breadcrumb .sep[b-zns1kvr6bx] {
    color: var(--text-light, #8a9f8b);
}
.breadcrumb .current[b-zns1kvr6bx] {
    color: var(--text-muted, #5a7a5c);
}

/* Badge */
.blog-badge[b-zns1kvr6bx] {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 14px;
}
.blog-badge-green[b-zns1kvr6bx] {
    background: var(--brand-green-pale, #e8f5e9);
    color: var(--brand-green, #3a7d44);
}

/* Post title */
[b-zns1kvr6bx] .post-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    color: var(--text, #2c3e2d);
}

/* Author bar */
.author-bar[b-zns1kvr6bx] {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 0;
    border-top: 1px solid var(--border, #ddd8c4);
    border-bottom: 1px solid var(--border, #ddd8c4);
    margin-bottom: 28px;
}
.author-avatar[b-zns1kvr6bx] {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.92rem;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
}
.author-name[b-zns1kvr6bx] {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text, #2c3e2d);
    margin-bottom: 3px;
}
.author-meta[b-zns1kvr6bx] {
    font-size: 0.82rem;
    color: var(--text-muted, #5a7a5c);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Hero image */
.hero-image[b-zns1kvr6bx] {
    width: 100%;
    border-radius: var(--radius-md, 10px);
    margin-bottom: 32px;
    overflow: hidden;
    background: var(--surface, #f4f1e8);
}
.hero-image img[b-zns1kvr6bx] {
    width: 100%;
    height: auto;
    display: block;
    max-height: 480px;
    object-fit: cover;
}

/* ── ARTICLE BODY TYPOGRAPHY ── */
[b-zns1kvr6bx] .article-body {
    line-height: 1.8;
    font-size: 1.05rem;
    color: var(--text, #2c3e2d);
}
[b-zns1kvr6bx] .article-body h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text, #2c3e2d);
    margin: 36px 0 14px;
    padding-top: 8px;
    border-top: 1px solid var(--border-light, #ece8d8);
}
[b-zns1kvr6bx] .article-body h2:first-child {
    margin-top: 0;
    border-top: none;
}
[b-zns1kvr6bx] .article-body h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text, #2c3e2d);
    margin: 24px 0 10px;
}
[b-zns1kvr6bx] .article-body p {
    margin-bottom: 18px;
    color: var(--text, #2c3e2d);
}
[b-zns1kvr6bx] .article-body strong {
    color: var(--text, #2c3e2d);
    font-weight: 700;
}
[b-zns1kvr6bx] .article-body a {
    color: var(--brand-green, #3a7d44);
    text-decoration: underline;
    text-underline-offset: 2px;
}
[b-zns1kvr6bx] .article-body a:hover {
    color: var(--brand-green-dark, #2d6435);
}
[b-zns1kvr6bx] .article-body ul,
[b-zns1kvr6bx] .article-body ol {
    margin: 0 0 18px 20px;
    line-height: 1.9;
    font-size: 0.95rem;
    color: var(--text, #2c3e2d);
}
[b-zns1kvr6bx] .article-body ul { list-style: disc; }
[b-zns1kvr6bx] .article-body ol { list-style: decimal; }
[b-zns1kvr6bx] .article-body li {
    margin-bottom: 4px;
}
[b-zns1kvr6bx] .article-body blockquote {
    border-left: 4px solid var(--brand-green, #3a7d44);
    padding: 16px 20px;
    margin: 20px 0;
    background: var(--brand-green-pale, #e8f5e9);
    border-radius: 0 var(--radius-sm, 6px) var(--radius-sm, 6px) 0;
    font-style: italic;
    color: var(--text-muted, #5a7a5c);
}
[b-zns1kvr6bx] .article-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-sm, 6px);
    margin: 16px 0;
}
[b-zns1kvr6bx] .article-body pre {
    background: var(--surface, #f4f1e8);
    border: 1px solid var(--border, #ddd8c4);
    border-radius: var(--radius-sm, 6px);
    padding: 16px;
    overflow-x: auto;
    font-size: 0.88rem;
    margin: 16px 0;
}
[b-zns1kvr6bx] .article-body code {
    background: var(--surface, #f4f1e8);
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.88em;
}
/* Tip box (from migrated WP content) */
[b-zns1kvr6bx] .article-body .tip-box,
[b-zns1kvr6bx] .article-body .wp-block-quote,
[b-zns1kvr6bx] .article-body .callout {
    background: var(--brand-green-pale, #e8f5e9);
    border: 1px solid var(--brand-green-mist, #c8e6c9);
    border-left: 4px solid var(--brand-green, #3a7d44);
    border-radius: var(--radius-sm, 6px);
    padding: 16px 18px;
    margin: 20px 0;
    font-size: 0.88rem;
    color: var(--text-muted, #5a7a5c);
    line-height: 1.7;
}
[b-zns1kvr6bx] .article-body .tip-box strong {
    color: var(--brand-green, #3a7d44);
    display: block;
    margin-bottom: 4px;
}
[b-zns1kvr6bx] .article-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 0.92rem;
}
[b-zns1kvr6bx] .article-body th,
[b-zns1kvr6bx] .article-body td {
    border: 1px solid var(--border, #ddd8c4);
    padding: 10px 14px;
    text-align: left;
}
[b-zns1kvr6bx] .article-body th {
    background: var(--surface, #f4f1e8);
    font-weight: 600;
}
[b-zns1kvr6bx] .article-body figure {
    margin: 20px 0;
}
[b-zns1kvr6bx] .article-body figcaption {
    font-size: 0.82rem;
    color: var(--text-muted, #5a7a5c);
    text-align: center;
    margin-top: 8px;
}

/* ── POST TAGS ── */
.post-tags[b-zns1kvr6bx] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 32px 0;
    padding-top: 24px;
    border-top: 1px solid var(--border, #ddd8c4);
}
.tag[b-zns1kvr6bx] {
    background: var(--tag-bg, #e8f5e9);
    color: var(--tag-text, #2d6435);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.15s;
    border: 1px solid var(--border, #ddd8c4);
}
.tag:hover[b-zns1kvr6bx] {
    color: var(--brand-green, #3a7d44);
    border-color: var(--brand-green, #3a7d44);
    background: var(--brand-green-pale, #e8f5e9);
}

/* ── AUTHOR BIO ── */
.author-bio[b-zns1kvr6bx] {
    background: var(--card, #ffffff);
    border: 1px solid var(--border, #ddd8c4);
    border-radius: var(--radius-md, 10px);
    padding: 24px;
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}
.author-bio-avatar[b-zns1kvr6bx] {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
}
[b-zns1kvr6bx] .author-bio-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--text, #2c3e2d);
}
.author-bio-role[b-zns1kvr6bx] {
    font-size: 0.82rem;
    color: var(--brand-green, #3a7d44);
    margin-bottom: 8px;
    font-weight: 500;
}
[b-zns1kvr6bx] .author-bio-content p {
    font-size: 0.88rem;
    color: var(--text-muted, #5a7a5c);
    line-height: 1.6;
    margin: 0;
}

/* ── SHARE BUTTONS ── */
.share-section[b-zns1kvr6bx] {
    padding: 20px 0;
    border-top: 1px solid var(--border, #ddd8c4);
}
[b-zns1kvr6bx] .share-section h4 {
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-muted, #5a7a5c);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.share-buttons[b-zns1kvr6bx] {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.share-btn[b-zns1kvr6bx] {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    border-radius: var(--radius-sm, 6px);
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid var(--border, #ddd8c4);
    background: var(--card, #ffffff);
    color: var(--text, #2c3e2d);
    transition: all 0.15s;
    text-decoration: none;
    font-family: inherit;
}
.share-btn:hover[b-zns1kvr6bx] {
    border-color: var(--brand-green, #3a7d44);
    color: var(--brand-green, #3a7d44);
}

/* Back link */
.blogpost-back[b-zns1kvr6bx] {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--border, #ddd8c4);
}
.btn-back[b-zns1kvr6bx] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: var(--radius-sm, 6px);
    border: 1px solid var(--border, #ddd8c4);
    background: var(--card, #ffffff);
    color: var(--text, #2c3e2d);
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.15s;
}
.btn-back:hover[b-zns1kvr6bx] {
    border-color: var(--brand-green, #3a7d44);
    color: var(--brand-green, #3a7d44);
}

/* ── SIDEBAR ── */
.blogpost-sidebar[b-zns1kvr6bx] {
    position: sticky;
    top: calc(var(--nav-height, 70px) + 16px);
}

.sidebar-widget[b-zns1kvr6bx] {
    background: var(--card, #ffffff);
    border: 1px solid var(--border, #ddd8c4);
    border-radius: var(--radius-md, 10px);
    padding: 20px;
    margin-bottom: 20px;
}

.sidebar-ad[b-zns1kvr6bx] {
    padding: 0;
    border: none;
    background: transparent;
}

.widget-title[b-zns1kvr6bx] {
    font-family: 'Nunito', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted, #5a7a5c);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light, #ece8d8);
}

/* Table of Contents */
.toc-list[b-zns1kvr6bx] {
    list-style: none;
    padding: 0;
    margin: 0;
}
.toc-list li[b-zns1kvr6bx] {
    margin-bottom: 2px;
}
.toc-list a[b-zns1kvr6bx] {
    display: block;
    padding: 7px 10px;
    color: var(--text-muted, #5a7a5c);
    text-decoration: none;
    font-size: 0.82rem;
    border-radius: var(--radius-sm, 6px);
    transition: all 0.15s;
    border-left: 2px solid transparent;
    line-height: 1.4;
}
.toc-list a:hover[b-zns1kvr6bx] {
    color: var(--text, #2c3e2d);
    background: var(--surface, #f4f1e8);
    border-left-color: var(--brand-green, #3a7d44);
}

/* Related posts */
.related-post[b-zns1kvr6bx] {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-light, #ece8d8);
    text-decoration: none;
    color: inherit;
    transition: opacity 0.15s;
}
.related-post:last-child[b-zns1kvr6bx] {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.related-post:hover[b-zns1kvr6bx] {
    opacity: 0.8;
}
.related-thumb[b-zns1kvr6bx] {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm, 6px);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.related-thumb img[b-zns1kvr6bx] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.related-post-title[b-zns1kvr6bx] {
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 4px;
    color: var(--text, #2c3e2d);
}
.related-post-meta[b-zns1kvr6bx] {
    font-size: 0.7rem;
    color: var(--text-muted, #5a7a5c);
}

/* Newsletter widget */
[b-zns1kvr6bx] .newsletter-widget p {
    font-size: 0.82rem;
    color: var(--text-muted, #5a7a5c);
    margin-bottom: 12px;
    line-height: 1.5;
}
.newsletter-widget input[b-zns1kvr6bx] {
    width: 100%;
    background: var(--surface, #f4f1e8);
    border: 1px solid var(--border, #ddd8c4);
    border-radius: var(--radius-sm, 6px);
    padding: 9px 12px;
    color: var(--text, #2c3e2d);
    font-size: 0.82rem;
    font-family: inherit;
    outline: none;
    margin-bottom: 10px;
    box-sizing: border-box;
}
.newsletter-widget input:focus[b-zns1kvr6bx] {
    border-color: var(--brand-green, #3a7d44);
    box-shadow: 0 0 0 3px rgba(58, 125, 68, 0.12);
}
.newsletter-widget button[b-zns1kvr6bx] {
    width: 100%;
    background: var(--brand-green, #3a7d44);
    color: #ffffff;
    border: none;
    padding: 10px;
    border-radius: var(--radius-sm, 6px);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s;
}
.newsletter-widget button:hover[b-zns1kvr6bx] {
    background: var(--brand-green-dark, #2d6435);
}

/* ── NOT FOUND ── */
.blogpost-not-found[b-zns1kvr6bx] {
    text-align: center;
    padding: 80px 0;
}
[b-zns1kvr6bx] .blogpost-not-found h1 {
    font-size: 2rem;
    margin: 16px 0 12px;
    color: var(--text, #2c3e2d);
}
[b-zns1kvr6bx] .blogpost-not-found p {
    color: var(--text-muted, #5a7a5c);
    margin-bottom: 24px;
}

/* ── SKELETON LOADING ── */
.skeleton-pulse[b-zns1kvr6bx] {
    background: linear-gradient(90deg, var(--surface, #f4f1e8) 25%, var(--border-light, #ece8d8) 50%, var(--surface, #f4f1e8) 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer-b-zns1kvr6bx 1.5s infinite;
    border-radius: var(--radius-sm, 6px);
}
@keyframes skeleton-shimmer-b-zns1kvr6bx {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ── RESPONSIVE: TABLET ── */
@media (max-width: 900px) {
    .blogpost-layout[b-zns1kvr6bx] {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .blogpost-sidebar[b-zns1kvr6bx] {
        position: static;
        top: auto;
    }
}

/* ── RESPONSIVE: MOBILE ── */
@media (max-width: 600px) {
    .blogpost-container[b-zns1kvr6bx] { padding: 0 16px; }

    .blogpost-layout[b-zns1kvr6bx] {
        grid-template-columns: 1fr;
        padding: 20px 0 40px;
        gap: 20px;
    }

    .blogpost-sidebar[b-zns1kvr6bx] {
        position: static;
        top: auto;
    }

    [b-zns1kvr6bx] .post-title {
        font-size: 1.5rem;
    }
    [b-zns1kvr6bx] .article-body {
        font-size: 0.95rem;
    }
    [b-zns1kvr6bx] .article-body h2 {
        font-size: 1.15rem;
    }
    [b-zns1kvr6bx] .article-body h3 {
        font-size: 1rem;
    }

    .author-bio[b-zns1kvr6bx] {
        flex-direction: column;
        gap: 12px;
        padding: 18px;
    }

    .share-buttons[b-zns1kvr6bx] { flex-wrap: wrap; }

    .post-tags[b-zns1kvr6bx] { gap: 8px; }
}
/* /Components/Pages/Book.razor.rz.scp.css */
/* ── Book Page — CampgroundViews Spot2Nite Booking ── */

/* ── Loading Skeleton ── */
.book-hero-skeleton[b-5e77p8djaw] {
    height: 200px;
    background: linear-gradient(160deg, #e8f5e9 0%, #f4f1e8 40%, #dcedc8 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px 24px;
}
.skeleton[b-5e77p8djaw] {
    background: linear-gradient(90deg, var(--surface) 25%, var(--border-light) 50%, var(--surface) 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer-b-5e77p8djaw 1.5s infinite;
    border-radius: var(--radius-sm);
}
.skeleton-title[b-5e77p8djaw] { height: 32px; }
.skeleton-text[b-5e77p8djaw] { height: 18px; }
.skeleton-block[b-5e77p8djaw] { height: 120px; width: 100%; }
@keyframes skeleton-shimmer-b-5e77p8djaw {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* ── Fallback (Not Bookable) ── */
.book-fallback[b-5e77p8djaw] {
    max-width: 560px;
    margin: 0 auto;
    padding: 80px 24px;
    text-align: center;
}
.book-fallback-icon[b-5e77p8djaw] {
    font-size: 3rem;
    margin-bottom: 16px;
}
.book-fallback-title[b-5e77p8djaw] {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.book-fallback-text[b-5e77p8djaw] {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}
.book-fallback-actions[b-5e77p8djaw] {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Park Header ── */
.book-header[b-5e77p8djaw] {
    position: relative;
    height: 260px;
    background: linear-gradient(160deg, #e8f5e9 0%, #f4f1e8 40%, #dcedc8 100%);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.book-header-overlay[b-5e77p8djaw] {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(44,62,45,0.88) 0%, rgba(44,62,45,0.3) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
}
.book-header-inner[b-5e77p8djaw] {
    max-width: 1160px;
    width: 100%;
    margin: 0 auto;
    padding: 24px 24px;
}
.book-header-name[b-5e77p8djaw] {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    line-height: 1.2;
}
.book-header-location[b-5e77p8djaw] {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.85);
    font-size: 0.88rem;
    margin-bottom: 6px;
}
.book-header-rating[b-5e77p8djaw] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    margin-bottom: 8px;
}
.book-header-stars[b-5e77p8djaw] {
    color: var(--gold);
    font-weight: 600;
}
.book-header-dates[b-5e77p8djaw] {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    font-weight: 600;
}
.book-header-nights[b-5e77p8djaw] {
    color: rgba(255,255,255,0.65);
    font-weight: 400;
}

/* ── Step Progress Indicator ── */
.book-progress[b-5e77p8djaw] {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 14px 24px;
}
.book-progress-inner[b-5e77p8djaw] {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0;
}
.book-progress-step[b-5e77p8djaw] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}
.book-progress-dot[b-5e77p8djaw] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--border);
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, color 0.3s;
}
.book-progress-step[data-step].active .book-progress-dot[b-5e77p8djaw],
[b-5e77p8djaw] [data-step].active .book-progress-dot {
    background: var(--brand-green);
    color: #ffffff;
}
.book-progress-step[data-step].completed .book-progress-dot[b-5e77p8djaw],
[b-5e77p8djaw] [data-step].completed .book-progress-dot {
    background: var(--brand-green-dark);
    color: #ffffff;
}
.book-progress-label[b-5e77p8djaw] {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text-dim);
    white-space: nowrap;
}
.book-progress-line[b-5e77p8djaw] {
    flex: 1;
    height: 2px;
    background: var(--border);
    margin: 0 6px;
    margin-bottom: 20px;
    transition: background 0.3s;
}
[b-5e77p8djaw] .book-progress-line.completed {
    background: var(--brand-green);
}

/* ── Two-Column Layout ── */
.book-layout[b-5e77p8djaw] {
    max-width: 1160px;
    margin: 0 auto;
    padding: var(--sp-xl) var(--sp-lg);
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
    align-items: start;
}

/* ── Book Flow (left column) ── */
.book-flow[b-5e77p8djaw] {
    display: flex;
    flex-direction: column;
    gap: var(--sp-lg);
}
.book-step[b-5e77p8djaw] {
    display: none;
    background: var(--card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--sp-lg);
}
.book-step.active[b-5e77p8djaw] {
    display: block;
}
.book-step h2[b-5e77p8djaw] {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: var(--sp-lg);
    color: var(--text);
}

/* ── Spot Categories & Cards ── */
.spot-category[b-5e77p8djaw] {
    margin-bottom: var(--sp-lg);
}
.spot-category:last-child[b-5e77p8djaw] {
    margin-bottom: 0;
}
.spot-category h3[b-5e77p8djaw] {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text);
}
.spot-category-meta[b-5e77p8djaw] {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.spot-grid[b-5e77p8djaw] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
}
.spot-card[b-5e77p8djaw] {
    background: var(--surface);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 14px 12px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s, transform 0.15s;
    min-height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.spot-card:hover[b-5e77p8djaw] {
    border-color: var(--brand-green-mist);
    background: var(--brand-green-pale);
    transform: translateY(-1px);
}
.spot-card.selected[b-5e77p8djaw] {
    border-color: var(--brand-green);
    background: var(--brand-green-pale);
    box-shadow: 0 0 0 3px rgba(58,125,68,0.18);
}
.spot-name[b-5e77p8djaw] {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text);
}
.spot-price[b-5e77p8djaw] {
    font-size: 0.78rem;
    color: var(--brand-green);
    font-weight: 600;
}

/* ── No Spots Available ── */
.book-no-spots[b-5e77p8djaw] {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
}
.book-no-spots-icon[b-5e77p8djaw] {
    font-size: 2.5rem;
    margin-bottom: 12px;
}
.book-no-spots h3[b-5e77p8djaw] {
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}
.book-no-spots p[b-5e77p8djaw] {
    font-size: 0.9rem;
    margin-bottom: 16px;
}

/* ── Guest Inputs ── */
.guest-inputs[b-5e77p8djaw] {
    margin-bottom: var(--sp-lg);
}
.guest-row[b-5e77p8djaw] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}
.guest-row:last-child[b-5e77p8djaw] {
    border-bottom: none;
}
.guest-row label[b-5e77p8djaw] {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
}
.guest-counter[b-5e77p8djaw] {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.guest-counter button[b-5e77p8djaw] {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 600;
    transition: background 0.15s;
    cursor: pointer;
    border: none;
}
.guest-counter button:hover[b-5e77p8djaw] {
    background: var(--brand-green-pale);
}
.guest-counter span[b-5e77p8djaw] {
    min-width: 40px;
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text);
}

/* ── Gates (Login / Profile) ── */
.book-gate-box[b-5e77p8djaw] {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--sp-lg);
    margin-bottom: var(--sp-md);
}
.book-gate-box p[b-5e77p8djaw] {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}
.book-profile-fields[b-5e77p8djaw] {
    margin-top: 12px;
}

/* ── Continue Button ── */
.book-continue-btn[b-5e77p8djaw] {
    width: 100%;
    margin-top: var(--sp-md);
}

/* ── Terms Checkbox ── */
.book-terms[b-5e77p8djaw] {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: var(--sp-md);
    cursor: pointer;
}
.book-terms input[type="checkbox"][b-5e77p8djaw] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    accent-color: var(--brand-green);
    flex-shrink: 0;
}
.book-terms a[b-5e77p8djaw] {
    color: var(--sky);
    text-decoration: underline;
}
.book-terms a:hover[b-5e77p8djaw] {
    color: var(--brand-green);
}

/* ── Payment Container ── */
.book-payment-container[b-5e77p8djaw] {
    min-height: 300px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: var(--sp-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Confirmation ── */
.book-confirmation[b-5e77p8djaw] {
    background: var(--brand-green-pale);
    border: 1px solid var(--brand-green-mist);
    border-radius: var(--radius-md);
    padding: var(--sp-lg);
    margin-bottom: var(--sp-lg);
}
.book-confirmation-actions[b-5e77p8djaw] {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ── Summary Sidebar (right column) ── */
.book-summary[b-5e77p8djaw] {
    position: sticky;
    top: calc(var(--nav-height) + 16px);
}
.book-summary-card[b-5e77p8djaw] {
    background: var(--card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.book-summary-img[b-5e77p8djaw] {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.book-summary-img-placeholder[b-5e77p8djaw] {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, var(--brand-green-mist), var(--surface));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}
.book-summary-body[b-5e77p8djaw] {
    padding: 18px;
}
.book-summary-name[b-5e77p8djaw] {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.book-summary-location[b-5e77p8djaw] {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.book-summary-body hr[b-5e77p8djaw] {
    border: none;
    border-top: 1px solid var(--border-light);
    margin: 14px 0;
}

/* ── Summary Dates ── */
.summary-dates[b-5e77p8djaw] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.summary-date-row[b-5e77p8djaw] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}
.summary-date-label[b-5e77p8djaw] {
    color: var(--text-dim);
}

/* ── Summary Detail Rows ── */
.summary-detail-row[b-5e77p8djaw] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.summary-detail-row:last-child[b-5e77p8djaw] {
    margin-bottom: 0;
}
.summary-total[b-5e77p8djaw] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    padding-top: 10px;
    margin-top: 8px;
    border-top: 2px solid var(--border);
}

/* ══════════════════════════════════════════
   RESPONSIVE: Tablet (900px)
   ══════════════════════════════════════════ */
@media (max-width: 900px) {
    .book-header[b-5e77p8djaw] { height: 220px; }
    .book-header-name[b-5e77p8djaw] { font-size: 1.5rem; }
    .book-layout[b-5e77p8djaw] {
        grid-template-columns: 1fr 300px;
        gap: 20px;
        padding: var(--sp-lg) var(--sp-md);
    }
    .book-progress-label[b-5e77p8djaw] { font-size: 0.62rem; }
    .book-progress-dot[b-5e77p8djaw] { width: 28px; height: 28px; font-size: 0.72rem; }
}

/* ══════════════════════════════════════════
   RESPONSIVE: Mobile (600px)
   ══════════════════════════════════════════ */
@media (max-width: 600px) {
    .book-header[b-5e77p8djaw] { height: 180px; }
    .book-header-name[b-5e77p8djaw] { font-size: 1.25rem; }
    .book-header-location[b-5e77p8djaw] { font-size: 0.8rem; }
    .book-header-dates[b-5e77p8djaw] { font-size: 0.82rem; flex-wrap: wrap; }

    .book-progress-inner[b-5e77p8djaw] {
        gap: 0;
    }
    .book-progress-label[b-5e77p8djaw] {
        display: none;
    }
    .book-progress-dot[b-5e77p8djaw] {
        width: 26px;
        height: 26px;
        font-size: 0.7rem;
    }
    .book-progress-line[b-5e77p8djaw] {
        margin-bottom: 0;
    }

    .book-layout[b-5e77p8djaw] {
        grid-template-columns: 1fr;
        padding: var(--sp-md);
        gap: 20px;
    }
    /* Summary on top on mobile */
    .book-summary[b-5e77p8djaw] {
        position: static;
        order: -1;
    }

    .book-step[b-5e77p8djaw] {
        padding: var(--sp-md);
    }

    .spot-grid[b-5e77p8djaw] {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
        gap: 8px;
    }
    .spot-card[b-5e77p8djaw] {
        padding: 10px 8px;
        min-height: 60px;
    }

    .guest-counter button[b-5e77p8djaw] {
        width: 36px;
        height: 36px;
    }
    .guest-counter span[b-5e77p8djaw] {
        min-width: 36px;
    }

    .book-fallback[b-5e77p8djaw] {
        padding: 48px 16px;
    }
    .book-fallback-title[b-5e77p8djaw] {
        font-size: 1.3rem;
    }

    .book-confirmation-actions[b-5e77p8djaw] {
        flex-direction: column;
    }
    .book-confirmation-actions .btn[b-5e77p8djaw] {
        width: 100%;
    }
}
/* /Components/Pages/Campground.razor.rz.scp.css */
/* ── Hero ── */
.hero[b-2hjpti3dwo] {
    position: relative;
    height: 380px;
    background: linear-gradient(160deg, #e8f5e9 0%, #f4f1e8 40%, #dcedc8 100%);
    overflow: hidden;
}
.hero[b-2hjpti3dwo]::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(58,125,68,0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(212,129,58,0.06) 0%, transparent 60%);
}
.hero-back[b-2hjpti3dwo] {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(44,62,45,0.7);
    border-radius: var(--radius-sm);
    padding: 7px 12px;
    font-size: 0.82rem;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(4px);
    transition: background 0.2s;
    z-index: 1;
    text-decoration: none;
}
.hero-back:hover[b-2hjpti3dwo] { background: rgba(44,62,45,0.85); }
.hero-photo-count[b-2hjpti3dwo] {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(44,62,45,0.7);
    border-radius: var(--radius-sm);
    padding: 7px 12px;
    font-size: 0.82rem;
    color: #ffffff;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 1;
}
.hero-info[b-2hjpti3dwo] {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 48px 28px 24px;
    background: linear-gradient(0deg, rgba(44,62,45,0.88) 0%, transparent 100%);
}
.hero-info-inner[b-2hjpti3dwo] { max-width: 1160px; margin: 0 auto; }
.hero-name[b-2hjpti3dwo] {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
    line-height: 1.2;
}
.hero-location[b-2hjpti3dwo] {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    margin-bottom: 8px;
}
.hero-rating[b-2hjpti3dwo] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
}
.hero-stars[b-2hjpti3dwo] { color: var(--gold); font-weight: 600; }
.hero-reviews[b-2hjpti3dwo] { color: rgba(255,255,255,0.75); }

/* ── Engagement Bar (unified actions + community CTAs) ── */
.engagement-bar[b-2hjpti3dwo] {
    background: linear-gradient(135deg, #e8f5e9 0%, #fff8e1 50%, #e3f2fd 100%);
    border-bottom: 2px solid var(--brand-green-mist, #c8e6c9);
}
.engagement-bar-inner[b-2hjpti3dwo] {
    max-width: 1160px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.engage-group[b-2hjpti3dwo] {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.engage-community[b-2hjpti3dwo] {
    margin-left: auto;
}
.engage-btn[b-2hjpti3dwo] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.88rem;
    font-family: inherit;
    padding: 9px 18px;
    border-radius: 8px;
    transition: all 0.15s;
    white-space: nowrap;
    min-height: 42px;
    text-decoration: none;
    border: 1px solid var(--border, #e0ddd4);
    background: var(--card, #fff);
    color: var(--text);
    cursor: pointer;
}
.engage-btn:hover[b-2hjpti3dwo] {
    background: var(--brand-green-pale, #e8f5e9);
    border-color: var(--brand-green, #3a7d44);
}
.engage-primary[b-2hjpti3dwo] {
    background: var(--brand-green, #3a7d44);
    color: #fff;
    border-color: var(--brand-green, #3a7d44);
}
.engage-primary:hover[b-2hjpti3dwo] {
    background: var(--brand-green-dark, #2d6234);
    color: #fff;
}
.engage-highlight[b-2hjpti3dwo] {
    background: var(--brand-green, #3a7d44);
    color: #fff;
    border-color: var(--brand-green, #3a7d44);
    font-weight: 700;
}
.engage-highlight:hover[b-2hjpti3dwo] {
    background: var(--brand-green-dark, #2d6234);
    color: #fff;
}
@media (max-width: 900px) {
    .engage-community[b-2hjpti3dwo] { margin-left: 0; }
}
@media (max-width: 600px) {
    .engagement-bar-inner[b-2hjpti3dwo] {
        gap: 6px;
    }
    .engage-btn[b-2hjpti3dwo] {
        padding: 8px 12px;
        font-size: 0.82rem;
        flex: 1 1 calc(50% - 4px);
        justify-content: center;
    }
    .engage-community[b-2hjpti3dwo] {
        width: 100%;
        border-top: 1px solid var(--border, #e0ddd4);
        padding-top: 8px;
        margin-top: 4px;
    }
}

/* ── Main Content Grid ── */
.main-content[b-2hjpti3dwo] {
    max-width: 1160px;
    margin: 0 auto;
    padding: var(--sp-xl) var(--sp-lg);
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
    align-items: start;
}
.left-col[b-2hjpti3dwo] { display: flex; flex-direction: column; gap: var(--sp-lg); }

/* ── Tour Spotlight ── */
.tour-spotlight[b-2hjpti3dwo] {
    background: var(--card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.tour-spotlight-visual[b-2hjpti3dwo] {
    height: 200px;
    background: linear-gradient(135deg, #3a6a48 0%, #4a8a5a 50%, #2a5a3a 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.tour-play-btn[b-2hjpti3dwo] {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(58,125,68,0.25);
    border: 3px solid var(--brand-green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #ffffff;
    transition: background 0.2s, transform 0.2s;
}
.tour-spotlight-visual:hover .tour-play-btn[b-2hjpti3dwo] {
    background: rgba(58,125,68,0.45);
    transform: scale(1.05);
}
.tour-360-badge[b-2hjpti3dwo] {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(58,125,68,0.15);
    border: 1px solid var(--brand-green-light);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
}
.tour-spotlight-body[b-2hjpti3dwo] { padding: 20px 24px; }
.tour-spotlight-title[b-2hjpti3dwo] {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.tour-spotlight-desc[b-2hjpti3dwo] {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 16px;
}
.btn-tour-launch[b-2hjpti3dwo] {
    background: var(--brand-green);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
    text-decoration: none;
}
.btn-tour-launch:hover[b-2hjpti3dwo] { background: var(--brand-green-dark); }

/* ── Card Title (page-specific) ── */
.card-title[b-2hjpti3dwo] {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: var(--sp-md);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ── Availability ── */
.avail-dates[b-2hjpti3dwo] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
}
.avail-label[b-2hjpti3dwo] {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-dim);
    margin-bottom: 4px;
}
.avail-input[b-2hjpti3dwo] {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 9px 12px;
    color: var(--text);
    font-size: 0.85rem;
    font-family: inherit;
    width: 100%;
    min-height: 44px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.avail-input:focus[b-2hjpti3dwo] {
    border-color: var(--brand-green);
    outline: none;
    box-shadow: 0 0 0 3px rgba(58,125,68,0.15);
}
.avail-check-btn[b-2hjpti3dwo] {
    width: 100%;
    background: var(--brand-green);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 11px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    margin-bottom: 16px;
    transition: background 0.2s;
    min-height: 44px;
}
.avail-check-btn:hover[b-2hjpti3dwo] { background: var(--brand-green-dark); }

/* ── Amenity Pills ── */
.amenity-grid[b-2hjpti3dwo] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.amenity-pill[b-2hjpti3dwo] {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--tag-bg);
    border: 1px solid var(--brand-green-mist);
    border-radius: 100px;
    padding: 7px 14px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--tag-text);
    transition: border-color 0.2s;
}
.amenity-pill:hover[b-2hjpti3dwo] { border-color: var(--brand-green); }

/* ── About ── */
.about-text[b-2hjpti3dwo] {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.75;
}
.about-text[b-2hjpti3dwo]  p { margin-bottom: 12px; }
.about-text[b-2hjpti3dwo]  p:last-child { margin-bottom: 0; }

/* ── Reviews ── */
.review-card[b-2hjpti3dwo] {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: var(--sp-md);
    margin-bottom: 12px;
}
.review-card:last-child[b-2hjpti3dwo] { margin-bottom: 0; }
.review-header[b-2hjpti3dwo] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}
.review-avatar[b-2hjpti3dwo] {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
}
.av-blue[b-2hjpti3dwo] { background: #3a6aaa; }
.av-green[b-2hjpti3dwo] { background: #2a8a5a; }
.av-purple[b-2hjpti3dwo] { background: #6a3a9a; }
.review-meta[b-2hjpti3dwo] { flex: 1; }
.review-name[b-2hjpti3dwo] { font-weight: 700; font-size: 0.9rem; margin-bottom: 2px; }
.review-stars[b-2hjpti3dwo] { color: var(--gold); font-size: 0.8rem; }
.review-date[b-2hjpti3dwo] { color: var(--text-dim); font-size: 0.75rem; }
.review-text[b-2hjpti3dwo] { color: var(--text-muted); font-size: 0.87rem; line-height: 1.6; }
.review-count-dim[b-2hjpti3dwo] {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-dim);
}

/* ── Right Column / Sidebar ── */
.right-col[b-2hjpti3dwo] {
    position: sticky;
    top: calc(var(--nav-height) + 58px);
    display: flex;
    flex-direction: column;
    gap: var(--sp-md);
}
.sidebar-card[b-2hjpti3dwo] {
    background: var(--card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.sidebar-card-header[b-2hjpti3dwo] {
    padding: 14px 18px;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.95rem;
    font-weight: 700;
}
.sidebar-card-body[b-2hjpti3dwo] { padding: 14px 18px; }

/* ── Booking Card ── */
.booking-provider[b-2hjpti3dwo] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.provider-logo[b-2hjpti3dwo] {
    width: 36px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--sky-pale);
    border: 1px solid rgba(74,144,184,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.provider-name[b-2hjpti3dwo] { font-weight: 600; font-size: 0.9rem; }
.provider-type[b-2hjpti3dwo] { font-size: 0.75rem; color: var(--text-dim); }
.btn-book[b-2hjpti3dwo] {
    display: block;
    width: 100%;
    background: var(--sky);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px;
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    transition: background 0.2s;
    min-height: 44px;
    text-align: center;
    text-decoration: none;
}
.btn-book:hover[b-2hjpti3dwo] { background: #3a7a9e; }
.booking-disclaimer[b-2hjpti3dwo] {
    font-size: 0.7rem;
    color: var(--text-dim);
    line-height: 1.5;
}

/* ── Quick Info ── */
.info-row[b-2hjpti3dwo] {
    display: flex;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.83rem;
}
.info-row:last-child[b-2hjpti3dwo] { border-bottom: none; }
.info-label[b-2hjpti3dwo] { color: var(--text-dim); min-width: 90px; flex-shrink: 0; }
.info-value[b-2hjpti3dwo] { color: var(--text-muted); }
.info-value a[b-2hjpti3dwo] { color: var(--sky); text-decoration: none; }
.info-value a:hover[b-2hjpti3dwo] { text-decoration: underline; }

/* ── Loading Skeleton ── */
.skeleton[b-2hjpti3dwo] {
    background: linear-gradient(90deg, var(--surface) 25%, var(--border-light) 50%, var(--surface) 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer-b-2hjpti3dwo 1.5s infinite;
    border-radius: var(--radius-sm);
}
.skeleton-title[b-2hjpti3dwo] {
    height: 32px;
    width: 60%;
    margin-bottom: 12px;
}
.skeleton-text[b-2hjpti3dwo] {
    height: 18px;
    width: 40%;
}
.skeleton-block[b-2hjpti3dwo] {
    height: 120px;
    width: 100%;
}
@keyframes skeleton-shimmer-b-2hjpti3dwo {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* ── Responsive: Tablet (900px) ── */
@media (max-width: 900px) {
    .hero[b-2hjpti3dwo] { height: 300px; }
    .hero-name[b-2hjpti3dwo] { font-size: 1.6rem; }
    .main-content[b-2hjpti3dwo] {
        grid-template-columns: 1fr 300px;
        gap: 20px;
        padding: var(--sp-lg) var(--sp-md);
    }
}

/* ── Responsive: Mobile (600px) ── */
@media (max-width: 600px) {
    .hero[b-2hjpti3dwo] { height: 240px; }
    .hero-name[b-2hjpti3dwo] { font-size: 1.3rem; }
    .hero-location[b-2hjpti3dwo] { font-size: 0.82rem; }
    .hero-back[b-2hjpti3dwo],
    .hero-photo-count[b-2hjpti3dwo] { font-size: 0.78rem; padding: 6px 10px; }
    .main-content[b-2hjpti3dwo] {
        grid-template-columns: 1fr;
        padding: var(--sp-md);
        gap: 20px;
    }
    .right-col[b-2hjpti3dwo] { position: static; }
}

/* ── Photo Gallery Grid (below hero) ── */
[b-2hjpti3dwo] .photo-gallery-section {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

[b-2hjpti3dwo] .photo-gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 160px 160px;
    gap: 6px;
    border-radius: var(--radius, 8px);
    overflow: hidden;
    margin-bottom: 0;
}

[b-2hjpti3dwo] .photo-gallery-cell {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

[b-2hjpti3dwo] .photo-gallery-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

[b-2hjpti3dwo] .photo-gallery-cell:hover img {
    transform: scale(1.05);
}

[b-2hjpti3dwo] .photo-gallery-main {
    grid-row: 1 / 3;
}

[b-2hjpti3dwo] .photo-gallery-count-overlay {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(44, 62, 45, 0.8);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
    cursor: pointer;
}

[b-2hjpti3dwo] .photo-gallery-more {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface, #f4f1e8);
    color: var(--text-muted, #5a7a5c);
    font-weight: 600;
    font-size: 0.95rem;
}

[b-2hjpti3dwo] .photo-gallery-more:hover {
    background: var(--border, #e0ddd4);
}

@media (max-width: 600px) {
    [b-2hjpti3dwo] .photo-gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 120px;
    }
    [b-2hjpti3dwo] .photo-gallery-main {
        grid-column: 1 / 3;
        grid-row: 1;
    }
}

/* ── Photo Gallery Overlay ── */
[b-2hjpti3dwo] .gallery-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

[b-2hjpti3dwo] .gallery-container {
    max-width: 900px;
    width: 90%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

[b-2hjpti3dwo] .gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

[b-2hjpti3dwo] .gallery-header h2 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

[b-2hjpti3dwo] .gallery-close {
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px 14px;
    border-radius: 8px;
    transition: background 0.2s;
}
[b-2hjpti3dwo] .gallery-close:hover {
    background: rgba(255,255,255,0.3);
}

[b-2hjpti3dwo] .gallery-main {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    max-height: 70vh;
}

[b-2hjpti3dwo] .gallery-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 8px;
}

[b-2hjpti3dwo] .gallery-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: #fff;
    font-size: 0.9rem;
}

[b-2hjpti3dwo] .gallery-prev,
[b-2hjpti3dwo] .gallery-next {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    font-size: 1.2rem;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

[b-2hjpti3dwo] .gallery-prev:hover,
[b-2hjpti3dwo] .gallery-next:hover {
    background: rgba(255, 255, 255, 0.25);
}

[b-2hjpti3dwo] .gallery-thumbs {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    max-height: 80px;
    overflow: hidden;
}

[b-2hjpti3dwo] .gallery-thumb {
    width: 60px;
    height: 45px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.2s, border-color 0.2s;
    border: 2px solid transparent;
}

[b-2hjpti3dwo] .gallery-thumb.active {
    opacity: 1;
    border-color: var(--brand-green, #3a7d44);
}

[b-2hjpti3dwo] .gallery-thumb:hover {
    opacity: 0.8;
}

/* ── Gamification Nudge ── */

.stamp-nudge[b-2hjpti3dwo] {
    max-width: 1160px;
    margin: 0 auto;
    padding: 8px 24px 4px;
    text-align: center;
}

.stamp-nudge-text[b-2hjpti3dwo] {
    display: inline-block;
    font-size: 0.82rem;
    color: var(--text-muted);
    background: var(--brand-green-pale, #e8f5e9);
    padding: 6px 16px;
    border-radius: 20px;
    line-height: 1.4;
}

.stamp-nudge-text strong[b-2hjpti3dwo] {
    color: var(--brand-green);
}

.stamp-nudge-stamped[b-2hjpti3dwo] {
    color: var(--brand-green);
    font-weight: 500;
}

@media (max-width: 640px) {
    .stamp-nudge[b-2hjpti3dwo] {
        padding: 6px 16px 2px;
    }
    .stamp-nudge-text[b-2hjpti3dwo] {
        font-size: 0.78rem;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* Hero section — matches index.html prototype */
.hero[b-dmgyh79ss6] {
    min-height: calc(100vh - var(--nav-height, 72px));
    background: url('/images/hero-background.png') center center / cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
}

.hero[b-dmgyh79ss6]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.10) 70%, rgba(0,0,0,0.35) 100%);
    pointer-events: none;
}

.hero-eyebrow[b-dmgyh79ss6] {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
    position: relative;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

[b-dmgyh79ss6] .hero h1 {
    font-size: clamp(2rem, 5vw, 3.8rem);
    max-width: 760px;
    margin-bottom: 20px;
    position: relative;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

[b-dmgyh79ss6] .hero h1 span {
    color: #fff;
}

.hero-sub[b-dmgyh79ss6] {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9);
    max-width: 580px;
    margin-bottom: 32px;
    position: relative;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* ── Hero Search Bar ── */
.hero-search[b-dmgyh79ss6] {
    display: flex;
    align-items: flex-end;
    gap: 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(44,62,45,0.12);
    padding: 8px;
    margin-bottom: 40px;
    position: relative;
    max-width: 720px;
    width: 100%;
}
.hero-search-field[b-dmgyh79ss6] {
    flex: 1;
    padding: 8px 16px;
    border-right: 1px solid var(--border, #e0ddd4);
    min-width: 0;
}
.hero-search-field:last-of-type[b-dmgyh79ss6] {
    border-right: none;
}
.hero-search-field label[b-dmgyh79ss6] {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted, #5a7a5c);
    margin-bottom: 4px;
    text-align: left;
}
.hero-search-field input[b-dmgyh79ss6] {
    width: 100%;
    border: none;
    outline: none;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text, #2c3e2d);
    background: transparent;
    padding: 0;
}
.hero-search-field input[b-dmgyh79ss6]::placeholder {
    color: var(--text-muted, #aaa);
}
.hero-search-btn[b-dmgyh79ss6] {
    flex-shrink: 0;
    background: var(--brand-green, #3a7d44);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}
.hero-search-btn:hover[b-dmgyh79ss6] {
    background: var(--brand-green-dark, #2d6234);
}

/* ── Where field with autocomplete ── */
.hero-where-wrap[b-dmgyh79ss6] { position: relative; flex: 2; }
.hero-dates-wrap[b-dmgyh79ss6] { position: relative; flex: 1.2; cursor: pointer; }

/* ── Autocomplete Dropdown ── */
.hero-autocomplete[b-dmgyh79ss6] {
    display: none;
    position: absolute;
    top: 100%;
    left: -8px;
    right: -8px;
    background: #fff;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 32px rgba(44,62,45,0.15);
    z-index: 100;
    max-height: 360px;
    overflow-y: auto;
}
[b-dmgyh79ss6] .hero-ac-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    cursor: pointer;
    transition: background 0.1s;
}
[b-dmgyh79ss6] .hero-ac-item:hover, [b-dmgyh79ss6] .hero-ac-item.active {
    background: var(--brand-green-pale, #eef5e6);
}
[b-dmgyh79ss6] .hero-ac-icon { font-size: 1.2rem; flex-shrink: 0; }
[b-dmgyh79ss6] .hero-ac-name { font-weight: 600; font-size: 0.9rem; color: var(--text, #2c3e2d); }
[b-dmgyh79ss6] .hero-ac-sub { font-size: 0.78rem; color: var(--text-muted, #5a7a5c); }

/* ── Calendar ── */
.hero-calendar[b-dmgyh79ss6] {
    display: none;
    position: absolute;
    top: 100%;
    left: -8px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(44,62,45,0.18);
    z-index: 100;
    padding: 16px;
    width: 300px;
}
[b-dmgyh79ss6] .cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}
[b-dmgyh79ss6] .cal-title { font-weight: 700; font-size: 0.95rem; }
[b-dmgyh79ss6] .cal-nav {
    background: none;
    border: 1px solid var(--border, #e0ddd4);
    border-radius: 6px;
    width: 32px; height: 32px;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
}
[b-dmgyh79ss6] .cal-nav:hover { background: var(--brand-green-pale, #eef5e6); }
[b-dmgyh79ss6] .cal-hint {
    font-size: 0.75rem;
    color: var(--text-muted, #999);
    text-align: center;
    margin-bottom: 8px;
}
[b-dmgyh79ss6] .cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}
[b-dmgyh79ss6] .cal-day-label {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted, #999);
    padding: 4px 0;
}
[b-dmgyh79ss6] .cal-cell {
    text-align: center;
    padding: 8px 0;
    font-size: 0.85rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.1s;
}
[b-dmgyh79ss6] .cal-cell:hover:not(.past):not(.empty) { background: var(--brand-green-pale, #eef5e6); }
[b-dmgyh79ss6] .cal-cell.past { color: #ccc; cursor: default; }
[b-dmgyh79ss6] .cal-cell.empty { cursor: default; }
[b-dmgyh79ss6] .cal-cell.checkin {
    background: var(--brand-green, #3a7d44);
    color: #fff;
    font-weight: 700;
    border-radius: 8px 0 0 8px;
}
[b-dmgyh79ss6] .cal-cell.checkout {
    background: var(--brand-green, #3a7d44);
    color: #fff;
    font-weight: 700;
    border-radius: 0 8px 8px 0;
}
[b-dmgyh79ss6] .cal-cell.in-range {
    background: var(--brand-green-pale, #eef5e6);
    border-radius: 0;
}
[b-dmgyh79ss6] .cal-footer {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border, #e0ddd4);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}
[b-dmgyh79ss6] .cal-clear {
    margin-left: auto;
    background: none; border: 1px solid var(--border); border-radius: 6px;
    padding: 4px 12px; font-size: 0.8rem; cursor: pointer;
}
[b-dmgyh79ss6] .cal-done {
    background: var(--brand-green, #3a7d44); color: #fff; border: none; border-radius: 6px;
    padding: 4px 16px; font-size: 0.8rem; font-weight: 700; cursor: pointer;
}

@media (max-width: 640px) {
    .hero-search[b-dmgyh79ss6] {
        flex-direction: column;
        border-radius: 12px;
        gap: 0;
        width: calc(100% - 16px);
        max-width: 100%;
        margin-left: 8px;
        margin-right: 8px;
    }
    .hero-search-field[b-dmgyh79ss6] {
        flex: none !important;
        width: 100% !important;
        border-right: none !important;
        border-bottom: 1px solid var(--border, #e0ddd4);
        padding: 12px 16px;
        box-sizing: border-box;
    }
    .hero-search-field:last-of-type[b-dmgyh79ss6] { border-bottom: none; }
    .hero-search-field input[b-dmgyh79ss6] {
        width: 100% !important;
        font-size: 1rem;
    }
    .hero-where-wrap[b-dmgyh79ss6], .hero-dates-wrap[b-dmgyh79ss6] {
        flex: none !important;
        width: 100% !important;
    }
    .hero-search-btn[b-dmgyh79ss6] {
        width: 100%;
        border-radius: 0 0 8px 8px;
        padding: 14px;
    }
    .hero-autocomplete[b-dmgyh79ss6] { left: 0; right: 0; }
    .hero-calendar[b-dmgyh79ss6] { left: 0; width: 100%; box-sizing: border-box; }
}

.hero-stats[b-dmgyh79ss6] {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
}

.stat-badge[b-dmgyh79ss6] {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 100px;
    padding: 8px 18px;
    font-size: 0.85rem;
    color: #fff;
    backdrop-filter: blur(4px);
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

[b-dmgyh79ss6] .stat-badge span {
    font-weight: 700;
    color: #fff;
}

/* ── Scroll Hint ── */
.scroll-hint[b-dmgyh79ss6] {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    animation: heroChevronBounce-b-dmgyh79ss6 2s ease-in-out infinite;
    opacity: 0.8;
}

@keyframes heroChevronBounce-b-dmgyh79ss6 {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.card-grid[b-dmgyh79ss6] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
/* /Components/Pages/Leaderboard.razor.rz.scp.css */
/* ═══════════════════════════════════════════
   LEADERBOARD PAGE — Light Theme
   ═══════════════════════════════════════════ */

.leaderboard-container[b-ykoe1piux9] {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 24px 60px;
}

.leaderboard-header[b-ykoe1piux9] {
    text-align: center;
    margin-bottom: 40px;
}

.leaderboard-header h1[b-ykoe1piux9] {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.leaderboard-header p[b-ykoe1piux9] {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.5;
}

.leaderboard-loading[b-ykoe1piux9],
.leaderboard-empty[b-ykoe1piux9] {
    text-align: center;
    padding: 60px 24px;
}

.leaderboard-empty h2[b-ykoe1piux9] {
    font-size: 1.3rem;
    color: var(--text);
    margin-bottom: 8px;
}

.leaderboard-empty p[b-ykoe1piux9] {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ── Podium (Top 3) ── */

.podium[b-ykoe1piux9] {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.podium-card[b-ykoe1piux9] {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 16px 24px;
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s;
}

.podium-card:hover[b-ykoe1piux9] {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.podium-gold[b-ykoe1piux9] {
    border-color: #d4a843;
    background: linear-gradient(180deg, #fffbf0 0%, var(--card) 40%);
}

.podium-silver[b-ykoe1piux9] {
    border-color: #b0b0b0;
    background: linear-gradient(180deg, #f5f5f5 0%, var(--card) 40%);
}

.podium-bronze[b-ykoe1piux9] {
    border-color: #c4884e;
    background: linear-gradient(180deg, #fdf5ed 0%, var(--card) 40%);
}

.podium-medal[b-ykoe1piux9] {
    font-size: 28px;
    margin-bottom: 8px;
}

.podium-avatar[b-ykoe1piux9] {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--brand-green-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--brand-green);
    overflow: hidden;
    text-decoration: none;
    margin-bottom: 10px;
}

.podium-avatar img[b-ykoe1piux9] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.podium-name[b-ykoe1piux9] {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text);
    text-decoration: none;
    text-align: center;
}

.podium-name:hover[b-ykoe1piux9] {
    color: var(--brand-green);
}

.podium-points[b-ykoe1piux9] {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--brand-green);
    margin-top: 6px;
}

.podium-stats[b-ykoe1piux9] {
    display: flex;
    gap: 12px;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 8px;
}

/* ── Table ── */

.leaderboard-table-section[b-ykoe1piux9] {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 32px;
}

.leaderboard-table[b-ykoe1piux9] {
    width: 100%;
    border-collapse: collapse;
}

.leaderboard-table thead th[b-ykoe1piux9] {
    padding: 12px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    background: var(--surface);
}

.leaderboard-table tbody tr[b-ykoe1piux9] {
    border-bottom: 1px solid var(--border);
    transition: background 0.15s;
}

.leaderboard-table tbody tr:last-child[b-ykoe1piux9] {
    border-bottom: none;
}

.leaderboard-table tbody tr:hover[b-ykoe1piux9] {
    background: var(--surface);
}

.leaderboard-table td[b-ykoe1piux9] {
    padding: 12px 16px;
    font-size: 0.9rem;
    color: var(--text);
    vertical-align: middle;
}

.rank-cell[b-ykoe1piux9] {
    font-weight: 600;
    color: var(--text-muted);
}

.rank-number[b-ykoe1piux9] {
    font-variant-numeric: tabular-nums;
}

.explorer-cell[b-ykoe1piux9] {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
}

.explorer-cell:hover .explorer-name[b-ykoe1piux9] {
    color: var(--brand-green);
}

.explorer-avatar-sm[b-ykoe1piux9] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--brand-green-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brand-green);
    overflow: hidden;
    flex-shrink: 0;
}

.explorer-avatar-sm img[b-ykoe1piux9] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.explorer-name[b-ykoe1piux9] {
    font-weight: 500;
    transition: color 0.15s;
}

/* ── Points Guide ── */

.points-guide[b-ykoe1piux9] {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
}

.points-guide h2[b-ykoe1piux9] {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
}

.points-grid[b-ykoe1piux9] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.points-item[b-ykoe1piux9] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--surface);
    border-radius: var(--radius-sm, 8px);
}

.points-icon[b-ykoe1piux9] {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.points-item strong[b-ykoe1piux9] {
    display: block;
    font-size: 0.85rem;
    color: var(--text);
}

.points-value[b-ykoe1piux9] {
    font-size: 0.8rem;
    color: var(--brand-green);
    font-weight: 600;
}

/* ── Responsive ── */

@media (max-width: 640px) {
    .podium[b-ykoe1piux9] {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .podium-card[b-ykoe1piux9] {
        flex-direction: row;
        padding: 16px;
        gap: 12px;
    }

    .podium-medal[b-ykoe1piux9] {
        font-size: 22px;
        margin-bottom: 0;
    }

    .podium-avatar[b-ykoe1piux9] {
        width: 48px;
        height: 48px;
        margin-bottom: 0;
        font-size: 1rem;
    }

    .podium-name[b-ykoe1piux9] {
        font-size: 0.9rem;
    }

    .podium-stats[b-ykoe1piux9] {
        margin-top: 4px;
    }

    .leaderboard-table th:nth-child(4)[b-ykoe1piux9],
    .leaderboard-table td:nth-child(4)[b-ykoe1piux9],
    .leaderboard-table th:nth-child(5)[b-ykoe1piux9],
    .leaderboard-table td:nth-child(5)[b-ykoe1piux9] {
        display: none;
    }

    .leaderboard-container[b-ykoe1piux9] {
        padding: 24px 16px 40px;
    }

    .leaderboard-header h1[b-ykoe1piux9] {
        font-size: 1.5rem;
    }
}
/* /Components/Pages/Map.razor.rz.scp.css */
/* ══════════════════════════════════════════
   MAP PAGE — Scoped styles
   ══════════════════════════════════════════ */

/* ── Date Bar ── */
[b-jma9eq458g] .map-date-bar {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    padding: 10px 16px;
    background: var(--brand-green-pale, #eef5e6);
    border-bottom: 1px solid var(--border, #e0ddd4);
}
[b-jma9eq458g] .map-date-field {
    flex: 1;
    min-width: 0;
}
[b-jma9eq458g] .map-date-field label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted, #5a7a5c);
    margin-bottom: 3px;
}
[b-jma9eq458g] .map-date-field input {
    width: 100%;
    border: 1px solid var(--border, #e0ddd4);
    border-radius: 6px;
    padding: 6px 8px;
    font-size: 0.85rem;
    font-family: inherit;
    background: #fff;
    color: var(--text, #2c3e2d);
}
[b-jma9eq458g] .map-date-clear {
    flex-shrink: 0;
    background: none;
    border: none;
    color: var(--text-muted, #999);
    cursor: pointer;
    font-size: 1rem;
    padding: 6px;
    line-height: 1;
}
[b-jma9eq458g] .map-date-clear:hover {
    color: var(--red, #d32f2f);
}

/* Calendar popup (mirrors home page) */
[b-jma9eq458g] .hero-calendar {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(44,62,45,0.18);
    padding: 16px;
    width: 280px;
}
[b-jma9eq458g] .cal-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:8px; }
[b-jma9eq458g] .cal-title { font-weight:700; font-size:0.95rem; }
[b-jma9eq458g] .cal-nav { background:none; border:1px solid var(--border,#e0ddd4); border-radius:6px; width:32px; height:32px; font-size:1.1rem; cursor:pointer; display:flex; align-items:center; justify-content:center; }
[b-jma9eq458g] .cal-nav:hover { background:var(--brand-green-pale,#eef5e6); }
[b-jma9eq458g] .cal-hint { font-size:0.75rem; color:var(--text-muted,#999); text-align:center; margin-bottom:8px; }
[b-jma9eq458g] .cal-grid { display:grid; grid-template-columns:repeat(7,1fr); gap:2px; }
[b-jma9eq458g] .cal-day-label { text-align:center; font-size:0.7rem; font-weight:700; color:var(--text-muted,#999); padding:4px 0; }
[b-jma9eq458g] .cal-cell { text-align:center; padding:8px 0; font-size:0.85rem; border-radius:8px; cursor:pointer; transition:background 0.1s; }
[b-jma9eq458g] .cal-cell:hover:not(.past):not(.empty) { background:var(--brand-green-pale,#eef5e6); }
[b-jma9eq458g] .cal-cell.past { color:#ccc; cursor:default; }
[b-jma9eq458g] .cal-cell.empty { cursor:default; }
[b-jma9eq458g] .cal-cell.checkin { background:var(--brand-green,#3a7d44); color:#fff; font-weight:700; border-radius:8px 0 0 8px; }
[b-jma9eq458g] .cal-cell.checkout { background:var(--brand-green,#3a7d44); color:#fff; font-weight:700; border-radius:0 8px 8px 0; }
[b-jma9eq458g] .cal-cell.in-range { background:var(--brand-green-pale,#eef5e6); border-radius:0; }
[b-jma9eq458g] .cal-footer { margin-top:12px; padding-top:12px; border-top:1px solid var(--border,#e0ddd4); display:flex; align-items:center; gap:8px; font-size:0.85rem; color:var(--text-muted); }
[b-jma9eq458g] .cal-clear { margin-left:auto; background:none; border:1px solid var(--border); border-radius:6px; padding:4px 12px; font-size:0.8rem; cursor:pointer; }
[b-jma9eq458g] .cal-done { background:var(--brand-green,#3a7d44); color:#fff; border:none; border-radius:6px; padding:4px 16px; font-size:0.8rem; font-weight:700; cursor:pointer; }

/* ── Layout ── */
.map-layout[b-jma9eq458g] {
    display: flex;
    height: calc(100vh - var(--nav-height, 72px));
    overflow: hidden;
    position: relative;
}

.map-sidebar[b-jma9eq458g] {
    width: 380px;
    flex-shrink: 0;
    background: var(--card, #ffffff);
    border-right: 1px solid var(--border, #e0ddd4);
    display: flex;
    flex-direction: column;
    z-index: 10;
    transition: width 0.25s ease, margin-left 0.25s ease;
}

.map-sidebar.collapsed[b-jma9eq458g] {
    width: 0;
    overflow: hidden;
    border-right: none;
}

.map-main[b-jma9eq458g] {
    flex: 1;
    position: relative;
    min-width: 0;
}

/* ── Sidebar tab bar ── */
[b-jma9eq458g] .sidebar-tab-bar {
    display: flex;
    border-bottom: 2px solid var(--border, #e0ddd4);
    flex-shrink: 0;
}

[b-jma9eq458g] .sidebar-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 12px;
    font-size: 0.82rem;
    font-weight: 600;
    font-family: inherit;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    color: var(--text-muted, #5a7a5c);
    transition: color 0.15s, border-color 0.15s;
    min-height: 40px;
    white-space: nowrap;
}

[b-jma9eq458g] .sidebar-tab:hover {
    color: var(--text, #2c3e2d);
    background: var(--surface, #f4f1e8);
}

[b-jma9eq458g] .sidebar-tab.active {
    color: var(--brand-green, #3a7d44);
    border-bottom-color: var(--brand-green, #3a7d44);
}

[b-jma9eq458g] .tab-badge {
    background: var(--brand-green, #3a7d44);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}

/* Mobile close button in tab bar — hidden on desktop */
[b-jma9eq458g] .sidebar-close-mobile {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    min-height: 40px;
    background: none;
    border: none;
    border-left: 1px solid var(--border, #e0ddd4);
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-muted, #5a7a5c);
    flex-shrink: 0;
    transition: background 0.15s;
}

[b-jma9eq458g] .sidebar-close-mobile:hover {
    background: rgba(0, 0, 0, 0.04);
}

/* FAB open button — shown when sidebar is closed */
[b-jma9eq458g] .sidebar-toggle-open {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 100;
    background: var(--card, #fff);
    border: 1px solid var(--border, #e0ddd4);
    border-radius: 24px;
    padding: 10px 18px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    transition: background 0.2s, box-shadow 0.2s;
    color: var(--text, #2c3e2d);
    font-family: inherit;
    min-height: 44px;
}

[b-jma9eq458g] .sidebar-toggle-open:hover {
    background: var(--surface, #f4f1e8);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* ── Sidebar header / search ── */
.map-sidebar-header[b-jma9eq458g] {
    padding: 12px 14px;
    border-bottom: 1px solid var(--border, #e0ddd4);
    position: relative;
}

[b-jma9eq458g] .search-input-wrap {
    display: flex;
    align-items: center;
    background: var(--surface, #f4f1e8);
    border: 1px solid var(--border, #e0ddd4);
    border-radius: 10px;
    padding: 0 8px;
    gap: 8px;
    transition: border-color 0.15s, box-shadow 0.15s;
}

[b-jma9eq458g] .search-input-wrap:focus-within {
    border-color: var(--brand-green, #3a7d44);
    box-shadow: 0 0 0 3px rgba(58, 125, 68, 0.12);
}

[b-jma9eq458g] .search-icon {
    font-size: 1rem;
    color: var(--text-muted, #5a7a5c);
    flex-shrink: 0;
}

[b-jma9eq458g] .search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text, #2c3e2d);
    font-size: 0.9rem;
    padding: 10px 0;
    min-height: 42px;
    font-family: inherit;
}

[b-jma9eq458g] .search-input::placeholder {
    color: var(--text-light, #8a9a8c);
}

[b-jma9eq458g] .filter-toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    padding: 6px 8px;
    border-radius: var(--radius-sm, 6px);
    transition: background 0.15s;
    flex-shrink: 0;
}

[b-jma9eq458g] .filter-toggle-btn:hover {
    background: rgba(0, 0, 0, 0.04);
}

[b-jma9eq458g] .filter-toggle-btn.active {
    background: var(--brand-green-pale, #e8f5e9);
}

/* ── Quick filter chips ── */
[b-jma9eq458g] .quick-filters {
    display: flex;
    gap: 8px;
    padding: 10px 0 4px;
    flex-wrap: wrap;
}

[b-jma9eq458g] .qf-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    background: var(--surface, #f4f1e8);
    border: 1px solid var(--border, #e0ddd4);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.15s;
    white-space: nowrap;
    min-height: 32px;
    font-family: inherit;
    color: var(--text-muted, #5a7a5c);
}

[b-jma9eq458g] .qf-chip:hover {
    background: var(--brand-green-pale, #e8f5e9);
    border-color: var(--brand-green, #3a7d44);
}

[b-jma9eq458g] .qf-chip.active {
    background: var(--brand-green, #3a7d44);
    color: #fff;
    border-color: var(--brand-green, #3a7d44);
}

[b-jma9eq458g] .qf-chip.filters-btn {
    background: var(--card, #fff);
    border-style: dashed;
}

[b-jma9eq458g] .qf-chip.filters-btn.active {
    background: var(--brand-green-pale, #e8f5e9);
    border-color: var(--brand-green, #3a7d44);
    border-style: solid;
    color: var(--brand-green, #3a7d44);
}

/* ── Autocomplete dropdown ── */
[b-jma9eq458g] .search-dropdown {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 100%;
    background: var(--card, #fff);
    border: 1px solid var(--border, #e0ddd4);
    border-top: none;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 200;
    max-height: 360px;
    overflow-y: auto;
}

[b-jma9eq458g] .search-dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 14px;
    cursor: pointer;
    transition: background 0.12s;
    min-height: 44px;
}

[b-jma9eq458g] .search-dropdown-item:hover {
    background: var(--surface, #f4f1e8);
}

[b-jma9eq458g] .suggestion-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

[b-jma9eq458g] .suggestion-body {
    flex: 1;
    min-width: 0;
}

[b-jma9eq458g] .suggestion-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text, #2c3e2d);
}

[b-jma9eq458g] .suggestion-meta {
    font-size: 0.78rem;
    color: var(--text-muted, #5a7a5c);
}

[b-jma9eq458g] .suggestion-tour {
    color: var(--brand-green, #3a7d44);
    font-weight: 600;
}

/* ── Filter panel ── */
[b-jma9eq458g] .filter-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

[b-jma9eq458g] .filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border, #e0ddd4);
    position: sticky;
    top: 0;
    background: var(--card, #fff);
    z-index: 1;
}

[b-jma9eq458g] .filter-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text, #2c3e2d);
}

[b-jma9eq458g] .filter-reset {
    font-size: 0.8rem;
    color: var(--brand-green, #3a7d44);
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    padding: 4px 0;
    min-height: 44px;
    display: flex;
    align-items: center;
}

[b-jma9eq458g] .filter-body {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    flex: 1;
    overflow-y: auto;
}

[b-jma9eq458g] .filter-fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

[b-jma9eq458g] .filter-section-title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted, #5a7a5c);
    margin-bottom: 8px;
    border: none;
    padding: 0;
}

[b-jma9eq458g] .filter-checks {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

[b-jma9eq458g] .filter-checks-disabled {
    opacity: 0.5;
}

[b-jma9eq458g] .filter-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 5px 0;
    color: var(--text, #2c3e2d);
    min-height: 36px;
}

[b-jma9eq458g] .filter-check.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

[b-jma9eq458g] .filter-check input[type=checkbox],
[b-jma9eq458g] .filter-check input[type=radio] {
    accent-color: var(--brand-green, #3a7d44);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* ── Pro section ── */
[b-jma9eq458g] .filter-pro-section {
    background: linear-gradient(135deg, rgba(212, 129, 58, 0.06), rgba(212, 129, 58, 0.02));
    border: 1px solid rgba(212, 129, 58, 0.2);
    border-radius: var(--radius, 8px);
    padding: 14px;
}

[b-jma9eq458g] .filter-pro-header {
    margin-bottom: 10px;
}

[b-jma9eq458g] .filter-pro-badge {
    background: linear-gradient(135deg, var(--gold, #d4813a), #e8a560);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

[b-jma9eq458g] .pro-upgrade-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.82rem;
    color: var(--gold, #d4813a);
    font-weight: 600;
    text-decoration: none;
}

[b-jma9eq458g] .pro-upgrade-link:hover {
    text-decoration: underline;
}

/* ── Carrier toggles ── */
[b-jma9eq458g] .carrier-toggles {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

[b-jma9eq458g] .carrier-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.83rem;
    color: var(--text, #2c3e2d);
    padding: 4px 0;
    min-height: 36px;
}

[b-jma9eq458g] .carrier-name {
    display: flex;
    align-items: center;
    gap: 8px;
}

[b-jma9eq458g] .carrier-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

[b-jma9eq458g] .carrier-verizon { background: #22a549; }
[b-jma9eq458g] .carrier-att { background: #41aedc; }
[b-jma9eq458g] .carrier-tmobile { background: #e47221; }

[b-jma9eq458g] .carrier-toggle {
    position: relative;
    width: 38px;
    height: 22px;
    cursor: pointer;
    display: inline-block;
}

[b-jma9eq458g] .carrier-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

[b-jma9eq458g] .toggle-slider {
    position: absolute;
    inset: 0;
    background: var(--surface, #f4f1e8);
    border: 1px solid var(--border, #e0ddd4);
    border-radius: 20px;
    transition: background 0.2s;
}

[b-jma9eq458g] .toggle-slider::before {
    content: '';
    position: absolute;
    left: 3px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--text-light, #8a9a8c);
    transition: transform 0.2s, background 0.2s;
}

[b-jma9eq458g] .carrier-toggle input:checked + .toggle-slider {
    background: var(--brand-green-pale, #e8f5e9);
    border-color: var(--brand-green, #3a7d44);
}

[b-jma9eq458g] .carrier-toggle input:checked + .toggle-slider::before {
    transform: translate(14px, -50%);
    background: var(--brand-green, #3a7d44);
}

/* ── Filter footer ── */
[b-jma9eq458g] .filter-footer {
    padding: 12px 16px;
    border-top: 1px solid var(--border, #e0ddd4);
    display: flex;
    gap: 8px;
    position: sticky;
    bottom: 0;
    background: var(--card, #fff);
}

[b-jma9eq458g] .btn-apply {
    flex: 1;
    background: var(--brand-green, #3a7d44);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    min-height: 42px;
    font-family: inherit;
}

[b-jma9eq458g] .btn-apply:hover {
    background: var(--brand-green-dark, #2d6334);
}

[b-jma9eq458g] .btn-reset-secondary {
    background: var(--surface, #f4f1e8);
    color: var(--text-muted, #5a7a5c);
    border: 1px solid var(--border, #e0ddd4);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
    min-height: 42px;
    font-family: inherit;
}

[b-jma9eq458g] .btn-reset-secondary:hover {
    background: var(--brand-green-pale, #e8f5e9);
}

/* ── Results area ── */
[b-jma9eq458g] .results-area {
    flex: 1;
    flex-direction: column;
    overflow: hidden;
}

[b-jma9eq458g] .results-header {
    padding: 10px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted, #5a7a5c);
    border-bottom: 1px solid var(--border, #e0ddd4);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

[b-jma9eq458g] .clear-search-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted, #5a7a5c);
    font-size: 0.9rem;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background 0.15s;
    min-width: 32px;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

[b-jma9eq458g] .clear-search-btn:hover {
    background: rgba(0, 0, 0, 0.06);
}

[b-jma9eq458g] .results-scroll {
    flex: 1;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--border, #e0ddd4) transparent;
}

[b-jma9eq458g] .results-scroll::-webkit-scrollbar {
    width: 5px;
}

[b-jma9eq458g] .results-scroll::-webkit-scrollbar-track {
    background: transparent;
}

[b-jma9eq458g] .results-scroll::-webkit-scrollbar-thumb {
    background: var(--border, #e0ddd4);
    border-radius: 3px;
}

[b-jma9eq458g] .sidebar-result {
    display: block;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border, #e0ddd4);
    cursor: pointer;
    transition: background 0.12s;
    text-decoration: none;
    color: inherit;
}
[b-jma9eq458g] .sidebar-result.has-img {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
[b-jma9eq458g] .result-thumb {
    width: 72px;
    height: 54px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
    background: var(--border, #e0ddd4);
}
[b-jma9eq458g] .result-body {
    flex: 1;
    min-width: 0;
}

[b-jma9eq458g] .sidebar-result:hover {
    background: var(--surface, #f4f1e8);
}

[b-jma9eq458g] .result-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text, #2c3e2d);
    line-height: 1.3;
}

[b-jma9eq458g] .result-location {
    font-size: 0.8rem;
    color: var(--text-muted, #5a7a5c);
    margin-top: 2px;
}

[b-jma9eq458g] .result-badges {
    display: flex;
    gap: 6px;
    margin-top: 6px;
    flex-wrap: wrap;
    align-items: center;
}

[b-jma9eq458g] .poi-badge {
    font-size: 0.68rem;
    padding: 2px 7px;
    border-radius: 10px;
    font-weight: 600;
    white-space: nowrap;
}

[b-jma9eq458g] .tour-badge {
    background: var(--brand-green, #3a7d44);
    color: #fff;
}

[b-jma9eq458g] .featured-badge {
    background: var(--gold, #d4813a);
    color: #fff;
}

[b-jma9eq458g] .avail-badge {
    background: #2d8659;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

[b-jma9eq458g] .avail-pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #6fec8f;
    animation: avail-dot-pulse-b-jma9eq458g 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes avail-dot-pulse-b-jma9eq458g {
    0%, 100% { opacity: 0.4; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.3); }
}

[b-jma9eq458g] .book-badge {
    background: #4a90b8;
    color: #fff;
}

[b-jma9eq458g] .avail-prompt-badge {
    background: #8fbc8f;
    color: #fff;
    cursor: pointer;
}

[b-jma9eq458g] .book-prompt-badge {
    background: #87afc7;
    color: #fff;
    cursor: pointer;
}

[b-jma9eq458g] .tier-badge-gold {
    background: linear-gradient(135deg, var(--gold, #d4813a), #e8a560);
    color: #fff;
}

[b-jma9eq458g] .tier-badge-green {
    background: var(--brand-green, #3a7d44);
    color: #fff;
}

[b-jma9eq458g] .type-badge {
    background: var(--surface, #f4f1e8);
    color: var(--text-muted, #5a7a5c);
}

[b-jma9eq458g] .result-rating {
    font-size: 0.75rem;
    color: var(--gold, #d4813a);
    font-weight: 600;
}

[b-jma9eq458g] .load-more-btn {
    display: block;
    width: calc(100% - 32px);
    margin: 12px 16px;
    padding: 10px;
    background: var(--surface, #f4f1e8);
    border: 1px solid var(--border, #e0ddd4);
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--brand-green, #3a7d44);
    cursor: pointer;
    text-align: center;
    transition: background 0.15s;
    font-family: inherit;
}

[b-jma9eq458g] .load-more-btn:hover {
    background: var(--brand-green-pale, #e8f5e9);
}

[b-jma9eq458g] .results-empty {
    padding: 24px 16px;
    color: var(--text-muted, #5a7a5c);
    font-size: 0.88rem;
}

[b-jma9eq458g] .results-empty-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text, #2c3e2d);
    margin-bottom: 8px;
}

[b-jma9eq458g] .results-empty p {
    margin: 0 0 8px;
    line-height: 1.5;
}

/* ── Basemap bar ── */
[b-jma9eq458g] .basemap-bar {
    display: flex;
    gap: 4px;
    padding: 8px 14px;
    border-top: 1px solid var(--border, #e0ddd4);
    flex-shrink: 0;
}

[b-jma9eq458g] .basemap-btn {
    flex: 1;
    padding: 7px;
    font-size: 0.78rem;
    font-weight: 600;
    background: var(--surface, #f4f1e8);
    border: 1px solid var(--border, #e0ddd4);
    border-radius: var(--radius-sm, 6px);
    cursor: pointer;
    transition: all 0.15s;
    text-align: center;
    min-height: 34px;
    font-family: inherit;
    color: var(--text-muted, #5a7a5c);
}

[b-jma9eq458g] .basemap-btn:hover {
    background: var(--brand-green-pale, #e8f5e9);
}

[b-jma9eq458g] .basemap-btn.active {
    background: var(--brand-green, #3a7d44);
    color: #fff;
    border-color: var(--brand-green, #3a7d44);
}

/* ── Sidebar toggle ── */
[b-jma9eq458g] .sidebar-toggle {
    position: absolute;
    left: 380px;
    top: 80px;
    z-index: 100;
    background: var(--card, #fff);
    border: 1px solid var(--border, #e0ddd4);
    border-radius: 0 var(--radius-sm, 6px) var(--radius-sm, 6px) 0;
    padding: 10px 6px;
    cursor: pointer;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
    transition: left 0.25s ease;
    font-size: 0.85rem;
    min-width: 28px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted, #5a7a5c);
}

/* ── Route sidebar content ── */
[b-jma9eq458g] .route-sidebar-content {
    flex: 1;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--border, #e0ddd4) transparent;
}

[b-jma9eq458g] .route-sidebar-content::-webkit-scrollbar {
    width: 5px;
}

[b-jma9eq458g] .route-sidebar-content::-webkit-scrollbar-track {
    background: transparent;
}

[b-jma9eq458g] .route-sidebar-content::-webkit-scrollbar-thumb {
    background: var(--border, #e0ddd4);
    border-radius: 3px;
}

[b-jma9eq458g] .route-input-wrap {
    position: relative;
}

[b-jma9eq458g] .route-input {
    width: 100%;
    background: var(--surface, #f4f1e8);
    border: 1px solid var(--border, #e0ddd4);
    border-radius: 8px;
    padding: 9px 12px;
    color: var(--text, #2c3e2d);
    font-size: 0.85rem;
    outline: none;
    min-height: 40px;
    font-family: inherit;
    box-sizing: border-box;
}

[b-jma9eq458g] .route-input::placeholder {
    color: var(--text-light, #8a9a8c);
}

[b-jma9eq458g] .route-input:focus {
    border-color: var(--brand-green, #3a7d44);
    box-shadow: 0 0 0 3px rgba(58, 125, 68, 0.12);
}

/* ── Waypoints ── */
[b-jma9eq458g] .route-waypoints {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

[b-jma9eq458g] .route-waypoint {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--surface, #f4f1e8);
    border: 1px solid var(--border, #e0ddd4);
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 0.82rem;
}

[b-jma9eq458g] .wp-num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--brand-green, #3a7d44);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.68rem;
    font-weight: 700;
    flex-shrink: 0;
}

[b-jma9eq458g] .wp-name {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--text, #2c3e2d);
}

[b-jma9eq458g] .wp-remove {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted, #5a7a5c);
    font-size: 0.8rem;
    padding: 4px;
    border-radius: 4px;
    transition: background 0.15s, color 0.15s;
    min-width: 28px;
    min-height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

[b-jma9eq458g] .wp-remove:hover {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

[b-jma9eq458g] .wp-actions {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
}

[b-jma9eq458g] .wp-move {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted, #5a7a5c);
    font-size: 0.65rem;
    padding: 2px 4px;
    border-radius: 3px;
    transition: background 0.15s;
    min-width: 22px;
    min-height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

[b-jma9eq458g] .wp-move:hover {
    background: var(--surface, #f4f1e8);
    color: var(--brand-green, #3a7d44);
}

/* ── RV Route Section ── */
[b-jma9eq458g] .rv-route-section {
    background: linear-gradient(135deg, rgba(58,125,68,0.04), rgba(58,125,68,0.02));
    border: 1px solid rgba(58,125,68,0.15);
    border-radius: var(--radius, 8px);
    padding: 12px;
}

[b-jma9eq458g] .rv-route-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

[b-jma9eq458g] .rv-dims {
    display: flex;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--text, #2c3e2d);
    font-weight: 600;
}

/* ── Route info ── */
[b-jma9eq458g] .route-info {
    display: flex;
    gap: 16px;
    padding: 10px 12px;
    background: var(--brand-green-pale, #e8f5e9);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand-green, #3a7d44);
}

/* ── RV Route Applied ── */
[b-jma9eq458g] .rv-route-applied {
    background: linear-gradient(135deg, rgba(212,129,58,0.08), rgba(212,129,58,0.03));
    border: 1px solid rgba(212,129,58,0.2);
    border-radius: 8px;
    padding: 10px 12px;
}

[b-jma9eq458g] .rv-applied-header {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gold, #d4813a);
    margin-bottom: 4px;
}

[b-jma9eq458g] .rv-applied-params {
    display: flex;
    gap: 10px;
    font-size: 0.78rem;
    color: var(--text, #2c3e2d);
    font-weight: 600;
    flex-wrap: wrap;
}

[b-jma9eq458g] .rv-comparison {
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px solid rgba(212,129,58,0.15);
}

[b-jma9eq458g] .rv-delta {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold, #d4813a);
}

[b-jma9eq458g] .rv-delta-same {
    color: var(--brand-green, #3a7d44);
}

/* ── Route buttons ── */
[b-jma9eq458g] .route-btn-row {
    display: flex;
    gap: 8px;
}

[b-jma9eq458g] .route-calc-btn {
    flex: 1;
    background: var(--brand-green, #3a7d44);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    min-height: 40px;
    transition: background 0.2s;
    font-family: inherit;
}

[b-jma9eq458g] .route-calc-btn:hover:not(:disabled) {
    background: var(--brand-green-dark, #2d6334);
}

[b-jma9eq458g] .route-calc-btn:disabled,
[b-jma9eq458g] .route-share-btn:disabled,
[b-jma9eq458g] .route-clear-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

[b-jma9eq458g] .route-share-btn {
    flex: 1;
    background: var(--surface, #f4f1e8);
    color: var(--text, #2c3e2d);
    border: 1px solid var(--border, #e0ddd4);
    border-radius: 8px;
    padding: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    min-height: 38px;
    transition: background 0.15s;
    font-family: inherit;
}

[b-jma9eq458g] .route-share-btn:hover:not(:disabled) {
    background: var(--brand-green-pale, #e8f5e9);
}

[b-jma9eq458g] .route-clear-btn {
    background: var(--surface, #f4f1e8);
    color: var(--text-muted, #5a7a5c);
    border: 1px solid var(--border, #e0ddd4);
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    min-height: 38px;
    transition: background 0.15s;
    font-family: inherit;
}

[b-jma9eq458g] .route-clear-btn:hover:not(:disabled) {
    background: rgba(220, 53, 69, 0.08);
    color: #dc3545;
}

[b-jma9eq458g] .route-copied-toast {
    background: var(--brand-green, #3a7d44);
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    text-align: center;
    animation: fadeInUp-b-jma9eq458g 0.3s ease;
}

@keyframes fadeInUp-b-jma9eq458g {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── Bottom rail (Featured parks) ── */
[b-jma9eq458g] .bottom-rail {
    position: fixed;
    bottom: 0;
    left: 380px;
    right: 0;
    z-index: 20;
    padding: 0 14px 12px;
    background: linear-gradient(0deg, var(--bg, #faf8f3) 0%, rgba(250, 248, 243, 0.9) 60%, transparent 100%);
    transition: left 0.25s ease;
}

[b-jma9eq458g] .bottom-rail-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 4px 8px;
}

[b-jma9eq458g] .bottom-rail-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted, #5a7a5c);
}

[b-jma9eq458g] .bottom-rail-minimize {
    background: var(--surface, #f4f1e8);
    border: 1px solid var(--border, #e0ddd4);
    border-radius: 6px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted, #5a7a5c);
    transition: background 0.15s;
}

[b-jma9eq458g] .bottom-rail-minimize:hover {
    background: rgba(0, 0, 0, 0.06);
}

[b-jma9eq458g] .park-cards {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}

[b-jma9eq458g] .park-cards::-webkit-scrollbar {
    display: none;
}

[b-jma9eq458g] .park-card {
    flex: 0 0 170px;
    background: var(--card, #fff);
    border: 1px solid var(--border, #e0ddd4);
    border-radius: 11px;
    cursor: pointer;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
}

[b-jma9eq458g] .park-card:hover {
    border-color: var(--brand-green, #3a7d44);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

[b-jma9eq458g] .park-card-thumb {
    height: 80px;
    background-size: cover;
    background-position: center;
    background-color: var(--surface, #f4f1e8);
}

[b-jma9eq458g] .park-card-thumb-placeholder {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

[b-jma9eq458g] .park-card-body {
    padding: 10px;
}

[b-jma9eq458g] .park-card-name {
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text, #2c3e2d);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

[b-jma9eq458g] .park-card-location {
    font-size: 0.7rem;
    color: var(--text-muted, #5a7a5c);
    margin-top: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

[b-jma9eq458g] .park-card-badges {
    display: flex;
    gap: 4px;
    margin-top: 6px;
    flex-wrap: wrap;
}

/* ── Bottom rail restore button ── */
[b-jma9eq458g] .bottom-rail-restore {
    position: fixed;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    background: var(--card, #fff);
    border: 1px solid var(--border, #e0ddd4);
    border-radius: 20px;
    padding: 8px 18px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted, #5a7a5c);
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: background 0.2s;
    font-family: inherit;
}

[b-jma9eq458g] .bottom-rail-restore:hover {
    background: var(--surface, #f4f1e8);
}

/* ── Mobile overlay ── */
[b-jma9eq458g] .mobile-overlay {
    display: none;
}

/* ── Mapbox popup override ── */
[b-jma9eq458g] .mapboxgl-popup-content {
    border-radius: 10px !important;
    padding: 14px !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15) !important;
    font-family: 'Nunito', sans-serif !important;
    overflow: hidden !important;
}
[b-jma9eq458g] .mapboxgl-popup-close-button {
    z-index: 2 !important;
    background: rgba(255,255,255,0.85) !important;
    border-radius: 50% !important;
    width: 24px !important;
    height: 24px !important;
    font-size: 16px !important;
    line-height: 24px !important;
    text-align: center !important;
    top: 6px !important;
    right: 6px !important;
    padding: 0 !important;
}

/* ══════════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .map-sidebar[b-jma9eq458g] {
        width: 320px;
    }

    [b-jma9eq458g] .sidebar-toggle {
        left: 320px;
    }

    [b-jma9eq458g] .bottom-rail {
        left: 320px;
    }

    .map-sidebar.collapsed[b-jma9eq458g] +  .sidebar-toggle {
        left: 0;
    }
}

/* ══════════════════════════════════════════
   RESPONSIVE — Mobile
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
    .map-sidebar[b-jma9eq458g] {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 100%;
        max-width: 340px;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
        z-index: 200;
    }

    .map-sidebar.collapsed[b-jma9eq458g] {
        transform: translateX(-100%);
        width: 100%;
        max-width: 340px;
    }

    /* Show close button in tab bar on mobile */
    [b-jma9eq458g] .sidebar-close-mobile {
        display: flex;
    }

    [b-jma9eq458g] .bottom-rail {
        left: 0;
    }

    [b-jma9eq458g] .bottom-rail-restore {
        bottom: 8px;
    }

    [b-jma9eq458g] .mobile-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.3);
        z-index: 190;
    }

    [b-jma9eq458g] .filter-panel {
        position: absolute;
        inset: 0;
        z-index: 10;
        background: var(--card, #fff);
    }
}

/* ══════════════════════════════════════════
   RESPONSIVE — Small mobile
   ══════════════════════════════════════════ */
@media (max-width: 480px) {
    .map-sidebar[b-jma9eq458g] {
        max-width: 100%;
    }

    [b-jma9eq458g] .park-card {
        flex: 0 0 140px;
    }
}
/* /Components/Pages/Operator.razor.rz.scp.css */
/* ── Layout ── */
.page-wrapper[b-xe7lgtau2y] {
    display: flex;
    min-height: calc(100vh - var(--nav-height));
}

/* ── Sidebar ── */
.sidebar[b-xe7lgtau2y] {
    width: 260px;
    background: var(--surface);
    border-right: 1px solid var(--border);
    padding: var(--sp-lg) 0;
    flex-shrink: 0;
}
.park-profile[b-xe7lgtau2y] {
    padding: 0 20px 20px;
    border-bottom: 1px solid var(--border);
}
.park-logo[b-xe7lgtau2y] {
    width: 56px;
    height: 70px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--brand-green-pale), var(--brand-green-mist));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 12px;
}
.park-name[b-xe7lgtau2y] {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}
.verified-badge[b-xe7lgtau2y] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--brand-green-pale);
    color: var(--brand-green);
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 20px;
    margin-bottom: 10px;
    border: 1px solid var(--brand-green-mist);
}
.operator-name[b-xe7lgtau2y] {
    font-size: 13px;
    color: var(--text-muted);
}
.sidebar-nav[b-xe7lgtau2y] {
    padding: var(--sp-md) 0;
}
.sidebar-nav-item[b-xe7lgtau2y] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s;
    border: none;
    border-left: 3px solid transparent;
    width: 100%;
    text-align: left;
    background: none;
    text-decoration: none;
    position: relative;
}
.sidebar-nav-item:hover[b-xe7lgtau2y] {
    color: var(--text);
    background: var(--brand-green-pale);
}
.sidebar-nav-item.active[b-xe7lgtau2y],
.sidebar-nav-item[aria-selected="true"][b-xe7lgtau2y] {
    color: var(--brand-green);
    background: var(--brand-green-pale);
    border-left-color: var(--brand-green);
}
.sidebar-nav-item .icon[b-xe7lgtau2y] {
    font-size: 16px;
    width: 22px;
    text-align: center;
}
.nav-badge[b-xe7lgtau2y] {
    position: absolute;
    right: 14px;
    background: var(--red);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
}

/* ── Main Content ── */
.main-content[b-xe7lgtau2y] {
    flex: 1;
    padding: var(--sp-xl);
    overflow-y: auto;
    max-height: calc(100vh - var(--nav-height));
}
.content-header[b-xe7lgtau2y] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}
.content-header h1[b-xe7lgtau2y] {
    margin-bottom: 6px;
}
.content-header p[b-xe7lgtau2y] {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 4px;
}

/* ── Stats Row ── */
.stats-row[b-xe7lgtau2y] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-md);
    margin-bottom: var(--sp-lg);
}
.stat-card[b-xe7lgtau2y] {
    background: var(--card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 20px;
}
.stat-icon[b-xe7lgtau2y] {
    font-size: 22px;
    margin-bottom: 10px;
    display: block;
}
.stat-value[b-xe7lgtau2y] {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}
.stat-label[b-xe7lgtau2y] {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.stat-change[b-xe7lgtau2y] {
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
    display: inline-block;
}
.stat-up[b-xe7lgtau2y] {
    background: var(--brand-green-pale);
    color: var(--brand-green);
}
.stat-neutral[b-xe7lgtau2y] {
    background: var(--sky-pale);
    color: var(--sky);
}

/* ── Section Cards ── */
.section-card[b-xe7lgtau2y] {
    background: var(--card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--sp-lg);
    margin-bottom: var(--sp-lg);
}
.section-card:hover[b-xe7lgtau2y] {
    transform: none;
    box-shadow: none;
}
.card-title[b-xe7lgtau2y] {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.card-title-row[b-xe7lgtau2y] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.card-title-row .card-title[b-xe7lgtau2y] {
    margin-bottom: 0;
}

/* ── Listing Status ── */
.status-grid[b-xe7lgtau2y] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}
.status-item[b-xe7lgtau2y] {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 14px;
    text-align: center;
}
.status-check[b-xe7lgtau2y] {
    font-size: 22px;
    margin-bottom: 6px;
}
.status-item-label[b-xe7lgtau2y] {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}
.status-item-value[b-xe7lgtau2y] {
    font-size: 13px;
    font-weight: 600;
    margin-top: 2px;
}
.status-green[b-xe7lgtau2y] {
    color: var(--brand-green);
}
.status-yellow[b-xe7lgtau2y] {
    color: var(--gold);
}
.quick-links[b-xe7lgtau2y] {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: var(--sp-md);
}
.quick-link[b-xe7lgtau2y] {
    color: var(--brand-green);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 14px;
    border: 1px solid var(--brand-green-mist);
    border-radius: var(--radius-sm);
    background: var(--brand-green-pale);
    transition: all 0.15s;
    cursor: pointer;
}
.quick-link:hover[b-xe7lgtau2y] {
    background: var(--brand-green-mist);
}

/* ── Reviews Table ── */
.reviews-table[b-xe7lgtau2y] {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.reviews-table th[b-xe7lgtau2y] {
    text-align: left;
    padding: 8px 12px;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border);
}
.reviews-table td[b-xe7lgtau2y] {
    padding: 14px 12px;
    border-bottom: 1px solid var(--border-light);
    vertical-align: middle;
}
.reviews-table tr:last-child td[b-xe7lgtau2y] {
    border-bottom: none;
}
.reviewer-cell[b-xe7lgtau2y] {
    display: flex;
    align-items: center;
    gap: 10px;
}
.reviewer-avatar[b-xe7lgtau2y] {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}
.reviewer-name[b-xe7lgtau2y] {
    font-size: 14px;
    font-weight: 500;
}
.reviewer-date[b-xe7lgtau2y] {
    font-size: 12px;
    color: var(--text-muted);
}
.stars[b-xe7lgtau2y] {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 1px;
}
.review-excerpt[b-xe7lgtau2y] {
    font-size: 13px;
    color: var(--text-muted);
    max-width: 280px;
    line-height: 1.5;
}
.btn-respond[b-xe7lgtau2y] {
    background: transparent;
    color: var(--brand-green);
    border: 1px solid var(--brand-green-mist);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
    white-space: nowrap;
}
.btn-respond:hover[b-xe7lgtau2y] {
    background: var(--brand-green-pale);
}
.badge-responded[b-xe7lgtau2y] {
    background: var(--brand-green-pale);
    color: var(--brand-green);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid var(--brand-green-mist);
    white-space: nowrap;
}

/* ── Featured Upgrade ── */
.featured-upgrade-card[b-xe7lgtau2y] {
    background: var(--card);
    border: 2px solid var(--gold-light);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: var(--sp-lg);
    position: relative;
    overflow: hidden;
}
.featured-upgrade-card[b-xe7lgtau2y]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark), var(--gold));
}
.featured-upgrade-title[b-xe7lgtau2y] {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}
.featured-upgrade-subtitle[b-xe7lgtau2y] {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: var(--sp-lg);
}
.tier-grid[b-xe7lgtau2y] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 20px;
}
.tier-card[b-xe7lgtau2y] {
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 18px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    text-align: center;
}
.tier-card:hover[b-xe7lgtau2y] {
    border-color: var(--gold);
    transform: translateY(-2px);
}
.tier-card:focus-visible[b-xe7lgtau2y] {
    outline: 2px solid var(--brand-green);
    outline-offset: 2px;
}
.tier-card[aria-checked="true"][b-xe7lgtau2y],
.tier-card.selected[b-xe7lgtau2y] {
    border-color: var(--gold);
    background: var(--gold-pale);
}
.tier-card.popular[b-xe7lgtau2y] {
    border-color: var(--gold-dark);
}
.popular-badge[b-xe7lgtau2y] {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 10px;
    white-space: nowrap;
}
.tier-name[b-xe7lgtau2y] {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}
.tier-price[b-xe7lgtau2y] {
    font-size: 24px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 4px;
}
.tier-price span[b-xe7lgtau2y] {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
}
.tier-desc[b-xe7lgtau2y] {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.4;
}
.tier-features[b-xe7lgtau2y] {
    text-align: left;
    margin-bottom: 14px;
    list-style: none;
    padding: 0;
}
.tier-features li[b-xe7lgtau2y] {
    font-size: 12px;
    color: var(--text-muted);
    padding: 3px 0 3px 14px;
    position: relative;
    line-height: 1.4;
}
.tier-features li[b-xe7lgtau2y]::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--brand-green);
    font-weight: 600;
}
.btn-select-tier[b-xe7lgtau2y] {
    width: 100%;
    padding: 9px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    transition: all 0.15s;
}
.tier-card[aria-checked="true"] .btn-select-tier[b-xe7lgtau2y],
.tier-card.selected .btn-select-tier[b-xe7lgtau2y] {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    border-color: var(--gold);
}
.btn-select-tier:hover[b-xe7lgtau2y] {
    background: var(--gold-pale);
    border-color: var(--gold);
    color: var(--gold-dark);
}
.tier-note[b-xe7lgtau2y] {
    font-size: 12px;
    color: var(--text-dim);
    margin-bottom: var(--sp-md);
}
.btn-upgrade-now[b-xe7lgtau2y] {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    border: none;
    padding: 13px 28px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.15s;
    display: inline-block;
}
.btn-upgrade-now:hover[b-xe7lgtau2y] {
    opacity: 0.9;
}

/* ── Quick Actions ── */
.action-list[b-xe7lgtau2y] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.action-item[b-xe7lgtau2y] {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    cursor: pointer;
    transition: border-color 0.15s;
    text-decoration: none;
    color: inherit;
}
.action-item:hover[b-xe7lgtau2y] {
    border-color: var(--brand-green);
}
.action-icon[b-xe7lgtau2y] {
    font-size: 22px;
    width: 36px;
    text-align: center;
    flex-shrink: 0;
}
.action-text strong[b-xe7lgtau2y] {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}
.action-text span[b-xe7lgtau2y] {
    font-size: 13px;
    color: var(--text-muted);
}
.action-badge[b-xe7lgtau2y] {
    margin-left: auto;
    background: var(--red);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 10px;
}
.action-arrow[b-xe7lgtau2y] {
    margin-left: auto;
    color: var(--text-dim);
    font-size: 18px;
}

/* ── Form ── */
.form-group[b-xe7lgtau2y] {
    margin-bottom: var(--sp-md);
}
.form-group label[b-xe7lgtau2y] {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.form-row[b-xe7lgtau2y] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-md);
    margin-bottom: var(--sp-md);
}

/* ── Amenities Grid ── */
.amenities-grid[b-xe7lgtau2y] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.amenity-label[b-xe7lgtau2y] {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 13px;
}
.amenity-label input[b-xe7lgtau2y] {
    accent-color: var(--brand-green);
}

/* ── Photo Gallery ── */
.photo-grid[b-xe7lgtau2y] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: var(--sp-md);
}
.photo-thumb[b-xe7lgtau2y] {
    height: 100px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
    border: 1px solid var(--border-light);
    position: relative;
}
.photo-thumb-cover[b-xe7lgtau2y] {
    position: absolute;
    bottom: 4px;
    right: 6px;
    font-size: 10px;
    color: var(--text-dim);
}
.photo-add[b-xe7lgtau2y] {
    border: 2px dashed var(--border);
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    color: var(--text-muted);
    font-size: 12px;
    cursor: pointer;
    height: 100px;
    border-radius: var(--radius-sm);
}
.photo-add-icon[b-xe7lgtau2y] {
    font-size: 24px;
}

/* ── Virtual Tour ── */
.virtual-tour-card[b-xe7lgtau2y] {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.virtual-tour-icon[b-xe7lgtau2y] {
    font-size: 40px;
}
.virtual-tour-info strong[b-xe7lgtau2y] {
    display: block;
    margin-bottom: 4px;
}
.virtual-tour-info .meta[b-xe7lgtau2y] {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.virtual-tour-actions[b-xe7lgtau2y] {
    display: flex;
    gap: 10px;
}

/* ── Analytics ── */
.analytics-grid[b-xe7lgtau2y] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-md);
}
.chart-placeholder[b-xe7lgtau2y] {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    font-size: 14px;
    flex-direction: column;
    gap: 8px;
}

/* ── Business Hours ── */
.hours-grid[b-xe7lgtau2y] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.hours-row[b-xe7lgtau2y] {
    display: flex;
    align-items: center;
    gap: 16px;
}
.hours-day[b-xe7lgtau2y] {
    width: 100px;
    font-size: 14px;
    font-weight: 500;
    flex-shrink: 0;
}
.hours-input[b-xe7lgtau2y] {
    max-width: 220px;
}

/* ── Notification Settings ── */
.notification-item[b-xe7lgtau2y] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
.notification-item + .notification-item[b-xe7lgtau2y] {
    border-top: 1px solid var(--border-light);
    padding-top: 14px;
}
.notification-label[b-xe7lgtau2y] {
    font-weight: 500;
    font-size: 14px;
}
.notification-desc[b-xe7lgtau2y] {
    font-size: 13px;
    color: var(--text-muted);
}

/* ── Edit Toast ── */
@keyframes editToastSlideIn-b-xe7lgtau2y {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
@keyframes editToastSlideOut-b-xe7lgtau2y {
    from { transform: translateY(0); opacity: 1; }
    to { transform: translateY(-100%); opacity: 0; }
}
.edit-toast[b-xe7lgtau2y] {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 11000;
    padding: 14px 28px;
    border-radius: 12px;
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    animation: editToastSlideIn-b-xe7lgtau2y 0.35s ease-out;
    pointer-events: none;
    max-width: 90vw;
    text-align: center;
}
.edit-toast-success[b-xe7lgtau2y] {
    background: linear-gradient(135deg, #3a7d44, #2c5f33);
}
.edit-toast-error[b-xe7lgtau2y] {
    background: linear-gradient(135deg, #c0392b, #962d22);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .sidebar[b-xe7lgtau2y] {
        width: 220px;
    }
    .stats-row[b-xe7lgtau2y] {
        grid-template-columns: repeat(2, 1fr);
    }
    .status-grid[b-xe7lgtau2y] {
        grid-template-columns: repeat(2, 1fr);
    }
    .tier-grid[b-xe7lgtau2y] {
        grid-template-columns: repeat(2, 1fr);
    }
    .photo-grid[b-xe7lgtau2y] {
        grid-template-columns: repeat(3, 1fr);
    }
    .amenities-grid[b-xe7lgtau2y] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .page-wrapper[b-xe7lgtau2y] {
        flex-direction: column;
    }
    .sidebar[b-xe7lgtau2y] {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 0;
    }
    .park-profile[b-xe7lgtau2y] {
        display: none;
    }
    .sidebar-nav[b-xe7lgtau2y] {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        padding: 0;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    .sidebar-nav[b-xe7lgtau2y]::-webkit-scrollbar {
        display: none;
    }
    .sidebar-nav-item[b-xe7lgtau2y] {
        flex-shrink: 0;
        border-left: none;
        border-bottom: 3px solid transparent;
        padding: 12px 14px;
        font-size: 13px;
        white-space: nowrap;
        min-height: 44px;
    }
    .sidebar-nav-item.active[b-xe7lgtau2y],
    .sidebar-nav-item[aria-selected="true"][b-xe7lgtau2y] {
        border-left-color: transparent;
        border-bottom-color: var(--brand-green);
    }
    .sidebar-nav-item .icon[b-xe7lgtau2y] {
        display: none;
    }
    .nav-badge[b-xe7lgtau2y] {
        position: static;
        margin-left: 4px;
    }
    .main-content[b-xe7lgtau2y] {
        padding: var(--sp-md);
    }
    .content-header[b-xe7lgtau2y] {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .content-header h1[b-xe7lgtau2y] {
        font-size: 20px;
    }
    .stats-row[b-xe7lgtau2y] {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .status-grid[b-xe7lgtau2y] {
        grid-template-columns: repeat(2, 1fr);
    }
    .tier-grid[b-xe7lgtau2y] {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .reviews-table[b-xe7lgtau2y],
    .reviews-table thead[b-xe7lgtau2y],
    .reviews-table tbody[b-xe7lgtau2y],
    .reviews-table th[b-xe7lgtau2y],
    .reviews-table td[b-xe7lgtau2y],
    .reviews-table tr[b-xe7lgtau2y] {
        display: block;
    }
    .reviews-table thead[b-xe7lgtau2y] {
        display: none;
    }
    .reviews-table tr[b-xe7lgtau2y] {
        background: var(--surface);
        border: 1px solid var(--border-light);
        border-radius: var(--radius-md);
        margin-bottom: 12px;
        padding: 14px;
    }
    .reviews-table td[b-xe7lgtau2y] {
        border-bottom: none;
        padding: 4px 0;
        font-size: 13px;
    }
    .review-excerpt[b-xe7lgtau2y] {
        max-width: 100%;
    }
    .quick-links[b-xe7lgtau2y] {
        flex-direction: column;
    }
    .quick-link[b-xe7lgtau2y] {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    .section-card[b-xe7lgtau2y] {
        padding: var(--sp-md);
    }
    .card-title-row[b-xe7lgtau2y] {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .photo-grid[b-xe7lgtau2y] {
        grid-template-columns: repeat(2, 1fr);
    }
    .amenities-grid[b-xe7lgtau2y] {
        grid-template-columns: 1fr;
    }
    .analytics-grid[b-xe7lgtau2y] {
        grid-template-columns: 1fr;
    }
    .form-row[b-xe7lgtau2y] {
        grid-template-columns: 1fr;
    }
    .featured-upgrade-card[b-xe7lgtau2y] {
        padding: var(--sp-md);
    }
    .btn-upgrade-now[b-xe7lgtau2y] {
        width: 100%;
        text-align: center;
    }
    .hours-row[b-xe7lgtau2y] {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    .hours-input[b-xe7lgtau2y] {
        max-width: 100%;
        width: 100%;
    }
    .virtual-tour-card[b-xe7lgtau2y] {
        flex-direction: column;
        text-align: center;
    }
    .virtual-tour-actions[b-xe7lgtau2y] {
        justify-content: center;
    }
}

@media (max-width: 400px) {
    .status-grid[b-xe7lgtau2y] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Pages/ParkOwners.razor.rz.scp.css */
/* ══════════════════════════════════════════
   PARK OWNERS LANDING PAGE
   ══════════════════════════════════════════ */

/* ── Hero ── */
.po-hero[b-9y3zzn1b1u] {
    background: linear-gradient(135deg, var(--brand-green-dark) 0%, var(--brand-green) 50%, #5a8f3c 100%);
    color: #fff;
    padding: 80px 24px 72px;
    text-align: center;
}
.po-hero-inner[b-9y3zzn1b1u] {
    max-width: 760px;
    margin: 0 auto;
}
.po-hero-badge[b-9y3zzn1b1u] {
    display: inline-block;
    background: rgba(255,255,255,0.18);
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.po-hero h1[b-9y3zzn1b1u] {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    margin: 0 0 16px;
    line-height: 1.15;
}
.po-hero-sub[b-9y3zzn1b1u] {
    font-size: 1.15rem;
    line-height: 1.6;
    opacity: 0.92;
    margin: 0 0 32px;
}
.po-hero-actions[b-9y3zzn1b1u] {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.po-hero-actions .btn-outline[b-9y3zzn1b1u] {
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}
.po-hero-actions .btn-outline:hover[b-9y3zzn1b1u] {
    background: rgba(255,255,255,0.15);
}
.po-hero-note[b-9y3zzn1b1u] {
    margin-top: 16px;
    font-size: 0.82rem;
    opacity: 0.7;
}

/* ── Stats Bar ── */
.po-stats[b-9y3zzn1b1u] {
    background: var(--card-warm);
    border-bottom: 1px solid var(--border);
    padding: 28px 24px;
}
.po-stats-inner[b-9y3zzn1b1u] {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}
.po-stat[b-9y3zzn1b1u] {
    text-align: center;
}
.po-stat strong[b-9y3zzn1b1u] {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--brand-green);
}
.po-stat span[b-9y3zzn1b1u] {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* ── Sections ── */
.po-section[b-9y3zzn1b1u] {
    padding: 72px 24px;
}
.po-section-alt[b-9y3zzn1b1u] {
    background: var(--bg-warm);
}
.po-section-inner[b-9y3zzn1b1u] {
    max-width: 1100px;
    margin: 0 auto;
}
.po-section-title[b-9y3zzn1b1u] {
    text-align: center;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--text);
}
.po-section-sub[b-9y3zzn1b1u] {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.05rem;
    margin: 0 0 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Steps ── */
.po-steps[b-9y3zzn1b1u] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.po-step[b-9y3zzn1b1u] {
    text-align: center;
    padding: 28px 20px;
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.po-step-num[b-9y3zzn1b1u] {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--brand-green);
    color: #fff;
    font-weight: 800;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.po-step h3[b-9y3zzn1b1u] {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 8px;
}
.po-step p[b-9y3zzn1b1u] {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* ── Features Grid ── */
.po-features[b-9y3zzn1b1u] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.po-feature[b-9y3zzn1b1u] {
    background: var(--card);
    padding: 28px 22px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.po-feature-icon[b-9y3zzn1b1u] {
    font-size: 2rem;
    margin-bottom: 12px;
}
.po-feature h3[b-9y3zzn1b1u] {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 8px;
}
.po-feature p[b-9y3zzn1b1u] {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}
.po-feature a[b-9y3zzn1b1u] {
    color: var(--brand-green);
    font-weight: 600;
}

/* ── Pricing ── */
.po-pricing[b-9y3zzn1b1u] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 960px;
    margin: 0 auto;
}
.po-price-card[b-9y3zzn1b1u] {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg, 12px);
    padding: 36px 28px 32px;
    text-align: center;
    position: relative;
}
.po-price-featured[b-9y3zzn1b1u] {
    border-color: var(--brand-green);
    box-shadow: 0 4px 24px rgba(58,125,68,0.12);
    transform: scale(1.03);
}
.po-price-badge[b-9y3zzn1b1u] {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-green);
    color: #fff;
    padding: 4px 18px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.po-price-card h3[b-9y3zzn1b1u] {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 12px;
}
.po-price[b-9y3zzn1b1u] {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--brand-green);
    margin-bottom: 20px;
}
.po-price span[b-9y3zzn1b1u] {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-muted);
}
.po-price-card ul[b-9y3zzn1b1u] {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    text-align: left;
}
.po-price-card li[b-9y3zzn1b1u] {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text-muted);
}
.po-price-card li[b-9y3zzn1b1u]::before {
    content: "\2713 ";
    color: var(--brand-green);
    font-weight: 700;
    margin-right: 6px;
}

/* ── Quote ── */
.po-quote[b-9y3zzn1b1u] {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.7;
    border: none;
    margin: 24px 0 16px;
    padding: 0;
}

/* ── CTA ── */
.po-cta[b-9y3zzn1b1u] {
    background: var(--brand-green-dark);
    color: #fff;
    padding: 64px 24px;
    text-align: center;
}
.po-cta-inner[b-9y3zzn1b1u] {
    max-width: 600px;
    margin: 0 auto;
}
.po-cta h2[b-9y3zzn1b1u] {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 12px;
}
.po-cta p[b-9y3zzn1b1u] {
    opacity: 0.9;
    margin: 0 0 28px;
    font-size: 1.05rem;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .po-steps[b-9y3zzn1b1u] { grid-template-columns: repeat(2, 1fr); }
    .po-features[b-9y3zzn1b1u] { grid-template-columns: repeat(2, 1fr); }
    .po-pricing[b-9y3zzn1b1u] { grid-template-columns: 1fr; max-width: 400px; }
    .po-price-featured[b-9y3zzn1b1u] { transform: none; }
    .po-hero h1[b-9y3zzn1b1u] { font-size: 2rem; }
}
@media (max-width: 600px) {
    .po-hero[b-9y3zzn1b1u] { padding: 56px 20px 48px; }
    .po-hero h1[b-9y3zzn1b1u] { font-size: 1.7rem; }
    .po-steps[b-9y3zzn1b1u] { grid-template-columns: 1fr; }
    .po-features[b-9y3zzn1b1u] { grid-template-columns: 1fr; }
    .po-stats-inner[b-9y3zzn1b1u] { flex-direction: column; gap: 12px; }
}
/* /Components/Pages/Profile.razor.rz.scp.css */
/* ══════════════════════════════════════════
   CampgroundViews Passport — Scoped Styles
   Visual travel journal / profile page
   ══════════════════════════════════════════ */

/* ── Hero ── */
.passport-hero[b-sl2ju7s64f] {
    background:
        linear-gradient(160deg, #2d6435 0%, #3a7d44 30%, #4a8a52 55%, #d4813a 100%);
    color: #fff;
    padding: 64px 24px 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.passport-hero[b-sl2ju7s64f]::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 90%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 10%, rgba(212,129,58,0.12) 0%, transparent 50%);
    pointer-events: none;
}

.passport-hero[b-sl2ju7s64f]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: repeating-linear-gradient(
        90deg,
        var(--gold, #d4813a) 0px,
        var(--gold, #d4813a) 20px,
        transparent 20px,
        transparent 28px
    );
}

.passport-hero-inner[b-sl2ju7s64f] {
    position: relative;
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Avatar */
.passport-avatar[b-sl2ju7s64f] {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    border: 3px solid rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.04em;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.passport-name[b-sl2ju7s64f] {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 700;
    color: #fff;
    margin-top: 16px;
    line-height: 1.2;
}

.passport-username[b-sl2ju7s64f] {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
    font-weight: 500;
}

/* Rank Badge */
.passport-rank[b-sl2ju7s64f] {
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 100px;
    padding: 6px 16px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.passport-rank-stamp[b-sl2ju7s64f] {
    display: flex;
    align-items: center;
}

[b-sl2ju7s64f] .passport-rank-stamp svg {
    width: 22px;
    height: 22px;
}

[b-sl2ju7s64f] .rank-stamp-img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    border-radius: 50%;
}

.passport-rank-label[b-sl2ju7s64f] {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
}

/* Points */
.passport-points[b-sl2ju7s64f] {
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 1.05rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
}

[b-sl2ju7s64f] .passport-points svg {
    color: var(--gold-light, #e8a05a);
}

.passport-member-since[b-sl2ju7s64f] {
    margin-top: 6px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
}

/* Hero quick stats */
.passport-hero-stats[b-sl2ju7s64f] {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-pill[b-sl2ju7s64f] {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.85);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

[b-sl2ju7s64f] .stat-pill strong {
    font-weight: 800;
    color: #fff;
}


/* ── Page Body ── */
.passport-body[b-sl2ju7s64f] {
    max-width: 1080px;
    margin: 0 auto;
    padding: 40px 24px 64px;
}

/* ── Sections ── */
.passport-section[b-sl2ju7s64f] {
    margin-bottom: 48px;
}

.passport-section-title[b-sl2ju7s64f] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text, #2c3e2d);
    margin-bottom: 8px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-light, #ece8d8);
}

.section-count[b-sl2ju7s64f] {
    font-family: 'Nunito', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-dim, #6d8a6f);
    background: var(--surface, #f4f1e8);
    padding: 2px 10px;
    border-radius: 100px;
    margin-left: auto;
}

.section-hint[b-sl2ju7s64f] {
    font-size: 0.88rem;
    color: var(--text-muted, #5a7a5c);
    margin-bottom: 20px;
}


/* ── Stamp Category ── */
.stamp-category-title[b-sl2ju7s64f] {
    font-family: 'Nunito', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted, #5a7a5c);
    margin-top: 20px;
    margin-bottom: 12px;
}


/* ── Stamps Grid ── */
.stamps-grid[b-sl2ju7s64f] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 16px;
    margin-bottom: 8px;
}

.stamp-cell[b-sl2ju7s64f] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 8px 12px;
    border-radius: var(--radius-md, 10px);
    transition: transform 0.2s;
}

.stamp-cell:hover[b-sl2ju7s64f] {
    transform: translateY(-2px);
}

/* Earned stamp */
.stamp-earned[b-sl2ju7s64f] {
    background: var(--card, #fff);
    border: 1px solid var(--border-light, #ece8d8);
    box-shadow: var(--shadow-sm, 0 1px 4px rgba(44,62,45,0.08));
}

/* Unearned stamp */
.stamp-unearned[b-sl2ju7s64f] {
    background: var(--surface, #f4f1e8);
    border: 2px dashed var(--border, #ddd8c4);
    opacity: 0.7;
}

/* Stamp icon wrapper */
.stamp-icon-wrap[b-sl2ju7s64f] {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 8px;
    overflow: hidden;
}

[b-sl2ju7s64f] .stamp-icon-wrap svg {
    width: 36px;
    height: 36px;
}

/* Badge images within stamp icons */
[b-sl2ju7s64f] .stamp-badge-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

/* Earned stamp glow */
.stamp-glow[b-sl2ju7s64f] {
    background: rgba(58,125,68,0.08);
    box-shadow:
        0 0 0 3px rgba(58,125,68,0.06),
        0 0 12px rgba(58,125,68,0.10),
        0 2px 8px rgba(44,62,45,0.12);
    /* Slight random rotation for passport-stamp authenticity */
    transform: rotate(-3deg);
}

.stamp-earned:nth-child(2n) .stamp-glow[b-sl2ju7s64f] {
    transform: rotate(2deg);
}

.stamp-earned:nth-child(3n) .stamp-glow[b-sl2ju7s64f] {
    transform: rotate(-5deg);
}

.stamp-earned:nth-child(5n) .stamp-glow[b-sl2ju7s64f] {
    transform: rotate(4deg);
}

/* Locked stamp — still colorful but clearly unearned */
.stamp-locked[b-sl2ju7s64f] {
    background: var(--surface, #f4f1e8);
    filter: grayscale(0.4) opacity(0.65);
    position: relative;
}

.stamp-locked[b-sl2ju7s64f]::after {
    content: '🔒';
    position: absolute;
    bottom: 2px;
    right: 2px;
    font-size: 12px;
    filter: none;
}

.stamp-name[b-sl2ju7s64f] {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text, #2c3e2d);
    line-height: 1.2;
}

.stamp-date[b-sl2ju7s64f] {
    font-size: 0.68rem;
    color: var(--text-dim, #6d8a6f);
    margin-top: 2px;
}

.stamp-progress-text[b-sl2ju7s64f] {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted, #5a7a5c);
    margin-top: 2px;
}


/* ── Collections Grid ── */
.collections-grid[b-sl2ju7s64f] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 16px;
}

.collection-card[b-sl2ju7s64f] {
    background: var(--card, #fff);
    border: 1px solid var(--border-light, #ece8d8);
    border-radius: var(--radius-md, 10px);
    padding: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.collection-card:hover[b-sl2ju7s64f] {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md, 0 4px 16px rgba(44,62,45,0.10));
}

.collection-complete[b-sl2ju7s64f] {
    border-color: var(--brand-green-mist, #c8e6c9);
    background: linear-gradient(135deg, var(--card, #fff), var(--brand-green-pale, #e8f5e9));
}

.collection-header[b-sl2ju7s64f] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.collection-icon[b-sl2ju7s64f] {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

[b-sl2ju7s64f] .collection-icon svg {
    width: 28px;
    height: 28px;
}

.collection-name[b-sl2ju7s64f] {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text, #2c3e2d);
    margin: 0;
}

.collection-desc[b-sl2ju7s64f] {
    font-size: 0.82rem;
    color: var(--text-muted, #5a7a5c);
    line-height: 1.5;
    margin-bottom: 12px;
}

.collection-progress-wrap[b-sl2ju7s64f] {
    display: flex;
    align-items: center;
    gap: 10px;
}

[b-sl2ju7s64f] .collection-progress-wrap .progress-bar {
    flex: 1;
}

.collection-progress-label[b-sl2ju7s64f] {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dim, #6d8a6f);
    white-space: nowrap;
}

.collections-empty[b-sl2ju7s64f] {
    text-align: center;
    padding: 40px 24px;
    background: var(--surface, #f4f1e8);
    border-radius: var(--radius-lg, 12px);
    border: 2px dashed var(--border, #e0ddd4);
}

.collections-empty h3[b-sl2ju7s64f] {
    margin: 16px 0 8px;
    font-size: 1.1rem;
}

.collections-empty p[b-sl2ju7s64f] {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.5;
}


/* ── POI Grid (Bucket List & Permanent Stamps) ── */
.poi-grid[b-sl2ju7s64f] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 16px;
}

.poi-card[b-sl2ju7s64f] {
    background: var(--card, #fff);
    border: 1px solid var(--border-light, #ece8d8);
    border-radius: var(--radius-md, 10px);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    display: block;
    text-decoration: none;
    color: inherit;
}

.poi-card:hover[b-sl2ju7s64f] {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md, 0 4px 16px rgba(44,62,45,0.10));
    border-color: var(--brand-green-mist, #c8e6c9);
}

.poi-card-stamped[b-sl2ju7s64f] {
    border-left: 3px solid var(--brand-green, #3a7d44);
}

.poi-card-img[b-sl2ju7s64f] {
    position: relative;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--brand-green-mist, #c8e6c9), var(--surface, #f4f1e8));
    overflow: hidden;
}

.poi-card-img img[b-sl2ju7s64f] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.poi-card-img-placeholder[b-sl2ju7s64f] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Badge overlays on POI cards */
.poi-badge[b-sl2ju7s64f] {
    position: absolute;
    top: 10px;
    right: 10px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.poi-badge-pending[b-sl2ju7s64f] {
    background: var(--sky-pale, #e3f2fd);
    color: var(--sky, #4a90b8);
    border: 1px solid rgba(74,144,184,0.2);
}

.poi-badge-stamped[b-sl2ju7s64f] {
    background: var(--brand-green-pale, #e8f5e9);
    color: var(--brand-green-dark, #2d6435);
    border: 1px solid rgba(58,125,68,0.2);
}

.poi-card-body[b-sl2ju7s64f] {
    padding: 12px 16px 14px;
}

.poi-card-name[b-sl2ju7s64f] {
    font-family: 'Nunito', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text, #2c3e2d);
    margin: 0 0 2px;
    line-height: 1.3;
}

.poi-card-location[b-sl2ju7s64f] {
    font-size: 0.78rem;
    color: var(--text-muted, #5a7a5c);
    margin: 0;
}

.poi-card-reviewed[b-sl2ju7s64f] {
    font-size: 0.72rem;
    color: var(--text-dim, #6d8a6f);
    margin: 4px 0 0;
}


/* ── Stats Dashboard ── */
.stats-grid[b-sl2ju7s64f] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 16px;
}

.stat-card[b-sl2ju7s64f] {
    background: var(--card, #fff);
    border: 1px solid var(--border-light, #ece8d8);
    border-radius: var(--radius-md, 10px);
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.stat-card:hover[b-sl2ju7s64f] {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm, 0 1px 4px rgba(44,62,45,0.08));
}

/* Progress ring using conic-gradient */
.stat-ring[b-sl2ju7s64f] {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: conic-gradient(
        var(--ring-color, var(--brand-green)) calc(var(--ring-pct, 0) * 3.6deg),
        var(--border-light, #ece8d8) calc(var(--ring-pct, 0) * 3.6deg)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 10px;
}

.stat-ring[b-sl2ju7s64f]::before {
    content: '';
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    background: var(--card, #fff);
}

.stat-ring-value[b-sl2ju7s64f] {
    position: relative;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text, #2c3e2d);
}

.stat-card-label[b-sl2ju7s64f] {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text, #2c3e2d);
    margin-top: 2px;
}

.stat-card-sub[b-sl2ju7s64f] {
    font-size: 0.72rem;
    color: var(--text-dim, #6d8a6f);
}


/* ── Loading Skeleton ── */
.skeleton[b-sl2ju7s64f] {
    background: linear-gradient(90deg, rgba(255,255,255,0.1) 25%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0.1) 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer-b-sl2ju7s64f 1.5s infinite;
    border-radius: var(--radius-sm, 6px);
}

@keyframes skeleton-shimmer-b-sl2ju7s64f {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}


/* ── Responsive ── */
@media (max-width: 768px) {
    .passport-hero[b-sl2ju7s64f] {
        padding: 48px 20px 40px;
    }

    .passport-avatar[b-sl2ju7s64f] {
        width: 76px;
        height: 76px;
        font-size: 1.6rem;
    }

    .passport-body[b-sl2ju7s64f] {
        padding: 28px 16px 48px;
    }

    .stamps-grid[b-sl2ju7s64f] {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 10px;
    }

    .stamp-icon-wrap[b-sl2ju7s64f] {
        width: 48px;
        height: 48px;
    }

    [b-sl2ju7s64f] .stamp-icon-wrap svg {
        width: 28px;
        height: 28px;
    }

    .poi-grid[b-sl2ju7s64f] {
        grid-template-columns: 1fr;
    }

    .collections-grid[b-sl2ju7s64f] {
        grid-template-columns: 1fr;
    }

    .stats-grid[b-sl2ju7s64f] {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .passport-hero-stats[b-sl2ju7s64f] {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .stamps-grid[b-sl2ju7s64f] {
        grid-template-columns: repeat(3, 1fr);
    }

    .stats-grid[b-sl2ju7s64f] {
        grid-template-columns: repeat(2, 1fr);
    }

    .passport-section-title[b-sl2ju7s64f] {
        font-size: 1.2rem;
    }

    .passport-share-bar[b-sl2ju7s64f] {
        flex-wrap: wrap;
        gap: 6px;
    }

    .share-btn-passport[b-sl2ju7s64f] {
        font-size: 0.75rem;
        padding: 5px 12px;
    }
}

/* ── Share Buttons ── */

.passport-share-bar[b-sl2ju7s64f] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
}

.share-btn-passport[b-sl2ju7s64f] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255,255,255,0.95);
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    cursor: pointer;
    text-decoration: none;
    backdrop-filter: blur(4px);
    transition: background 0.2s, transform 0.15s;
}

.share-btn-passport:hover[b-sl2ju7s64f] {
    background: rgba(255,255,255,0.25);
    transform: translateY(-1px);
}

/* ── Badge Share Row ── */

.stamp-share-row[b-sl2ju7s64f] {
    display: flex;
    gap: 6px;
    margin-top: 4px;
    opacity: 0;
    transition: opacity 0.2s;
}

.stamp-cell:hover .stamp-share-row[b-sl2ju7s64f] {
    opacity: 1;
}

.stamp-share-link[b-sl2ju7s64f] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--text-muted);
    background: var(--surface);
    border: 1px solid var(--border);
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.stamp-share-link:hover[b-sl2ju7s64f] {
    background: var(--brand-green);
    color: white;
    border-color: var(--brand-green);
}

/* ── Next Badge Card ── */

.next-badge-section[b-sl2ju7s64f] {
    margin-bottom: 20px;
}

.next-badge-card[b-sl2ju7s64f] {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 32px;
    background: linear-gradient(135deg, #e8f5e9 0%, #fff8e1 50%, #e3f2fd 100%);
    border: 2px solid var(--brand-green, #3a7d44);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(58, 125, 68, 0.12);
    position: relative;
    overflow: hidden;
}

.next-badge-card[b-sl2ju7s64f]::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(58,125,68,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.next-badge-icon[b-sl2ju7s64f] {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.15));
    animation: badgePulse-b-sl2ju7s64f 3s ease-in-out infinite;
}

@keyframes badgePulse-b-sl2ju7s64f {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.next-badge-icon :deep(svg)[b-sl2ju7s64f] {
    width: 100%;
    height: 100%;
}

.next-badge-info[b-sl2ju7s64f] {
    flex: 1;
    min-width: 0;
}

.next-badge-label[b-sl2ju7s64f] {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    background: var(--brand-green, #3a7d44);
    padding: 3px 12px;
    border-radius: 10px;
    margin-bottom: 8px;
}

.next-badge-name[b-sl2ju7s64f] {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 6px;
}

.next-badge-desc[b-sl2ju7s64f] {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 14px;
}

.next-badge-progress-wrap[b-sl2ju7s64f] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.next-badge-progress-wrap .progress-bar[b-sl2ju7s64f] {
    flex: 1;
    background: var(--border);
    border-radius: 10px;
    overflow: hidden;
    height: 10px;
}

.next-badge-progress-wrap .progress-fill[b-sl2ju7s64f] {
    height: 100%;
    border-radius: 10px;
    transition: width 0.5s ease;
}

.next-badge-progress-text[b-sl2ju7s64f] {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--brand-green, #3a7d44);
    white-space: nowrap;
}

@media (max-width: 480px) {
    .next-badge-card[b-sl2ju7s64f] {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
        padding: 16px;
    }
}

/* ── Remove button on favorite cards ── */
.poi-card-wrap[b-sl2ju7s64f] { position: relative; }
.poi-remove-btn[b-sl2ju7s64f] {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background 0.15s;
}
.poi-remove-btn:hover[b-sl2ju7s64f] { background: rgba(211,47,47,0.85); }

/* ── Owner sidebar layout ── */
.passport-owner-layout[b-sl2ju7s64f] {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 0;
}

.passport-owner-sidebar[b-sl2ju7s64f] {
    width: 220px;
    flex-shrink: 0;
    background: var(--card, #fff);
    border-right: 1px solid var(--border, #e0ddd4);
    padding: 24px 0;
    min-height: 400px;
}

.passport-owner-nav[b-sl2ju7s64f] {
    display: flex;
    flex-direction: column;
}

.passport-owner-nav a[b-sl2ju7s64f] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.15s;
    border-left: 3px solid transparent;
}

.passport-owner-nav a:hover[b-sl2ju7s64f] {
    background: var(--surface, #f4f1e8);
    color: var(--text);
}

.passport-owner-nav a.active[b-sl2ju7s64f] {
    color: var(--brand-green, #3a7d44);
    font-weight: 700;
    border-left-color: var(--brand-green, #3a7d44);
    background: var(--brand-green-pale, #e8f5e9);
}

.passport-body-with-sidebar[b-sl2ju7s64f] {
    flex: 1;
    min-width: 0;
}

@media (max-width: 768px) {
    .passport-owner-sidebar[b-sl2ju7s64f] {
        display: none;
    }
}
/* /Components/Pages/Tour.razor.rz.scp.css */
/* ══════════════════════════════════════════════
   Tour.razor — YouTube-style two-column layout
   Uses LIGHT theme variables from theme.css
══════════════════════════════════════════════ */

/* ── Breadcrumb ── */
.tour-breadcrumb[b-67z3tbksgw] {
    background: var(--surface, #f4f1e8);
    border-bottom: 1px solid var(--border, #ddd8c4);
    padding: 10px 24px;
}

.tour-breadcrumb ol[b-67z3tbksgw] {
    display: flex;
    align-items: center;
    gap: 6px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    font-size: 0.82rem;
    color: var(--text-muted, #5a7a5c);
}

.tour-breadcrumb a[b-67z3tbksgw] {
    color: var(--brand-green, #3a7d44);
    text-decoration: none;
    transition: color 0.15s;
}

.tour-breadcrumb a:hover[b-67z3tbksgw] {
    color: var(--brand-green-dark, #2d6435);
    text-decoration: underline;
}

.tour-breadcrumb li[aria-current="page"][b-67z3tbksgw] {
    color: var(--text, #2c3e2d);
    font-weight: 600;
}

/* ── Main Container ── */
.tour-container[b-67z3tbksgw] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 16px 48px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

/* ── Left Column (70%) ── */
.tour-left[b-67z3tbksgw] {
    flex: 0 0 70%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ── Right Column (30%, sticky) ── */
.tour-right[b-67z3tbksgw] {
    flex: 0 0 calc(30% - 24px);
    min-width: 0;
    position: sticky;
    top: calc(var(--nav-height, 70px) + 16px);
    max-height: calc(100vh - var(--nav-height, 70px) - 32px);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--border, #ddd8c4) transparent;
}

.tour-right[b-67z3tbksgw]::-webkit-scrollbar { width: 4px; }
.tour-right[b-67z3tbksgw]::-webkit-scrollbar-track { background: transparent; }
.tour-right[b-67z3tbksgw]::-webkit-scrollbar-thumb { background: var(--border, #ddd8c4); border-radius: 2px; }

/* ══════════════════════════════════════════════
   1. TOUR IFRAME PLAYER
══════════════════════════════════════════════ */
.player-wrap[b-67z3tbksgw] {
    position: relative;
    width: 100%;
    border-radius: var(--radius-lg, 16px);
    overflow: hidden;
    background: var(--surface, #f4f1e8);
    box-shadow: var(--shadow-md, 0 4px 16px rgba(44,62,45,0.10));
}

.player-stage[b-67z3tbksgw] {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #1a1a1a;
    overflow: hidden;
}

.tour-iframe[b-67z3tbksgw] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Fullscreen button — iOS only (Safari doesn't support iframe Fullscreen API) */
.tour-fullscreen-btn[b-67z3tbksgw] {
    position: absolute;
    bottom: 32px;
    right: 12px;
    z-index: 15;
    background: rgba(0,0,0,0.55);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    display: none; /* hidden by default — shown only on iOS via JS */
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    transition: background 0.2s;
}
.tour-fullscreen-btn:hover[b-67z3tbksgw] { background: rgba(0,0,0,0.75); }

/* CSS-based fullscreen mode (for iOS Safari) */
[b-67z3tbksgw] .player-wrap.tour-fs {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 99999 !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #000 !important;
}
[b-67z3tbksgw] .player-wrap.tour-fs .player-stage {
    aspect-ratio: auto !important;
    height: 100vh !important;
    border-radius: 0 !important;
}
[b-67z3tbksgw] .player-wrap.tour-fs .tour-fullscreen-btn {
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
}

/* badge-360 removed — no longer used */
.badge-360[b-67z3tbksgw] {
    display: none;
}

.player-skeleton[b-67z3tbksgw] {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg, 16px);
}

/* ══════════════════════════════════════════════
   2. TITLE ROW
══════════════════════════════════════════════ */
.title-row[b-67z3tbksgw] {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    justify-content: space-between;
}

.title-left[b-67z3tbksgw] {
    flex: 1;
    min-width: 0;
}

.tour-title[b-67z3tbksgw] {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text, #2c3e2d);
    line-height: 1.3;
    margin-bottom: 8px;
}

.meta-tags[b-67z3tbksgw] {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.meta-tag[b-67z3tbksgw] {
    font-size: 0.82rem;
    color: var(--text-muted, #5a7a5c);
    display: flex;
    align-items: center;
    gap: 3px;
}

.meta-tag + .meta-tag[b-67z3tbksgw]::before {
    content: '\00b7';
    margin-right: 3px;
    color: var(--text-dim, #6d8a6f);
}

.title-actions[b-67z3tbksgw] {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.action-btn[b-67z3tbksgw] {
    background: var(--card, #ffffff);
    border: 1px solid var(--border, #ddd8c4);
    color: var(--text-muted, #5a7a5c);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
}

.action-btn:hover[b-67z3tbksgw] {
    background: var(--brand-green-pale, #e8f5e9);
    color: var(--brand-green, #3a7d44);
    border-color: var(--brand-green-mist, #c8e6c9);
}

/* ══════════════════════════════════════════════
   3. BACK TO PARK BANNER
══════════════════════════════════════════════ */
.back-banner[b-67z3tbksgw] {
    background: var(--card, #ffffff);
    border: 1px solid var(--border, #ddd8c4);
    border-left: 4px solid var(--brand-green, #3a7d44);
    border-radius: var(--radius-md, 10px);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-sm, 0 1px 4px rgba(44,62,45,0.08));
}

.back-banner-thumb[b-67z3tbksgw] {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm, 6px);
    background: var(--surface, #f4f1e8);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    overflow: hidden;
    border: 1px solid var(--border-light, #ece8d8);
}

.back-banner-thumb img[b-67z3tbksgw] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.back-banner-info[b-67z3tbksgw] {
    flex: 1;
    min-width: 0;
}

.back-banner-label[b-67z3tbksgw] {
    font-size: 0.68rem;
    color: var(--brand-green, #3a7d44);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 2px;
}

.back-banner-name[b-67z3tbksgw] {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text, #2c3e2d);
    margin-bottom: 2px;
}

.back-banner-meta[b-67z3tbksgw] {
    font-size: 0.78rem;
    color: var(--text-muted, #5a7a5c);
}

.back-banner-actions[b-67z3tbksgw] {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
    flex-wrap: wrap;
    justify-content: flex-end;
}

/* ── Banner Buttons ── */
.btn-tour-primary[b-67z3tbksgw] {
    background: var(--brand-green, #3a7d44);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-sm, 6px);
    padding: 9px 16px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}

.btn-tour-primary:hover[b-67z3tbksgw] {
    background: var(--brand-green-dark, #2d6435);
    transform: translateY(-1px);
}

.btn-tour-outline[b-67z3tbksgw] {
    background: transparent;
    color: var(--brand-green, #3a7d44);
    border: 1px solid var(--brand-green, #3a7d44);
    border-radius: var(--radius-sm, 6px);
    padding: 8px 15px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.btn-tour-outline:hover[b-67z3tbksgw] {
    background: var(--brand-green-pale, #e8f5e9);
}

/* ══════════════════════════════════════════════
   4. TOUR CARD (base for Availability, About)
══════════════════════════════════════════════ */
.tour-card[b-67z3tbksgw] {
    background: var(--card, #ffffff);
    border: 1px solid var(--border, #ddd8c4);
    border-radius: var(--radius-md, 10px);
    padding: 18px;
    box-shadow: var(--shadow-sm, 0 1px 4px rgba(44,62,45,0.08));
}

.tour-card-title[b-67z3tbksgw] {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text, #2c3e2d);
    margin-bottom: 14px;
}

/* ── Availability Date Row ── */
.avail-date-row[b-67z3tbksgw] {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.avail-date-field[b-67z3tbksgw] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 120px;
}

.avail-date-field label[b-67z3tbksgw] {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted, #5a7a5c);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.avail-date-input[b-67z3tbksgw] {
    background: var(--surface, #f4f1e8);
    border: 1px solid var(--border, #ddd8c4);
    border-radius: var(--radius-sm, 6px);
    padding: 8px 11px;
    color: var(--text, #2c3e2d);
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
}

.avail-date-input:focus[b-67z3tbksgw] {
    border-color: var(--brand-green, #3a7d44);
    box-shadow: 0 0 0 3px rgba(58,125,68,0.15);
}

.btn-avail-check[b-67z3tbksgw] {
    background: var(--brand-green, #3a7d44);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-sm, 6px);
    padding: 9px 16px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-avail-check:hover[b-67z3tbksgw] {
    background: var(--brand-green-dark, #2d6435);
}

.btn-avail-check:disabled[b-67z3tbksgw] {
    opacity: 0.6;
    cursor: default;
}

/* ══════════════════════════════════════════════
   5. ABOUT SECTION
══════════════════════════════════════════════ */
.about-text[b-67z3tbksgw] {
    color: var(--text-muted, #5a7a5c);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.about-text p[b-67z3tbksgw] {
    margin-bottom: 0.8em;
}

.about-text p:last-child[b-67z3tbksgw] {
    margin-bottom: 0;
}

.amenity-pills[b-67z3tbksgw] {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 14px;
    margin-bottom: 14px;
}

.amenity-pill[b-67z3tbksgw] {
    background: var(--brand-green-pale, #e8f5e9);
    border: 1px solid var(--brand-green-mist, #c8e6c9);
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--brand-green-dark, #2d6435);
}

.read-more-link[b-67z3tbksgw] {
    color: var(--brand-green, #3a7d44);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    transition: color 0.2s;
}

.read-more-link:hover[b-67z3tbksgw] {
    color: var(--brand-green-dark, #2d6435);
    text-decoration: underline;
}

/* ══════════════════════════════════════════════
   RIGHT COLUMN COMPONENTS
══════════════════════════════════════════════ */
.sidebar-section[b-67z3tbksgw] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-section-title[b-67z3tbksgw] {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-dim, #6d8a6f);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 2px;
}

.sidebar-divider[b-67z3tbksgw] {
    border: none;
    border-top: 1px solid var(--border-light, #ece8d8);
    margin: 4px 0;
}

/* ── Mini Tour Cards (Nearby with Tours) ── */
.mini-tour-card[b-67z3tbksgw] {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 8px;
    border-radius: var(--radius-sm, 6px);
    border: 1px solid var(--border-light, #ece8d8);
    background: var(--card, #ffffff);
    transition: background 0.2s, box-shadow 0.2s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.mini-tour-card:hover[b-67z3tbksgw] {
    background: var(--surface, #f4f1e8);
    box-shadow: var(--shadow-sm, 0 1px 4px rgba(44,62,45,0.08));
}

.mini-thumb[b-67z3tbksgw] {
    width: 80px;
    height: 60px;
    border-radius: var(--radius-sm, 6px);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    background: var(--surface, #f4f1e8);
}

.mini-thumb img[b-67z3tbksgw] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-thumb-placeholder[b-67z3tbksgw] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: var(--surface, #f4f1e8);
}

.mini-thumb-overlay[b-67z3tbksgw] {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.15);
    opacity: 0;
    transition: opacity 0.2s;
}

.mini-tour-card:hover .mini-thumb-overlay[b-67z3tbksgw] {
    opacity: 1;
}

.mini-play-icon[b-67z3tbksgw] {
    color: #ffffff;
    font-size: 0.85rem;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.mini-info[b-67z3tbksgw] {
    flex: 1;
    min-width: 0;
}

.mini-name[b-67z3tbksgw] {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text, #2c3e2d);
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mini-meta[b-67z3tbksgw] {
    font-size: 0.7rem;
    color: var(--text-muted, #5a7a5c);
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* ── Recommended Tour Cards ── */
.rec-list[b-67z3tbksgw] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rec-card[b-67z3tbksgw] {
    display: flex;
    gap: 10px;
    padding: 6px;
    border-radius: var(--radius-sm, 6px);
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    color: inherit;
}

.rec-card:hover[b-67z3tbksgw] {
    background: var(--surface, #f4f1e8);
}

.rec-thumb[b-67z3tbksgw] {
    width: 120px;
    min-width: 120px;
    height: 68px;
    border-radius: var(--radius-sm, 6px);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--surface, #f4f1e8);
}

.rec-thumb img[b-67z3tbksgw] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rec-thumb-placeholder[b-67z3tbksgw] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    background: var(--surface, #f4f1e8);
}

.rec-thumb-overlay[b-67z3tbksgw] {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.15);
    opacity: 0;
    transition: opacity 0.2s;
}

.rec-card:hover .rec-thumb-overlay[b-67z3tbksgw] {
    opacity: 1;
}

.rec-play-icon[b-67z3tbksgw] {
    color: #ffffff;
    font-size: 0.9rem;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.rec-badge[b-67z3tbksgw] {
    position: absolute;
    top: 5px;
    left: 5px;
    background: var(--brand-green, #3a7d44);
    color: #ffffff;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    letter-spacing: 0.04em;
}

.rec-info[b-67z3tbksgw] {
    flex: 1;
    min-width: 0;
}

.rec-name[b-67z3tbksgw] {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text, #2c3e2d);
    line-height: 1.3;
    margin-bottom: 3px;
    /* Clamp to two lines */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rec-location[b-67z3tbksgw] {
    font-size: 0.7rem;
    color: var(--text-muted, #5a7a5c);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rec-rating[b-67z3tbksgw] {
    font-size: 0.7rem;
    color: var(--gold, #d4813a);
}

/* ══════════════════════════════════════════════
   Loading Skeleton
══════════════════════════════════════════════ */
.skeleton[b-67z3tbksgw] {
    background: linear-gradient(90deg, var(--surface, #f4f1e8) 25%, var(--border-light, #ece8d8) 50%, var(--surface, #f4f1e8) 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer-b-67z3tbksgw 1.5s infinite;
    border-radius: var(--radius-sm, 6px);
}

@keyframes skeleton-shimmer-b-67z3tbksgw {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — TABLET (< 900px)
══════════════════════════════════════════════ */
@media (max-width: 900px) {
    .tour-container[b-67z3tbksgw] {
        flex-direction: column;
        padding: 16px 12px 40px;
    }

    .tour-left[b-67z3tbksgw] {
        flex: none;
        width: 100%;
    }

    .tour-right[b-67z3tbksgw] {
        flex: none;
        width: 100%;
        position: static;
        max-height: none;
        overflow: visible;
    }

    /* Horizontal scroll for recs on tablet */
    .rec-list[b-67z3tbksgw] {
        flex-direction: row;
        overflow-x: auto;
        gap: 10px;
        padding-bottom: 8px;
        scrollbar-width: thin;
        scrollbar-color: var(--border, #ddd8c4) transparent;
    }

    .rec-list[b-67z3tbksgw]::-webkit-scrollbar { height: 4px; }
    .rec-list[b-67z3tbksgw]::-webkit-scrollbar-thumb { background: var(--border, #ddd8c4); border-radius: 2px; }

    .rec-list .rec-card[b-67z3tbksgw] {
        flex-direction: column;
        flex: 0 0 160px;
        min-width: 160px;
    }

    .rec-list .rec-thumb[b-67z3tbksgw] {
        width: 100%;
        min-width: auto;
        height: 90px;
    }

    .rec-list .rec-info[b-67z3tbksgw] {
        padding: 0 2px;
    }

    .back-banner[b-67z3tbksgw] {
        flex-wrap: wrap;
    }

    .back-banner-actions[b-67z3tbksgw] {
        width: 100%;
        margin-top: 8px;
    }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — MOBILE (< 768px)
══════════════════════════════════════════════ */
@media (max-width: 768px) {
    .tour-container[b-67z3tbksgw] {
        padding: 12px 8px 32px;
        gap: 14px;
    }

    /* Tour player: full bleed on mobile for maximum immersion */
    .player-wrap[b-67z3tbksgw] {
        border-radius: var(--radius-sm, 6px);
        margin: 0 -8px;
        width: calc(100% + 16px);
        box-shadow: none;
    }

    .player-stage[b-67z3tbksgw] {
        /* Taller aspect ratio on mobile for better 360 interaction */
        aspect-ratio: 4 / 3;
    }

    .tour-title[b-67z3tbksgw] {
        font-size: 1.1rem;
    }

    .title-row[b-67z3tbksgw] {
        flex-direction: column;
        gap: 10px;
    }

    .title-actions[b-67z3tbksgw] {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 6px;
    }

    .action-btn[b-67z3tbksgw] {
        padding: 6px 11px;
        font-size: 0.78rem;
    }

    .back-banner[b-67z3tbksgw] {
        flex-wrap: wrap;
    }

    .back-banner-thumb[b-67z3tbksgw] {
        display: none;
    }

    .back-banner-actions[b-67z3tbksgw] {
        width: 100%;
        flex-direction: column;
        gap: 6px;
        margin-top: 8px;
    }

    .back-banner-actions .btn-tour-primary[b-67z3tbksgw],
    .back-banner-actions .btn-tour-outline[b-67z3tbksgw] {
        width: 100%;
        text-align: center;
    }

    .avail-date-row[b-67z3tbksgw] {
        flex-direction: column;
    }

    .btn-avail-check[b-67z3tbksgw] {
        width: 100%;
    }

    .tour-card[b-67z3tbksgw] {
        padding: 14px;
    }

    .meta-tag[b-67z3tbksgw] {
        font-size: 0.75rem;
    }

    .tour-breadcrumb[b-67z3tbksgw] {
        padding: 8px 12px;
    }

    .tour-breadcrumb ol[b-67z3tbksgw] {
        font-size: 0.75rem;
        gap: 4px;
    }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (< 480px)
══════════════════════════════════════════════ */
@media (max-width: 480px) {
    .player-stage[b-67z3tbksgw] {
        /* Even taller for small phones — maximize 360 viewport */
        aspect-ratio: 3 / 2.5;
    }


    .tour-title[b-67z3tbksgw] {
        font-size: 1rem;
    }

    .back-banner[b-67z3tbksgw] {
        padding: 10px 12px;
    }

    .back-banner-label[b-67z3tbksgw] {
        font-size: 0.62rem;
    }

    .back-banner-name[b-67z3tbksgw] {
        font-size: 0.88rem;
    }

    .back-banner-meta[b-67z3tbksgw] {
        font-size: 0.72rem;
    }

    /* Stack recommended cards vertically on small mobile */
    .rec-list[b-67z3tbksgw] {
        flex-direction: column;
        overflow-x: visible;
    }

    .rec-list .rec-card[b-67z3tbksgw] {
        flex-direction: row;
        flex: none;
        min-width: 0;
    }

    .rec-list .rec-thumb[b-67z3tbksgw] {
        width: 100px;
        min-width: 100px;
        height: 56px;
    }
}
