:root {
    --boh-color-primary: #26564d;
    --boh-color-secondary: #2e6258;
    --boh-color-accent: #1f6b5c;
    --boh-color-gold: #a87b52;
    --boh-color-gold-light: #c9b79a;
    --boh-color-bg: #f5f2ea;
    --boh-color-surface: #ffffff;
    --boh-color-tile: #ede7d9;
    --boh-color-muted: #23413a;
    --boh-color-danger: #a8584e;
    --boh-color-border: #26564d;
    --boh-color-deep-bg: #15362f;
    --boh-color-toggle-off: #c7cdc9;
    --boh-color-alert: #FF4B4B;
    --boh-semantic-primary: var(--boh-color-primary);
    --boh-semantic-secondary: var(--boh-color-secondary);
    --boh-semantic-success-accent: var(--boh-color-accent);
    --boh-semantic-success-deep: var(--boh-color-deep-bg);
    --boh-semantic-danger: var(--boh-color-danger);
    --boh-semantic-background: var(--boh-color-bg);
    --boh-semantic-surface: var(--boh-color-surface);
    --boh-semantic-text-primary: var(--boh-color-primary);
    --boh-semantic-text-muted: var(--boh-color-muted);
    --boh-semantic-border: var(--boh-color-border);
    --boh-font-sans: "Manrope", sans-serif;
    --boh-font-serif: "Cormorant Garamond", serif;
    --boh-font-weight-500: 500;
    --boh-font-weight-600: 600;
    --boh-font-weight-700: 700;
    --boh-font-weight-800: 800;
    --boh-font-size-display: 33px;
    --boh-line-height-display: 1.1;
    --boh-font-size-heading: 24px;
    --boh-line-height-heading: 1.2;
    --boh-font-size-navtitle: 19px;
    --boh-line-height-navtitle: 1.2;
    --boh-font-size-btn: 17px;
    --boh-line-height-btn: 1.2;
    --boh-font-size-body: 16px;
    --boh-line-height-body: 1.5;
    --boh-font-size-label: 15px;
    --boh-line-height-label: 1.3;
    --boh-font-size-stat: 29px;
    --boh-line-height-stat: 1.1;
    --boh-font-size-eyebrow: 11px;
    --boh-line-height-eyebrow: 1.2;
    --boh-letter-spacing-eyebrow: 0.12em;
    --boh-font-size-navtab: 11px;
    --boh-line-height-navtab: 1.2;
    --boh-space-screen: 11px;
    --boh-radius-card: 18px;
    --boh-radius-button: 16px;
    --boh-radius-chip: 12px;
    --boh-radius-8: 8px;
    --boh-radius-10: 10px;
    --boh-radius-12: 12px;
    --boh-radius-14: 14px;
    --boh-radius-16: 16px;
    --boh-radius-20: 20px;
    --boh-radius-24: 24px;
    --boh-shadow-card: 0 6px 16px rgba(38, 86, 77, 0.05);
    --boh-transition-property-transform: transform;
    --boh-transition-property-colors: color, background-color, border-color;
    --boh-transition-property-opacity: opacity;
    --boh-container-max-width: 28rem;
    --boh-info-bg-color: #2E6258;
    --boh-bg-membership: rgb(21 54 47 / 1);
    --glass-light: rgba(255, 255, 255, 0.08);
    --glass-medium: rgba(255, 255, 255, 0.12);
    --glass-strong: rgba(255, 255, 255, 0.18);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-elegant: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-luxury: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body {
    font-family: var(--boh-font-sans);
    font-size: var(--boh-font-size-body);
    line-height: var(--boh-line-height-body);
    color: var(--boh-semantic-text-primary);
    background-color: var(--boh-semantic-background);
}

.boh-shell {
    width: 100%;
    max-width: var(--boh-container-max-width);
    min-height: 100dvh;
    margin: 0 auto;
    background-color: var(--boh-semantic-background);
    display: flex;
    flex-direction: column;
}

.boh-shell__header {
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: var(--boh-semantic-background);
}

.boh-shell__main {
    flex: 1;
    overflow-y: auto;
    padding-left: var(--boh-space-screen);
    padding-right: var(--boh-space-screen);
}

.boh-shell__bottom {
    position: sticky;
    bottom: 0;
    z-index: 10;
    background-color: var(--boh-semantic-background);
    padding-bottom: env(safe-area-inset-bottom, 0px);
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

    .hide-scrollbar::-webkit-scrollbar {
        display: none;
    }

.dis-none {
    display: none !important;
}

/* --- BOTTOM NAVIGATION --- */
.boh-home-bottom-nav {
    display: flex;
    width: 100%;
    background-color: var(--boh-color-surface);
    border-top: 1px solid color-mix(in srgb, var(--boh-color-border) 6%, transparent);
    box-shadow: 0 -4px 16px rgba(38, 86, 77, 0.03);
}

.boh-home-bottom-nav__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.25rem;
    text-decoration: none;
    color: color-mix(in srgb, var(--boh-color-primary) 50%, transparent);
    font-family: var(--boh-font-sans);
    transition: transform 0.2s ease, color 0.2s ease;
}

    .boh-home-bottom-nav__item:active {
        transform: scale(0.95);
    }

.boh-home-bottom-nav__item--active {
    color: var(--boh-color-primary);
}

.boh-home-bottom-nav__item svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke-width: 1.75;
    margin-bottom: 0.25rem;
}

.boh-home-bottom-nav__item--active svg {
    stroke-width: 2;
}

.boh-home-bottom-nav__label {
    font-size: var(--boh-font-size-navtab);
    line-height: var(--boh-line-height-navtab);
    font-weight: var(--boh-font-weight-600);
}

.boh-home-bottom-nav__item--active .boh-home-bottom-nav__label {
    font-weight: var(--boh-font-weight-800);
}

/* --- PORTAL LANGUAGE MODAL (BOTTOM SHEET) --- */
.swal2-container.boh-portal-lang-sheet-container {
    display: flex !important;
    align-items: flex-end !important;
    justify-content: center !important;
    padding: 0 !important;
}

.swal2-popup.boh-portal-lang-sheet-popup {
    width: min(var(--boh-container-max-width), 100vw);
    max-width: min(var(--boh-container-max-width), 100vw);
    border-radius: var(--boh-radius-24) var(--boh-radius-24) 0 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 -12px 24px rgba(21, 54, 47, 0.16);
}

.swal2-title.boh-portal-lang-sheet-title {
    margin: 0;
    padding: 1rem var(--boh-space-screen) 0.4rem;
    text-align: left;
    font-family: var(--boh-font-serif);
    font-size: var(--boh-font-size-heading);
    line-height: var(--boh-line-height-heading);
    color: var(--boh-color-primary);
    font-weight: var(--boh-font-weight-600);
}

.swal2-html-container.boh-portal-lang-sheet-body {
    margin: 0;
    padding: 0 var(--boh-space-screen);
    text-align: left;
}

.swal2-actions.boh-portal-lang-sheet-actions {
    margin: 0;
    padding: 0.85rem var(--boh-space-screen) calc(0.9rem + env(safe-area-inset-bottom, 0px));
}

.swal2-styled.swal2-cancel.boh-portal-lang-sheet-cancel {
    border-radius: var(--boh-radius-12);
    background: color-mix(in srgb, var(--boh-color-bg) 75%, var(--boh-color-surface));
    color: var(--boh-color-primary);
    font-weight: var(--boh-font-weight-700);
}

.boh-portal-lang-selector {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding-bottom: 0.5rem;
}

.boh-portal-lang-selector__handle {
    width: 2.5rem;
    height: 0.25rem;
    border-radius: 999px;
    background-color: color-mix(in srgb, var(--boh-color-primary) 20%, transparent);
    margin: 0.15rem auto 0.35rem;
}

.boh-portal-lang-option-btn {
    width: 100%;
    border: 1px solid color-mix(in srgb, var(--boh-color-border) 10%, transparent);
    background: var(--boh-color-surface);
    border-radius: var(--boh-radius-12);
    padding: 0.7rem 0.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    color: var(--boh-color-primary);
    transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.1s ease;
}

.boh-portal-lang-option-btn:active {
    transform: scale(0.985);
}

.boh-portal-lang-option-btn:focus-visible {
    outline: 2px solid color-mix(in srgb, var(--boh-color-primary) 30%, transparent);
    outline-offset: 2px;
}

.boh-portal-lang-option-btn.active {
    border-color: color-mix(in srgb, var(--boh-color-primary) 30%, transparent);
    background: color-mix(in srgb, var(--boh-color-primary) 8%, white);
}

.boh-portal-lang-option-btn__left {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
}

.boh-portal-lang-option-btn__flag.fi {
    width: 1.3rem;
    height: 1.3rem;
    border-radius: 999px;
    box-shadow: 0 0 0 1px rgba(21, 54, 47, 0.15);
    overflow: hidden;
    flex: 0 0 auto;
}

.boh-portal-lang-option-btn__name {
    font-size: 0.93rem;
    font-weight: var(--boh-font-weight-700);
    letter-spacing: -0.01em;
}

.boh-portal-lang-option-btn__code {
    font-size: 0.74rem;
    font-weight: var(--boh-font-weight-700);
    color: color-mix(in srgb, var(--boh-color-primary) 58%, transparent);
    letter-spacing: 0.08em;
}

.boh-portal-lang-sheet-show {
    animation: boh-portal-lang-sheet-show 0.24s cubic-bezier(0.16, 1, 0.3, 1);
}

.boh-portal-lang-sheet-hide {
    animation: boh-portal-lang-sheet-hide 0.18s cubic-bezier(0.4, 0, 1, 1) forwards;
}

@keyframes boh-portal-lang-sheet-show {
    from {
        transform: translateY(100%);
        opacity: 0.92;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes boh-portal-lang-sheet-hide {
    from {
        transform: translateY(0);
        opacity: 1;
    }

    to {
        transform: translateY(100%);
        opacity: 0.9;
    }
}
