/* ═══════════════════════════════════════════════════════════════
   BIHAR KHEL SEWA — FRONTEND DESIGN SYSTEM
   custom.css · Theme vars, layout, nav, hero, cards, modals, footer
   ═══════════════════════════════════════════════════════════════ */

/* ─── CSS RESET ─── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ─── DARK THEME (default) ─── */
:root {
    --lime: #C8F135;
    --lime-dark: #A8D020;
    --lime-glow: rgba(200, 241, 53, 0.14);
    --lime-border: rgba(200, 241, 53, 0.18);

    --bg: #0D0F0A;
    --bg2: #131610;
    --bg3: #1A1E14;
    --card: #1E2318;
    --card-hover: #252B1A;
    --border: rgba(200, 241, 53, 0.12);
    --border-strong: rgba(200, 241, 53, 0.25);

    --text: #F0F2E8;
    --text-muted: #8A9078;
    --text-dim: #5A6050;
    --white: #FAFCF2;

    --nav-bg: rgba(13, 15, 10, 0.88);
    --shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.3);
    --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.4);

    --accent-orange: #FF6B35;
    --font: 'Ubuntu', sans-serif;
    --mono: 'Ubuntu Mono', monospace;
    --r: 14px;
    --r-sm: 8px;
    --t: all 0.22s ease;

    /* Scrollbar */
    --sb-track: #131610;
    --sb-thumb: #C8F135;
}

/* ─── LIGHT THEME ─── */
[data-theme="light"] {
    --bg: #F2F5EC;
    --bg2: #E9EDE3;
    --bg3: #E1E5DA;
    --card: #FFFFFF;
    --card-hover: #F4F8F0;
    --border: rgba(26, 107, 60, 0.14);
    --border-strong: rgba(26, 107, 60, 0.32);

    --text: #0C1A10;
    --text-muted: #3A5244;
    --text-dim: #6B8070;
    --white: #0C1A10;

    /* Accent — Deep Emerald replaces Lime */
    --lime: #1A6B3C;
    --lime-dark: #155530;
    --lime-glow: rgba(26, 107, 60, 0.09);
    --lime-border: rgba(26, 107, 60, 0.22);

    --nav-bg: rgba(242, 245, 236, 0.93);
    --shadow: 0 4px 32px rgba(0, 0, 0, 0.09);
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
    --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.09);

    --sb-track: #E1E5DA;
    --sb-thumb: #1A6B3C;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--sb-track);
}

::-webkit-scrollbar-thumb {
    background: var(--sb-thumb);
    border-radius: 2px;
}

/* ─── BASE ─── */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
    transition: background 0.3s ease, color 0.3s ease;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

button {
    cursor: pointer;
    font-family: var(--font);
}


/* ════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════ */
.bks-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s ease;
}

/* Logo */
.bks-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.bks-logo-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.bks-logo-icon>img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bks-logo-text {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.3px;
    line-height: 1.2;
}

.bks-logo-text span {
    color: var(--lime);
}

.bks-logo-sub {
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-dim);
    font-family: var(--mono);
    display: block;
}

/* Nav Links */
.bks-nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center;
}

.bks-nav-links a {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s;
    letter-spacing: 0.2px;
}

.bks-nav-links a:hover,
.bks-nav-links a.active {
    color: var(--lime);
}

/* Nav Search */
.bks-nav-search {
    position: relative;
    flex: 1;
    max-width: 340px;
    margin: 0 24px;
}

.bks-nav-search input {
    width: 100%;
    background: var(--bg3);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 9px 16px 9px 38px;
    border-radius: 8px;
    font-family: var(--font);
    font-size: 13px;
    transition: border-color 0.2s;
    outline: none;
}

.bks-nav-search input::placeholder {
    color: var(--text-dim);
}

.bks-nav-search input:focus {
    border-color: var(--lime-border);
}

.bks-nav-search .search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-dim);
    font-size: 13px;
    pointer-events: none;
}

.bks-nav-search-suggestions {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    box-shadow: var(--shadow);
    max-height: 380px;
    overflow-y: auto;
    z-index: 1100;
}

/* Nav Actions */
.bks-nav-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}

/* Theme Toggle */
.bks-theme-toggle {
    width: 36px;
    height: 36px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 15px;
    transition: var(--t);
}

.bks-theme-toggle:hover {
    border-color: var(--lime);
    color: var(--lime);
}

/* Wishlist btn */
.bks-wishlist-btn {
    position: relative;
    width: 36px;
    height: 36px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 15px;
    transition: var(--t);
    text-decoration: none;
}

.bks-wishlist-btn:hover {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

.bks-wishlist-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--accent-orange);
    color: white;
    font-size: 9px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--mono);
}

/* Ghost / Primary nav buttons */
.btn-ghost {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 13.5px;
    font-weight: 500;
    transition: var(--t);
}

.btn-ghost:hover {
    border-color: var(--lime);
    color: var(--lime);
}

.btn-lime {
    background: var(--lime);
    color: var(--bg);
    border: none;
    padding: 9px 20px;
    border-radius: 6px;
    font-size: 13.5px;
    font-weight: 700;
    transition: var(--t);
}

.btn-lime:hover {
    background: var(--lime-dark);
    transform: translateY(-1px);
}

/* User Dropdown */
.bks-user-menu {
    position: relative;
}

.bks-user-trigger {
    display: flex;
    align-items: center;
    gap: 9px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 6px 12px 6px 6px;
    cursor: pointer;
    transition: var(--t);
}

.bks-user-trigger:hover {
    border-color: var(--border-strong);
}

.bks-user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: var(--lime-glow);
    border: 1px solid var(--lime-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lime);
    font-size: 12px;
    font-weight: 700;
    overflow: hidden;
    flex-shrink: 0;
}

.bks-user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bks-user-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    max-width: 110px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bks-user-caret {
    font-size: 10px;
    color: var(--text-dim);
    transition: transform 0.2s;
}

.bks-user-menu.open .bks-user-caret {
    transform: rotate(180deg);
}

.bks-user-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    padding: 6px;
    min-width: 180px;
    box-shadow: var(--shadow);
    z-index: 1200;
}

.bks-user-menu.open .bks-user-dropdown {
    display: block;
}

.bks-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 6px;
    font-size: 13px;
    color: var(--text-muted);
    transition: var(--t);
}

.bks-dropdown-item:hover {
    background: var(--bg3);
    color: var(--lime);
}

.bks-dropdown-item i {
    width: 16px;
    text-align: center;
}

.bks-dropdown-divider {
    height: 1px;
    background: var(--border);
    margin: 5px 0;
}

.bks-dropdown-logout {
    color: var(--accent-orange);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 6px;
    font-size: 13px;
    transition: var(--t);
    font-family: var(--font);
}

.bks-dropdown-logout:hover {
    background: rgba(255, 107, 53, 0.1);
}

/* Hamburger */
.bks-hamburger {
    display: none;
    width: 36px;
    height: 36px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 15px;
    flex-shrink: 0;
}

/* Mobile Menu Drawer */
.bks-mobile-menu {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    padding: 20px;
    z-index: 999;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
}

.bks-mobile-menu.active {
    display: block;
}

.bks-mobile-search {
    position: relative;
    margin-bottom: 16px;
}

.bks-mobile-search input {
    width: 100%;
    background: var(--bg3);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 11px 16px 11px 38px;
    border-radius: 8px;
    font-family: var(--font);
    font-size: 14px;
    outline: none;
}

.bks-mobile-search .search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-dim);
    font-size: 13px;
    pointer-events: none;
}

.bks-mobile-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 4px;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.bks-mobile-link:last-child {
    border-bottom: none;
}

.bks-mobile-link:hover {
    color: var(--lime);
}

.bks-mobile-link i {
    width: 18px;
    text-align: center;
}

/* Notice Ticker */
.bks-notice-bar {
    background: var(--bg3);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    height: 36px;
    display: flex;
    align-items: center;
}

.bks-notice-inner {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 16px;
    height: 100%;
    white-space: nowrap;
}

.bks-notice-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--lime);
    font-family: var(--mono);
    background: var(--lime-glow);
    border: 1px solid var(--lime-border);
    padding: 2px 8px;
    border-radius: 4px;
    flex-shrink: 0;
}

.bks-notice-ticker {
    overflow: hidden;
    flex: 1;
}

.bks-notice-track {
    display: flex;
    gap: 48px;
    animation: ticker-scroll 30s linear infinite;
    white-space: nowrap;
}

.bks-notice-item {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.bks-notice-item a {
    color: var(--lime);
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* ════════════════════════════════════════
   HERO
   ════════════════════════════════════════ */
.bks-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 48px 80px;
    position: relative;
    overflow: hidden;
    margin-top: 68px;
}

/* Grid background */
.bks-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
    pointer-events: none;
}

.bks-hero-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(200, 241, 53, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.bks-hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

/* Hero badge */
.bks-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--lime-glow);
    border: 1px solid var(--lime-border);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 28px;
    font-size: 11px;
    font-weight: 500;
    color: var(--lime);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-family: var(--mono);
}

.bks-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--lime);
    border-radius: 50%;
    animation: bks-pulse 2s infinite;
}

@keyframes bks-pulse {

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

    50% {
        opacity: 0.5;
        transform: scale(0.75);
    }
}

/* Hero title */
.bks-hero-title {
    font-size: clamp(40px, 6vw, 78px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 22px;
    color: var(--text);
}

.bks-hero-title .accent {
    color: var(--lime);
}

.bks-hero-title .outline {
    -webkit-text-stroke: 2px rgba(200, 241, 53, 0.7);
    color: transparent;
    display: block;
}

[data-theme="light"] .bks-hero-title .outline {
    -webkit-text-stroke: 2px rgba(80, 100, 20, 0.8);
}

.bks-hero-desc {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 520px;
    font-weight: 300;
}

/* Hero actions */
.bks-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--lime);
    color: var(--bg);
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    transition: var(--t);
    cursor: pointer;
}

.btn-hero:hover {
    background: var(--lime-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(200, 241, 53, 0.25);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border-strong);
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    transition: var(--t);
    cursor: pointer;
}

.btn-hero-outline:hover {
    border-color: var(--lime);
    color: var(--lime);
}

/* Hero stats */
.bks-hero-stats {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.bks-stat-num {
    font-size: 36px;
    font-weight: 700;
    color: var(--text);
    font-family: var(--mono);
    display: flex;
    align-items: baseline;
    gap: 2px;
    line-height: 1;
}

.bks-stat-num .plus {
    color: var(--lime);
    font-size: 22px;
}

.bks-stat-label {
    font-size: 11px;
    color: var(--text-dim);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-top: 4px;
    font-family: var(--mono);
}

/* Hero floating visual */
.bks-hero-visual {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 42%;
    max-width: 560px;
    padding: 40px;
    pointer-events: none;
}

.bks-float-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    position: relative;
    animation: bks-float 4s ease-in-out infinite;
}

@keyframes bks-float {

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

    50% {
        transform: translateY(-14px);
    }
}

.bks-float-card-title {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 14px;
    letter-spacing: 0.5px;
    font-family: var(--mono);
    text-transform: uppercase;
}

.bks-sport-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.bks-sport-chip {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 10px;
    text-align: center;
    font-size: 24px;
    transition: var(--t);
    cursor: pointer;
}

.bks-sport-chip:hover,
.bks-sport-chip.active {
    border-color: var(--lime);
    background: var(--lime-glow);
}

.bks-sport-chip-label {
    font-size: 10px;
    color: var(--text-muted);
    margin-top: 4px;
    display: block;
    font-family: var(--mono);
}

.bks-sport-chip.active .bks-sport-chip-label {
    color: var(--lime);
}

.bks-float-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bks-avail-badge {
    background: rgba(200, 241, 53, 0.12);
    color: var(--lime);
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 4px;
    font-family: var(--mono);
}

.bks-mini-card {
    position: absolute;
    bottom: -18px;
    right: -18px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.bks-mini-card-text {
    font-size: 11px;
    color: var(--text-muted);
}

.bks-mini-card-text strong {
    display: block;
    font-size: 13px;
    color: var(--text);
    font-weight: 700;
}


/* ════════════════════════════════════════
   SECTION HEADERS
   ════════════════════════════════════════ */
.bks-section-tag {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--lime);
    font-family: var(--mono);
    margin-bottom: 10px;
}

.bks-section-title {
    font-size: clamp(26px, 4vw, 44px);
    font-weight: 700;
    color: var(--text);
    letter-spacing: -1px;
    line-height: 1.1;
}

.bks-section-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    margin-top: 10px;
    font-weight: 300;
    max-width: 520px;
    line-height: 1.6;
}

.bks-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 44px;
    gap: 16px;
}

.bks-link-more {
    font-size: 13px;
    color: var(--text-muted);
    transition: color 0.2s;
    white-space: nowrap;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.bks-link-more:hover {
    color: var(--lime);
}


/* ════════════════════════════════════════
   SPORT FILTER STRIP
   ════════════════════════════════════════ */
.bks-sport-strip {
    padding: 52px 48px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg);
}

.bks-strip-inner {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.bks-strip-label {
    font-size: 12px;
    color: var(--text-dim);
    font-family: var(--mono);
    margin-right: 6px;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.bks-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--card);
    border: 1px solid var(--border);
    padding: 9px 16px;
    border-radius: 100px;
    font-size: 13px;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--t);
    text-decoration: none;
}

.bks-pill:hover,
.bks-pill.active {
    border-color: var(--lime);
    color: var(--lime);
    background: var(--lime-glow);
}

.bks-pill-icon {
    font-size: 15px;
}


/* ════════════════════════════════════════
   BROWSE BY SPORT SECTION
   ════════════════════════════════════════ */
.bks-browse-section {
    padding: 84px 48px;
    background: var(--bg);
}

.bks-sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px;
}

.bks-sport-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 26px 18px;
    text-align: center;
    cursor: pointer;
    transition: var(--t);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
}

.bks-sport-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--lime-glow), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.bks-sport-card:hover {
    border-color: var(--lime);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.bks-sport-card:hover::before {
    opacity: 1;
}

.bks-sport-card-icon {
    font-size: 38px;
    margin-bottom: 10px;
    display: block;
    position: relative;
    z-index: 1;
}

.bks-sport-card-name {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text);
    position: relative;
    z-index: 1;
    transition: color 0.2s;
}

.bks-sport-card-count {
    font-size: 11px;
    color: var(--text-dim);
    margin-top: 4px;
    font-family: var(--mono);
    position: relative;
    z-index: 1;
}

.bks-sport-card:hover .bks-sport-card-name {
    color: var(--lime);
}


/* ════════════════════════════════════════
   FACILITY CARDS
   ════════════════════════════════════════ */
.bks-facilities-section {
    padding: 84px 48px;
    background: var(--bg2);
}

.bks-district-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.bks-district-btn {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 7px 16px;
    border-radius: 6px;
    font-size: 12.5px;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--t);
    font-family: var(--font);
}

.bks-district-btn:hover,
.bks-district-btn.active {
    background: var(--lime);
    color: var(--bg);
    border-color: var(--lime);
    font-weight: 600;
}

.bks-facility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 22px;
}

.bks-facility-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--t);
    cursor: pointer;
    display: block;
    text-decoration: none;
}

.bks-facility-card:hover {
    border-color: var(--lime);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.bks-facility-img {
    height: 178px;
    background: var(--bg3);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
}

.bks-facility-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.bks-facility-card:hover .bks-facility-img img {
    transform: scale(1.06);
}

.bks-facility-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 60%);
    z-index: 1;
}

.bks-facility-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(13, 15, 10, 0.82);
    border: 1px solid var(--lime);
    color: var(--lime);
    font-size: 10.5px;
    padding: 3px 9px;
    border-radius: 4px;
    z-index: 2;
    font-family: var(--mono);
}

[data-theme="light"] .bks-facility-badge {
    background-color: rgba(242, 245, 236, 0.8);
}

.bks-facility-wishlist {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 28px;
    height: 28px;
    background: rgba(13, 15, 10, 0.75);
    border: 1px solid var(--lime);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--lime);
    z-index: 2;
    cursor: pointer;
    transition: var(--t);
}

[data-theme="light"] .bks-facility-wishlist {
    background-color: rgba(242, 245, 236, 0.8);
}

.bks-facility-wishlist:hover,
.bks-facility-wishlist.active {
    color: var(--accent-orange);
    border-color: var(--accent-orange);
}

.bks-facility-body {
    padding: 18px;
}

.bks-facility-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bks-facility-loc {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 12px;
}

.bks-facility-tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.bks-facility-tag {
    font-size: 10.5px;
    padding: 3px 9px;
    border-radius: 4px;
    background: var(--bg3);
    color: var(--text-dim);
    border: 1px solid var(--border);
    font-family: var(--mono);
}

.bks-facility-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.bks-facility-price {
    font-size: 14px;
    color: var(--lime);
    font-weight: 700;
    font-family: var(--mono);
}

.bks-facility-price span {
    font-size: 10.5px;
    color: var(--text-dim);
    font-weight: 400;
}

.bks-facility-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--text-muted);
}

.bks-facility-rating .star {
    color: var(--lime);
    font-size: 12px;
}

.btn-book {
    background: transparent;
    border: 1px solid var(--lime);
    color: var(--lime);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    transition: var(--t);
    font-family: var(--font);
}

.btn-book:hover {
    background: var(--lime);
    color: var(--bg);
}

/* ─── List view (browse page) ─── */
.bks-facility-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bks-facility-list-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    gap: 0;
    transition: var(--t);
}

.bks-facility-list-item:hover {
    border-color: var(--lime);
    box-shadow: var(--shadow-sm);
}

.bks-facility-list-img {
    width: 200px;
    flex-shrink: 0;
    background: var(--bg3);
    position: relative;
    overflow: hidden;
}

.bks-facility-list-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bks-facility-list-body {
    flex: 1;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* ════════════════════════════════════════
   NEARBY FILTER
   ════════════════════════════════════════ */
.bks-nearby-wrap {
    display: none;
    margin-top: 12px;
}

.bks-location-banner {
    display: none;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    padding: 10px 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 13px;
    color: var(--text-sub);
}

.bks-location-banner i {
    color: var(--lime);
    flex-shrink: 0;
}

.bks-location-banner-actions {
    margin-left: auto;
    display: flex;
    gap: 8px;
}

.bks-location-banner-enable {
    padding: 5px 14px;
    background: var(--lime-dark);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font);
}

.bks-location-banner-dismiss {
    padding: 5px 10px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    color: var(--text-dim);
    font-family: var(--font);
}

/* ════════════════════════════════════════
    LOCATION HELP MODAL
   ════════════════════════════════════════ */
.bks-location-help-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.bks-location-help-overlay.active {
    display: flex;
}

.bks-location-help-modal {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    width: 100%;
    max-width: 420px;
    overflow: hidden;
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.2);
}

.bks-location-help-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
}

.bks-location-help-header i {
    color: var(--lime);
    margin-right: 8px;
}

.bks-location-help-close {
    background: none;
    border: none;
    font-size: 22px;
    color: var(--text-dim);
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

.bks-location-help-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bks-location-help-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 13px;
    color: var(--text-sub);
    line-height: 1.5;
}

.bks-location-help-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--lime-glow);
    border: 1px solid var(--lime-border);
    color: var(--lime);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: var(--mono);
}

.bks-location-help-note {
    font-size: 12px;
    color: var(--text-dim);
    padding: 10px 14px;
    background: var(--page-bg);
    border-radius: 8px;
    border: 1px solid var(--border);
    line-height: 1.5;
}

.bks-location-help-note i {
    color: var(--lime);
    margin-right: 6px;
}


/* ════════════════════════════════════════
   HOW IT WORKS
   ════════════════════════════════════════ */
.bks-how-section {
    padding: 84px 48px;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.bks-how-glow {
    position: absolute;
    right: -200px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 241, 53, 0.04), transparent 70%);
    pointer-events: none;
}

.bks-how-header {
    text-align: center;
    margin-bottom: 64px;
}

.bks-how-header .bks-section-subtitle {
    margin: 10px auto 0;
}

.bks-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.bks-steps::before {
    content: '';
    position: absolute;
    top: 27px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(90deg, var(--lime), var(--border), var(--border), var(--lime));
    opacity: 0.35;
}

.bks-step {
    text-align: center;
    padding: 0 18px;
    position: relative;
}

.bks-step-num {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--mono);
    font-size: 17px;
    font-weight: 700;
    color: var(--lime);
    margin: 0 auto 18px;
    position: relative;
    z-index: 1;
    transition: var(--t);
}

.bks-step:hover .bks-step-num {
    background: var(--lime);
    color: var(--bg);
    border-color: var(--lime);
    box-shadow: 0 0 30px rgba(200, 241, 53, 0.35);
}

.bks-step-icon {
    font-size: 26px;
    margin-bottom: 10px;
    display: block;
}

.bks-step-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.bks-step-desc {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.5;
}


/* ════════════════════════════════════════
   FEATURES STRIP
   ════════════════════════════════════════ */
.bks-features-section {
    padding: 0 48px 0;
    background: var(--bg);
}

.bks-features-strip {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 44px 48px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.bks-feature-item {
    text-align: center;
}

.bks-feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--lime-glow);
    border: 1px solid var(--lime-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 14px;
}

.bks-feature-title {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 5px;
}

.bks-feature-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}


/* ════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════ */
.bks-trust-section {
    padding: 84px 48px;
    background: var(--bg2);
}

.bks-trust-header {
    text-align: center;
    margin-bottom: 52px;
}

.bks-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.bks-testimonial-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 26px;
    transition: border-color 0.3s;
}

.bks-testimonial-card:hover {
    border-color: var(--lime-border);
}

.bks-stars {
    color: var(--lime);
    font-size: 13px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.bks-testimonial-text {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 18px;
    font-style: italic;
}

.bks-testimonial-author {
    display: flex;
    align-items: center;
    gap: 11px;
}

.bks-author-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lime), var(--lime-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--bg);
    flex-shrink: 0;
}

.bks-author-name {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text);
}

.bks-author-loc {
    font-size: 11px;
    color: var(--text-dim);
    margin-top: 1px;
}


/* ════════════════════════════════════════
   DISTRICTS SECTION
   ════════════════════════════════════════ */
.bks-districts-section {
    padding: 84px 48px;
    background: var(--bg);
}

.bks-districts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 14px;
}

.bks-district-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: var(--t);
    text-decoration: none;
}

.bks-district-card:hover {
    border-color: var(--lime);
    background: var(--lime-glow);
}

.bks-district-card-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    transition: color 0.2s;
}

.bks-district-card:hover .bks-district-card-name {
    color: var(--lime);
}

.bks-district-card-count {
    font-size: 11px;
    color: var(--text-dim);
    font-family: var(--mono);
    background: var(--bg3);
    padding: 2px 7px;
    border-radius: 4px;
}


/* ════════════════════════════════════════
   BROWSE PAGE — Hero & Filters
   ════════════════════════════════════════ */
.bks-browse-hero {
    background: var(--bg2);
    padding: 84px 48px 52px;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    margin-top: 68px;
}

.bks-browse-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    pointer-events: none;
}

.bks-browse-hero>* {
    position: relative;
    z-index: 1;
}

.bks-filter-bar {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 18px 48px;
    position: sticky;
    top: 68px;
    z-index: 500;
}

.bks-filter-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 130px;
    gap: 10px;
    align-items: center;
}

.bks-form-input,
.bks-form-select {
    width: 100%;
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 10px 14px;
    border-radius: 8px;
    font-family: var(--font);
    font-size: 13.5px;
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

.bks-form-input::placeholder {
    color: var(--text-dim);
}

.bks-form-input:focus,
.bks-form-select:focus {
    border-color: var(--lime);
}

.bks-form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238A9078' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    padding-right: 32px;
}

.btn-filter {
    background: var(--lime);
    color: var(--bg);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13.5px;
    transition: var(--t);
    width: 100%;
    cursor: pointer;
    font-family: var(--font);
}

.btn-filter:hover {
    background: var(--lime-dark);
}

.bks-results-section {
    padding: 40px 48px;
    background: var(--bg2);
    min-height: 500px;
}

.bks-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 12px;
}

.bks-results-count {
    font-size: 13px;
    color: var(--text-muted);
    font-family: var(--mono);
}

.bks-results-count strong {
    color: var(--lime);
}

.bks-view-toggle {
    display: flex;
    gap: 6px;
}

.bks-view-btn {
    width: 36px;
    height: 36px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 14px;
    transition: var(--t);
}

.bks-view-btn.active,
.bks-view-btn:hover {
    background: var(--lime);
    color: var(--bg);
    border-color: var(--lime);
}


/* ════════════════════════════════════════
   BOOKING MODAL (restyled)
   ════════════════════════════════════════ */
.booking-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.booking-modal.active {
    display: flex !important;
}

.booking-modal-content {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-card);
}

.booking-modal-header {
    padding: 24px 24px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.booking-modal-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 3px;
}

.booking-modal-subtitle {
    font-size: 12.5px;
    color: var(--text-muted);
}

.booking-modal-close {
    width: 30px;
    height: 30px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 7px;
    color: var(--text-muted);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--t);
    flex-shrink: 0;
    margin-top: 2px;
}

.booking-modal-close:hover {
    border-color: var(--lime);
    color: var(--lime);
}

.booking-modal-body {
    padding: 24px;
}

/* Modal form elements */
.bks-modal-label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-family: var(--mono);
    margin-bottom: 8px;
    font-weight: 500;
}

.bks-modal-input,
.bks-modal-select {
    width: 100%;
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 11px 14px;
    border-radius: 8px;
    font-family: var(--font);
    font-size: 13.5px;
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
}

.bks-modal-input:focus,
.bks-modal-select:focus {
    border-color: var(--lime);
}

.bks-modal-input::placeholder {
    color: var(--text-dim);
}

/* Time slots */
.time-slot {
    padding: 10px 8px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: var(--t);
    font-size: 12px;
    font-weight: 600;
    background: var(--bg3);
    color: var(--text-muted);
    font-family: var(--mono);
}

.time-slot:hover:not(.disabled) {
    border-color: var(--lime);
    color: var(--lime);
    background: var(--lime-glow);
}

.time-slot.selected {
    background: var(--lime) !important;
    color: var(--bg) !important;
    border-color: var(--lime) !important;
}

.time-slot.disabled {
    opacity: 0.35;
    cursor: not-allowed;
    text-decoration: line-through;
    background: var(--bg3);
}

/* Price calc */
.bks-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 13px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

.bks-price-row:last-child {
    border-bottom: none;
}

.bks-price-row.total {
    color: var(--text);
    font-weight: 700;
    font-size: 15px;
}

.bks-price-row .amount {
    color: var(--lime);
    font-family: var(--mono);
}

/* Package type btns */
.bks-pkg-btn {
    padding: 9px 14px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--bg3);
    color: var(--text-muted);
    font-size: 12.5px;
    cursor: pointer;
    transition: var(--t);
    font-family: var(--font);
    text-align: center;
}

.bks-pkg-btn.active,
.bks-pkg-btn:hover {
    border-color: var(--lime);
    color: var(--lime);
    background: var(--lime-glow);
}

/* Modal submit */
.bks-modal-submit {
    width: 100%;
    margin-top: 20px;
    background: var(--lime);
    color: var(--bg);
    border: none;
    padding: 13px;
    border-radius: 8px;
    font-size: 14.5px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--t);
    font-family: var(--font);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.bks-modal-submit:hover {
    background: var(--lime-dark);
}

.bks-modal-cancel {
    width: 100%;
    margin-top: 10px;
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
    padding: 11px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--t);
    font-family: var(--font);
}

.bks-modal-cancel:hover {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

/* ════════════════════════════════════════
   AUTH PAGES
   ════════════════════════════════════════ */
.bks-auth-wrapper {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--bg);
    margin-top: 68px;
}

.bks-auth-left {
    position: relative;
    overflow: hidden;
    background: var(--bg3);
}

.bks-auth-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.bks-auth-left-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 15, 10, 0.85) 0%, rgba(200, 241, 53, 0.08) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 48px;
}

.bks-auth-left-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 12px;
}

.bks-auth-left-title span {
    color: var(--lime);
}

.bks-auth-left-sub {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 320px;
}

.bks-auth-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 56px;
    background: var(--bg);
    overflow-y: auto;
}

.bks-auth-box {
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
}

.bks-auth-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
}

.bks-auth-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.bks-auth-subtitle {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.bks-form-group {
    margin-bottom: 18px;
}

.bks-form-label {
    display: block;
    font-size: 11.5px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-family: var(--mono);
    margin-bottom: 8px;
}

.bks-form-label .req {
    color: var(--accent-orange);
}

.bks-input-wrap {
    position: relative;
}

.bks-input {
    width: 100%;
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 11px 14px;
    border-radius: 8px;
    font-family: var(--font);
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.bks-input::placeholder {
    color: var(--text-dim);
}

.bks-input:focus {
    border-color: var(--lime);
}

.bks-input-icon {
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-dim);
    cursor: pointer;
    font-size: 14px;
    transition: color 0.2s;
    padding: 0;
}

.bks-input-icon:hover {
    color: var(--lime);
}

.bks-error {
    margin-top: 5px;
    font-size: 11.5px;
    color: var(--accent-orange);
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--mono);
}

.bks-alert {
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.bks-alert-success {
    background: rgba(200, 241, 53, 0.1);
    border: 1px solid var(--lime-border);
    color: var(--lime);
}

.bks-alert-error {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.25);
    color: var(--accent-orange);
}

.bks-submit-btn {
    width: 100%;
    background: var(--lime);
    color: var(--bg);
    border: none;
    padding: 13px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--t);
    font-family: var(--font);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 6px;
}

.bks-submit-btn:hover {
    background: var(--lime-dark);
    transform: translateY(-1px);
}

.bks-submit-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
}

.bks-auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
}

.bks-auth-divider::before,
.bks-auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.bks-auth-divider span {
    font-size: 12px;
    color: var(--text-dim);
    font-family: var(--mono);
}

.bks-auth-footer {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 20px;
}

.bks-auth-footer a {
    color: var(--lime);
    font-weight: 600;
}

.bks-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: var(--text-dim);
    margin-top: 16px;
    transition: color 0.2s;
}

.bks-back-link:hover {
    color: var(--text-muted);
}

/* OTP / verification badge */
.bks-verify-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 4px;
    font-family: var(--mono);
}

.bks-verify-badge.verified {
    background: rgba(200, 241, 53, 0.12);
    color: var(--lime);
    border: 1px solid var(--lime-border);
}

.bks-verify-badge.pending {
    background: rgba(255, 107, 53, 0.1);
    color: var(--accent-orange);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.bks-otp-grid {
    display: flex;
    gap: 8px;
}

.bks-otp-input {
    flex: 1;
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 11px 14px;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    font-family: var(--mono);
}

.bks-otp-input:focus {
    border-color: var(--lime);
}

.bks-otp-btn {
    background: var(--bg3);
    border: 1px solid var(--border);
    color: var(--lime);
    padding: 11px 16px;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--t);
    white-space: nowrap;
    font-family: var(--font);
}

.bks-otp-btn:hover {
    background: var(--lime-glow);
    border-color: var(--lime);
}

.bks-otp-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Checkbox */
.bks-checkbox-label {
    display: flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
    font-size: 13px;
    color: var(--text-muted);
}

.bks-checkbox-label input[type="checkbox"] {
    width: 15px;
    height: 15px;
    accent-color: var(--lime);
    cursor: pointer;
}

/* ════════════════════════════════════════
    FACILITY DETAILS PAGE
   ════════════════════════════════════════ */
.fsd-hero {
    position: relative;
    padding: 52px 56px 44px;
    overflow: hidden;
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
}

.fsd-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    z-index: 0;
}

.fsd-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(200, 241, 53, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 241, 53, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
}

.fsd-hero>* {
    position: relative;
    z-index: 1;
}

.fsd-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 13px;
    color: var(--text-muted);
    font-family: var(--mono);
}

.fsd-breadcrumb a {
    color: var(--text-muted);
    transition: color .2s;
}

.fsd-breadcrumb a:hover {
    color: var(--lime);
}

.fsd-breadcrumb span {
    color: var(--text-dim);
}

.fsd-hero-name {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--text);
    line-height: 1.15;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.fsd-hero-name em {
    color: var(--lime);
    font-style: normal;
}

.fsd-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
    margin-top: 4px;
}

.fsd-hero-meta-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    color: var(--text-muted);
}

.fsd-hero-meta-item i {
    color: var(--lime);
    font-size: 13px;
}

.fsd-dir-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 18px;
    background: var(--lime);
    color: var(--bg);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    transition: var(--t);
    text-decoration: none;
}

.fsd-dir-btn:hover {
    background: var(--lime-dark);
    transform: translateY(-1px);
}

/* Status badges */
.fsd-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid;
    font-family: var(--mono);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fsd-badge-type {
    background: var(--lime-glow);
    color: var(--lime);
    border-color: var(--lime-border);
}

.fsd-badge-district {
    background: rgba(255, 107, 53, 0.08);
    color: var(--accent-orange);
    border-color: rgba(255, 107, 53, 0.2);
}

/* Gallery */
.fsd-gallery {
    padding: 36px 56px;
    background: var(--bg3);
    border-bottom: 1px solid var(--border);
}

.fsd-gallery-main {
    height: 480px;
    border-radius: var(--r);
    overflow: hidden;
    border: 1px solid var(--border);
    margin-bottom: 14px;
    position: relative;
}

.fsd-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fsd-gallery-main:hover img {
    transform: scale(1.02);
}

.fsd-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 10px;
}

.fsd-thumb {
    height: 90px;
    border-radius: var(--r-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--t);
}

.fsd-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fsd-thumb:hover,
.fsd-thumb.active {
    border-color: var(--lime);
}

.fsd-thumb.active {
    box-shadow: 0 0 0 3px var(--lime-glow);
}

/* Content Grid */
.fsd-content {
    padding: 40px 56px;
    background: var(--bg);
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
}

/* Info Cards */
.fsd-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 28px;
    margin-bottom: 24px;
    transition: var(--t);
}

.fsd-card:last-child {
    margin-bottom: 0;
}

.fsd-card:hover {
    border-color: var(--border-strong);
}

.fsd-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

.fsd-card-title i {
    color: var(--lime);
    font-size: 1rem;
}

/* Infrastructure items */
.fsd-infra-item {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    padding: 20px;
    margin-bottom: 14px;
    transition: var(--t);
}

.fsd-infra-item:last-child {
    margin-bottom: 0;
}

.fsd-infra-item:hover {
    border-color: var(--lime-border);
    box-shadow: 0 4px 20px rgba(200, 241, 53, 0.06);
}

.fsd-infra-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fsd-infra-name i {
    color: var(--lime);
}

.fsd-infra-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.fsd-infra-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.fsd-infra-meta i {
    color: var(--text-dim);
}

.fsd-infra-pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.fsd-price-chip {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 8px 14px;
    background: var(--lime-glow);
    border: 1px solid var(--lime-border);
    border-radius: var(--r-sm);
    margin-bottom: 6px;
}

.fsd-price-chip:last-child {
    margin-bottom: 0;
}

.fsd-price-amount {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--lime);
    font-family: var(--mono);
}

.fsd-price-type {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-family: var(--mono);
}

/* Amenity pills */
.fsd-amenity-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    margin-top: 14px;
}

.fsd-amenity-pill {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 12px;
    color: var(--text-muted);
    font-family: var(--mono);
}

.fsd-amenity-pill i {
    color: var(--lime);
    font-size: 10px;
}

/* Reviews */
.fsd-review-score {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    margin-bottom: 20px;
}

.fsd-review-num {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--lime);
    font-family: var(--mono);
    line-height: 1;
}

.fsd-stars {
    font-size: 1.4rem;
    letter-spacing: 2px;
}

.fsd-review-count {
    font-size: 13px;
    color: var(--text-muted);
    font-family: var(--mono);
}

.fsd-review-item {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    padding: 18px;
    margin-bottom: 12px;
}

.fsd-review-item:last-child {
    margin-bottom: 0;
}

.fsd-reviewer-name {
    font-weight: 700;
    color: var(--text);
    font-size: 14px;
}

.fsd-reviewer-date {
    font-size: 12px;
    color: var(--text-dim);
    font-family: var(--mono);
}

.fsd-review-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: 10px;
}

/* Booking Sidebar */
.fsd-sidebar {
    position: sticky;
    top: 84px;
    height: fit-content;
}

.fsd-book-card {
    background: var(--card);
    border: 1px solid var(--lime-border);
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(200, 241, 53, 0.07);
}

.fsd-book-head {
    background: var(--lime);
    padding: 22px 24px;
}

.fsd-book-head-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(13, 15, 10, 0.7);
    font-family: var(--mono);
    margin-bottom: 4px;
}

.fsd-book-head-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--bg);
}

.fsd-book-price-block {
    padding: 22px 24px;
    border-bottom: 1px solid var(--border);
}

.fsd-book-price-from {
    font-size: 11px;
    color: var(--text-muted);
    font-family: var(--mono);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.fsd-book-price-main {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.fsd-book-price-amount {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--lime);
    font-family: var(--mono);
    line-height: 1;
}

.fsd-book-price-unit {
    font-size: 14px;
    color: var(--text-muted);
    font-family: var(--mono);
}

.fsd-book-price-note {
    font-size: 12px;
    color: var(--text-dim);
    margin-top: 6px;
    font-family: var(--mono);
}

.fsd-book-details {
    padding: 22px 24px;
    border-bottom: 1px solid var(--border);
}

.fsd-book-detail-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.fsd-book-detail-row:last-child {
    border-bottom: none;
}

.fsd-book-detail-row i {
    width: 20px;
    color: var(--lime);
    font-size: 13px;
}

.fsd-book-detail-label {
    color: var(--text-muted);
    flex: 1;
}

.fsd-book-detail-value {
    color: var(--text);
    font-weight: 600;
    font-size: 13px;
}

.fsd-book-actions {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fsd-btn-book {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: var(--lime);
    color: var(--bg);
    border: none;
    border-radius: var(--r-sm);
    font-size: 15px;
    font-weight: 700;
    transition: var(--t);
    cursor: pointer;
    font-family: var(--font);
}

.fsd-btn-book:hover {
    background: var(--lime-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 241, 53, 0.25);
}

.fsd-btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    font-size: 14px;
    font-weight: 500;
    transition: var(--t);
    cursor: pointer;
    font-family: var(--font);
    text-decoration: none;
}

.fsd-btn-secondary:hover {
    border-color: var(--lime-border);
    color: var(--lime);
}

/* Info rows in sidebar below card */
.fsd-sidebar-info {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 20px 24px;
    margin-top: 16px;
}

.fsd-sidebar-info-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 14px;
    font-family: var(--mono);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fsd-sidebar-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
}

.fsd-sidebar-row:last-child {
    border-bottom: none;
}

.fsd-sidebar-row-label {
    color: var(--text-muted);
}

.fsd-sidebar-row-value {
    color: var(--text);
    font-weight: 600;
    text-align: right;
    max-width: 180px;
}

/* Empty states */
.fsd-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
    font-family: var(--mono);
    font-size: 13px;
}

.fsd-empty-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    opacity: 0.5;
}


/* ════════════════════════════════════════
    FOOTER
   ════════════════════════════════════════ */
.bks-footer {
    padding: 64px 48px 25px;
    border-top: 1px solid var(--border);
    background: var(--bg);
}

.bks-footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.bks-footer-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    margin: 14px 0 22px;
    line-height: 1.7;
    max-width: 280px;
}

.bks-footer-social {
    display: flex;
    gap: 8px;
}

.bks-social-btn {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: var(--t);
    color: var(--text-muted);
    text-decoration: none;
}

.bks-social-btn:hover {
    border-color: var(--lime);
    color: var(--lime);
}

.bks-footer-col-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: var(--mono);
}

.bks-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.bks-footer-links a {
    font-size: 13px;
    color: var(--text-muted);
    transition: color 0.2s;
}

.bks-footer-links a:hover {
    color: var(--lime);
}

.bks-footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-dim);
    flex-wrap: wrap;
    gap: 12px;
}

.bks-footer-bottom-links {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

.bks-footer-bottom-links a {
    color: var(--text-dim);
    transition: color 0.2s;
}

.bks-footer-bottom-links a:hover {
    color: var(--lime);
}


/* ════════════════════════════════════════
   BACK TO TOP BUTTON
   ════════════════════════════════════════ */
.bks-back-top {
    display: none;
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: var(--lime);
    color: var(--bg);
    border: none;
    border-radius: 10px;
    font-size: 16px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 900;
    transition: var(--t);
    box-shadow: 0 4px 20px rgba(200, 241, 53, 0.3);
}

.bks-back-top:hover {
    background: var(--lime-dark);
    transform: translateY(-3px);
}

.bks-back-top.visible {
    display: flex;
}


/* ════════════════════════════════════════
ANIMATIONS
   ════════════════════════════════════════ */
@keyframes bks-fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bks-fade-up {
    animation: bks-fadeUp 0.6s ease forwards;
}

.bks-fade-up-2 {
    animation: bks-fadeUp 0.6s 0.15s ease forwards;
    opacity: 0;
}

.bks-fade-up-3 {
    animation: bks-fadeUp 0.6s 0.30s ease forwards;
    opacity: 0;
}

.bks-fade-up-4 {
    animation: bks-fadeUp 0.6s 0.45s ease forwards;
    opacity: 0;
}


/* ════════════════════════════════════════
    TOASTR OVERRIDES (match theme)
   ════════════════════════════════════════ */
#toast-container>div {
    background-color: var(--card) !important;
    border: 1px solid var(--border) !important;
    box-shadow: var(--shadow) !important;
    border-radius: 10px !important;
    font-family: var(--font) !important;
    font-size: 13.5px !important;
    color: var(--text) !important;
    opacity: 1 !important;
}

#toast-container>.toast-success {
    border-left: 3px solid var(--lime) !important;
}

#toast-container>.toast-error {
    border-left: 3px solid var(--accent-orange) !important;
}

#toast-container>.toast-warning {
    border-left: 3px solid #F59E0B !important;
}

#toast-container>.toast-info {
    border-left: 3px solid #38BDF8 !important;
}

#toast-container>div .toast-title {
    color: var(--text) !important;
    font-weight: 700;
}

#toast-container>div .toast-message {
    color: var(--text-muted) !important;
}

.toast-close-button {
    color: var(--text-muted) !important;
}

/* ════════════════════════════════════════
   UTILITY CLASSES
   ════════════════════════════════════════ */
.bks-container {
    max-width: 1280px;
    margin: 0 auto;
}

.bks-mono {
    font-family: var(--mono);
}

.bks-lime {
    color: var(--lime);
}

.bks-muted {
    color: var(--text-muted);
}

.bks-badge-live {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(200, 241, 53, 0.12);
    border: 1px solid var(--lime-border);
    color: var(--lime);
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: var(--mono);
}

/* Empty state */
.bks-empty {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-muted);
}

.bks-empty-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.bks-empty h3 {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 8px;
}

.bks-empty p {
    font-size: 14px;
}

/* Pagination */
.bks-pagination {
    display: flex;
    gap: 6px;
    justify-content: center;
    align-items: center;
    padding: 32px 0 0;
}

.bks-page-btn {
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--t);
    text-decoration: none;
    font-family: var(--mono);
}

.bks-page-btn:hover,
.bks-page-btn.active {
    background: var(--lime);
    color: var(--bg);
    border-color: var(--lime);
}

.bks-page-btn.disabled {
    opacity: 0.35;
    cursor: not-allowed;
}