/* Bannière cookies discrète — coin bas-gauche, au-dessus de Nzela */

.pc-consent {
    position: fixed;
    left: 1.25rem;
    bottom: 5.5rem;
    z-index: 9998;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .35rem .55rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, .72);
    backdrop-filter: blur(8px);
    color: rgba(255, 255, 255, .88);
    font-size: .68rem;
    line-height: 1.2;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .12);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .35s ease, transform .35s ease;
    max-width: min(92vw, 320px);
}

.pc-consent.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.pc-consent[hidden] {
    display: none !important;
}

.pc-consent-text {
    white-space: nowrap;
    opacity: .85;
}

.pc-consent-btn {
    border: none;
    background: rgba(255, 255, 255, .12);
    color: inherit;
    border-radius: 999px;
    padding: .2rem .5rem;
    font-size: .65rem;
    cursor: pointer;
    font-family: inherit;
    transition: background .15s;
}

.pc-consent-btn:hover {
    background: rgba(255, 255, 255, .22);
}

.pc-consent-btn--primary {
    background: rgba(30, 144, 255, .85);
    font-weight: 600;
}

.pc-consent-btn--primary:hover {
    background: rgba(30, 144, 255, 1);
}

@media (max-width: 480px) {
    .pc-consent {
        left: .75rem;
        bottom: 4.75rem;
        max-width: calc(100vw - 1.5rem);
    }

    .pc-consent-text {
        white-space: normal;
    }
}
