/* ========================================================================
   SMG AI RECOMMENDATION WIDGET - MODERN DESIGN
   Moderne KI-Empfehlungs-Interface mit Linie und Inline-Icons
   ======================================================================== */

.smg-ai-recommendation {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%) !important;
    color: white !important;
    min-height: 80vh;
}

/* Background Styles */
.smg-ai-recommendation[data-background="gradient"] {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%) !important;
}

.smg-ai-recommendation[data-background="pattern"] {
    background: 
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(239, 68, 68, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
}

.smg-ai-recommendation[data-background="minimal"] {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
    color: var(--primary-dark) !important;
}

/* Floating Particles Animation */
.ai-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #3b82f6, #ef4444);
    border-radius: 50%;
    opacity: 0.6;
    animation: float var(--duration, 10s) ease-in-out infinite var(--delay, 0s);
}

.particle:nth-child(1) { top: 20%; left: 10%; }
.particle:nth-child(2) { top: 60%; left: 90%; }
.particle:nth-child(3) { top: 80%; left: 20%; }
.particle:nth-child(4) { top: 30%; left: 80%; }

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) scale(1); 
        opacity: 0.6;
    }
    25% { 
        transform: translateY(-20px) translateX(10px) scale(1.2); 
        opacity: 1;
    }
    50% { 
        transform: translateY(-40px) translateX(-10px) scale(0.8); 
        opacity: 0.4;
    }
    75% { 
        transform: translateY(-20px) translateX(15px) scale(1.1); 
        opacity: 0.8;
    }
}

/* Container */
.smg-ai-recommendation .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Header */
.ai-header {
    text-align: center;
    margin-bottom: 4rem;
}

.ai-brain-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.brain-core {
    position: relative;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #3b82f6 0%, #ef4444 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 40px rgba(59, 130, 246, 0.3),
        0 0 80px rgba(239, 68, 68, 0.2);
    animation: brainPulse 3s ease-in-out infinite;
}

.brain-core i[data-lucide] {
    width: 40px !important;
    height: 40px !important;
    color: white !important;
    z-index: 2;
    stroke-width: 1.5;
}

.neural-network {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 2px solid rgba(59, 130, 246, 0.3);
}

.neuron {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #3b82f6;
    border-radius: 50%;
    animation: neuronPulse 2s ease-in-out infinite var(--delay, 0s);
}

.neuron:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.neuron:nth-child(2) { top: 50%; right: 0; transform: translateY(-50%); }
.neuron:nth-child(3) { bottom: 0; left: 50%; transform: translateX(-50%); }
.neuron:nth-child(4) { top: 50%; left: 0; transform: translateY(-50%); }

@keyframes brainPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 
            0 0 40px rgba(59, 130, 246, 0.3),
            0 0 80px rgba(239, 68, 68, 0.2);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 
            0 0 60px rgba(59, 130, 246, 0.5),
            0 0 120px rgba(239, 68, 68, 0.3);
    }
}

@keyframes neuronPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
        background: #3b82f6;
    }
    50% { 
        transform: scale(1.5);
        opacity: 0.6;
        background: #ef4444;
    }
}

.ai-title {
    /* Use unified title system from common.css */
    font-family: var(--font-secondary);
    font-size: clamp(2.5rem, 6vw, 4rem) !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
    margin-bottom: var(--smg-space-xl) !important;
    letter-spacing: -0.02em;
    background: var(--smg-gradient-brand-alt);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-subtitle {
    /* Use unified subtitle system from common.css */
    font-size: var(--smg-text-xl) !important;
    line-height: 1.6 !important;
    margin-bottom: var(--smg-space-xl) !important;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto !important;
    margin-right: auto !important;
    color: var(--smg-text-dark-secondary) !important;
}

/* Modern Chat Interface */
.ai-chat-interface {
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 32px !important;
    padding: 3rem !important;
    margin-bottom: 3rem !important;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* AI Avatar */
.ai-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.avatar-circle {
    position: relative;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    animation: avatarGlow 2s ease-in-out infinite alternate;
}

.avatar-circle i[data-lucide] {
    width: 20px !important;
    height: 20px !important;
    color: white !important;
    stroke-width: 2;
}

.status-indicator {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    border: 2px solid white;
    animation: statusPulse 1.5s ease-in-out infinite;
}

.avatar-label {
    font-weight: 600 !important;
    color: #3b82f6 !important;
    font-size: 0.9rem !important;
}

@keyframes avatarGlow {
    0% { box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3); }
    100% { box-shadow: 0 8px 35px rgba(59, 130, 246, 0.5); }
}

@keyframes statusPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Modern Input Field with Inline Send Button */
.modern-input-wrapper {
    margin-bottom: 3rem;
}

.input-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.modern-input {
    width: 100% !important;
    padding: 1rem 3rem 0.5rem 0 !important;
    background: transparent !important;
    border: none !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    font-size: 1.1rem !important;
    line-height: 1.5 !important;
    font-family: inherit !important;
    transition: all 0.3s ease !important;
    outline: none !important;
}

.modern-input::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
    font-weight: 300;
}

.modern-input:focus {
    border-bottom-color: #3b82f6 !important;
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6 0%, #ef4444 100%);
    transition: width 0.4s ease;
}

.input-container.focused .input-line {
    width: 100%;
}

/* Inline Send Button - Without Circle */
.inline-send-btn {
    position: absolute !important;
    right: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    color: #3b82f6 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.5rem !important;
}

.inline-send-btn:hover {
    transform: translateY(-50%) scale(1.1) !important;
    color: #ef4444 !important;
}

.inline-send-btn:active {
    transform: translateY(-50%) scale(0.95) !important;
}

.send-icon {
    width: 24px !important;
    height: 24px !important;
    stroke-width: 2 !important;
    transition: all 0.3s ease;
}

.inline-send-btn.loading .send-icon {
    opacity: 0;
}

.inline-send-btn.loading .spinner {
    opacity: 1;
    animation: spin 1s linear infinite;
}

.spinner {
    position: absolute;
    width: 24px !important;
    height: 24px !important;
    stroke-width: 2 !important;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #3b82f6 !important;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Input Explanation */
.input-explanation {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem;
    margin-top: 1rem !important;
    font-size: 0.8rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
    text-align: center !important;
    max-width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
    line-height: 1.3 !important;
    white-space: nowrap;
}

.input-explanation i[data-lucide] {
    width: 14px !important;
    height: 14px !important;
    color: #fbbf24 !important;
    stroke-width: 2;
    animation: sparkle 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.7; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 1; }
}

/* Quick Suggestions in One Row */
.quick-suggestions-modern {
    margin-top: 2rem;
}

.suggestions-title-modern {
    font-size: 1rem !important;
    font-weight: 600 !important;
    margin-bottom: 1.5rem !important;
    opacity: 0.9;
    text-align: center;
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Quick Suggestions as Compact Buttons in One Row */
.suggestions-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    max-width: 900px;
    margin: 0 auto;
    justify-content: center;
}

.suggestion-modern {
    position: relative;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0.5rem;
    padding: 0.6rem 1rem !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 50px !important;
    color: white !important;
    font-size: 0.8rem !important;
    font-weight: 400 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    animation: suggestionSlideIn 0.6s ease-out var(--delay, 0s) both;
    white-space: nowrap;
    min-height: auto;
    flex: 0 0 auto;
}

.suggestion-modern:hover {
    transform: translateY(-2px) !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: #3b82f6 !important;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3) !important;
    color: white !important;
}

.suggestion-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    flex-shrink: 0;
}

.suggestion-icon i[data-lucide] {
    width: 16px !important;
    height: 16px !important;
    color: #3b82f6 !important;
    stroke-width: 2;
}

.suggestion-label {
    text-align: left;
    line-height: 1.2;
    font-weight: 400;
    flex-shrink: 0;
}

@keyframes suggestionSlideIn {
    0% { 
        opacity: 0;
        transform: translateY(30px);
    }
    100% { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* AI Response Area - Modern Design */
.ai-response-area {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 24px !important;
    padding: 2rem !important;
    margin-top: 2rem !important;
    animation: responseSlideIn 0.6s ease-out;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.response-header {
    margin-bottom: 2rem;
}

.ai-thinking {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #3b82f6 !important;
    font-weight: 600 !important;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.thinking-icon i[data-lucide] {
    width: 20px !important;
    height: 20px !important;
    animation: spin 2s linear infinite;
    stroke-width: 2;
}

.response-content {
    transition: opacity 0.3s ease;
}

/* AI Recommendation Result - Modern Card Design */
.ai-recommendation-result {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(239, 68, 68, 0.1) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 20px !important;
    padding: 2rem !important;
    animation: resultFadeIn 0.8s ease-out;
    position: relative;
    overflow: hidden;
}

.ai-recommendation-result::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6 0%, #ef4444 100%);
    border-radius: 20px 20px 0 0;
}

.recommendation-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rec-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconGlow 2s ease-in-out infinite alternate;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.rec-icon i[data-lucide] {
    width: 28px !important;
    height: 28px !important;
    color: white !important;
    stroke-width: 1.5;
}

.recommendation-header h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: white !important;
    margin: 0 !important;
    background: linear-gradient(135deg, #3b82f6 0%, #ef4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rec-description {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    margin-bottom: 2rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 400;
}

.rec-features {
    margin-bottom: 2rem;
}

.rec-features h4 {
    font-size: 1rem !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
    color: #3b82f6 !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rec-features h4::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #3b82f6 0%, #ef4444 100%);
    border-radius: 2px;
}

.rec-features ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.5rem;
}

.rec-features li {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem;
    padding: 0.4rem 0.6rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 500 !important;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9) !important;
    transition: all 0.3s ease;
}

.rec-features li:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(59, 130, 246, 0.3);
}

.rec-features li i[data-lucide] {
    width: 16px !important;
    height: 16px !important;
    color: #10b981 !important;
    stroke-width: 2;
    flex-shrink: 0;
}

.rec-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.rec-btn {
    padding: 1rem 1.5rem !important;
    border: none !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem;
    text-decoration: none !important;
    font-size: 0.9rem !important;
    flex: 1;
    justify-content: center;
    min-width: 150px;
}

.rec-btn.primary {
    background: linear-gradient(135deg, #3b82f6 0%, #ef4444 100%) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.rec-btn.secondary {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.rec-btn:hover {
    transform: translateY(-3px) !important;
    color: white !important;
}

.rec-btn.primary:hover {
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4) !important;
}

.rec-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
}

.rec-btn i[data-lucide] {
    width: 18px !important;
    height: 18px !important;
    stroke-width: 2;
}

@keyframes resultFadeIn {
    0% { 
        opacity: 0;
        transform: translateY(30px);
    }
    100% { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes iconGlow {
    0% { 
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
        transform: scale(1);
    }
    100% { 
        box-shadow: 0 12px 35px rgba(59, 130, 246, 0.5);
        transform: scale(1.02);
    }
}

/* Loading Animation */
.ai-loading {
    text-align: center;
    padding: 3rem 0;
    animation: loadingFadeIn 0.3s ease-out;
}

.loading-brain {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.brain-waves {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
}

.wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #3b82f6;
    border-radius: 50%;
    animation: waveExpand 2s ease-out infinite var(--delay, 0s);
}

.loading-brain i[data-lucide] {
    width: 64px !important;
    height: 64px !important;
    color: #3b82f6 !important;
    position: relative;
    z-index: 2;
    stroke-width: 1.5;
}

.loading-text {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #3b82f6 !important;
    animation: textPulse 1.5s ease-in-out infinite;
}

@keyframes waveExpand {
    0% { 
        transform: scale(0.8);
        opacity: 1;
    }
    100% { 
        transform: scale(1.8);
        opacity: 0;
    }
}

@keyframes textPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@keyframes loadingFadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .smg-ai-recommendation {
        padding: 4rem 0 !important;
    }
    
    .ai-chat-interface {
        padding: 2rem !important;
        margin: 0 1rem 3rem 1rem !important;
    }
    
    .ai-response-area {
        margin: 2rem 1rem 0 1rem !important;
        padding: 1.5rem !important;
    }
    
    .ai-recommendation-result {
        padding: 1.5rem !important;
    }
    
    .recommendation-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding-bottom: 1.5rem;
    }
    
    .recommendation-header h3 {
        font-size: 1.3rem !important;
    }
    
    .rec-features ul {
        grid-template-columns: 1fr !important;
        gap: 0.5rem;
    }
    
    .rec-features li {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .suggestions-row {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 0.5rem !important;
    }
    
    .suggestion-modern {
        font-size: 0.75rem !important;
        padding: 0.5rem 0.8rem !important;
    }
    
    .suggestion-icon i[data-lucide] {
        width: 14px !important;
        height: 14px !important;
    }
    
    .input-explanation {
        font-size: 0.75rem !important;
        white-space: normal !important;
        text-align: center !important;
    }
    
    .rec-actions {
        flex-direction: column !important;
        gap: 0.75rem !important;
    }
    
    .rec-btn {
        width: 100% !important;
        justify-content: center !important;
        padding: 0.8rem 1rem !important;
        font-size: 0.85rem !important;
    }
}

@media (max-width: 480px) {
    .ai-chat-interface {
        padding: 1.5rem !important;
        margin: 0 0.5rem 3rem 0.5rem !important;
    }
    
    .ai-response-area {
        margin: 2rem 0.5rem 0 0.5rem !important;
        padding: 1rem !important;
    }
    
    .ai-recommendation-result {
        padding: 1rem !important;
    }
    
    .rec-icon {
        width: 50px;
        height: 50px;
    }
    
    .rec-icon i[data-lucide] {
        width: 24px !important;
        height: 24px !important;
    }
    
    .recommendation-header h3 {
        font-size: 1.2rem !important;
    }
    
    .rec-description {
        font-size: 0.9rem !important;
    }
    
    .rec-features li {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .rec-features li i[data-lucide] {
        width: 16px !important;
        height: 16px !important;
    }
    
    .modern-input {
        padding-right: 3rem !important;
    }
    
    .inline-send-btn {
        padding: 0.25rem !important;
    }
    
    .send-icon,
    .spinner {
        width: 20px !important;
        height: 20px !important;
    }
    
    .suggestions-row {
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.5rem !important;
    }
    
    .suggestion-modern {
        padding: 0.5rem 0.75rem !important;
        font-size: 0.7rem !important;
        min-width: 140px;
    }
    
    .suggestion-icon i[data-lucide] {
        width: 12px !important;
        height: 12px !important;
    }
    
    .input-explanation {
        font-size: 0.7rem !important;
        padding: 0 1rem;
    }
}

/* Dark mode adjustments for minimal background */
.smg-ai-recommendation[data-background="minimal"] .ai-title {
    color: var(--primary-dark) !important;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.smg-ai-recommendation[data-background="minimal"] .ai-subtitle,
.smg-ai-recommendation[data-background="minimal"] .avatar-label,
.smg-ai-recommendation[data-background="minimal"] .suggestions-title-modern,
.smg-ai-recommendation[data-background="minimal"] .input-explanation {
    color: var(--text-light) !important;
}

.smg-ai-recommendation[data-background="minimal"] .ai-chat-interface {
    background: rgba(0, 0, 0, 0.03) !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
}

.smg-ai-recommendation[data-background="minimal"] .modern-input {
    color: var(--primary-dark) !important;
    border-bottom-color: rgba(0, 0, 0, 0.2) !important;
}

.smg-ai-recommendation[data-background="minimal"] .modern-input::placeholder {
    color: rgba(0, 0, 0, 0.5) !important;
}

.smg-ai-recommendation[data-background="minimal"] .suggestion-modern {
    background: rgba(0, 0, 0, 0.03) !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
    color: var(--primary-dark) !important;
}

.smg-ai-recommendation[data-background="minimal"] .ai-response-area {
    background: rgba(0, 0, 0, 0.03) !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
    color: var(--primary-dark) !important;
} 