/* File: consent-banner | Version: 1.00.0 | Date: 2026-08-20 */
/* v1.00.0: Initiale Version. Nutzt bestehende Design-Tokens aus style.css
        (--primary, --bg-white, --text, border-radius/box-shadow-Konventionen
        wie bei .fab-menu / .btn-submit). */

.consent-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: var(--bg-white, #fafcfa);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
    border-radius: 12px 12px 0 0;
    padding: 16px;
    padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
}

.consent-banner__content {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.consent-banner__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
    color: var(--text, #333);
}

.consent-banner__actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.consent-btn {
    border: none;
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.15s ease;
}

.consent-btn:active {
    opacity: 0.75;
}

.consent-btn--primary {
    background: var(--primary, #547a8c);
    color: #fff;
}

.consent-btn--secondary {
    background: var(--bg-gray, #f4f4f4);
    color: var(--text, #333);
}

@media (max-width: 480px) {
    .consent-banner__actions {
        justify-content: stretch;
    }
    .consent-btn {
        flex: 1;
    }
}
