/* ============================================================
   cookie-consent.css — DSGVO-Banner
   ============================================================ */

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #111;
    color: #fff;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
}

.cb__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cb__text {
    flex: 1;
    min-width: 200px;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    color: #ccc;
}

.cb__text a {
    color: #1C8F5C;
    text-decoration: underline;
}

.cb__buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cb__btn {
    padding: 9px 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: opacity 0.15s;
}

.cb__btn:hover {
    opacity: 0.85;
}

.cb__btn--accept {
    background: #1C8F5C;
    color: #fff;
    border-color: #1C8F5C;
}

.cb__btn--decline {
    background: transparent;
    color: #aaa;
    border-color: #444;
}

@media (max-width: 600px) {
    .cb__inner {
        padding: 14px 16px;
        gap: 12px;
    }
    .cb__buttons {
        width: 100%;
    }
    .cb__btn {
        flex: 1;
        text-align: center;
    }
}
