/* ══════════════════════════════════════════════════════════
   Cookie consent banner
   ══════════════════════════════════════════════════════════ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 18px 20px;
    background: #0d4fd9;
    color: #ffffff;
    display: none;
    flex-direction: column;
    text-align: center;
    gap: 12px;
    z-index: 9999;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.15);
}

.cookie-banner p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.cookie-link {
    color: #e6eeff;
    text-decoration: underline;
    font-weight: 500;
}

.cookie-link:hover {
    color: #ffffff;
    text-decoration-thickness: 2px;
}

.cookie-btn {
    background: #ffffff;
    color: #0d4fd9;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.12);
    transition: background 0.2s ease;
}

.cookie-btn:hover {
    background: #f2f6ff;
}

@media (min-width: 768px) {
    .cookie-banner {
        flex-direction: row;
        justify-content: center;
        text-align: center;
    }
}
