/* Cookie Consent Banner - DSGVO-konform */
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(20, 20, 30, 0.98);
    backdrop-filter: blur(10px);
    border-top: 2px solid #b79f74;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    color: #fff;
}

.cookie-content h3 {
    margin: 0 0 0.5rem 0;
    color: #b79f74;
    font-size: 1.2rem;
}

.cookie-content p {
    margin: 0 0 1rem 0;
    line-height: 1.6;
    color: #ccc;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: inherit;
}

.cookie-btn.primary {
    background: linear-gradient(135deg, #b79f74 0%, #8c795a 100%);
    color: #0a0a0a;
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.3);
}

.cookie-btn.primary:hover {
    background: linear-gradient(135deg, #f0c040 0%, #daa520 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(218, 165, 32, 0.4);
}

.cookie-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.cookie-btn.tertiary {
    background: transparent;
    color: #b79f74;
    border: 1px solid #b79f74;
}

.cookie-btn.tertiary:hover {
    background: rgba(183, 159, 116, 0.1);
    border-color: #daa520;
    color: #daa520;
}

.cookie-link {
    color: #b79f74;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-block;
    margin-top: 0.5rem;
}

.cookie-link:hover {
    color: #daa520;
    text-decoration: underline;
}

/* Settings View */
.cookie-content.settings {
    max-width: 600px;
}

.cookie-option {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.cookie-option label {
    display: flex;
    gap: 1rem;
    cursor: pointer;
    align-items: flex-start;
}

.cookie-option input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #b79f74;
}

.cookie-option input[type="checkbox"]:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.cookie-option strong {
    display: block;
    color: #b79f74;
    margin-bottom: 0.25rem;
}

.cookie-option p {
    margin: 0;
    font-size: 0.85rem;
    color: #aaa;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    #cookie-consent-banner {
        padding: 1rem;
    }

    .cookie-content h3 {
        font-size: 1.1rem;
    }

    .cookie-content p {
        font-size: 0.9rem;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
        text-align: center;
    }
}

/* Cookie Settings Link im Footer */
.cookie-settings-link {
    color: #b79f74;
    text-decoration: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.cookie-settings-link:hover {
    color: #daa520;
    text-decoration: underline;
}
