/* Privacy & Cookie Consent Styles */

/* Privacy Policy Overlay - wenn benötigt */
#privacy-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

#privacy-overlay.show {
    display: flex;
}

.privacy-modal {
    background: white;
    color: #1a1a1a;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.privacy-close {
    float: right;
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    color: #666;
}

.privacy-close:hover {
    color: #000;
}

/* Cookie Banner - KLEIN UNTEN RECHTS */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    background: white;
    color: #1a1a1a;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 50;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.cookie-banner.show {
    opacity: 1;
    transform: translateY(0);
}

.cookie-content {
    display: block;
}

.cookie-icon {
    display: none;
}

.cookie-text {
    margin-bottom: 12px;
}

.cookie-text h3 {
    margin: 0 0 6px 0;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.cookie-text p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.4;
    color: #666;
}

.cookie-actions {
    display: flex;
    gap: 8px;
}

.cookie-btn {
    flex: 1;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-accept {
    background: #667eea;
    color: white;
}

.cookie-accept:hover {
    background: #5568d3;
}

.cookie-decline {
    background: #f1f1f1;
    color: #666;
}

.cookie-decline:hover {
    background: #e5e5e5;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-banner {
        bottom: 10px;
        right: 10px;
        left: 10px;
        width: auto;
    }
    
    .privacy-modal {
        margin: 1rem;
        padding: 1.5rem;
    }
}
