/* Cookie Consent Banner für computerkumpel.de */
.ck-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(15, 23, 42, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 2px solid rgba(37, 99, 235, 0.4);
    padding: 1rem 1.5rem;
    animation: ck-slide-up 0.3s ease forwards;
    transition: opacity 0.3s, transform 0.3s;
}
.ck-cookie-banner.ck-hidden {
    opacity: 0;
    transform: translateY(100%);
    pointer-events: none;
}
@keyframes ck-slide-up {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}
.ck-cookie-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    position: relative;
}
.ck-cookie-text {
    flex: 1;
    min-width: 280px;
}
.ck-cookie-text h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #e2e8f0;
    margin: 0 0 0.35rem;
}
.ck-cookie-text p {
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}
.ck-cookie-text a {
    color: #60a5fa;
    text-decoration: underline;
}
.ck-cookie-text a:hover {
    color: #93c5fd;
}
.ck-cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}
.ck-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    font-family: inherit;
}
.ck-btn-primary {
    background: #2563eb;
    color: #fff;
}
.ck-btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}
.ck-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.ck-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}
.ck-cookie-close {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    background: rgba(255, 255, 255, 0.15);
    color: #e2e8f0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: all 0.2s;
}
.ck-cookie-close:hover {
    background: rgba(255, 255, 255, 0.25);
}
@media (max-width: 640px) {
    .ck-cookie-inner {
        flex-direction: column;
        align-items: stretch;
    }
    .ck-cookie-actions {
        width: 100%;
    }
    .ck-btn {
        flex: 1;
        text-align: center;
    }
    .ck-cookie-close {
        top: 0.5rem;
        right: 0.5rem;
    }
}