/* ================================================================
   cookie-consent.css — Cookie consent banner
   Loaded by: templates/_cookie_consent.html.twig (via base.html.twig)
   ================================================================ */

.bw-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: #1A2E42;
    color: #fff;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    box-shadow: 0 -2px 16px rgba(0,0,0,0.25);
    font-family: 'Noto Sans', sans-serif;
    font-size: 0.88rem;
    line-height: 1.5;
}
.bw-cookie-banner a {
    color: #FD9ACA;
    text-decoration: underline;
}
.bw-cookie-banner a:hover { color: #fff; }
.bw-cookie-banner__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.bw-cookie-btn {
    border: none;
    border-radius: 6px;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s, transform 0.1s;
    font-family: inherit;
}
.bw-cookie-btn:active { transform: scale(0.97); }
.bw-cookie-btn--accept {
    background: #C94B6D;
    color: #fff;
}
.bw-cookie-btn--accept:hover { background: #d65d7f; }
.bw-cookie-btn--decline {
    background: transparent;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.25);
}
.bw-cookie-btn--decline:hover {
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}
