/* Subtiele EU cookie-banner */

.pn-cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10090;
    padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
    pointer-events: none;
}

.pn-cookie-consent:not([hidden]) {
    pointer-events: auto;
}

.pn-cookie-consent__inner {
    max-width: 920px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem 1rem;
    padding: 0.7rem 0.95rem;
    background: rgba(26, 46, 40, 0.94);
    color: #eef5f2;
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(15, 30, 26, 0.28);
    backdrop-filter: blur(8px);
}

.pn-cookie-consent__text {
    margin: 0;
    flex: 1 1 16rem;
    font-size: 0.78rem;
    line-height: 1.45;
    color: rgba(238, 245, 242, 0.92);
}

.pn-cookie-consent__text a {
    color: #a7f3d0;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.pn-cookie-consent__text a:hover {
    color: #d1fae5;
}

.pn-cookie-consent__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    flex-shrink: 0;
}

.pn-cookie-consent__btn {
    border: none;
    border-radius: 999px;
    padding: 0.42rem 0.9rem;
    font-size: 0.76rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.pn-cookie-consent__btn--ghost {
    background: transparent;
    color: #d5e5df;
    border: 1px solid rgba(213, 229, 223, 0.35);
}

.pn-cookie-consent__btn--ghost:hover {
    background: rgba(255, 255, 255, 0.08);
}

.pn-cookie-consent__btn--accept {
    background: #12896d;
    color: #fff;
}

.pn-cookie-consent__btn--accept:hover {
    background: #0f6b56;
}

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

    .pn-cookie-consent__actions {
        justify-content: stretch;
    }

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