/* ============================================================
   Cookie consent banner — shared between BY and Warsaw versions
   Narrow card, bottom-right, centered content
   ============================================================ */

.cc-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    left: auto;
    z-index: 9999;
    width: 300px;
    max-width: calc(100vw - 40px);
    background: rgba(15, 15, 15, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 165, 116, 0.18);
    border-radius: 12px;
    padding: 20px 18px;
    color: rgba(255, 255, 255, 0.85);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 0.84rem;
    line-height: 1.55;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.55);
    text-align: center;
    transform: translateY(16px);
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.35s ease;
    box-sizing: border-box;
}

.cc-banner.cc-banner--visible {
    opacity: 1;
    transform: translateY(0);
}

.cc-banner__title {
    display: block;
    color: #D4A574;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin: 0 0 10px;
    text-align: center;
}

.cc-banner__text {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.78);
    text-align: center;
}

.cc-banner__text a {
    color: #D4A574;
    border-bottom: 1px solid rgba(212, 165, 116, 0.4);
    text-decoration: none;
    transition: border-color 0.2s ease;
}

.cc-banner__text a:hover {
    border-color: #D4A574;
}

.cc-banner__actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.cc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 16px;
    border: 1px solid rgba(212, 165, 116, 0.4);
    border-radius: 8px;
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    font-family: inherit;
    letter-spacing: 0.01em;
    text-align: center;
}

.cc-btn:hover {
    background: rgba(212, 165, 116, 0.12);
    border-color: rgba(212, 165, 116, 0.65);
    color: #ffffff;
}

.cc-btn--primary {
    background: rgba(212, 165, 116, 0.92);
    color: #1a1a1a;
    border-color: transparent;
}

.cc-btn--primary:hover {
    background: #D4A574;
    color: #0a0a0a;
}

/* ── BY: same look but slightly more compact ── */
.cc-banner--by {
    padding: 16px 18px;
}

.cc-banner--by .cc-banner__text {
    margin-bottom: 12px;
    font-size: 0.83rem;
}

/* ── Mobile ── */
@media (max-width: 600px) {
    .cc-banner {
        right: 12px;
        bottom: 12px;
        left: 12px;
        width: auto;
        max-width: none;
        padding: 16px 18px;
    }
}
