/**
 * Chatbot Consent Dialog
 * 
 * DSGVO-konformer Consent Dialog.
 * 
 * @package SMG_Mall
 * @since 1.0.0
 */

/* ========================================
   Consent Dialog
   ======================================== */

.chatbot-consent-dialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-consent-dialog__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.chatbot-consent-dialog__content {
    position: relative;
    width: 90%;
    max-width: 500px;
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: dialogSlideIn 0.3s ease;
}

.chatbot-consent-dialog__content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 16px 0;
}

.chatbot-consent-dialog__content p {
    font-size: 15px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0 0 24px 0;
}

.chatbot-consent-dialog__actions {
    display: flex;
    gap: 12px;
}

.chatbot-consent-dialog__btn {
    flex: 1;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.chatbot-consent-dialog__btn--accept {
    background: var(--color-primary, #007bff);
    color: white;
}

.chatbot-consent-dialog__btn--accept:hover {
    background: var(--color-primary-dark, #0056b3);
}

.chatbot-consent-dialog__btn--decline {
    background: #f3f4f6;
    color: #6b7280;
}

.chatbot-consent-dialog__btn--decline:hover {
    background: #e5e7eb;
    color: #1f2937;
}

@keyframes dialogSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 640px) {
    .chatbot-consent-dialog__content {
        padding: 24px;
    }
    
    .chatbot-consent-dialog__content h3 {
        font-size: 20px;
    }
    
    .chatbot-consent-dialog__actions {
        flex-direction: column;
    }
}

