/* =============================================================
   components.css — Search overlay, refine sidebar, senior-nav footer
   Brand: --primary-navy #2f3531 | --primary-gold #009431 (green)
   ============================================================= */

/* ── HEADER SEARCH ICON BUTTON ── */
.hdr-search-btn {
    background: none;
    border: none;
    padding: 0.4rem 0.5rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);  /* explicit white — header bg is dark */
    cursor: pointer;
    border-radius: 0.4rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.18s, background 0.18s;
    flex-shrink: 0;  /* never gets squeezed out on mobile */
}
.hdr-search-btn:hover,
.hdr-search-btn:focus-visible {
    color: var(--primary-gold);
    background: rgba(0, 148, 49, 0.15);
    outline: none;
}

/* ── SEARCH OVERLAY BACKDROP ── */
.hdr-search-overlay {
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: rgba(15, 25, 20, 0.78);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 5.5rem;
    padding-bottom: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
}
.hdr-search-overlay.is-open {
    opacity: 1;
    pointer-events: all;
}

/* ── SEARCH BOX PANEL ── */
.hdr-search-box {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 1rem;
    padding: 0;
    background: var(--glass-bg, #fff);
    border-radius: 1.1rem;
    box-shadow: 0 28px 72px rgba(0,0,0,0.28), 0 0 0 1px rgba(0,148,49,0.12);
    transform: translateY(-20px) scale(0.98);
    transition: transform 0.24s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}
.hdr-search-overlay.is-open .hdr-search-box {
    transform: translateY(0) scale(1);
}

/* ── SEARCH BOX HEADER ── */
.hdr-search-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1.25rem 0.75rem;
    background: var(--primary-navy, #2f3531);
    border-bottom: 2px solid var(--primary-gold, #009431);
}
.hdr-search-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary-gold, #009431);
}
.hdr-search-close {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    font-size: 1rem;
    color: #c8d4cc;
    line-height: 1;
    padding: 0.32rem 0.4rem;
    cursor: pointer;
    border-radius: 0.4rem;
    display: flex;
    align-items: center;
    transition: color 0.15s, background 0.15s;
}
.hdr-search-close:hover {
    color: #fff;
    background: rgba(255,255,255,0.15);
}

/* ── SEARCH FORM BODY ── */
.hdr-search-form {
    padding: 1.25rem 1.25rem 0.5rem;
}
.hdr-search-input-wrap {
    display: flex;
    align-items: center;
    border: 2px solid var(--glass-border, #e2e8f0);
    border-radius: 0.65rem;
    overflow: hidden;
    background: #f8faf8;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.hdr-search-input-wrap:focus-within {
    border-color: var(--primary-gold, #009431);
    box-shadow: 0 0 0 3px rgba(0, 148, 49, 0.12);
    background: #fff;
}
.hdr-search-icon-inner {
    padding: 0 0.85rem;
    font-size: 1rem;
    color: var(--primary-gold, #009431);
    flex-shrink: 0;
}
.hdr-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    padding: 0.8rem 0.4rem;
    background: transparent;
    color: var(--text-dark, #2f3531);
    font-family: var(--font-heading, sans-serif);
}
.hdr-search-input::placeholder { color: #9eb3a4; }
.hdr-search-submit {
    background: var(--primary-gold, #009431);
    color: #fff;
    border: none;
    padding: 0.8rem 1.35rem;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: background 0.18s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.hdr-search-submit:hover { background: var(--primary-gold-bright, #00b33c); }

/* ── TYPE PILLS (inside form) ── */
.hdr-search-type-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.85rem;
}
.hdr-type-pill {
    display: inline-flex;
    align-items: center;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    border: 1.5px solid rgba(0,148,49,0.25);
    background: rgba(0,148,49,0.05);
    color: var(--primary-navy, #2f3531);
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
    line-height: 1.4;
}
.hdr-type-pill:hover {
    background: var(--primary-gold, #009431);
    border-color: var(--primary-gold, #009431);
    color: #fff;
}

/* ── QUICK-LOCATION CHIPS ── */
.hdr-search-quick {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
    padding: 0.75rem 1.25rem 1.1rem;
    border-top: 1px solid var(--glass-border, #e2e8f0);
    margin-top: 0.5rem;
    background: #f8faf8;
}
.hdr-search-quick-label {
    font-size: 0.74rem;
    font-weight: 600;
    color: #7a9484;
    flex-shrink: 0;
    letter-spacing: 0.02em;
}
.hdr-search-tag {
    display: inline-block;
    font-size: 0.76rem;
    font-weight: 500;
    padding: 0.22rem 0.7rem;
    border-radius: 999px;
    border: 1px solid #c8ddd0;
    color: var(--primary-navy, #2f3531);
    background: #fff;
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.hdr-search-tag:hover {
    background: var(--primary-gold, #009431);
    border-color: var(--primary-gold, #009431);
    color: #fff;
}

/* =============================================================
   REFINE SEARCH SIDEBAR
   ============================================================= */
.refine-sidebar {
    background: var(--glass-bg, #fff);
    border: 1px solid var(--glass-border, #e2e8f0);
    border-radius: var(--radius-md, 16px);
    overflow: hidden;
    position: sticky;
    top: 1.5rem;
}
.refine-sidebar__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.1rem;
    background: var(--primary-navy, #2f3531);
    border-bottom: 2px solid var(--primary-gold, #009431);
}
.refine-sidebar__title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--primary-gold, #009431);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.refine-sidebar__clear {
    font-size: 0.72rem;
    font-weight: 600;
    color: #9eb3a4;
    text-decoration: none;
    padding: 0.2rem 0.55rem;
    border-radius: 0.35rem;
    border: 1px solid rgba(255,255,255,0.12);
    transition: color 0.15s, background 0.15s;
    white-space: nowrap;
}
.refine-sidebar__clear:hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
}
.refine-sidebar__body {
    padding: 1rem 1.1rem 1.2rem;
}
.refine-group {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border, #e2e8f0);
}
.refine-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.refine-group__label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--text-muted, #6c757d);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.refine-group__label i {
    color: var(--primary-gold, #009431);
    font-size: 0.85rem;
}
.refine-toggle-group {
    display: flex;
    gap: 0.4rem;
}
.refine-toggle {
    flex: 1;
    text-align: center;
    padding: 0.45rem 0.5rem;
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: 0.5rem;
    border: 1.5px solid var(--glass-border, #e2e8f0);
    background: transparent;
    color: var(--text-dark, #2f3531);
    cursor: pointer;
    transition: all 0.15s;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}
.refine-toggle:hover,
.refine-toggle.active {
    background: var(--primary-gold, #009431);
    border-color: var(--primary-gold, #009431);
    color: #fff;
}
.refine-check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
}
.refine-check-chip {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.38rem 0.6rem;
    border-radius: 0.45rem;
    border: 1.5px solid var(--glass-border, #e2e8f0);
    background: #f8faf8;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-dark, #2f3531);
    user-select: none;
}
.refine-check-chip input[type="checkbox"] {
    accent-color: var(--primary-gold, #009431);
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    cursor: pointer;
}
.refine-check-chip:has(input:checked) {
    border-color: var(--primary-gold, #009431);
    background: rgba(0, 148, 49, 0.07);
    font-weight: 600;
}
.refine-check-chip i { color: var(--text-muted, #6c757d); font-size: 0.9rem; }
.refine-check-chip:has(input:checked) i { color: var(--primary-gold, #009431); }
.refine-select {
    width: 100%;
    padding: 0.5rem 2rem 0.5rem 0.75rem;
    border: 1.5px solid var(--glass-border, #e2e8f0);
    border-radius: 0.5rem;
    background-color: #f8faf8;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 16 16'%3E%3Cpath fill='%23009431' d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.7rem center;
    font-size: 0.83rem;
    color: var(--text-dark, #2f3531);
    appearance: none;
    cursor: pointer;
    outline: none;
    transition: border-color 0.18s, box-shadow 0.18s;
}
.refine-select:focus {
    border-color: var(--primary-gold, #009431);
    box-shadow: 0 0 0 3px rgba(0,148,49,0.1);
    background-color: #fff;
}
.refine-price-row {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.refine-price-input {
    flex: 1;
    min-width: 0;
    padding: 0.48rem 0.65rem;
    border: 1.5px solid var(--glass-border, #e2e8f0);
    border-radius: 0.5rem;
    background: #f8faf8;
    font-size: 0.82rem;
    color: var(--text-dark, #2f3531);
    outline: none;
    transition: border-color 0.18s, box-shadow 0.18s;
}
.refine-price-input:focus {
    border-color: var(--primary-gold, #009431);
    box-shadow: 0 0 0 3px rgba(0,148,49,0.1);
    background: #fff;
}
.refine-price-sep { font-size: 0.78rem; color: var(--text-muted, #6c757d); flex-shrink: 0; }
.refine-bed-row { display: flex; gap: 0.35rem; }
.refine-bed-btn {
    flex: 1;
    padding: 0.4rem 0.3rem;
    font-size: 0.78rem;
    font-weight: 600;
    text-align: center;
    border-radius: 0.45rem;
    border: 1.5px solid var(--glass-border, #e2e8f0);
    background: #f8faf8;
    color: var(--text-dark, #2f3531);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.15s;
    display: block;
}
.refine-bed-btn:hover,
.refine-bed-btn.active {
    background: var(--primary-gold, #009431);
    border-color: var(--primary-gold, #009431);
    color: #fff;
}
.refine-actions { display: flex; gap: 0.5rem; margin-top: 0.2rem; }
.refine-btn-apply {
    flex: 1;
    padding: 0.6rem 1rem;
    background: var(--primary-gold, #009431);
    color: #fff;
    border: none;
    border-radius: 0.55rem;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.18s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}
.refine-btn-apply:hover { background: var(--primary-gold-bright, #00b33c); }
.refine-btn-reset {
    padding: 0.6rem 0.85rem;
    background: transparent;
    color: var(--text-muted, #6c757d);
    border: 1.5px solid var(--glass-border, #e2e8f0);
    border-radius: 0.55rem;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
    text-decoration: none;
    display: flex;
    align-items: center;
}
.refine-btn-reset:hover {
    border-color: #c0c8c4;
    color: var(--text-dark, #2f3531);
    background: #f0f4f2;
}

/* =============================================================
   SITE FOOTER — light blue themed
   Palette sourced from .light_blue_themed_card:
     bg body    #eff6ff   header    #bfdbfe
     dark navy  #1e3a5f   text      #374151   link #0d6efd
   ============================================================= */

/* ── Shell ── */
.ft-root {
    background: #eff6ff;
    border-top: 2px solid #bfdbfe;
    color: #374151;
}

/* ── Section headings (strip) ── */
.ft-section-heading {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1e3a5f;
    margin-bottom: 0.85rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid #bfdbfe;
}
.ft-section-heading i { color: #1e3a5f; }

/* ── Discovery nav links ── */
.ft-nav-link {
    font-size: 0.83rem;
    color: #374151;
    text-decoration: none;
    padding: 0.15rem 0;
    transition: color 0.15s, padding-left 0.15s;
}
.ft-nav-link:hover { color: #0d6efd; padding-left: 0.25rem; }

/* ── Simple links (main footer columns) ── */
.ft-link {
    font-size: 0.83rem;
    color: #374151;
    text-decoration: none;
    transition: color 0.15s;
}
.ft-link:hover { color: #0d6efd; }

/* ── Muted meta text ── */
.ft-meta { font-size: 0.78rem; color: #1e3a5f; opacity: 0.6; }

/* ── Body desc (brand blurb) ── */
.ft-desc { font-size: 0.83rem; color: #374151; line-height: 1.6; }

/* ── Newsletter join button ── */
.ft-btn-join {
    background: #1e3a5f;
    color: #fff;
    border: none;
    font-weight: 700;
    letter-spacing: 0.03em;
    transition: background 0.18s;
}
.ft-btn-join:hover { background: #0d6efd; color: #fff; }

/* ── Dividers ── */
.ft-root hr { border-color: #bfdbfe; opacity: 1; }

/* ── Social icons ── */
.ft-social-icon {
    font-size: 1.1rem;
    color: #1e3a5f;
    opacity: 0.55;
    text-decoration: none;
    transition: opacity 0.18s, color 0.18s;
}
.ft-social-icon:hover { opacity: 1; color: #0d6efd; }

/* ── Truncation helpers ── */
.footer-disc-title  { max-width: 60%; }
.footer-req-title   { max-width: 70%; }
.footer-payment-img { max-height: 24px; }

/* =============================================================
   SITE HEADER — sticky, hide-on-scroll-down / show-on-scroll-up
   ============================================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: var(--accent-gradient, #2f3531);
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    height: 64px;
    color: #fff;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.32s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s;
}
.site-header--hidden { transform: translateY(-100%); }
.site-header--scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.28); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    padding: 0 1.25rem;
    max-width: 1320px;
    margin: 0 auto;
}
.site-logo {
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-weight: 900;
    font-size: 1.35rem;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.03em;
}
.site-logo span { color: var(--primary-gold, #009431); }
.site-logo:hover { color: #fff; opacity: 0.9; }

.desktop-nav { display: flex; align-items: center; gap: 0.25rem; }
.dnav-link {
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 0.45rem 0.8rem;
    border-radius: 0.5rem;
    transition: color 0.18s, background 0.18s;
}
.dnav-link:hover, .dnav-link.active {
    color: #fff;
    background: rgba(0,148,49,0.18);
}
.dnav-link.active { color: var(--primary-gold, #009431); }

.header-actions { display: flex; align-items: center; gap: 0.5rem; }
.btn-hdr-ghost {
    color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.3);
    background: transparent;
    border-radius: var(--radius-pill, 50rem);
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.18s, color 0.18s;
}
.btn-hdr-ghost:hover { background: rgba(255,255,255,0.12); color: #fff; }
.btn-hdr-solid {
    background: var(--gold-gradient, #009431);
    color: #fff;
    border: none;
    border-radius: var(--radius-pill, 50rem);
    padding: 0.4rem 1.1rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: filter 0.18s, transform 0.18s;
}
.btn-hdr-solid:hover { filter: brightness(1.1); transform: translateY(-1px); color: #fff; }

/* user menu */
.user-menu-wrap { position: relative; }
.user-menu-btn {
    display: flex; align-items: center; gap: 0.45rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-pill, 50rem);
    padding: 0.3rem 0.8rem 0.3rem 0.4rem;
    cursor: pointer; color: #fff;
    transition: background 0.18s;
}
.user-menu-btn:hover { background: rgba(255,255,255,0.14); }
.umenu-avatar { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; }
.umenu-name { font-size: 0.83rem; font-weight: 600; }
.umenu-chevron { font-size: 0.7rem; transition: transform 0.22s; }
.user-menu-wrap.is-open .umenu-chevron { transform: rotate(180deg); }
.user-dropdown {
    position: absolute; top: calc(100% + 0.5rem); right: 0;
    background: #fff; border-radius: 0.75rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.14);
    min-width: 200px; padding: 0.5rem;
    opacity: 0; pointer-events: none; transform: translateY(-8px);
    transition: opacity 0.2s, transform 0.2s; z-index: 200;
}
.user-menu-wrap.is-open .user-dropdown { opacity: 1; pointer-events: all; transform: none; }
.udrop-item {
    display: flex; align-items: center; gap: 0.6rem;
    padding: 0.55rem 0.75rem; border-radius: 0.5rem;
    color: var(--text-dark, #2f3531); font-size: 0.87rem; font-weight: 500;
    text-decoration: none; transition: background 0.15s, color 0.15s;
}
.udrop-item:hover { background: var(--bg-light, #f1f5f9); color: var(--primary-gold, #009431); }
.udrop-item--gold { color: var(--primary-gold, #009431); font-weight: 700; }
.udrop-item--danger { color: #dc3545; }
.udrop-item--danger:hover { background: #fff5f5; color: #b02a37; }
.udrop-divider { height: 1px; background: #e9ecef; margin: 0.35rem 0; }

/* hamburger */
.sidebar-toggle {
    display: flex; flex-direction: column; justify-content: space-between;
    width: 28px; height: 20px; background: none; border: none; cursor: pointer; padding: 0;
}
.sidebar-toggle span {
    display: block; height: 2px; border-radius: 2px;
    background: rgba(255,255,255,0.85); transition: background 0.18s;
}
.sidebar-toggle:hover span { background: #fff; }

/* mobile sidebar */
.sidebar-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.5);
    z-index: 1200; opacity: 0; pointer-events: none; transition: opacity 0.28s;
}
body.sidebar-open .sidebar-overlay { opacity: 1; pointer-events: all; }
.mobile-sidebar {
    position: fixed; top: 0; left: 0; height: 100dvh; width: 280px;
    background: var(--primary-navy, #2f3531);
    z-index: 1300; transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
    display: flex; flex-direction: column; overflow-y: auto;
}
body.sidebar-open .mobile-sidebar { transform: none; }
.msidebar-top {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 1.25rem; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.msidebar-close {
    background: rgba(255,255,255,0.08); border: none; border-radius: 0.4rem;
    color: rgba(255,255,255,0.7); width: 32px; height: 32px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.18s, color 0.18s;
}
.msidebar-close:hover { background: rgba(255,255,255,0.15); color: #fff; }
.msidebar-user {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 1rem 1.25rem; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.msidebar-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.msidebar-uname { font-size: 0.9rem; font-weight: 700; color: #fff; }
.msidebar-urole { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.msidebar-nav { flex: 1; padding: 0.75rem 0.75rem 0; }
.msidebar-link {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.7rem 0.75rem; border-radius: 0.5rem; color: rgba(255,255,255,0.8);
    font-size: 0.9rem; font-weight: 500; text-decoration: none;
    transition: background 0.18s, color 0.18s;
}
.msidebar-link:hover, .msidebar-link.active { background: rgba(0,148,49,0.15); color: #fff; }
.msidebar-link--gold { color: var(--primary-gold, #009431); font-weight: 700; }
.msidebar-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 0.5rem 0; }
.msidebar-footer { padding: 1rem 1.25rem; border-top: 1px solid rgba(255,255,255,0.08); }
.msidebar-logout {
    display: flex; align-items: center; gap: 0.6rem;
    color: #ff7b7b; font-size: 0.88rem; font-weight: 600; text-decoration: none;
    transition: color 0.18s;
}
.msidebar-logout:hover { color: #ff4444; }
.msidebar-authbtn {
    display: block; text-align: center; padding: 0.55rem 1rem;
    border-radius: var(--radius-pill, 50rem); font-size: 0.88rem; font-weight: 600;
    text-decoration: none; margin-bottom: 0.5rem; transition: all 0.18s;
}
.msidebar-authbtn--ghost {
    color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.25);
}
.msidebar-authbtn--ghost:hover { background: rgba(255,255,255,0.1); color: #fff; }
.msidebar-authbtn--solid { background: var(--gold-gradient, #009431); color: #fff; }
.msidebar-authbtn--solid:hover { filter: brightness(1.1); color: #fff; }

/* =============================================================
   SCROLL-TO-TOP FAB
   ============================================================= */
.scroll-top-btn {
    position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 900;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--primary-gold, #009431);
    color: #fff; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 18px rgba(0,148,49,0.35);
    opacity: 0; pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.25s, transform 0.25s, background 0.18s;
}
.scroll-top-btn.is-visible { opacity: 1; pointer-events: all; transform: none; }
.scroll-top-btn:hover { background: var(--primary-gold-bright, #00b33c); transform: translateY(-2px); }

/* =============================================================
   SITE FOOTER
   ============================================================= */
.footer-disc-title  { max-width: 60%; }
.footer-req-title   { max-width: 70%; }
.footer-payment-img { max-height: 24px; }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                