/* Compact bottom toast — shared by /hotels and /cars price alerts. */
.airtrack-toast-host {
    position: fixed;
    left: 50%;
    bottom: max(20px, env(safe-area-inset-bottom, 0px) + 16px);
    transform: translateX(-50%);
    z-index: 1100;
    width: min(440px, calc(100vw - 24px));
    pointer-events: none;
}

.airtrack-toast {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    margin: 0;
    padding: 12px 14px;
    border-radius: 10px;
    background: #1f2937;
    color: #f9fafb;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.28);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: auto;
    font-family: "Open Sans", sans-serif;
}

.airtrack-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.airtrack-toast.is-leaving {
    opacity: 0;
    transform: translateY(8px);
}

.airtrack-toast__message {
    flex: 1 1 auto;
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    color: inherit;
}

.airtrack-toast__close {
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    margin: -4px -6px -4px 0;
    padding: 0;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: #d1d5db;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

.airtrack-toast__close:hover,
.airtrack-toast__close:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    outline: none;
}

@media (max-width: 720px) {
    .airtrack-toast-host {
        /* Keep above mobile compare trays / sticky CTAs without covering them. */
        bottom: max(72px, env(safe-area-inset-bottom, 0px) + 64px);
    }
}
