:root {
    --bago-bg-1: #062f33;
    --bago-bg-2: #0a5b60;
    --bago-card: rgba(255,255,255,0.10);
    --bago-card-2: rgba(255,255,255,0.08);
    --bago-border: rgba(255,255,255,0.12);
    --bago-text: #ffffff;
    --bago-text-soft: rgba(255,255,255,0.78);
    --bago-accent: #1fe0c9;
    --bago-accent-2: #4de8ff;
    --bago-warning: #ffd166;
    --bago-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
    --bago-radius: 22px;
}

html, body {
    background:
        radial-gradient(circle at top right, rgba(77,232,255,0.18), transparent 30%),
        radial-gradient(circle at top left, rgba(31,224,201,0.10), transparent 20%),
        linear-gradient(180deg, var(--bago-bg-2), var(--bago-bg-1));
    color: var(--bago-text);
    min-height: 100%;
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
    padding-bottom: 95px;
}

a {
    text-decoration: none;
}

.bago-shell {
    max-width: 640px;
    margin: 0 auto;
    min-height: 100vh;
    position: relative;
}

.bago-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    background: rgba(4, 36, 40, 0.72);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.bago-header-inner {
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bago-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bago-brand-badge {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--bago-accent), var(--bago-accent-2));
    color: #03343a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    box-shadow: var(--bago-shadow);
}

.bago-brand-title {
    line-height: 1.1;
}

.bago-brand-title strong {
    display: block;
    font-size: 20px;
}

.bago-brand-title span {
    color: var(--bago-text-soft);
    font-size: 12px;
}

.bago-header-actions {
    display: flex;
    gap: 10px;
}

.bago-icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.bago-page {
    padding: 18px 14px 24px;
}

.bago-search-box {
    background: rgba(255,255,255,0.12);
    border: 1px solid var(--bago-border);
    border-radius: 18px;
    padding: 14px 16px;
    color: #fff;
    margin-bottom: 16px;
}

.bago-search-box input {
    border: 0;
    outline: 0;
    background: transparent;
    color: #fff;
    width: 100%;
}

.bago-search-box input::placeholder {
    color: rgba(255,255,255,0.65);
}

.bago-hero {
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(10, 67, 72, 0.95), rgba(19, 125, 132, 0.85));
    min-height: 240px;
    position: relative;
    box-shadow: var(--bago-shadow);
    margin-bottom: 18px;
}

.bago-hero img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    opacity: 0.92;
}

.bago-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.10), rgba(0,0,0,0.50));
    display: flex;
    align-items: flex-end;
    padding: 18px;
}

.bago-hero-content h1,
.bago-hero-content h2 {
    margin: 0 0 8px;
    font-weight: 800;
    font-size: 28px;
}

.bago-hero-content p {
    margin: 0;
    color: rgba(255,255,255,0.88);
    font-size: 14px;
}

.bago-section-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
}

.bago-section-subtitle {
    color: var(--bago-text-soft);
    margin-bottom: 18px;
}

.bago-chip-row {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
    margin-bottom: 16px;
}

.bago-chip {
    white-space: nowrap;
    border-radius: 999px;
    padding: 10px 14px;
    color: #fff;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.08);
    font-size: 14px;
}

.bago-card {
    background: var(--bago-card);
    border: 1px solid var(--bago-border);
    border-radius: var(--bago-radius);
    padding: 16px;
    box-shadow: var(--bago-shadow);
    backdrop-filter: blur(8px);
}

.bago-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 20px;
}

.bago-feature-item {
    background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.08));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 18px 12px;
    text-align: center;
    color: #fff;
    min-height: 118px;
}

.bago-feature-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 12px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(31,224,201,0.9), rgba(77,232,255,0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #054348;
    font-size: 26px;
    box-shadow: 0 12px 22px rgba(0,0,0,0.20);
}

.bago-feature-label {
    font-size: 14px;
    line-height: 1.25;
    font-weight: 600;
}

.bago-list {
    display: grid;
    gap: 16px;
}

.bago-activity-card {
    background: var(--bago-card);
    border: 1px solid var(--bago-border);
    border-radius: 24px;
    overflow: hidden;
    color: #fff;
    box-shadow: var(--bago-shadow);
}

.bago-activity-image {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.bago-activity-body {
    padding: 16px;
}

.bago-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.bago-badge {
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    background: rgba(31,224,201,0.15);
    color: #c8fffa;
    border: 1px solid rgba(31,224,201,0.25);
}

.bago-badge-warning {
    background: rgba(255, 209, 102, 0.16);
    border-color: rgba(255, 209, 102, 0.30);
    color: #fff5cb;
}

.bago-title {
    font-size: 21px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 6px;
}

.bago-text-soft {
    color: var(--bago-text-soft);
}

.bago-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
}

.bago-price {
    font-size: 22px;
    font-weight: 800;
}

.bago-btn {
    border: 0;
    outline: 0;
    border-radius: 16px;
    padding: 12px 18px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.bago-btn-primary {
    background: linear-gradient(135deg, var(--bago-accent), var(--bago-accent-2));
    color: #053940;
}

.bago-btn-secondary {
    background: rgba(255,255,255,0.10);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.10);
}

.bago-detail-cover {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 28px;
    display: block;
    margin-bottom: 18px;
}

.bago-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 16px 0;
}

.bago-stat {
    background: rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 14px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.08);
}

.bago-stat strong {
    display: block;
    font-size: 18px;
    margin-bottom: 4px;
}

.bago-box {
    background: rgba(255,255,255,0.08);
    border-radius: 22px;
    padding: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 14px;
}

.bago-bottom-nav {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
    width: min(100%, 640px);
    padding: 0 14px env(safe-area-inset-right) calc(0px + env(safe-area-inset-bottom)) env(safe-area-inset-left);
    z-index: 999;
}

.bago-bottom-nav-inner {
    background: rgba(240, 244, 245, 0.22);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 28px;
    display: flex;
    justify-content: space-around;
    padding: 10px 8px;
    box-shadow: 0 18px 42px rgba(0,0,0,0.28);
}

.bago-nav-link {
    flex: 1;
    text-align: center;
    color: rgba(255,255,255,0.75);
    padding: 6px 4px;
    border-radius: 18px;
    font-size: 12px;
    transition: all 0.2s ease;
}

.bago-nav-link i {
    display: block;
    font-size: 22px;
    margin-bottom: 4px;
}

.bago-nav-link.active {
    color: #fff;
    background: rgba(255,255,255,0.10);
}

.bago-empty {
    text-align: center;
    padding: 40px 20px;
    color: rgba(255,255,255,0.80);
}

@media (max-width: 420px) {
    .bago-feature-grid {
        gap: 10px;
    }

    .bago-feature-item {
        min-height: 110px;
        padding: 16px 10px;
    }

    .bago-feature-label {
        font-size: 13px;
    }
}
.bago-input {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.08);
    color: #fff;
    outline: none;
}

.bago-input::placeholder {
    color: rgba(255,255,255,0.55);
}

select.bago-input option {
    color: #111;
}

label {
    display: block;
    margin-bottom: 7px;
    color: rgba(255,255,255,0.86);
    font-weight: 600;
    font-size: 14px;
}

/* BaGO Stage 5 polish/fixes */
* {
    box-sizing: border-box;
}

.bago-brand {
    color: #fff;
}

.bago-brand:hover,
.bago-nav-link:hover,
.bago-feature-item:hover,
.bago-activity-card:hover {
    color: #fff;
    text-decoration: none;
}

.bago-language-switcher {
    position: relative;
}

.bago-language-switcher .bago-icon-btn {
    gap: 4px;
    border: 0;
    cursor: pointer;
    padding: 0;
}

.bago-language-current {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .02em;
}

.bago-language-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    width: 152px;
    padding: 8px;
    background: rgba(3, 35, 39, .96);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(0,0,0,.35);
    display: none;
    z-index: 1000;
}

.bago-language-switcher:hover .bago-language-menu,
.bago-language-switcher:focus-within .bago-language-menu {
    display: block;
}

.bago-language-menu a {
    display: block;
    padding: 10px 12px;
    color: rgba(255,255,255,.82);
    border-radius: 12px;
    font-size: 14px;
}

.bago-language-menu a:hover,
.bago-language-menu a.active {
    background: rgba(31,224,201,.14);
    color: #fff;
}

.bago-input,
.bago-card textarea,
.bago-card select {
    max-width: 100%;
}

.bago-input:focus,
.bago-search-box:focus-within {
    border-color: rgba(31,224,201,.55);
    box-shadow: 0 0 0 3px rgba(31,224,201,.10);
}

.bago-btn {
    cursor: pointer;
    text-align: center;
    justify-content: center;
    transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}

.bago-btn:active,
.bago-feature-item:active,
.bago-activity-card:active {
    transform: scale(.985);
}

.bago-bottom-nav-inner {
    background: rgba(5, 47, 52, .86);
}

.bago-nav-link.active {
    background: linear-gradient(135deg, rgba(31,224,201,.20), rgba(77,232,255,.12));
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}

.bago-nav-link span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pagination {
    display: flex;
    gap: 6px;
    list-style: none;
    padding-left: 0;
    justify-content: center;
    flex-wrap: wrap;
}

.page-link,
.page-item span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    min-height: 38px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.08);
    color: #fff;
    padding: 8px 11px;
}

.page-item.active .page-link {
    background: linear-gradient(135deg, var(--bago-accent), var(--bago-accent-2));
    color: #053940;
    border-color: transparent;
}

.page-item.disabled .page-link,
.page-item.disabled span {
    opacity: .45;
}

@media (min-width: 760px) {
    .bago-shell {
        max-width: 760px;
    }

    .bago-bottom-nav {
        width: min(100%, 760px);
    }
}

@media (max-width: 380px) {
    .bago-brand-title strong {
        font-size: 18px;
    }

    .bago-brand-title span {
        display: none;
    }

    .bago-header-inner {
        padding-left: 12px;
        padding-right: 12px;
    }

    .bago-nav-link {
        font-size: 10px;
    }
}


/* BaGO Step 12/13 theme polish */
body.bago-theme-batumi_sea,
.bago-theme-batumi_sea {
    --bago-bg-1: #06333a;
    --bago-bg-2: #078b97;
    --bago-accent: #22f4cf;
    --bago-accent-2: #5ce1ff;
    --bago-warning: #ffe082;
}

body.bago-theme-dark_luxury,
.bago-theme-dark_luxury {
    --bago-bg-1: #090d18;
    --bago-bg-2: #14213d;
    --bago-card: rgba(255,255,255,0.08);
    --bago-card-2: rgba(255,255,255,0.06);
    --bago-accent: #d6b36a;
    --bago-accent-2: #f8e6a0;
    --bago-warning: #d6b36a;
}

body.bago-theme-sunset_gold,
.bago-theme-sunset_gold {
    --bago-bg-1: #401a2a;
    --bago-bg-2: #ce5f3b;
    --bago-accent: #ffd166;
    --bago-accent-2: #ff8fab;
    --bago-warning: #fff0a6;
}

.bago-operator-cover {
    min-height: 280px;
    border-radius: 30px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    box-shadow: var(--bago-shadow);
    margin-bottom: 16px;
}

.bago-operator-cover-overlay {
    min-height: 280px;
    padding: 20px;
    display: flex;
    align-items: flex-end;
    gap: 14px;
    background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.65));
}

.bago-operator-logo {
    width: 76px;
    height: 76px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--bago-accent), var(--bago-accent-2));
    color: #073940;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 22px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,.38);
    box-shadow: 0 14px 30px rgba(0,0,0,.28);
}

.bago-operator-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bago-file-hint {
    font-size: 12px;
    color: rgba(255,255,255,.65);
    margin-top: 6px;
}

.bago-input[type="file"] {
    padding: 11px;
}

.bago-input[type="file"]::file-selector-button {
    border: 0;
    border-radius: 12px;
    padding: 9px 12px;
    margin-right: 10px;
    background: linear-gradient(135deg, var(--bago-accent), var(--bago-accent-2));
    color: #073940;
    font-weight: 800;
}


/* BaGO live selectable themes */
body.bago-theme-batumi-sea {
    --bago-bg-1:#043c47; --bago-bg-2:#00a9b7; --bago-accent:#23f0d5; --bago-accent-2:#6ff3ff;
    background: radial-gradient(circle at 20% 0%, rgba(255,255,255,.22), transparent 22%), linear-gradient(180deg,#00a9b7,#043c47) !important;
}
body.bago-theme-dark-luxury {
    --bago-bg-1:#05070d; --bago-bg-2:#161b2e; --bago-accent:#d5b56e; --bago-accent-2:#fff0b0;
    background: radial-gradient(circle at 85% 0%, rgba(213,181,110,.25), transparent 25%), linear-gradient(180deg,#161b2e,#05070d) !important;
}
body.bago-theme-sunset-gold {
    --bago-bg-1:#522258; --bago-bg-2:#ff7b54; --bago-accent:#ffd166; --bago-accent-2:#ffef9f;
    background: radial-gradient(circle at 20% 0%, rgba(255,209,102,.28), transparent 28%), linear-gradient(180deg,#ff7b54,#522258) !important;
}
body.bago-theme-emerald-city {
    --bago-bg-1:#073b2d; --bago-bg-2:#16a085; --bago-accent:#7cffc4; --bago-accent-2:#d6fff0;
    background: radial-gradient(circle at 85% 0%, rgba(124,255,196,.24), transparent 28%), linear-gradient(180deg,#16a085,#073b2d) !important;
}
body.bago-theme-dark-luxury .bago-brand-badge,
body.bago-theme-sunset-gold .bago-brand-badge,
body.bago-theme-emerald-city .bago-brand-badge,
body.bago-theme-batumi-sea .bago-brand-badge {
    background: linear-gradient(135deg, var(--bago-accent), var(--bago-accent-2)) !important;
}

/* BaGO WORKING THEMES START */
body.theme-batumi-sea {
    --bago-bg-1: #04353d;
    --bago-bg-2: #08a8b5;
    --bago-card: rgba(255,255,255,0.16);
    --bago-card-2: rgba(255,255,255,0.11);
    --bago-border: rgba(255,255,255,0.22);
    --bago-accent: #20f3cf;
    --bago-accent-2: #59d8ff;
    --bago-warning: #ffd166;
    background: radial-gradient(circle at 18% 12%, rgba(255,255,255,0.22), transparent 22%), radial-gradient(circle at 86% 8%, rgba(89,216,255,0.30), transparent 30%), linear-gradient(180deg, #08a8b5 0%, #066775 42%, #04353d 100%) !important;
}

body.theme-dark-luxury {
    --bago-bg-1: #05070d;
    --bago-bg-2: #172033;
    --bago-card: rgba(255,255,255,0.08);
    --bago-card-2: rgba(255,255,255,0.06);
    --bago-border: rgba(255,255,255,0.13);
    --bago-accent: #c9a46a;
    --bago-accent-2: #f4d28a;
    --bago-warning: #f4d28a;
    background: radial-gradient(circle at 85% 10%, rgba(244,210,138,0.18), transparent 28%), radial-gradient(circle at 15% 5%, rgba(58,89,138,0.22), transparent 26%), linear-gradient(180deg, #172033 0%, #0b1020 48%, #05070d 100%) !important;
}

body.theme-sunset-gold {
    --bago-bg-1: #552215;
    --bago-bg-2: #e86f2d;
    --bago-card: rgba(255,255,255,0.17);
    --bago-card-2: rgba(255,255,255,0.12);
    --bago-border: rgba(255,255,255,0.24);
    --bago-accent: #ffd166;
    --bago-accent-2: #ff9f1c;
    --bago-warning: #ffe08a;
    background: radial-gradient(circle at 25% 12%, rgba(255,209,102,0.32), transparent 28%), radial-gradient(circle at 90% 4%, rgba(255,255,255,0.18), transparent 22%), linear-gradient(180deg, #ff9f1c 0%, #e85d2a 40%, #552215 100%) !important;
}

body.theme-emerald-city {
    --bago-bg-1: #073d2b;
    --bago-bg-2: #11986f;
    --bago-card: rgba(255,255,255,0.15);
    --bago-card-2: rgba(255,255,255,0.10);
    --bago-border: rgba(255,255,255,0.20);
    --bago-accent: #7cf5b7;
    --bago-accent-2: #c7ff72;
    --bago-warning: #eaff92;
    background: radial-gradient(circle at 18% 10%, rgba(199,255,114,0.24), transparent 25%), radial-gradient(circle at 85% 14%, rgba(124,245,183,0.24), transparent 24%), linear-gradient(180deg, #11986f 0%, #0b6d50 42%, #073d2b 100%) !important;
}

body.theme-batumi-sea .bago-brand-badge,
body.theme-dark-luxury .bago-brand-badge,
body.theme-sunset-gold .bago-brand-badge,
body.theme-emerald-city .bago-brand-badge,
body.theme-batumi-sea .bago-feature-icon,
body.theme-dark-luxury .bago-feature-icon,
body.theme-sunset-gold .bago-feature-icon,
body.theme-emerald-city .bago-feature-icon,
body.theme-batumi-sea .bago-btn-primary,
body.theme-dark-luxury .bago-btn-primary,
body.theme-sunset-gold .bago-btn-primary,
body.theme-emerald-city .bago-btn-primary {
    background: linear-gradient(135deg, var(--bago-accent), var(--bago-accent-2)) !important;
}

body.theme-dark-luxury .bago-btn-primary,
body.theme-dark-luxury .bago-brand-badge,
body.theme-dark-luxury .bago-feature-icon { color: #17100a !important; }
body.theme-sunset-gold .bago-btn-primary,
body.theme-sunset-gold .bago-brand-badge,
body.theme-sunset-gold .bago-feature-icon { color: #3b1600 !important; }
body.theme-emerald-city .bago-btn-primary,
body.theme-emerald-city .bago-brand-badge,
body.theme-emerald-city .bago-feature-icon { color: #063b2f !important; }
body.theme-batumi-sea .bago-btn-primary,
body.theme-batumi-sea .bago-brand-badge,
body.theme-batumi-sea .bago-feature-icon { color: #02343b !important; }

body.theme-batumi-sea .bago-header,
body.theme-emerald-city .bago-header,
body.theme-sunset-gold .bago-header,
body.theme-dark-luxury .bago-header {
    background: rgba(0,0,0,0.28) !important;
}
/* BaGO WORKING THEMES END */


/* BaGO DESIGNER THEME UPGRADE START */

body.theme-batumi-sea,
body.theme-dark-luxury,
body.theme-sunset-gold,
body.theme-emerald-city {
    min-height: 100vh;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: cover !important;
    background-attachment: scroll !important;
    color: #ffffff;
}

body.theme-batumi-sea {
    --bago-overlay-top: rgba(0, 31, 51, 0.34);
    --bago-overlay-bottom: rgba(1, 31, 41, 0.74);
    --bago-overlay-middle: rgba(7, 122, 143, 0.28);
    --bago-card: rgba(10, 44, 61, 0.46);
    --bago-card-2: rgba(255,255,255,0.10);
    --bago-border: rgba(255,255,255,0.22);
    --bago-shadow: 0 24px 60px rgba(2, 21, 30, 0.34);
    --bago-accent: #35f2d1;
    --bago-accent-2: #7ddfff;
    --bago-text-strong: #ffffff;
    --bago-text-soft: rgba(255,255,255,0.82);
    background-image:
        linear-gradient(180deg, var(--bago-overlay-top) 0%, var(--bago-overlay-middle) 34%, var(--bago-overlay-bottom) 100%),
        radial-gradient(circle at 15% 10%, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.00) 22%),
        radial-gradient(circle at 84% 12%, rgba(53,242,209,0.18) 0%, rgba(53,242,209,0.00) 22%),
        url('../images/themes/batumi-sea-panorama.png') !important;
}

body.theme-dark-luxury {
    --bago-overlay-top: rgba(4, 10, 26, 0.28);
    --bago-overlay-bottom: rgba(4, 10, 20, 0.82);
    --bago-overlay-middle: rgba(16, 26, 46, 0.36);
    --bago-card: rgba(10, 14, 25, 0.62);
    --bago-card-2: rgba(255,255,255,0.07);
    --bago-border: rgba(255,255,255,0.14);
    --bago-shadow: 0 30px 80px rgba(0, 0, 0, 0.50);
    --bago-accent: #d7b56a;
    --bago-accent-2: #f4d590;
    --bago-text-strong: #ffffff;
    --bago-text-soft: rgba(255,255,255,0.78);
    background-image:
        linear-gradient(180deg, var(--bago-overlay-top) 0%, var(--bago-overlay-middle) 36%, var(--bago-overlay-bottom) 100%),
        radial-gradient(circle at 78% 14%, rgba(244,213,144,0.20) 0%, rgba(244,213,144,0.00) 24%),
        radial-gradient(circle at 12% 10%, rgba(66,104,180,0.16) 0%, rgba(66,104,180,0.00) 26%),
        url('../images/themes/dark-luxury-panorama.png') !important;
}

body.theme-sunset-gold {
    --bago-overlay-top: rgba(92, 28, 7, 0.16);
    --bago-overlay-bottom: rgba(71, 24, 12, 0.68);
    --bago-overlay-middle: rgba(212, 105, 37, 0.18);
    --bago-card: rgba(101, 43, 20, 0.40);
    --bago-card-2: rgba(255,255,255,0.11);
    --bago-border: rgba(255,255,255,0.25);
    --bago-shadow: 0 28px 70px rgba(87, 30, 7, 0.30);
    --bago-accent: #ffd267;
    --bago-accent-2: #ff9b47;
    --bago-text-strong: #ffffff;
    --bago-text-soft: rgba(255,244,236,0.84);
    background-image:
        linear-gradient(180deg, var(--bago-overlay-top) 0%, var(--bago-overlay-middle) 40%, var(--bago-overlay-bottom) 100%),
        radial-gradient(circle at 15% 12%, rgba(255,214,117,0.26) 0%, rgba(255,214,117,0.00) 24%),
        radial-gradient(circle at 80% 14%, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.00) 22%),
        url('../images/themes/sunset-gold-panorama.png') !important;
}

body.theme-emerald-city {
    --bago-overlay-top: rgba(4, 49, 43, 0.24);
    --bago-overlay-bottom: rgba(4, 49, 43, 0.70);
    --bago-overlay-middle: rgba(12, 112, 91, 0.24);
    --bago-card: rgba(6, 49, 42, 0.46);
    --bago-card-2: rgba(255,255,255,0.10);
    --bago-border: rgba(255,255,255,0.20);
    --bago-shadow: 0 28px 70px rgba(3, 35, 30, 0.34);
    --bago-accent: #86f7bb;
    --bago-accent-2: #caff77;
    --bago-text-strong: #ffffff;
    --bago-text-soft: rgba(245,255,250,0.82);
    background-image:
        linear-gradient(180deg, var(--bago-overlay-top) 0%, var(--bago-overlay-middle) 38%, var(--bago-overlay-bottom) 100%),
        radial-gradient(circle at 18% 9%, rgba(202,255,119,0.18) 0%, rgba(202,255,119,0.00) 22%),
        radial-gradient(circle at 85% 14%, rgba(134,247,187,0.18) 0%, rgba(134,247,187,0.00) 24%),
        url('../images/themes/emerald-city-panorama.png') !important;
}

body.theme-batumi-sea .card,
body.theme-dark-luxury .card,
body.theme-sunset-gold .card,
body.theme-emerald-city .card,
body.theme-batumi-sea .bago-card,
body.theme-dark-luxury .bago-card,
body.theme-sunset-gold .bago-card,
body.theme-emerald-city .bago-card,
body.theme-batumi-sea .activity-card,
body.theme-dark-luxury .activity-card,
body.theme-sunset-gold .activity-card,
body.theme-emerald-city .activity-card,
body.theme-batumi-sea .glass-card,
body.theme-dark-luxury .glass-card,
body.theme-sunset-gold .glass-card,
body.theme-emerald-city .glass-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.12), var(--bago-card)) !important;
    border: 1px solid var(--bago-border) !important;
    box-shadow: var(--bago-shadow) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

body.theme-batumi-sea .navbar,
body.theme-dark-luxury .navbar,
body.theme-sunset-gold .navbar,
body.theme-emerald-city .navbar,
body.theme-batumi-sea .bago-header,
body.theme-dark-luxury .bago-header,
body.theme-sunset-gold .bago-header,
body.theme-emerald-city .bago-header,
body.theme-batumi-sea header,
body.theme-dark-luxury header,
body.theme-sunset-gold header,
body.theme-emerald-city header {
    background: linear-gradient(180deg, rgba(8,17,26,0.62), rgba(8,17,26,0.22)) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,0.12) !important;
}

body.theme-batumi-sea .bago-hero,
body.theme-dark-luxury .bago-hero,
body.theme-sunset-gold .bago-hero,
body.theme-emerald-city .bago-hero,
body.theme-batumi-sea .hero,
body.theme-dark-luxury .hero,
body.theme-sunset-gold .hero,
body.theme-emerald-city .hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255,255,255,0.16), rgba(255,255,255,0.06)) !important;
    border: 1px solid rgba(255,255,255,0.16) !important;
    border-radius: 24px;
    box-shadow: var(--bago-shadow) !important;
}

body.theme-batumi-sea .bago-hero::after,
body.theme-dark-luxury .bago-hero::after,
body.theme-sunset-gold .bago-hero::after,
body.theme-emerald-city .bago-hero::after,
body.theme-batumi-sea .hero::after,
body.theme-dark-luxury .hero::after,
body.theme-sunset-gold .hero::after,
body.theme-emerald-city .hero::after {
    content: '';
    position: absolute;
    inset: auto -10% -25% auto;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.00) 72%);
    pointer-events: none;
}

body.theme-batumi-sea .bago-btn-primary,
body.theme-dark-luxury .bago-btn-primary,
body.theme-sunset-gold .bago-btn-primary,
body.theme-emerald-city .bago-btn-primary,
body.theme-batumi-sea .btn-primary,
body.theme-dark-luxury .btn-primary,
body.theme-sunset-gold .btn-primary,
body.theme-emerald-city .btn-primary {
    background: linear-gradient(135deg, var(--bago-accent), var(--bago-accent-2)) !important;
    border: none !important;
    color: #082430 !important;
    box-shadow: 0 14px 28px rgba(0,0,0,0.18) !important;
}

body.theme-dark-luxury .bago-btn-primary,
body.theme-dark-luxury .btn-primary {
    color: #1e1404 !important;
}

body.theme-sunset-gold .bago-btn-primary,
body.theme-sunset-gold .btn-primary {
    color: #4a1902 !important;
}

body.theme-emerald-city .bago-btn-primary,
body.theme-emerald-city .btn-primary {
    color: #08372a !important;
}

body.theme-batumi-sea .section-title,
body.theme-dark-luxury .section-title,
body.theme-sunset-gold .section-title,
body.theme-emerald-city .section-title,
body.theme-batumi-sea .bago-section-title,
body.theme-dark-luxury .bago-section-title,
body.theme-sunset-gold .bago-section-title,
body.theme-emerald-city .bago-section-title,
body.theme-batumi-sea h1,
body.theme-dark-luxury h1,
body.theme-sunset-gold h1,
body.theme-emerald-city h1,
body.theme-batumi-sea h2,
body.theme-dark-luxury h2,
body.theme-sunset-gold h2,
body.theme-emerald-city h2,
body.theme-batumi-sea h3,
body.theme-dark-luxury h3,
body.theme-sunset-gold h3,
body.theme-emerald-city h3 {
    color: var(--bago-text-strong) !important;
    text-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

body.theme-batumi-sea p,
body.theme-dark-luxury p,
body.theme-sunset-gold p,
body.theme-emerald-city p,
body.theme-batumi-sea .text-muted,
body.theme-dark-luxury .text-muted,
body.theme-sunset-gold .text-muted,
body.theme-emerald-city .text-muted,
body.theme-batumi-sea .subtitle,
body.theme-dark-luxury .subtitle,
body.theme-sunset-gold .subtitle,
body.theme-emerald-city .subtitle {
    color: var(--bago-text-soft) !important;
}

body.theme-batumi-sea .bottom-nav,
body.theme-dark-luxury .bottom-nav,
body.theme-sunset-gold .bottom-nav,
body.theme-emerald-city .bottom-nav,
body.theme-batumi-sea .bago-bottom-nav,
body.theme-dark-luxury .bago-bottom-nav,
body.theme-sunset-gold .bago-bottom-nav,
body.theme-emerald-city .bago-bottom-nav {
    background: linear-gradient(180deg, rgba(7,14,22,0.18), rgba(7,14,22,0.58)) !important;
    border-top: 1px solid rgba(255,255,255,0.14) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

body.theme-batumi-sea .badge,
body.theme-dark-luxury .badge,
body.theme-sunset-gold .badge,
body.theme-emerald-city .badge,
body.theme-batumi-sea .chip,
body.theme-dark-luxury .chip,
body.theme-sunset-gold .chip,
body.theme-emerald-city .chip,
body.theme-batumi-sea .bago-chip,
body.theme-dark-luxury .bago-chip,
body.theme-sunset-gold .bago-chip,
body.theme-emerald-city .bago-chip {
    background: rgba(255,255,255,0.14) !important;
    border: 1px solid rgba(255,255,255,0.18) !important;
    color: #fff !important;
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    body.theme-batumi-sea,
    body.theme-dark-luxury,
    body.theme-sunset-gold,
    body.theme-emerald-city {
        background-position: center top !important;
    }

    body.theme-batumi-sea .card,
    body.theme-dark-luxury .card,
    body.theme-sunset-gold .card,
    body.theme-emerald-city .card,
    body.theme-batumi-sea .bago-card,
    body.theme-dark-luxury .bago-card,
    body.theme-sunset-gold .bago-card,
    body.theme-emerald-city .bago-card {
        box-shadow: 0 18px 42px rgba(0,0,0,0.22) !important;
    }
}

/* BaGO DESIGNER THEME UPGRADE END */



/* BaGO branding update - logo and favicon patch */
.bago-brand {
    color: inherit;
}

.bago-brand-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: 14px;
    background: rgba(255,255,255,0.98);
    box-shadow: var(--bago-shadow);
    padding: 2px;
    flex: 0 0 42px;
}

.bago-brand-title strong {
    letter-spacing: 0.01em;
}

@media (max-width: 420px) {
    .bago-brand {
        gap: 10px;
    }

    .bago-brand-logo {
        width: 38px;
        height: 38px;
        border-radius: 12px;
        flex-basis: 38px;
    }
}

/* Search + polish patch 2026-06-03 */
.bago-search-box {
    display: block;
}

.bago-search-submit {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 13px;
    color: #03343a;
    background: linear-gradient(135deg, var(--bago-accent), var(--bago-accent-2));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

.bago-chip:hover,
.bago-search-submit:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

/* BaGO Step 2 discovery/search polish */
.bago-discovery-hero,
.bago-home-section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.bago-today-pill,
.bago-mini-link {
    white-space: nowrap;
}

.bago-mini-link {
    color: #fff;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 13px;
}

.bago-filter-panel {
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 24px;
    padding: 14px;
    margin-bottom: 16px;
    box-shadow: var(--bago-shadow);
    backdrop-filter: blur(10px);
}

.bago-search-line {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 18px;
    padding: 12px 13px;
}

.bago-search-line input,
.bago-home-search input {
    border: 0;
    outline: 0;
    background: transparent;
    color: #fff;
    width: 100%;
    min-width: 0;
}

.bago-search-line input::placeholder,
.bago-home-search input::placeholder {
    color: rgba(255,255,255,.62);
}

.bago-search-submit {
    border: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bago-accent), var(--bago-accent-2));
    color: #03343a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    cursor: pointer;
    flex: 0 0 34px;
}

.bago-quick-tags,
.bago-category-strip {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 10px 0 2px;
    scrollbar-width: none;
}

.bago-quick-tags::-webkit-scrollbar,
.bago-category-strip::-webkit-scrollbar,
.bago-horizontal-cards::-webkit-scrollbar { display: none; }

.bago-quick-tags a,
.bago-category-strip a {
    white-space: nowrap;
    border-radius: 999px;
    padding: 9px 12px;
    color: #fff;
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.10);
    font-size: 13px;
}

.bago-quick-tags a.active,
.bago-category-strip a.active {
    background: linear-gradient(135deg, rgba(31,224,201,.95), rgba(77,232,255,.85));
    color: #03343a;
    border-color: transparent;
    font-weight: 800;
}

.bago-filter-details {
    margin-top: 10px;
}

.bago-filter-details summary {
    cursor: pointer;
    list-style: none;
    color: rgba(255,255,255,.90);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 2px 2px;
    font-weight: 700;
}

.bago-filter-details summary::-webkit-details-marker { display: none; }

.bago-filter-details summary span {
    min-width: 22px;
    height: 22px;
    border-radius: 999px;
    background: var(--bago-warning);
    color: #312000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.bago-filter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}

.bago-filter-grid .wide { grid-column: 1 / -1; }

.bago-filter-grid label:not(.bago-filter-check) {
    display: block;
    margin: 0 0 5px;
    color: rgba(255,255,255,.68);
    font-size: 12px;
}

.bago-filter-control {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.08);
    color: #fff;
    border-radius: 15px;
    padding: 12px;
    outline: 0;
}

.bago-filter-control option { color: #111; }

.bago-filter-check {
    display: flex;
    gap: 8px;
    align-items: center;
    color: rgba(255,255,255,.86);
    background: rgba(255,255,255,.07);
    padding: 12px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,.08);
}

.bago-filter-actions {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 8px;
}

.bago-filter-actions .bago-btn,
.bago-map-toggle .bago-btn {
    justify-content: center;
}

.bago-category-strip {
    margin-bottom: 12px;
}

.bago-map-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 12px;
}

.bago-map-box {
    height: 430px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.15);
    box-shadow: var(--bago-shadow);
    margin-bottom: 8px;
    color: #111;
}

.bago-map-note {
    color: rgba(255,255,255,.74);
    font-size: 12px;
    margin-bottom: 14px;
}

.bago-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    color: rgba(255,255,255,.75);
    font-size: 12px;
    margin-top: 9px;
}

.bago-pagination-wrap {
    margin-top: 18px;
}

.bago-hero-actions {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.bago-category-grid-home {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.bago-category-card-home {
    background: linear-gradient(180deg, rgba(255,255,255,.13), rgba(255,255,255,.08));
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 20px;
    padding: 14px;
    color: #fff;
    min-height: 106px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    box-shadow: var(--bago-shadow);
}

.bago-category-card-home .bago-feature-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 2px;
}

.bago-category-card-home span {
    color: rgba(255,255,255,.68);
    font-size: 12px;
}

.bago-horizontal-cards {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 0 0 10px;
    margin-bottom: 18px;
    scrollbar-width: none;
}

.bago-mini-activity-card {
    min-width: 172px;
    max-width: 172px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.10);
    color: #fff;
    box-shadow: var(--bago-shadow);
}

.bago-mini-activity-card img {
    width: 100%;
    height: 104px;
    object-fit: cover;
    display: block;
}

.bago-mini-activity-card strong,
.bago-mini-activity-card span {
    display: block;
    padding: 0 12px;
}

.bago-mini-activity-card strong {
    margin-top: 10px;
    line-height: 1.2;
}

.bago-mini-activity-card span {
    color: var(--bago-warning);
    padding-bottom: 12px;
    padding-top: 5px;
    font-size: 13px;
    font-weight: 800;
}

@media (max-width: 440px) {
    .bago-discovery-hero,
    .bago-home-section-head {
        align-items: stretch;
    }

    .bago-filter-grid,
    .bago-filter-actions {
        grid-template-columns: 1fr;
    }

    .bago-category-grid-home {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .bago-map-box {
        height: 360px;
    }
}


/* BaGO Step 2 design repair / mobile polish */
.bago-page { overflow-x: hidden; }
.bago-search-box,
.bago-filter-panel,
.bago-card,
.bago-box,
.bago-activity-card,
.bago-category-card-home,
.bago-mini-activity-card { box-sizing: border-box; }

.bago-home-search { position: relative; margin-bottom: 14px; padding: 12px 14px; }
.bago-home-search > div { min-height: 34px; }
.bago-home-hero { min-height: 300px; }
.bago-home-hero .bago-hero-overlay { align-items: flex-end; }
.bago-hero-actions .bago-btn { min-height: 42px; }

.bago-discovery-hero { 
    background: linear-gradient(135deg, rgba(255,255,255,.13), rgba(255,255,255,.06));
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 24px;
    padding: 14px;
    box-shadow: var(--bago-shadow);
    backdrop-filter: blur(12px);
}
.bago-discovery-hero .bago-section-title { margin-bottom: 4px; line-height: 1.05; }
.bago-today-pill { min-height: 40px; padding-left: 14px; padding-right: 14px; }

.bago-filter-panel { border-radius: 26px; overflow: hidden; }
.bago-search-line { min-height: 44px; }
.bago-search-line input { font-size: 16px; }
.bago-filter-grid { align-items: end; }
.bago-filter-control { min-height: 44px; font-size: 15px; }
.bago-filter-actions .bago-btn { min-height: 44px; }
.bago-filter-check input { width: 18px; height: 18px; }

.bago-category-strip { margin-left: -14px; margin-right: -14px; padding-left: 14px; padding-right: 14px; }
.bago-category-strip a,
.bago-quick-tags a { display: inline-flex; align-items: center; gap: 6px; min-height: 38px; }
.bago-map-toggle { position: sticky; top: 72px; z-index: 30; padding: 4px; border-radius: 18px; background: rgba(3, 30, 36, .40); backdrop-filter: blur(12px); }
.bago-map-toggle .bago-btn { min-height: 42px; }
.bago-map-box .leaflet-popup-content { color: #10232b; }
.bago-map-box .leaflet-control-attribution { font-size: 10px; }

.bago-list { display: grid; gap: 14px; }
.bago-activity-card { display: grid; grid-template-columns: 150px minmax(0,1fr); min-height: 164px; overflow: hidden; }
.bago-activity-image { width: 100%; height: 100%; min-height: 164px; object-fit: cover; }
.bago-activity-body { min-width: 0; }
.bago-title { overflow-wrap: anywhere; line-height: 1.18; }
.bago-text-soft { overflow-wrap: anywhere; }
.bago-card-meta span { display: inline-flex; align-items: center; gap: 4px; }
.bago-price-row { gap: 10px; align-items: center; }
.bago-price-row .bago-btn { white-space: nowrap; min-height: 38px; padding-inline: 14px; }

.bago-pagination-wrap nav { display: flex; justify-content: center; }
.bago-pagination-wrap .pagination { flex-wrap: wrap; gap: 5px; justify-content: center; }
.bago-pagination-wrap .page-link { border-radius: 12px !important; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.10); color: #fff; }
.bago-pagination-wrap .page-item.active .page-link { background: linear-gradient(135deg, var(--bago-accent), var(--bago-accent-2)); color: #07343a; border-color: transparent; font-weight: 800; }
.bago-pagination-wrap .page-item.disabled .page-link { opacity: .45; background: rgba(255,255,255,.06); color: rgba(255,255,255,.65); }

.bago-category-grid-home { grid-template-columns: repeat(2, minmax(0,1fr)); }
.bago-category-card-home { min-width: 0; }
.bago-category-card-home strong { line-height: 1.15; overflow-wrap: anywhere; }
.bago-horizontal-cards { margin-left: -14px; margin-right: -14px; padding-left: 14px; padding-right: 14px; }
.bago-mini-activity-card { flex: 0 0 178px; }
.bago-mini-activity-card strong { min-height: 38px; }

@media (max-width: 520px) {
    .bago-header-inner { padding-left: 12px; padding-right: 12px; }
    .bago-brand-title span { max-width: 155px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .bago-discovery-hero { flex-direction: column; }
    .bago-discovery-hero .bago-btn { width: 100%; justify-content: center; }
    .bago-filter-panel { padding: 12px; border-radius: 22px; }
    .bago-filter-details summary { min-height: 40px; }
    .bago-map-toggle { top: 66px; }
    .bago-activity-card { grid-template-columns: 1fr; }
    .bago-activity-image { height: 205px; min-height: 205px; }
    .bago-price-row { align-items: stretch; }
    .bago-price-row .bago-btn { align-self: center; }
    .bago-home-section-head { flex-direction: column; align-items: stretch; }
    .bago-mini-link { text-align: center; }
}

@media (max-width: 360px) {
    .bago-category-grid-home { grid-template-columns: 1fr; }
    .bago-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .bago-price-row { flex-direction: column; align-items: stretch; }
    .bago-price-row .bago-btn { justify-content: center; width: 100%; }
}


/* BaGO Step 3 trust + reviews polish */
.bago-detail-gallery { display:flex; gap:10px; overflow-x:auto; padding: 0 0 10px; margin-bottom:14px; scrollbar-width:none; }
.bago-detail-gallery::-webkit-scrollbar { display:none; }
.bago-detail-gallery img { flex:0 0 120px; width:120px; height:78px; object-fit:cover; border-radius:16px; border:1px solid rgba(255,255,255,0.14); }
.bago-operator-inline-card { display:flex; align-items:center; gap:12px; margin-bottom:16px; color:#fff; }
.bago-trust-box h5,
.bago-review-box h5,
.bago-review-form h5 { margin-top:0; display:flex; align-items:center; gap:8px; }
.bago-trust-box.muted { border-style:dashed; opacity:.92; }
.bago-trust-grid { display:grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap:10px; margin: 12px 0; }
.bago-trust-grid > div { background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.10); border-radius:16px; padding:12px; }
.bago-trust-grid strong { display:block; color:#fff; line-height:1.1; }
.bago-trust-grid span { color:rgba(255,255,255,.68); font-size:12px; }
.bago-policy-list { margin-top: 12px; }
.bago-policy-list strong { display:block; margin-bottom:6px; }
.bago-policy-list ul { margin:0; padding-left:18px; color:rgba(255,255,255,.84); }
.bago-review-head { display:flex; justify-content:space-between; align-items:center; gap:12px; margin-bottom:10px; }
.bago-review-head h5 { margin:0; }
.bago-review-head span { color:var(--bago-warning); font-weight:800; white-space:nowrap; }
.bago-review-item { padding:12px 0; border-top:1px solid rgba(255,255,255,.10); }
.bago-review-item:first-of-type { border-top:0; padding-top:0; }
.bago-review-top { display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom:6px; }
.bago-review-top span { color: var(--bago-warning); font-weight:800; }
.bago-operator-reply { margin-top:10px; padding:10px; border-radius:14px; background:rgba(255,255,255,.08); color:rgba(255,255,255,.84); }
.bago-form-grid { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.bago-form-grid .wide { grid-column:1/-1; }
.bago-sticky-bookbar { position:sticky; bottom:88px; z-index:40; display:flex; gap:10px; margin-top:18px; padding:10px; border-radius:20px; background:rgba(3,30,36,.50); border:1px solid rgba(255,255,255,.12); backdrop-filter:blur(14px); box-shadow:var(--bago-shadow); }
.bago-sticky-bookbar .bago-btn:first-child { flex:1; justify-content:center; }
@media (max-width: 460px) { .bago-form-grid, .bago-trust-grid { grid-template-columns:1fr; } .bago-sticky-bookbar { bottom:82px; } }


/* Corrective patch: compact category icon grid + safer discovery layout */
.bago-home-section-head.compact {
    margin-top: 18px;
    margin-bottom: 10px;
}

.bago-home-section-head.compact .bago-section-title {
    font-size: 22px;
    margin-bottom: 4px;
}

.bago-home-section-head.compact .bago-section-subtitle {
    font-size: 13px;
    margin-bottom: 0;
}

.bago-category-icon-grid {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 10px !important;
    margin: 10px 0 20px !important;
}

.bago-category-icon-tile {
    position: relative;
    min-width: 0;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #052f38 !important;
    background:
        radial-gradient(circle at 28% 18%, rgba(255,255,255,.55), transparent 26%),
        linear-gradient(135deg, rgba(42,232,228,.98), rgba(40,193,255,.92));
    border: 1px solid rgba(255,255,255,.35);
    box-shadow: 0 12px 28px rgba(0,0,0,.16);
    text-decoration: none !important;
    overflow: visible;
    -webkit-tap-highlight-color: transparent;
}

.bago-category-icon-tile i {
    font-size: clamp(21px, 7vw, 32px);
    line-height: 1;
    color: #063742;
    filter: drop-shadow(0 2px 3px rgba(255,255,255,.25));
}

.bago-category-count {
    position: absolute;
    top: -7px;
    right: -5px;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    color: #07343c;
    background: #ffd166;
    border: 2px solid rgba(255,255,255,.92);
    box-shadow: 0 6px 16px rgba(0,0,0,.20);
}

.bago-category-card-home {
    display: none !important;
}

.bago-category-grid-home {
    display: none !important;
}

.bago-discovery-hero .bago-section-subtitle {
    line-height: 1.45;
}

.bago-filter-panel,
.bago-discovery-hero,
.bago-list,
.bago-horizontal-cards,
.bago-category-icon-grid {
    max-width: 100%;
}

@media (max-width: 380px) {
    .bago-category-icon-grid {
        gap: 8px !important;
    }
    .bago-category-icon-tile {
        border-radius: 16px;
    }
    .bago-category-count {
        min-width: 20px;
        height: 20px;
        font-size: 10px;
    }
}

/* BaGO responsive discovery emergency polish patch - 2026-06-03 */
.bago-home-search-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.bago-discovery-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px;
    margin-bottom: 14px;
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(6, 42, 54, .72), rgba(255,255,255,.08));
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: var(--bago-shadow);
    backdrop-filter: blur(14px);
}

.bago-discovery-top h1 {
    margin: 0 0 4px;
    font-size: clamp(27px, 8vw, 38px);
    line-height: 1.04;
    color: #fff;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.bago-discovery-top p {
    margin: 0;
    color: rgba(255,255,255,.82);
    font-size: 14px;
}

.bago-pill-action {
    flex: 0 0 auto;
    min-width: 72px;
    height: 72px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border-radius: 24px;
    color: #fff !important;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,.08));
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: 0 14px 30px rgba(0,0,0,.16);
    text-decoration: none !important;
}

.bago-pill-action i { font-size: 23px; }
.bago-pill-action span { font-size: 12px; }

.bago-discovery-filter-card {
    display: block;
    padding: 14px;
    margin-bottom: 14px;
    border-radius: 26px;
    background: rgba(3, 38, 48, .58);
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: var(--bago-shadow);
    backdrop-filter: blur(14px);
    box-sizing: border-box;
}

.bago-compact-search {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 7px 8px 7px 14px;
    border-radius: 18px;
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(255,255,255,.35);
    box-shadow: inset 0 0 0 1px rgba(6, 54, 66, .04);
}

.bago-compact-search > i {
    color: #0d6d78;
    font-size: 18px;
    flex: 0 0 auto;
}

.bago-compact-search input {
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
    border: 0 !important;
    outline: 0 !important;
    color: #062f33 !important;
    background: transparent !important;
    font-size: 16px;
}

.bago-compact-search input::placeholder { color: rgba(6,47,51,.55); }

.bago-compact-search button {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #07343a;
    background: linear-gradient(135deg, var(--bago-accent), var(--bago-accent-2));
    font-size: 18px;
    font-weight: 900;
}

.bago-quick-pill-row {
    display: flex !important;
    gap: 8px;
    overflow-x: auto;
    padding: 11px 1px 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.bago-quick-pill-row::-webkit-scrollbar { display: none; }

.bago-quick-pill-row a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 8px 12px;
    border-radius: 999px;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 750;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.14);
}

.bago-quick-pill-row a.active {
    color: #06343b !important;
    background: linear-gradient(135deg, var(--bago-accent), var(--bago-accent-2));
    border-color: transparent;
}

.bago-compact-filter-details {
    margin-top: 8px;
}

.bago-compact-filter-details summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 40px;
    padding: 7px 10px;
    border-radius: 15px;
    color: #fff;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.10);
    font-weight: 900;
}

.bago-compact-filter-details summary::-webkit-details-marker { display: none; }
.bago-compact-filter-details summary span { display: inline-flex; align-items: center; gap: 8px; }
.bago-compact-filter-details summary b {
    min-width: 22px;
    height: 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffd166;
    color: #2c1f00;
    font-size: 12px;
}

.bago-compact-filter-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 10px;
    margin-top: 10px;
}

.bago-compact-filter-grid label {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
    margin: 0;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.bago-compact-filter-grid label > span:first-child {
    color: rgba(255,255,255,.78);
    line-height: 1.1;
}

.bago-compact-filter-grid select,
.bago-compact-filter-grid input[type="number"] {
    width: 100% !important;
    min-width: 0;
    height: 42px;
    box-sizing: border-box;
    border: 1px solid rgba(255,255,255,.25) !important;
    border-radius: 14px !important;
    padding: 0 10px !important;
    color: #062f33 !important;
    background: rgba(255,255,255,.95) !important;
    outline: 0 !important;
    font-size: 14px;
}

.bago-compact-filter-grid option { color: #062f33; }

.bago-compact-check {
    grid-column: 1 / -1;
    flex-direction: row !important;
    align-items: center;
    min-height: 42px;
    padding: 10px 12px;
    border-radius: 15px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    box-sizing: border-box;
}

.bago-compact-check input {
    width: 18px;
    height: 18px;
    accent-color: var(--bago-accent);
}

.bago-compact-filter-actions {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 8px;
}

.bago-compact-filter-actions .bago-btn {
    min-height: 42px;
    justify-content: center;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
}

.bago-discovery-category-grid {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 9px;
    margin: 12px 0 14px;
}

.bago-discovery-category-grid a,
.bago-category-icon-tile {
    position: relative;
    aspect-ratio: 1 / 1;
    min-width: 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    color: #07343a !important;
    text-decoration: none !important;
    background: linear-gradient(135deg, rgba(42,232,228,.97), rgba(40,193,255,.92));
    border: 1px solid rgba(255,255,255,.35);
    box-shadow: 0 12px 25px rgba(0,0,0,.16);
}

.bago-discovery-category-grid a.active {
    background: linear-gradient(135deg, #ffd166, #ffec99);
}

.bago-discovery-category-grid i,
.bago-category-icon-tile i {
    font-size: clamp(22px, 6.5vw, 32px);
    line-height: 1;
}

.bago-category-count {
    position: absolute !important;
    top: -7px !important;
    right: -5px !important;
    z-index: 3;
    min-width: 22px !important;
    height: 22px !important;
    padding: 0 6px !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 11px !important;
    font-weight: 950 !important;
    color: #07343c !important;
    background: #ffd166 !important;
    border: 2px solid rgba(255,255,255,.94) !important;
    box-shadow: 0 6px 16px rgba(0,0,0,.18) !important;
}

.bago-view-toggle-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 5px;
    margin: 0 0 14px;
    border-radius: 18px;
    background: rgba(3, 38, 48, .58);
    border: 1px solid rgba(255,255,255,.14);
    backdrop-filter: blur(12px);
}

.bago-view-toggle-card a {
    min-height: 42px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 900;
    background: rgba(255,255,255,.08);
}

.bago-view-toggle-card a.active {
    color: #07343a !important;
    background: linear-gradient(135deg, var(--bago-accent), var(--bago-accent-2));
}

.bago-discovery-list {
    display: grid !important;
    gap: 14px !important;
}

.bago-discovery-list .bago-activity-card,
.bago-list .bago-activity-card {
    color: #fff !important;
    text-decoration: none !important;
}

/* Hide older discovery/category controls that caused blue default links and broken rows. */
.bago-category-strip,
.bago-filter-panel .bago-quick-tags,
.bago-map-toggle,
.bago-category-grid-home,
.bago-category-card-home {
    display: none !important;
}

@media (max-width: 520px) {
    .bago-page { padding-left: 12px; padding-right: 12px; }
    .bago-discovery-top { align-items: stretch; padding: 13px; }
    .bago-pill-action { width: 68px; min-width: 68px; height: 64px; border-radius: 20px; }
    .bago-discovery-filter-card { padding: 12px; border-radius: 22px; }
    .bago-compact-filter-grid { gap: 8px; }
    .bago-compact-filter-actions { grid-template-columns: 1fr; }
    .bago-discovery-category-grid,
    .bago-category-icon-grid { gap: 8px !important; }
    .bago-discovery-category-grid a,
    .bago-category-icon-tile { border-radius: 16px; }
    .bago-category-count { min-width: 20px !important; height: 20px !important; font-size: 10px !important; }
    .bago-quick-pill-row a { font-size: 12px; min-height: 32px; padding: 7px 10px; }
}

@media (max-width: 360px) {
    .bago-discovery-top { flex-direction: column; }
    .bago-pill-action { width: 100%; flex-direction: row; height: 48px; }
    .bago-compact-filter-grid { grid-template-columns: 1fr; }
    .bago-discovery-category-grid,
    .bago-category-icon-grid { grid-template-columns: repeat(5, minmax(0, 1fr)) !important; gap: 6px !important; }
}


/* Step 4: homepage carousel + uploaded group icons */
.bago-home-hero.bago-hero-carousel {
    min-height: 278px;
    isolation: isolate;
}

.bago-hero-carousel .bago-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.015);
    transition: opacity .55s ease, transform 1.2s ease;
    pointer-events: none;
    cursor: pointer;
}

.bago-hero-carousel .bago-hero-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    z-index: 1;
}

.bago-hero-carousel .bago-hero-slide > img {
    width: 100%;
    height: 100%;
    min-height: 278px;
    object-fit: cover;
    display: block;
}

.bago-hero-carousel .bago-hero-overlay {
    z-index: 2;
    pointer-events: none;
}

.bago-hero-carousel .bago-hero-content,
.bago-hero-carousel .bago-hero-actions,
.bago-hero-carousel .bago-hero-actions a {
    pointer-events: auto;
}

.bago-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
    position: relative;
    z-index: 5;
}

.bago-hero-actions .bago-btn {
    min-height: 42px;
    padding: 10px 14px;
    white-space: nowrap;
}

.bago-hero-dots {
    position: absolute;
    right: 16px;
    bottom: 14px;
    z-index: 8;
    display: flex;
    gap: 7px;
    align-items: center;
}

.bago-hero-dots button {
    width: 9px;
    height: 9px;
    border: 0;
    padding: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.48);
    box-shadow: 0 4px 12px rgba(0,0,0,.20);
}

.bago-hero-dots button.active {
    width: 24px;
    background: linear-gradient(135deg, var(--bago-accent), var(--bago-accent-2));
}

.bago-category-icon-tile img,
.bago-discovery-category-grid a img {
    width: 64%;
    height: 64%;
    object-fit: cover;
    border-radius: 14px;
    display: block;
    box-shadow: 0 8px 18px rgba(0,0,0,.14);
}

.bago-discovery-category-grid a.active img {
    box-shadow: 0 0 0 2px rgba(255,255,255,.90), 0 8px 18px rgba(0,0,0,.16);
}

@media (max-width: 520px) {
    .bago-home-hero.bago-hero-carousel,
    .bago-hero-carousel .bago-hero-slide > img {
        min-height: 292px;
    }
    .bago-hero-actions {
        gap: 8px;
        margin-top: 12px;
    }
    .bago-hero-actions .bago-btn {
        min-height: 40px;
        padding: 9px 12px;
        font-size: 13px;
    }
    .bago-hero-dots {
        right: 14px;
        bottom: 12px;
    }
}


/* BaGO inline activity video embeds */
.bago-video-section {
    overflow: hidden;
}

.bago-box-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.bago-box-head h5 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bago-box-head span {
    color: var(--bago-text-soft);
    font-size: 12px;
    white-space: nowrap;
}

.bago-video-grid {
    display: grid;
    gap: 14px;
}

.bago-video-card {
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(0,0,0,0.16);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(0,0,0,0.18);
}

.bago-video-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    color: #fff;
    background: rgba(2, 22, 34, 0.40);
    font-size: 13px;
    font-weight: 800;
}

.bago-video-card-top span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.bago-video-card-top em {
    font-style: normal;
    color: var(--bago-accent-2);
    font-size: 11px;
}

.bago-video-frame-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.bago-video-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    background: #000;
}

.bago-inline-video {
    display: block;
    width: 100%;
    max-height: 420px;
    background: #000;
}

.bago-video-fallback {
    padding: 18px;
    display: grid;
    gap: 10px;
    justify-items: center;
    text-align: center;
    color: rgba(255,255,255,0.86);
}

.bago-video-fallback i {
    font-size: 34px;
    color: var(--bago-accent-2);
}

.bago-video-fallback span {
    color: var(--bago-text-soft);
    font-size: 13px;
}

@media (max-width: 520px) {
    .bago-video-card {
        border-radius: 18px;
    }

    .bago-video-frame-wrap {
        aspect-ratio: 16 / 10;
    }
}


/* BaGO activity detail gorgeous polish + fixed category icon rendering */
.bago-activity-detail-polished {
    display: grid;
    gap: 14px;
}

.bago-detail-hero-card {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 26px 70px rgba(0,0,0,.34);
    border: 1px solid rgba(255,255,255,.16);
    margin-bottom: 4px;
}

.bago-detail-hero-card .bago-detail-cover {
    margin: 0;
    height: 310px;
    border-radius: 0;
    transform: scale(1.01);
}

.bago-detail-hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.54)),
        radial-gradient(circle at 20% 10%, rgba(31,224,201,.24), transparent 42%);
    pointer-events: none;
}

.bago-detail-hero-price {
    position: absolute;
    right: 14px;
    bottom: 14px;
    border-radius: 18px;
    padding: 10px 13px;
    background: rgba(3, 30, 36, .62);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(12px);
    color: #fff;
    box-shadow: 0 12px 28px rgba(0,0,0,.25);
}

.bago-detail-hero-price span {
    display: block;
    font-size: 11px;
    color: rgba(255,255,255,.72);
    line-height: 1;
}

.bago-detail-hero-price strong {
    display: block;
    font-size: 17px;
    line-height: 1.2;
    margin-top: 3px;
}

.bago-activity-detail-polished > .bago-section-title {
    margin: 2px 0 0;
    line-height: 1.05;
    text-shadow: 0 4px 18px rgba(0,0,0,.25);
}

.bago-activity-detail-polished > .bago-section-subtitle {
    margin-bottom: 4px;
    font-size: 15px;
    color: rgba(255,255,255,.86);
}

.bago-activity-detail-polished .bago-box {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: 18px;
    background: linear-gradient(160deg, rgba(255,255,255,.16), rgba(255,255,255,.075));
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: 0 18px 46px rgba(0,0,0,.20);
    backdrop-filter: blur(14px);
}

.bago-activity-detail-polished .bago-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(77,232,255,.12), transparent 42%);
    pointer-events: none;
}

.bago-activity-detail-polished .bago-box > * {
    position: relative;
    z-index: 1;
}

.bago-detail-info-box h5,
.bago-booking-options-card h5,
.bago-meeting-card h5,
.bago-video-section h5,
.bago-trust-box h5 {
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
}

.bago-empty-policy-card {
    min-height: 118px;
}

.bago-empty-policy-inner {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 12px;
    align-items: center;
    color: rgba(255,255,255,.86);
}

.bago-empty-policy-inner > span {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.14);
    color: var(--bago-warning);
    font-size: 22px;
}

.bago-box-head.clean {
    margin-bottom: 14px;
}

.bago-box-head.clean h5 {
    margin: 0;
}

.bago-video-section {
    padding: 0 !important;
    border-radius: 30px !important;
}

.bago-video-section .bago-box-head {
    padding: 16px 18px 0;
}

.bago-video-section .bago-video-grid {
    padding: 0 14px 14px;
}

.bago-video-card {
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(0,0,0,.32);
    box-shadow: 0 22px 52px rgba(0,0,0,.30);
}

.bago-video-card-top {
    min-height: 44px;
    padding: 11px 13px;
    background: linear-gradient(90deg, rgba(2,22,34,.74), rgba(0,115,135,.34));
}

.bago-video-card-top em {
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(31,224,201,.14);
    color: #9dfff2;
}

.bago-video-frame-wrap {
    aspect-ratio: 16/9;
    background: #061317;
}

.bago-video-frame,
.bago-inline-video {
    border-radius: 0 0 24px 24px;
}

.bago-option-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.bago-option-pill {
    min-height: 78px;
    padding: 12px;
    border-radius: 20px;
    display: grid;
    gap: 3px;
    align-content: center;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.13);
}

.bago-option-pill i {
    font-size: 20px;
    color: var(--bago-accent-2);
}

.bago-option-pill span {
    color: rgba(255,255,255,.70);
    font-size: 12px;
}

.bago-option-pill strong {
    color: #fff;
    font-size: 15px;
}

.bago-option-pill.no {
    opacity: .72;
}

.bago-option-pill.no i {
    color: rgba(255,255,255,.46);
}

.bago-meeting-body {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 13px;
    align-items: start;
}

.bago-meeting-icon {
    width: 54px;
    height: 54px;
    border-radius: 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bago-accent), var(--bago-accent-2));
    color: #06363b;
    font-size: 25px;
    box-shadow: 0 16px 28px rgba(31,224,201,.20);
}

.bago-meeting-text {
    color: rgba(255,255,255,.90);
    font-size: 15px;
    line-height: 1.45;
}

.bago-map-open-btn {
    margin-top: 12px;
    min-height: 42px;
}

.bago-category-icon-tile img,
.bago-discovery-category-grid a img {
    width: 68% !important;
    height: 68% !important;
    object-fit: cover !important;
    border-radius: 18px !important;
    background: rgba(255,255,255,.92);
}

@media (max-width: 520px) {
    .bago-activity-detail-polished {
        gap: 12px;
    }

    .bago-detail-hero-card {
        border-radius: 26px;
    }

    .bago-detail-hero-card .bago-detail-cover {
        height: 250px;
    }

    .bago-activity-detail-polished .bago-box {
        border-radius: 24px;
        padding: 16px;
    }

    .bago-video-section {
        padding: 0 !important;
    }

    .bago-video-section .bago-video-grid {
        padding: 0 10px 10px;
    }

    .bago-video-frame-wrap {
        aspect-ratio: 16/10;
    }

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

    .bago-option-pill {
        min-height: 72px;
        border-radius: 18px;
        padding: 10px;
    }

    .bago-meeting-body,
    .bago-empty-policy-inner {
        grid-template-columns: 44px 1fr;
        gap: 10px;
    }

    .bago-meeting-icon,
    .bago-empty-policy-inner > span {
        width: 44px;
        height: 44px;
        border-radius: 15px;
        font-size: 21px;
    }
}

@media (max-width: 360px) {
    .bago-option-grid {
        grid-template-columns: 1fr;
    }
}


/* BaGO corrective patch: meeting point polish + safe sticky booking bar */
.bago-activity-detail-polished {
    padding-bottom: 178px !important;
}

.bago-activity-detail-polished .bago-meeting-card {
    margin-bottom: 22px !important;
    padding: 20px !important;
    border-radius: 30px !important;
    background:
        radial-gradient(circle at 18% 18%, rgba(77,232,255,.22), transparent 34%),
        linear-gradient(145deg, rgba(255,255,255,.18), rgba(31,224,201,.08)) !important;
    border: 1px solid rgba(255,255,255,.20) !important;
    box-shadow: 0 22px 55px rgba(0,0,0,.22) !important;
}

.bago-meeting-card .bago-box-head.clean h5 {
    margin-bottom: 16px !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    letter-spacing: .01em;
}

.bago-meeting-body {
    display: grid !important;
    grid-template-columns: 58px minmax(0, 1fr) !important;
    gap: 14px !important;
    align-items: center !important;
}

.bago-meeting-icon {
    width: 56px !important;
    height: 56px !important;
    border-radius: 20px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, #31d7ff, #77f2b9) !important;
    color: #063d42 !important;
    font-size: 27px !important;
    box-shadow: 0 14px 30px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.35) !important;
    border: 1px solid rgba(255,255,255,.24) !important;
}

.bago-meeting-text {
    color: #fff !important;
    font-size: 17px !important;
    line-height: 1.35 !important;
    font-weight: 650 !important;
    margin: 0 0 12px !important;
    text-shadow: 0 2px 8px rgba(0,0,0,.22);
}

.bago-map-open-btn {
    width: auto !important;
    min-width: 170px !important;
    min-height: 52px !important;
    justify-content: center !important;
    padding: 0 22px !important;
    border-radius: 20px !important;
    font-size: 17px !important;
    font-weight: 900 !important;
    letter-spacing: .01em !important;
    color: #fff !important;
    background:
        linear-gradient(135deg, rgba(255,255,255,.24), rgba(77,232,255,.14)) !important;
    border: 1px solid rgba(255,255,255,.22) !important;
    box-shadow: 0 14px 34px rgba(0,0,0,.20), inset 0 1px 0 rgba(255,255,255,.24) !important;
    backdrop-filter: blur(14px) !important;
}

.bago-map-open-btn i {
    font-size: 22px !important;
    margin-right: 3px !important;
}

.bago-map-open-btn:hover,
.bago-map-open-btn:focus {
    transform: translateY(-1px);
    background: linear-gradient(135deg, rgba(49,215,255,.34), rgba(119,242,185,.24)) !important;
    border-color: rgba(255,255,255,.32) !important;
}

.bago-sticky-bookbar {
    position: fixed !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    bottom: calc(96px + env(safe-area-inset-bottom)) !important;
    width: min(458px, calc(100% - 28px)) !important;
    margin: 0 !important;
    z-index: 998 !important;
    padding: 10px !important;
    border-radius: 26px !important;
    background: linear-gradient(135deg, rgba(3,30,36,.72), rgba(8,59,67,.62)) !important;
    border: 1px solid rgba(255,255,255,.18) !important;
    box-shadow: 0 24px 65px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.12) !important;
    backdrop-filter: blur(18px) !important;
}

.bago-sticky-bookbar .bago-btn:first-child {
    min-height: 58px !important;
    border-radius: 20px !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    box-shadow: 0 14px 36px rgba(31,224,201,.22) !important;
}

.bago-sticky-bookbar .bago-btn:last-child {
    width: 58px !important;
    min-width: 58px !important;
    height: 58px !important;
    border-radius: 20px !important;
    justify-content: center !important;
    font-size: 22px !important;
}

@media (max-width: 420px) {
    .bago-activity-detail-polished {
        padding-bottom: 188px !important;
    }

    .bago-activity-detail-polished .bago-meeting-card {
        border-radius: 26px !important;
        padding: 18px !important;
    }

    .bago-meeting-body {
        grid-template-columns: 52px minmax(0, 1fr) !important;
        gap: 12px !important;
    }

    .bago-meeting-icon {
        width: 52px !important;
        height: 52px !important;
        border-radius: 18px !important;
        font-size: 25px !important;
    }

    .bago-meeting-text {
        font-size: 16px !important;
        margin-bottom: 10px !important;
    }

    .bago-map-open-btn {
        min-width: 154px !important;
        min-height: 48px !important;
        border-radius: 18px !important;
        font-size: 16px !important;
    }

    .bago-sticky-bookbar {
        bottom: calc(88px + env(safe-area-inset-bottom)) !important;
        width: calc(100% - 26px) !important;
        border-radius: 24px !important;
    }

    .bago-sticky-bookbar .bago-btn:first-child,
    .bago-sticky-bookbar .bago-btn:last-child {
        min-height: 56px !important;
        height: 56px !important;
        border-radius: 18px !important;
    }

    .bago-sticky-bookbar .bago-btn:last-child {
        min-width: 56px !important;
        width: 56px !important;
    }
}

@media (min-width: 700px) {
    .bago-sticky-bookbar {
        width: min(560px, calc(100% - 40px)) !important;
    }
}

/* BaGO review system polish: swipe stars + moderation */
.bago-modern-review-form {
    overflow: hidden;
}

.bago-review-form-note {
    margin: -4px 0 14px;
    color: rgba(255,255,255,.72);
    font-size: 14px;
}

.bago-review-alert {
    border-radius: 16px;
    padding: 12px 14px;
    margin-bottom: 12px;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,.16);
}

.bago-review-alert.success {
    background: rgba(56, 255, 188, .16);
    color: #d7fff4;
}

.bago-review-alert.error {
    background: rgba(255, 93, 93, .16);
    color: #ffe0e0;
}

.bago-swipe-stars {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    padding: 10px 14px;
    border-radius: 19px;
    background: rgba(255,255,255,.11);
    border: 1px solid rgba(255,255,255,.17);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.10);
    touch-action: pan-y;
    user-select: none;
}

.bago-star-track {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
}

.bago-star-btn {
    appearance: none;
    border: 0;
    background: transparent;
    color: rgba(255,255,255,.32);
    font-size: 31px;
    line-height: 1;
    padding: 5px 0;
    cursor: pointer;
    text-shadow: 0 8px 18px rgba(0,0,0,.25);
    transition: transform .15s ease, color .15s ease;
}

.bago-star-btn.active {
    color: #ffd65a;
    transform: translateY(-1px) scale(1.04);
}

.bago-star-label {
    min-width: 50px;
    text-align: center;
    border-radius: 999px;
    padding: 8px 10px;
    background: rgba(255,214,90,.16);
    color: #fff4c6;
    font-weight: 900;
}

.bago-operator-review-filter {
    display: grid;
    grid-template-columns: 1fr 170px auto;
    gap: 10px;
    align-items: center;
}

.bago-operator-review-card.is-banned {
    border-color: rgba(255,92,92,.34) !important;
    background: linear-gradient(145deg, rgba(105,25,31,.38), rgba(255,255,255,.08)) !important;
}

.bago-review-ban-note {
    margin-top: 12px;
    padding: 12px;
    border-radius: 15px;
    background: rgba(255,92,92,.16);
    border: 1px solid rgba(255,92,92,.22);
    color: #ffe3e3;
}

@media (max-width: 520px) {
    .bago-swipe-stars {
        gap: 8px;
        padding: 8px 10px;
    }
    .bago-star-btn {
        font-size: 28px;
    }
    .bago-star-label {
        min-width: 44px;
        padding: 7px 8px;
    }
    .bago-operator-review-filter {
        grid-template-columns: 1fr;
    }
}

/* Step live support + compact reviews + operator contact polish */
.bago-floating-support{position:fixed;left:12px;bottom:180px;z-index:350;display:flex;align-items:center;gap:8px;padding:11px 13px;border-radius:999px;background:linear-gradient(135deg,#22d3ee,#7cf7b6);color:#06353a!important;font-weight:900;box-shadow:0 14px 34px rgba(0,0,0,.28);border:1px solid rgba(255,255,255,.55)}
.bago-floating-support i{font-size:18px}.bago-floating-support span{font-size:13px}@media(max-width:420px){.bago-floating-support{bottom:162px;left:10px;padding:10px}.bago-floating-support span{display:none}}
.bago-live-support-page{padding-bottom:110px}.bago-support-card{border-radius:26px;overflow:hidden;background:rgba(255,255,255,.14);border:1px solid rgba(255,255,255,.2);box-shadow:var(--bago-shadow);backdrop-filter:blur(14px)}.bago-support-head{display:flex;align-items:center;gap:12px;padding:15px 16px;background:rgba(0,38,54,.48);border-bottom:1px solid rgba(255,255,255,.14)}.bago-support-head strong,.bago-support-head span{display:block}.bago-support-head span{font-size:12px;color:rgba(255,255,255,.75)}.bago-support-avatar{width:46px;height:46px;border-radius:16px;background:linear-gradient(135deg,var(--bago-accent),#8bffd4);color:#073b40;display:flex;align-items:center;justify-content:center;font-size:22px}.bago-support-messages{height:52vh;min-height:370px;overflow:auto;padding:16px;display:flex;flex-direction:column;gap:10px;background:linear-gradient(180deg,rgba(7,67,82,.28),rgba(0,0,0,.08))}.bago-support-empty{margin:auto;color:rgba(255,255,255,.78);font-weight:700}.bago-support-bubble{max-width:82%;padding:10px 13px;border-radius:18px;box-shadow:0 8px 20px rgba(0,0,0,.18)}.bago-support-bubble.admin{background:rgba(255,255,255,.92);color:#10333b;border-top-left-radius:6px}.bago-support-bubble.me{align-self:flex-end;background:linear-gradient(135deg,#22d3ee,#6ff7b9);color:#06353a;border-top-right-radius:6px}.bago-support-bubble small{display:block;text-align:right;opacity:.7;font-size:11px;margin-top:4px}.bago-support-form{padding:13px;background:rgba(0,33,43,.38);display:grid;gap:10px}.bago-support-send-row{display:flex;gap:9px;align-items:flex-end}.bago-support-send-row textarea{resize:none;min-height:52px}.bago-support-send-row button{width:54px;height:54px;flex:0 0 54px;border-radius:18px}
.bago-review-next-wrap{display:flex;justify-content:center;margin-top:14px}.bago-review-next-btn{width:46px;height:46px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,#22d3ee,#78f7ba);color:#07343b!important;font-size:24px;font-weight:900;box-shadow:0 12px 26px rgba(0,0,0,.22)}
.bago-operator-contact-card{display:block}.bago-operator-inline-main{display:flex;align-items:center;gap:12px;color:#fff!important}.bago-operator-contact-row{margin-top:12px;display:flex;gap:8px;flex-wrap:wrap}.bago-contact-chip,.bago-operator-contact-summary a{display:inline-flex;align-items:center;gap:7px;border-radius:999px;padding:9px 11px;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.17);color:#fff!important;font-weight:800;font-size:13px}.bago-contact-chip.whatsapp,.bago-operator-contact-summary a:nth-child(2){background:rgba(37,211,102,.18);border-color:rgba(37,211,102,.35)}.bago-operator-contact-summary{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}.bago-list .bago-review-next-wrap{grid-column:1/-1}

/* BaGO company/settings cleanup patch */
.bago-company-contact-card {
    display: grid;
    gap: 14px;
}
.bago-company-contact-head {
    display: flex;
    align-items: center;
    gap: 12px;
}
.bago-company-contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bago-accent), var(--bago-accent-2));
    color: #06353a;
    font-size: 24px;
    box-shadow: 0 14px 28px rgba(0,0,0,.22);
    flex: 0 0 50px;
}
.bago-company-contact-head h5 {
    margin: 0 0 3px;
    font-weight: 900;
}
.bago-company-contact-head span {
    color: var(--bago-text-soft);
    font-size: 13px;
}
.bago-company-contact-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
.bago-company-contact-list a,
.bago-company-contact-extra div {
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
    border-radius: 16px;
    padding: 11px 12px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.13);
    color: #fff !important;
    font-weight: 800;
}
.bago-company-contact-list a span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.bago-company-contact-list i,
.bago-company-contact-extra i {
    color: var(--bago-accent-2);
}
.bago-company-contact-extra {
    display: grid;
    gap: 9px;
    color: rgba(255,255,255,.88);
}
.bago-live-support-page {
    padding-top: 0;
}
@media(max-width: 520px) {
    .bago-company-contact-list {
        grid-template-columns: 1fr;
    }
}

/* Cookie consent + guest/registered favorites patch */
.bago-mini-icon-link {
    width: 42px;
    height: 42px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 18px;
    padding: 0 !important;
}

.bago-favorite-button {
    border: 0;
    cursor: pointer;
}

.bago-favorite-button.is-saved {
    background: rgba(255, 88, 130, 0.20) !important;
    border-color: rgba(255, 88, 130, 0.36) !important;
    color: #fff !important;
}

.bago-favorite-button.is-saved i {
    color: #ff6b9c;
}

.bago-favorite-label {
    margin-left: 6px;
}

.bago-cookie-consent {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(92px + env(safe-area-inset-bottom));
    z-index: 10000;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .18s ease, transform .18s ease;
}

.bago-cookie-consent.show {
    opacity: 1;
    transform: translateY(0);
}

.bago-cookie-consent-inner {
    max-width: 620px;
    margin: 0 auto;
    border-radius: 24px;
    padding: 12px;
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 10px;
    background: rgba(3, 31, 45, 0.92);
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 24px 70px rgba(0,0,0,.32);
    backdrop-filter: blur(16px);
}

.bago-cookie-icon {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bago-accent), var(--bago-accent-2));
    color: #052c33;
    font-size: 22px;
}

.bago-cookie-text strong,
.bago-cookie-text span {
    display: block;
}

.bago-cookie-text strong {
    font-size: 15px;
    margin-bottom: 3px;
}

.bago-cookie-text span {
    color: rgba(255,255,255,.76);
    font-size: 12px;
    line-height: 1.35;
}

.bago-cookie-actions {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.bago-cookie-btn {
    height: 40px;
    border: 0;
    border-radius: 14px;
    font-weight: 800;
    cursor: pointer;
}

.bago-cookie-btn.primary {
    background: linear-gradient(135deg, var(--bago-accent), var(--bago-accent-2));
    color: #062f33;
}

.bago-cookie-btn.secondary {
    background: rgba(255,255,255,.10);
    color: #fff;
    border: 1px solid rgba(255,255,255,.12);
}

.bago-mini-toast {
    position: fixed;
    left: 50%;
    bottom: calc(102px + env(safe-area-inset-bottom));
    transform: translate(-50%, 16px);
    opacity: 0;
    z-index: 10001;
    background: rgba(3, 24, 36, .92);
    color: #fff;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: 0 14px 44px rgba(0,0,0,.28);
    transition: opacity .18s ease, transform .18s ease;
    font-size: 13px;
    pointer-events: none;
}

.bago-mini-toast.show {
    opacity: 1;
    transform: translate(-50%, 0);
}

.bago-favorites-grid {
    display: grid;
    gap: 14px;
}

.bago-favorite-card {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 12px;
    padding: 10px;
    border-radius: 24px;
    background: rgba(255,255,255,.11);
    border: 1px solid rgba(255,255,255,.13);
    color: #fff;
    box-shadow: var(--bago-shadow);
    overflow: hidden;
}

.bago-favorite-card img {
    width: 112px;
    height: 112px;
    object-fit: cover;
    border-radius: 18px;
    background: rgba(255,255,255,.08);
}

.bago-favorite-card-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
}

.bago-remove-local-favorite {
    border: 0;
    border-radius: 999px;
    padding: 8px 10px;
    background: rgba(255,255,255,.12);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
}

@media (max-width: 430px) {
    .bago-favorite-card {
        grid-template-columns: 94px 1fr;
    }
    .bago-favorite-card img {
        width: 94px;
        height: 104px;
    }
    .bago-cookie-consent-inner {
        border-radius: 22px;
    }
}


/* BaGO foldable language selector */
.bago-lang-picker {
    position: relative;
    z-index: 180;
}

.bago-lang-picker summary {
    list-style: none;
    min-width: 78px;
    height: 44px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.16);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    cursor: pointer;
    padding: 0 12px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.bago-lang-picker summary::-webkit-details-marker { display: none; }
.bago-lang-picker[open] summary { background: rgba(255,255,255,0.20); }
.bago-lang-current-flag { font-size: 19px; line-height: 1; }
.bago-lang-current-code { font-size: 12px; font-weight: 900; letter-spacing: .04em; }
.bago-lang-picker summary .bi { font-size: 11px; transition: transform .18s ease; }
.bago-lang-picker[open] summary .bi { transform: rotate(180deg); }

.bago-lang-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    width: min(280px, calc(100vw - 28px));
    max-height: 420px;
    overflow-y: auto;
    padding: 8px;
    border-radius: 22px;
    background: rgba(5, 38, 47, 0.96);
    border: 1px solid rgba(255,255,255,0.16);
    box-shadow: 0 24px 70px rgba(0,0,0,0.38);
    backdrop-filter: blur(16px);
}

.bago-lang-menu a {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px 12px;
    border-radius: 15px;
    color: #fff;
    text-decoration: none;
}

.bago-lang-menu a:hover,
.bago-lang-menu a.active {
    background: linear-gradient(135deg, rgba(53,242,209,0.24), rgba(125,223,255,0.18));
}

.bago-lang-flag { font-size: 24px; width: 32px; text-align: center; }
.bago-lang-name { display: flex; flex-direction: column; line-height: 1.1; min-width: 0; }
.bago-lang-name strong { font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bago-lang-name small { color: rgba(255,255,255,0.64); font-size: 11px; margin-top: 3px; }

@media (max-width: 430px) {
    .bago-lang-picker summary { min-width: 64px; padding: 0 9px; }
    .bago-lang-current-code { display: none; }
    .bago-lang-menu { right: -4px; }
}

/* Language selector final polish: compact dropdown that does not expand header */
.bago-header,
.bago-header-inner,
.bago-header-actions {
    overflow: visible !important;
}

.bago-header-inner {
    min-height: 78px;
    align-items: center !important;
}

.bago-lang-picker {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    height: 44px !important;
    flex: 0 0 auto !important;
    z-index: 9999 !important;
}

.bago-lang-picker summary {
    list-style: none !important;
    width: auto !important;
    max-width: 122px !important;
    min-width: 86px !important;
    height: 44px !important;
    margin: 0 !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,0.12) !important;
    border: 1px solid rgba(255,255,255,0.17) !important;
    color: #fff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;
    padding: 0 12px !important;
    cursor: pointer !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.09) !important;
    white-space: nowrap !important;
}

.bago-lang-picker summary::-webkit-details-marker,
.bago-lang-picker summary::marker {
    display: none !important;
    content: '' !important;
}

.bago-lang-picker[open] summary {
    background: rgba(255,255,255,0.22) !important;
}

.bago-lang-current-flag {
    font-size: 17px !important;
    line-height: 1 !important;
}

.bago-lang-current-code {
    font-size: 12px !important;
    font-weight: 900 !important;
    letter-spacing: .035em !important;
    line-height: 1 !important;
}

.bago-lang-picker summary .bi {
    font-size: 12px !important;
    transition: transform .18s ease !important;
}

.bago-lang-picker[open] summary .bi {
    transform: rotate(180deg) !important;
}

.bago-lang-menu {
    position: absolute !important;
    right: 0 !important;
    left: auto !important;
    top: calc(100% + 10px) !important;
    width: 278px !important;
    max-width: calc(100vw - 28px) !important;
    max-height: min(430px, calc(100vh - 112px)) !important;
    overflow-y: auto !important;
    padding: 8px !important;
    border-radius: 22px !important;
    background: rgba(5, 38, 47, 0.98) !important;
    border: 1px solid rgba(255,255,255,0.16) !important;
    box-shadow: 0 24px 70px rgba(0,0,0,0.42) !important;
    backdrop-filter: blur(18px) !important;
    z-index: 10000 !important;
}

.bago-lang-menu a {
    display: grid !important;
    grid-template-columns: 34px 1fr !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 10px 11px !important;
    border-radius: 15px !important;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 700 !important;
}

.bago-lang-menu a:hover,
.bago-lang-menu a.active {
    background: linear-gradient(135deg, rgba(53,242,209,0.28), rgba(125,223,255,0.18)) !important;
    color: #fff !important;
}

.bago-lang-flag {
    font-size: 22px !important;
    width: 34px !important;
    text-align: center !important;
    line-height: 1 !important;
}

.bago-lang-name {
    display: flex !important;
    flex-direction: column !important;
    line-height: 1.15 !important;
    min-width: 0 !important;
}

.bago-lang-name strong {
    font-size: 14px !important;
    color: #fff !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.bago-lang-name small {
    color: rgba(255,255,255,0.64) !important;
    font-size: 11px !important;
    margin-top: 3px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

@media (max-width: 430px) {
    .bago-header-inner {
        min-height: 78px !important;
    }
    .bago-lang-picker summary {
        min-width: 72px !important;
        max-width: 82px !important;
        padding: 0 9px !important;
    }
    .bago-lang-current-flag {
        display: none !important;
    }
    .bago-lang-menu {
        position: fixed !important;
        top: 76px !important;
        right: 10px !important;
        width: min(292px, calc(100vw - 20px)) !important;
    }
}

/* Language selector flag + compact dropdown final fix */
.bago-header-actions .bago-lang-picker {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    flex: 0 0 auto !important;
    height: 48px !important;
    z-index: 12000 !important;
}

.bago-header-actions .bago-lang-picker summary {
    min-width: 86px !important;
    max-width: 112px !important;
    height: 48px !important;
    padding: 0 12px !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;
    background: rgba(255,255,255,0.13) !important;
    border: 1px solid rgba(255,255,255,0.18) !important;
    overflow: hidden !important;
}

.bago-header-actions .bago-lang-current-flag {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    font-size: 21px !important;
    line-height: 1 !important;
    border-radius: 50% !important;
    filter: drop-shadow(0 1px 4px rgba(0,0,0,.22));
}

.bago-header-actions .bago-lang-current-code {
    display: inline-block !important;
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
}

.bago-header-actions .bago-lang-picker .bi-chevron-down {
    color: rgba(255,255,255,.92) !important;
    flex: 0 0 auto !important;
}

.bago-header-actions .bago-lang-menu {
    display: block !important;
    position: absolute !important;
    right: 0 !important;
    left: auto !important;
    top: calc(100% + 10px) !important;
    width: min(310px, calc(100vw - 18px)) !important;
    max-height: min(430px, calc(100vh - 110px)) !important;
    overflow-y: auto !important;
    padding: 9px !important;
    border-radius: 22px !important;
    background: rgba(5,38,47,.98) !important;
    border: 1px solid rgba(255,255,255,.18) !important;
    box-shadow: 0 22px 70px rgba(0,0,0,.46) !important;
    z-index: 13000 !important;
}

.bago-header-actions .bago-lang-menu a {
    display: grid !important;
    grid-template-columns: 36px 1fr !important;
    gap: 10px !important;
    align-items: center !important;
    color: #fff !important;
    text-decoration: none !important;
}

.bago-header-actions .bago-lang-flag {
    font-size: 24px !important;
    line-height: 1 !important;
}

.translation-row-missing textarea {
    border-color: rgba(255,193,7,.48) !important;
    background: #fffdf3 !important;
}

@media (max-width: 430px) {
    .bago-header-actions .bago-lang-picker summary {
        min-width: 70px !important;
        max-width: 76px !important;
        padding: 0 8px !important;
    }
    .bago-header-actions .bago-lang-current-code {
        display: none !important;
    }
    .bago-header-actions .bago-lang-current-flag {
        display: inline-flex !important;
        width: 26px !important;
        height: 26px !important;
        min-width: 26px !important;
        font-size: 22px !important;
    }
    .bago-header-actions .bago-lang-menu {
        position: fixed !important;
        top: 76px !important;
        right: 8px !important;
        left: auto !important;
        width: min(306px, calc(100vw - 16px)) !important;
    }
}


/* BaGO language translation coverage patch */
.bago-header-actions .bago-lang-current-flag,
.bago-lang-current-flag {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 26px !important;
    height: 26px !important;
    min-width: 26px !important;
    font-size: 22px !important;
    line-height: 1 !important;
    border-radius: 50% !important;
}

.bago-header-actions .bago-lang-picker summary {
    min-width: 72px !important;
    max-width: 118px !important;
}

@media (max-width: 430px) {
    .bago-header-actions .bago-lang-current-flag {
        display: inline-flex !important;
    }
    .bago-header-actions .bago-lang-current-code {
        display: none !important;
    }
}

.bago-language-editor-modal .modal-content {
    max-height: calc(100vh - 38px) !important;
    display: flex !important;
    flex-direction: column !important;
}
.bago-language-editor-modal .modal-body {
    overflow-y: auto !important;
    max-height: calc(100vh - 190px) !important;
}

/* Final language UI fix: flag visible and dropdown does not stretch header */
.bago-header-inner,
.bago-header-actions {
    overflow: visible !important;
}
.bago-header-actions .bago-lang-picker {
    position: relative !important;
    display: inline-flex !important;
    width: auto !important;
    height: 48px !important;
    align-items: center !important;
    flex: 0 0 auto !important;
    z-index: 16000 !important;
}
.bago-header-actions .bago-lang-picker summary {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;
    min-width: 84px !important;
    max-width: 118px !important;
    height: 48px !important;
    padding: 0 12px !important;
    border-radius: 999px !important;
    overflow: hidden !important;
}
.bago-header-actions .bago-lang-current-flag,
.bago-lang-current-flag {
    display: inline-flex !important;
    width: 26px !important;
    height: 26px !important;
    min-width: 26px !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 22px !important;
    line-height: 1 !important;
    border-radius: 50% !important;
}
.bago-header-actions .bago-lang-current-code {
    display: inline-block !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
}
.bago-header-actions .bago-lang-menu {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    right: 0 !important;
    left: auto !important;
    width: min(310px, calc(100vw - 18px)) !important;
    max-height: min(430px, calc(100vh - 108px)) !important;
    overflow-y: auto !important;
    z-index: 17000 !important;
}
.bago-header-actions .bago-lang-menu a {
    color: #fff !important;
}
@media (max-width: 430px) {
    .bago-header-actions .bago-lang-picker summary {
        min-width: 72px !important;
        max-width: 76px !important;
        padding: 0 8px !important;
    }
    .bago-header-actions .bago-lang-current-code {
        display: none !important;
    }
    .bago-header-actions .bago-lang-current-flag {
        display: inline-flex !important;
    }
    .bago-header-actions .bago-lang-menu {
        position: fixed !important;
        top: 76px !important;
        right: 8px !important;
        left: auto !important;
    }
}

/* 2026-06-04 hotfix: compact language flags, category all tile, admin language modal scroll */
.bago-lang-picker summary {
    min-width: 88px;
    max-width: 112px;
    justify-content: center;
    gap: 8px;
}

.bago-lang-current-flag,
.bago-lang-flag {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(255,255,255,.36), 0 6px 14px rgba(0,0,0,.18);
    background-color: rgba(255,255,255,.18);
}

.bago-lang-menu {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    right: 0 !important;
    left: auto !important;
    width: min(280px, calc(100vw - 28px)) !important;
    max-height: min(420px, calc(100vh - 130px));
    overflow-y: auto !important;
    overflow-x: hidden !important;
    z-index: 10030 !important;
    padding: 8px !important;
    display: none;
}

.bago-lang-picker[open] .bago-lang-menu {
    display: block;
}

.bago-lang-menu a {
    display: flex !important;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 9px 10px !important;
    border-radius: 16px;
    text-decoration: none !important;
    color: #fff !important;
}

.bago-lang-menu a.active,
.bago-lang-menu a:hover {
    background: rgba(255,255,255,.16);
}

.bago-lang-name {
    min-width: 0;
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.bago-lang-name strong,
.bago-lang-name small {
    color: #fff !important;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.bago-lang-name small {
    opacity: .72;
    font-size: 11px;
    margin-top: 2px;
}

.bago-category-all-tile {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.bago-category-all-tile i {
    font-size: 34px !important;
}

.bago-language-editor-modal .modal-dialog {
    height: calc(100vh - 22px) !important;
    max-height: calc(100vh - 22px) !important;
    margin-top: 11px !important;
    margin-bottom: 11px !important;
}

.bago-language-editor-modal .modal-content {
    height: 100% !important;
    max-height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
}

.bago-language-editor-modal .modal-body {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 120px !important;
}

.bago-language-editor-modal .modal-header,
.bago-language-editor-modal .modal-footer {
    flex: 0 0 auto !important;
}

.bago-translation-toolbar {
    position: sticky;
    top: 0;
    z-index: 5;
    background: rgba(255,255,255,.98);
    padding: 0 0 10px;
}

.translation-row-list {
    max-height: none !important;
    overflow: visible !important;
}

@media (max-width: 520px) {
    .bago-lang-picker summary {
        min-width: 78px;
        max-width: 92px;
        padding-inline: 10px;
    }
    .bago-lang-current-code {
        max-width: 34px;
        overflow: hidden;
        white-space: nowrap;
    }
    .bago-lang-menu {
        right: -4px !important;
    }
    .bago-language-editor-modal .modal-dialog {
        width: calc(100vw - 12px) !important;
        max-width: calc(100vw - 12px) !important;
        height: calc(100vh - 12px) !important;
        max-height: calc(100vh - 12px) !important;
        margin: 6px auto !important;
    }
}


/* BaGO language/admin modal hard fix 2026-06-04 */
.bago-language-editor-modal{padding-right:0!important;overflow-y:auto!important;}
.bago-language-editor-modal.show{display:block!important;}
.bago-language-editor-modal .modal-dialog{height:calc(100dvh - 24px)!important;max-height:calc(100dvh - 24px)!important;margin:12px auto!important;display:flex!important;align-items:stretch!important;}
.bago-language-editor-modal .modal-content{height:100%!important;max-height:100%!important;display:flex!important;flex-direction:column!important;overflow:hidden!important;}
.bago-language-editor-modal .bago-translation-form{height:100%!important;min-height:0!important;display:flex!important;flex-direction:column!important;}
.bago-language-editor-modal .modal-header,.bago-language-editor-modal .modal-footer{flex:0 0 auto!important;}
.bago-language-editor-modal .modal-body{flex:1 1 auto!important;min-height:0!important;overflow-y:auto!important;overflow-x:hidden!important;-webkit-overflow-scrolling:touch!important;overscroll-behavior:contain!important;padding-bottom:150px!important;}
.bago-language-editor-modal .translation-row-list{max-height:none!important;overflow:visible!important;padding-bottom:120px!important;}
.bago-language-editor-modal .bago-translation-toolbar{position:sticky!important;top:0!important;z-index:20!important;}
@media(max-width:768px){.bago-language-editor-modal .modal-dialog{width:calc(100vw - 12px)!important;max-width:calc(100vw - 12px)!important;height:calc(100dvh - 12px)!important;max-height:calc(100dvh - 12px)!important;margin:6px!important}.bago-language-editor-modal .modal-body{padding-bottom:180px!important;}}

/* Operator dashboard compact polish + translated UI */
.bago-operator-dashboard {
    padding-bottom: 18px;
}

.bago-operator-dashboard-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.bago-operator-title {
    font-size: clamp(26px, 7vw, 38px);
    line-height: 1.05;
    margin-bottom: 6px;
}

.bago-operator-name {
    font-size: 16px;
    opacity: .92;
    margin: 0;
}

.bago-operator-logout-form { margin: 0; }

.bago-operator-logout {
    min-height: 44px;
    padding: 10px 14px;
    border-radius: 18px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.bago-operator-actions-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 12px 0 12px;
}

.bago-operator-public-btn {
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 17px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.bago-operator-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 38px;
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 800;
    color: #fff;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.20);
    backdrop-filter: blur(14px);
}

.bago-operator-status-pill.is-approved {
    background: rgba(31,224,201,.20);
    border-color: rgba(31,224,201,.32);
}

.bago-operator-status-pill.is-pending {
    background: rgba(255,209,102,.20);
    border-color: rgba(255,209,102,.32);
}

.bago-operator-alert {
    margin-bottom: 12px;
    padding: 12px 14px;
}

.bago-operator-status-card {
    margin-bottom: 14px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 24px;
}

.bago-operator-status-card .bago-text-soft {
    margin-top: 4px !important;
    line-height: 1.35;
}

.bago-operator-status-card.is-success {
    border-color: rgba(31,224,201,.34) !important;
}

.bago-operator-status-card.is-warning {
    border-color: rgba(255,209,102,.36) !important;
}

.bago-operator-status-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    background: linear-gradient(135deg, rgba(33,218,244,.95), rgba(110,255,180,.95));
    color: #043b43;
    box-shadow: 0 10px 28px rgba(0,0,0,.16);
    font-size: 22px;
}

.bago-operator-mini-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 10px 0 14px;
}

.bago-operator-mini-stat {
    min-height: 74px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    border-radius: 22px;
    background: rgba(255,255,255,.13);
    border: 1px solid rgba(255,255,255,.16);
    backdrop-filter: blur(14px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
}

.bago-operator-mini-stat strong {
    font-size: 24px;
    line-height: 1;
}

.bago-operator-mini-stat span {
    font-size: 13px;
    opacity: .94;
    text-align: center;
}

.bago-operator-feature-grid {
    gap: 10px !important;
}

.bago-operator-feature-item {
    min-height: 116px !important;
    padding: 13px 9px !important;
    border-radius: 24px !important;
}

.bago-operator-feature-item .bago-feature-icon {
    width: 56px !important;
    height: 56px !important;
    border-radius: 18px !important;
    font-size: 25px !important;
    margin-bottom: 9px !important;
}

.bago-operator-feature-item .bago-feature-label {
    font-size: 13px !important;
    line-height: 1.15 !important;
}

.bago-operator-help-card {
    padding: 15px 16px;
    margin-top: 14px;
    border-radius: 24px;
}

.bago-operator-help-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 900;
    margin-bottom: 10px;
}

.bago-operator-help-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    color: rgba(255,255,255,.88);
    font-size: 13px;
    line-height: 1.28;
}

.bago-operator-help-grid span {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    padding: 9px 10px;
    border-radius: 14px;
    background: rgba(255,255,255,.08);
}

@media (max-width: 520px) {
    .bago-operator-dashboard-head {
        align-items: flex-start;
        gap: 8px;
    }

    .bago-operator-title {
        font-size: 29px;
    }

    .bago-operator-name {
        font-size: 14px;
    }

    .bago-operator-logout {
        min-height: 38px;
        padding: 8px 12px;
        border-radius: 16px;
        font-size: 13px;
    }

    .bago-operator-logout i {
        display: none;
    }

    .bago-operator-status-card {
        padding: 13px;
        border-radius: 22px;
    }

    .bago-operator-status-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        border-radius: 15px;
        font-size: 20px;
    }

    .bago-operator-mini-stats {
        gap: 8px;
    }

    .bago-operator-mini-stat {
        min-height: 68px;
        border-radius: 18px;
    }

    .bago-operator-mini-stat strong {
        font-size: 22px;
    }

    .bago-operator-mini-stat span {
        font-size: 12px;
    }

    .bago-operator-feature-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    .bago-operator-feature-item {
        min-height: 108px !important;
        padding: 11px 6px !important;
        border-radius: 22px !important;
    }

    .bago-operator-feature-item .bago-feature-icon {
        width: 51px !important;
        height: 51px !important;
        font-size: 23px !important;
        border-radius: 17px !important;
    }

    .bago-operator-feature-item .bago-feature-label {
        font-size: 12px !important;
    }

    .bago-operator-help-grid {
        grid-template-columns: 1fr;
    }
}


/* Operator pages translation/compact polish patch */
.bago-operator-dashboard-v2 { padding-bottom: 110px; }
.bago-operator-hero-compact {
    padding: 0 2px 8px;
}
.bago-operator-headline {
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:12px;
    margin-bottom:10px;
}
.bago-operator-dashboard-v2 .bago-operator-title {
    font-size: clamp(28px, 7vw, 38px) !important;
    line-height: .98 !important;
    margin: 0 0 6px !important;
}
.bago-operator-dashboard-v2 .bago-operator-name {
    font-size: 15px !important;
    margin: 0 !important;
    opacity: .92;
}
.bago-operator-dashboard-v2 .bago-operator-logout {
    padding: 10px 14px !important;
    min-height: 44px;
    border-radius: 18px;
    font-size: 13px;
    white-space: nowrap;
}
.bago-operator-compact-actions {
    display:flex;
    align-items:center;
    gap:8px;
    flex-wrap:wrap;
    margin: 8px 0 10px;
}
.bago-operator-dashboard-v2 .bago-operator-public-btn,
.bago-operator-dashboard-v2 .bago-operator-status-pill {
    padding: 9px 12px !important;
    border-radius: 16px !important;
    font-size: 13px !important;
    min-height: 40px;
}
.bago-operator-dashboard-v2 .bago-operator-status-card {
    padding: 12px 14px !important;
    border-radius: 20px !important;
    display:flex;
    align-items:center;
    gap:12px;
    margin: 8px 0 12px !important;
}
.bago-operator-dashboard-v2 .bago-operator-status-card strong {
    display:block;
    font-size: 15px;
    line-height:1.15;
}
.bago-operator-dashboard-v2 .bago-operator-status-card .bago-text-soft {
    font-size: 13px !important;
    line-height:1.35;
    margin-top:3px;
}
.bago-operator-dashboard-v2 .bago-operator-status-icon {
    width: 40px !important;
    height: 40px !important;
    min-width:40px;
    border-radius: 14px !important;
    display:grid;
    place-items:center;
}
.bago-operator-dashboard-v2 .bago-operator-mini-stats {
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:10px;
    margin: 10px 0 14px !important;
}
.bago-operator-dashboard-v2 .bago-operator-mini-stat {
    min-height: 58px !important;
    padding: 9px 6px !important;
    border-radius: 18px !important;
}
.bago-operator-dashboard-v2 .bago-operator-mini-stat strong {
    font-size: 20px !important;
    line-height: 1 !important;
}
.bago-operator-dashboard-v2 .bago-operator-mini-stat span {
    font-size: 12px !important;
    line-height: 1.15 !important;
}
.bago-operator-dashboard-v2 .bago-operator-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 10px !important;
    margin-top: 8px !important;
}
.bago-operator-dashboard-v2 .bago-operator-feature-item {
    min-height: 118px !important;
    padding: 12px 7px !important;
    border-radius: 22px !important;
}
.bago-operator-dashboard-v2 .bago-feature-icon {
    width: 54px !important;
    height: 54px !important;
    border-radius: 17px !important;
    margin-bottom: 8px !important;
}
.bago-operator-dashboard-v2 .bago-feature-icon i {
    font-size: 26px !important;
}
.bago-operator-dashboard-v2 .bago-feature-label {
    font-size: 12.5px !important;
    line-height: 1.18 !important;
    max-width: 92px;
    margin: 0 auto;
}
.bago-operator-dashboard-v2 .bago-operator-help-card {
    padding: 13px !important;
    border-radius: 20px !important;
    margin-top: 14px !important;
}
.bago-operator-dashboard-v2 .bago-operator-help-title {
    font-size: 14px !important;
    margin-bottom: 8px !important;
}
.bago-operator-dashboard-v2 .bago-operator-help-grid {
    display:grid;
    gap:7px;
    font-size: 12.5px;
}
.bago-operator-form-grid { display:grid; gap:14px; }
.bago-operator-page-actions { display:grid; gap:10px; margin-top:14px; }
@media (max-width: 430px) {
    .bago-operator-dashboard-v2 .bago-operator-title { font-size: 29px !important; }
    .bago-operator-dashboard-v2 .bago-operator-logout span { display:none; }
    .bago-operator-dashboard-v2 .bago-operator-logout { width:44px; padding:0 !important; justify-content:center; }
    .bago-operator-dashboard-v2 .bago-operator-public-btn { flex:1 1 auto; justify-content:center; }
    .bago-operator-dashboard-v2 .bago-operator-status-pill { flex:0 0 auto; }
}


/* Operator final luxury polish */
.bago-operator-hero-compact{padding:16px;border-radius:26px;background:linear-gradient(135deg,rgba(255,255,255,.18),rgba(255,255,255,.06));border:1px solid rgba(255,255,255,.22);box-shadow:0 20px 60px rgba(0,0,0,.18);backdrop-filter:blur(12px);margin-bottom:16px;}
.bago-operator-headline{display:flex;align-items:flex-start;justify-content:space-between;gap:12px;margin-bottom:10px;}
.bago-operator-title{font-size:28px!important;line-height:1.05!important;margin:0!important;}
.bago-operator-name{margin-top:5px!important;font-size:15px!important;}
.bago-operator-logout{padding:9px 12px!important;border-radius:16px!important;white-space:nowrap;}
.bago-operator-compact-actions{display:flex;align-items:center;gap:8px;flex-wrap:wrap;margin:8px 0 12px;}
.bago-operator-public-btn{padding:10px 13px!important;border-radius:16px!important;}
.bago-operator-status-pill{display:inline-flex;align-items:center;gap:7px;padding:9px 12px;border-radius:999px;background:rgba(255,255,255,.16);border:1px solid rgba(255,255,255,.20);font-weight:800;color:#fff;}
.bago-operator-status-pill.is-approved{background:rgba(48,241,181,.20);}
.bago-operator-status-card{display:flex!important;align-items:center;gap:12px;padding:14px!important;border-radius:22px!important;margin:0 0 12px!important;}
.bago-operator-status-icon{width:42px;height:42px;border-radius:16px;background:linear-gradient(135deg,#5fffd2,#35c8ff);display:grid;place-items:center;color:#07363c;font-size:20px;flex:0 0 42px;}
.bago-operator-mini-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;}
.bago-operator-mini-stat{padding:12px 8px;border-radius:20px;text-align:center;background:rgba(255,255,255,.14);border:1px solid rgba(255,255,255,.18);}
.bago-operator-mini-stat strong{display:block;font-size:22px;line-height:1;color:#fff;}
.bago-operator-mini-stat span{display:block;margin-top:6px;font-size:12px;color:rgba(255,255,255,.85);}
.bago-operator-feature-grid{grid-template-columns:repeat(3,1fr)!important;gap:12px!important;}
.bago-operator-feature-item{min-height:118px!important;padding:14px 8px!important;border-radius:24px!important;}
.bago-operator-help-card{margin-top:16px!important;}
.bago-operator-help-title{font-weight:900;margin-bottom:10px;}
.bago-operator-help-grid{display:grid;gap:8px;font-size:14px;color:rgba(255,255,255,.88);}
.bago-operator-row-actions{display:grid;grid-template-columns:1fr 1fr 1fr;gap:10px;margin-top:14px;}
.bago-operator-row-actions .bago-btn{justify-content:center;width:100%;padding-left:8px!important;padding-right:8px!important;}
@media(max-width:480px){.bago-operator-hero-compact{padding:12px;border-radius:22px}.bago-operator-title{font-size:24px!important}.bago-operator-headline{align-items:center}.bago-operator-logout span{display:none}.bago-operator-feature-grid{gap:10px!important}.bago-operator-feature-item{min-height:104px!important}.bago-operator-row-actions{grid-template-columns:1fr;}.bago-operator-mini-stat strong{font-size:19px}}


/* Operator dashboard final luxury layout fix */
.bago-operator-dashboard-lux-final {
    padding: 0 10px 118px;
}
.bago-op-final-hero {
    position: relative;
    overflow: hidden;
    margin: 6px 0 16px;
    padding: 16px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 18% 0%, rgba(255,255,255,.28), transparent 32%),
        linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,.07));
    border: 1px solid rgba(255,255,255,.24);
    box-shadow: 0 24px 70px rgba(0,0,0,.23), inset 0 1px 0 rgba(255,255,255,.18);
    backdrop-filter: blur(16px);
}
.bago-op-final-hero:before {
    content: "";
    position: absolute;
    inset: -80px -40px auto auto;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(92,255,207,.28), transparent 62%);
    pointer-events: none;
}
.bago-op-final-head {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 12px;
}
.bago-op-final-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    max-width: 100%;
    padding: 7px 11px;
    margin-bottom: 10px;
    border-radius: 999px;
    color: rgba(255,255,255,.9);
    background: rgba(255,255,255,.13);
    border: 1px solid rgba(255,255,255,.17);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .02em;
}
.bago-op-final-titlebox h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(27px, 8vw, 40px);
    line-height: .95;
    letter-spacing: -.04em;
    text-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.bago-op-final-name {
    margin-top: 8px;
    color: rgba(255,255,255,.92);
    font-size: 15px;
    font-weight: 700;
}
.bago-op-final-logout-form { margin: 0; }
.bago-op-final-logout {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 14px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(255,255,255,.22);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
    white-space: nowrap;
}
.bago-op-final-actionline {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 9px;
    align-items: center;
    margin: 14px 0 12px;
}
.bago-op-final-public,
.bago-op-final-status-pill {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 13px;
    border-radius: 18px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.20);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.16);
}
.bago-op-final-public { justify-content: center; }
.bago-op-final-status-pill { white-space: nowrap; }
.bago-op-final-status-pill.is-approved {
    background: linear-gradient(135deg, rgba(103,255,202,.24), rgba(52,194,255,.15));
    border-color: rgba(103,255,202,.36);
}
.bago-op-final-status-card {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 13px;
    border-radius: 24px;
    background: rgba(7, 40, 52, .30);
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}
.bago-op-final-status-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #69ffd2, #33c7ff);
    color: #053a42;
    font-size: 23px;
    box-shadow: 0 14px 30px rgba(30,220,210,.22);
}
.bago-op-final-status-text strong {
    display: block;
    color: #fff;
    font-size: 16px;
    line-height: 1.15;
    margin-bottom: 4px;
}
.bago-op-final-status-text span {
    display: block;
    color: rgba(255,255,255,.84);
    font-size: 13px;
    line-height: 1.35;
}
.bago-op-final-stats-card {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
    margin-top: 12px;
    border-radius: 24px;
    background: rgba(0,0,0,.14);
    border: 1px solid rgba(255,255,255,.14);
}
.bago-op-final-stat {
    min-width: 0;
    padding: 10px 6px;
    border-radius: 18px;
    text-align: center;
    background: rgba(255,255,255,.13);
    border: 1px solid rgba(255,255,255,.14);
}
.bago-op-final-stat strong {
    display: block;
    color: #fff;
    font-size: 22px;
    line-height: 1;
}
.bago-op-final-stat span {
    display: block;
    margin-top: 6px;
    color: rgba(255,255,255,.86);
    font-size: 12px;
    line-height: 1.1;
    font-weight: 800;
}
.bago-op-final-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 11px !important;
}
.bago-op-final-item {
    min-height: 112px !important;
    padding: 12px 7px !important;
    border-radius: 25px !important;
}
.bago-op-final-item .bago-feature-icon {
    width: 54px !important;
    height: 54px !important;
    border-radius: 19px !important;
    margin-bottom: 8px !important;
}
.bago-op-final-item .bago-feature-label {
    font-size: 12px !important;
    line-height: 1.15 !important;
    max-width: 94px;
    margin: 0 auto;
}
.bago-op-final-help {
    margin-top: 15px !important;
    border-radius: 25px !important;
}
@media (max-width: 480px) {
    .bago-operator-dashboard-lux-final { padding-left: 10px; padding-right: 10px; }
    .bago-op-final-hero { padding: 14px; border-radius: 28px; }
    .bago-op-final-head { grid-template-columns: 1fr auto; gap: 8px; }
    .bago-op-final-logout { width: 43px; padding: 0; border-radius: 16px; }
    .bago-op-final-logout span { display: none; }
    .bago-op-final-titlebox h1 { font-size: 30px; }
    .bago-op-final-actionline { grid-template-columns: 1fr; }
    .bago-op-final-status-pill { justify-content: center; }
    .bago-op-final-stats-card { gap: 6px; padding: 6px; }
    .bago-op-final-stat { padding: 9px 4px; }
    .bago-op-final-stat strong { font-size: 20px; }
    .bago-op-final-stat span { font-size: 11px; }
    .bago-op-final-grid { gap: 10px !important; }
    .bago-op-final-item { min-height: 104px !important; border-radius: 23px !important; }
}


/* BaGO operator pending bookings badge in bottom navigation */
.bago-nav-link.bago-nav-bookings-link {
    position: relative;
    overflow: visible;
}

.bago-nav-link .bago-nav-icon-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    min-height: 24px;
    overflow: visible;
}

.bago-nav-link .bago-nav-booking-badge {
    position: absolute;
    top: -9px;
    right: -14px;
    min-width: 19px;
    height: 19px;
    padding: 0 5px;
    border-radius: 999px;
    background: #ff3b30;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    line-height: 18px;
    text-align: center;
    border: 2px solid #fff;
    box-shadow: 0 8px 18px rgba(255, 59, 48, .35);
    z-index: 30;
    pointer-events: none;
}

.bago-bottom-nav .bago-nav-link.active .bago-nav-booking-badge,
.bago-bottom-nav .bago-nav-link.has-new-bookings .bago-nav-booking-badge {
    transform: translateY(-1px);
}

@media (max-width: 420px) {
    .bago-nav-link .bago-nav-booking-badge {
        top: -8px;
        right: -12px;
        min-width: 18px;
        height: 18px;
        font-size: 10px;
        line-height: 17px;
    }
}
