﻿/* === BANDEAU COOKIES === */

#cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.9);
    color: #ffffff;
    font-size: 0.9rem;
    padding: 1.2rem 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
}

    #cookie-banner .cookie-inner {
        max-width: 1100px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.8rem;
    }

    #cookie-banner p {
        margin: 0;
        flex: 1 1 250px;
        line-height: 1.4;
    }

    #cookie-banner a {
        text-decoration: underline;
    }

    #cookie-banner .cookie-actions {
        display: flex;
        gap: 0.5rem;
        flex-shrink: 0;
    }

    #cookie-banner .button.small {
        padding: 0.3rem 0.9rem;
        font-size: 0.8rem;
    }

/* Version mobile : tout passe en colonne */
@media screen and (max-width: 736px) {
    #cookie-banner .cookie-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    #cookie-banner .cookie-actions {
        width: 100%;
        justify-content: flex-end;
    }
}
