#cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    max-width: 340px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(44, 52, 64, 0.18);
    border-left: 4px solid #6f8fa6;
    padding: 1.4rem 1.5rem;
    z-index: 9999;
    font-family: 'Jost', sans-serif;
    font-size: 0.88rem;
    color: #5a6470;
    display: none;
}

#cookie-banner.visible {
    display: block;
    animation: cookieSlideIn 0.3s ease;
}

@keyframes cookieSlideIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

#cookie-banner p {
    margin: 0 0 1.1rem 0;
    line-height: 1.6;
}

#cookie-banner strong {
    color: #2c3440;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 0.4rem;
}

#cookie-banner a {
    color: #6f8fa6;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 0.6rem;
}

.cookie-btn-accept {
    flex: 1;
    background: #546f83;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 0.55rem 1rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
}

.cookie-btn-accept:hover {
    background: #6f8fa6;
}

.cookie-btn-decline {
    flex: 1;
    background: transparent;
    color: #8b9399;
    border: 1px solid #e8e4de;
    border-radius: 6px;
    padding: 0.55rem 1rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-btn-decline:hover {
    border-color: #8b9399;
    color: #5a6470;
}

@media (max-width: 480px) {
    #cookie-banner {
        bottom: 0;
        right: 0;
        left: 0;
        max-width: 100%;
        border-radius: 12px 12px 0 0;
        border-left: none;
        border-top: 4px solid #6f8fa6;
    }
}
