/* Wspólny baner cookies — ekosystem manawaflow.pl */

.cookie-alert-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #0F1219;
    color: #ffffff;
    z-index: 9999999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    padding: 20px;
    font-family: 'Lato', sans-serif;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.cookie-alert-container.is-dismissed {
    transform: translateY(110%);
    opacity: 0;
    pointer-events: none;
}

.cookie-alert-content {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-text {
    font-size: 0.95rem;
    line-height: 1.5;
    flex: 1;
    min-width: 250px;
    color: #ffffff;
}

.cookie-text a {
    color: #FDC500;
    text-decoration: underline;
    font-weight: bold;
}

.cookie-alert-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.cookie-btn {
    border: none;
    cursor: pointer;
    padding: 12px 22px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #0047ab, #346399);
    color: #fff;
    transition: opacity 0.2s;
}

.cookie-btn:hover { opacity: 0.9; }

.cookie-btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
}

@media (max-width: 640px) {
    .cookie-alert-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-alert-actions {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        text-align: center;
    }
}
