/* ─────────────────────────────────────────────
   Quick Exit Button
   ───────────────────────────────────────────── */

.quick-exit-btn {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 10001;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #E20202;
    color: #FFFFFF;
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    font-family: 'caraque-solid', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.quick-exit-btn:hover,
.quick-exit-btn:focus {
    background-color: #b50101;
    transform: scale(1.05);
    outline: 2px solid #FFFFFF;
    outline-offset: 1px;
}

.quick-exit-btn:active {
    transform: scale(0.98);
}

.quick-exit-btn__icon {
    font-size: 24px;
    line-height: 1;
}

/* ─────────────────────────────────────────────
   Overlay
   ───────────────────────────────────────────── */

.quick-exit-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    z-index: 99999;
}

.quick-exit-overlay.active {
    display: block;
}

/* ─────────────────────────────────────────────
   Skip Link (accessible, visible on focus)
   ───────────────────────────────────────────── */

.quick-exit-skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.quick-exit-skip-link:focus {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 10002;
    width: auto;
    height: auto;
    padding: 10px 20px;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
    background: #171717;
    color: #FFFFFF;
    font-family: 'caraque-solid', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ─────────────────────────────────────────────
   Responsive
   ───────────────────────────────────────────── */

@media screen and (max-width: 769px) {
    .quick-exit-btn {
        font-size: 16px;
        padding: 12px 20px;
        bottom: 15px;
        right: 15px;
    }

    .quick-exit-btn__icon {
        font-size: 20px;
    }
}