/**
 * Cookie-Consent Banner Styles
 * DSGVO-konformer Cookie-Hinweis am unteren Bildschirmrand
 */

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(20, 20, 20, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    padding: 20px 24px;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.25);
    transform: translateY(120%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent.visible {
    transform: translateY(0);
}

.cookie-consent-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-consent-text {
    flex: 1 1 300px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
}

.cookie-consent-text strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #fff;
}

.cookie-consent-text a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-consent-text a:hover {
    color: rgba(255, 255, 255, 0.75);
}

.cookie-consent-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.cookie-btn {
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 13px;
    letter-spacing: 0.4px;
    padding: 11px 20px;
    border-radius: 4px;
    transition: all 0.2s ease;
    white-space: nowrap;
    font-weight: 500;
}

.cookie-btn-primary {
    background: #fff;
    color: #1a1a1a;
}

.cookie-btn-primary:hover {
    background: rgba(255, 255, 255, 0.85);
    transform: translateY(-1px);
}

.cookie-btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.cookie-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .cookie-consent {
        padding: 16px;
    }

    .cookie-consent-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .cookie-consent-text {
        font-size: 13px;
    }

    .cookie-consent-actions {
        flex-direction: column;
        gap: 8px;
    }

    .cookie-btn {
        width: 100%;
        padding: 12px 16px;
    }
}
