/* ── Skip to Main — hidden until Tab is pressed ─────────────── */
.skip-to-main {
    position       : absolute;
    top            : -100%;
    left           : 0;
    z-index        : 99999;
    padding        : 12px 24px;
    background     : #3cb4e5;
    color          : #fff !important;
    font-size      : 16px;
    font-weight    : 700;
    text-decoration: none;
    border-radius  : 0 0 4px 0;
    transition     : top 0.2s ease;
}

/* Show only on focus — triggered by Tab key */
.skip-to-main:focus {
    top    : 0;
    outline: 2px solid #fff !important;
    outline-offset: 3px !important;
}

a:focus{
    top    : 0;
    outline: 2px solid #17a2b8 !important;
    outline-offset: 3px !important;
}