/* =============================================================================
 * Cookie consent lista — bottom full-width informacny banner.
 *
 * z-index: pod legal modalom (mli-modal 9500) ale nad beznym obsahom + bottom
 * barom. Slide-in zdola pri zobrazeni, slide-out pri accepte.
 * ===========================================================================*/

.mli-cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9400;            /* pod mli-modal (9500), nad bottom-bar */
    background: #1a1a1a;
    color: #fff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
    transform: translateY(110%);
    transition: transform 350ms cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform;
}

.mli-cookie-consent.is-visible {
    transform: translateY(0);
}

.mli-cookie-consent.is-hidden {
    transform: translateY(110%);
}

.mli-cookie-consent__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.mli-cookie-consent__text {
    flex: 1 1 320px;
    font-size: 14px;
    line-height: 1.5;
}

.mli-cookie-consent__text p {
    margin: 0;
    display: inline;
}

.mli-cookie-consent__gdpr {
    color: #7fc4ff;
    text-decoration: underline;
    margin-left: 8px;
    white-space: nowrap;
    cursor: pointer;
}

.mli-cookie-consent__gdpr:hover {
    color: #a8d8ff;
}

.mli-cookie-consent__accept {
    flex: 0 0 auto;
    background: #00a86b;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 150ms ease, transform 100ms ease;
}

.mli-cookie-consent__accept:hover {
    background: #00c47e;
}

.mli-cookie-consent__accept:active {
    transform: scale(0.97);
}

/* Mobile: stack text + button, button full width */
@media (max-width: 600px) {
    .mli-cookie-consent__inner {
        padding: 12px 16px;
        gap: 12px;
    }
    .mli-cookie-consent__text {
        flex: 1 1 100%;
        font-size: 13px;
    }
    .mli-cookie-consent__accept {
        flex: 1 1 100%;
        padding: 12px;
    }
}
