/* Bandeau cookies — information seule (site n'utilise que des cookies techniques) */
.cookies-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #1a1a1a;
    color: #fff;
    padding: 16px 24px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    font-size: 14px;
    line-height: 1.5;
}

.cookies-banner.is-visible {
    transform: translateY(0);
}

.cookies-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookies-banner__text {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.cookies-banner__text a {
    color: #7dd87d;
    text-decoration: underline;
}

.cookies-banner__text a:hover {
    color: #a5e5a5;
}

.cookies-banner__btn {
    background: #fff;
    color: #1a1a1a;
    border: 0;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease;
}

.cookies-banner__btn:hover {
    background: #7dd87d;
    color: #1a1a1a;
}

@media (max-width: 640px) {
    .cookies-banner {
        padding: 14px 16px;
    }
    .cookies-banner__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .cookies-banner__btn {
        width: 100%;
    }
}

/* Case à cocher RGPD du formulaire de contact */
.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--color-text, #333);
}

.form-consent input[type="checkbox"] {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #7dd87d;
}

.form-consent label {
    cursor: pointer;
    flex: 1;
}

.form-consent a {
    color: var(--color-green, #7dd87d);
    text-decoration: underline;
}
