/**
 * DialogPilot Demo Widget - Modern UI
 * Interaktive AI-Assistant Demonstration
 */

:root {
    --pilot-primary: #6366f1;
    --pilot-secondary: #06b6d4;
    --pilot-accent: #f59e0b;
    --pilot-success: #10b981;
    --pilot-danger: #ef4444;
    --pilot-dark: #0f172a;
    --pilot-light: #f8fafc;
    --pilot-glass: rgba(255, 255, 255, 0.15);
    --pilot-shadow: rgba(0, 0, 0, 0.1);
    --pilot-border: rgba(255, 255, 255, 0.2);
    --pilot-gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #06b6d4 100%);
    --pilot-gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.05) 100%);
    --pilot-backdrop-blur: blur(20px);
}

/* ULTRA-MODERNE Demo Switcher - Toggle Design */
.dialog-pilot-demo-switcher {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: var(--pilot-backdrop-blur);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 32px;
    padding: 40px;
    margin-bottom: 32px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.dialog-pilot-demo-switcher::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.05) 0%, 
        rgba(6, 182, 212, 0.05) 50%, 
        rgba(245, 158, 11, 0.05) 100%);
    z-index: 0;
}

.dialog-pilot-demo-switcher:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 32px 64px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.switcher-header {
    text-align: center;
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.switcher-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 0 12px 0;
    background: var(--pilot-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.switcher-header p {
    font-size: 1rem;
    color: var(--pilot-dark);
    opacity: 0.7;
    margin: 0;
    font-weight: 500;
}

/* COOLE Toggle-Buttons statt Grid */
.switcher-tabs {
    display: flex;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 8px;
    gap: 4px;
    position: relative;
    z-index: 2;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
}

.switcher-tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 12px;
    background: transparent;
    border: none;
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 3;
    min-height: 80px;
}

.switcher-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--pilot-gradient-primary);
    border-radius: 18px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    transform: scale(0.9);
}

.switcher-tab i {
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
    margin-bottom: 4px;
}

.switcher-tab span {
    font-size: 0.8rem;
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1.2;
}

.switcher-tab:hover {
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.switcher-tab:hover::before {
    opacity: 0.3;
    transform: scale(1);
}

.switcher-tab:hover i {
    transform: scale(1.1);
}

.switcher-tab.active {
    color: white;
    transform: translateY(-2px);
    box-shadow: 
        0 8px 24px rgba(99, 102, 241, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.switcher-tab.active::before {
    opacity: 1;
    transform: scale(1);
}

.switcher-tab.active i {
    transform: scale(1.1);
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

/* Switching animation */
.switcher-tab.switching {
    transform: translateY(-2px) scale(0.95);
    transition: all 0.2s ease;
}

/* Tab hover effects */
.switcher-tab.tab-hover:not(.active) {
    color: rgba(255, 255, 255, 0.8);
}

.switcher-tab.tab-hover:not(.active)::before {
    opacity: 0.2;
    transform: scale(0.95);
}

/* Smooth sliding indicator */
.switcher-tabs::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    width: calc(25% - 4px);
    height: calc(100% - 16px);
    background: var(--pilot-gradient-primary);
    border-radius: 18px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    box-shadow: 
        0 8px 24px rgba(99, 102, 241, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Sliding positions */
.switcher-tabs:has(.switcher-tab[data-mode="shopping"].active)::after {
    transform: translateX(0);
}

.switcher-tabs:has(.switcher-tab[data-mode="office"].active)::after {
    transform: translateX(calc(100% + 4px));
}

.switcher-tabs:has(.switcher-tab[data-mode="health"].active)::after {
    transform: translateX(calc(200% + 8px));
}

.switcher-tabs:has(.switcher-tab[data-mode="residential"].active)::after {
    transform: translateX(calc(300% + 12px));
}

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

/* Hauptcontainer - DRASTISCH reduziertes Padding */
.smg-dialog-pilot-demo {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    background: var(--pilot-gradient-glass);
    backdrop-filter: var(--pilot-backdrop-blur);
    border: 1px solid var(--pilot-border);
    border-radius: 32px;
    padding: 16px; /* Von 24px auf 16px */
    box-shadow: 
        0 32px 64px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideInUp 0.8s ease-out 0.2s both;
}

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

.smg-dialog-pilot-demo:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 48px 80px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Demo Header - Moderne Typografie */
.demo-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    animation: fadeInDown 0.6s ease-out 0.4s both;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.demo-header::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--pilot-gradient-primary);
    border-radius: 2px;
    animation: shimmer 2s ease-in-out infinite alternate;
}

@keyframes shimmer {
    0% { opacity: 0.5; transform: translateX(-50%) scale(0.8); }
    100% { opacity: 1; transform: translateX(-50%) scale(1); }
}

.demo-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    background: var(--pilot-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.demo-subtitle {
    font-size: 1.1rem;
    color: var(--pilot-dark);
    margin: 0;
    opacity: 0.8;
    font-weight: 500;
    line-height: 1.6;
}

/* Dialog Interface - MINIMALES Padding */
.dialog-pilot-interface {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 12px; /* Von 20px auf 12px */
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 16px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    animation: scaleIn 0.6s ease-out 0.6s both;
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Input Section - Neudesign */
.pilot-input-section {
    position: relative;
    margin-bottom: 28px;
}

.pilot-input-container {
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.98) 100%);
    border: 2px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.08),
        inset 0 2px 4px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(255, 255, 255, 0.9);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
}

.pilot-input-container:hover {
    border-color: var(--pilot-primary);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 1) 100%);
    box-shadow: 
        0 12px 32px rgba(99, 102, 241, 0.15),
        inset 0 2px 4px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 1);
    transform: translateY(-1px);
}

.pilot-input-container:focus-within {
    border-color: var(--pilot-primary);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 1) 100%);
    box-shadow: 
        0 0 0 4px rgba(99, 102, 241, 0.1),
        0 12px 32px rgba(99, 102, 241, 0.2),
        inset 0 2px 4px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

.pilot-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 18px 24px;
    font-size: 1.1rem;
    color: var(--pilot-dark);
    outline: none;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: all 0.2s ease;
}

.pilot-input::placeholder {
    color: rgba(15, 23, 42, 0.6);
    font-weight: 400;
    transition: all 0.2s ease;
}

.pilot-input:focus::placeholder {
    opacity: 0.4;
    transform: translateX(4px);
}

/* Moderne Action Buttons - OHNE Hintergrund aber farbige Icons */
.pilot-voice-btn,
.pilot-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin: 6px;
    border: none;
    background: transparent;
    color: var(--pilot-primary);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pilot-voice-btn::before,
.pilot-search-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translate(-50%, -50%);
    z-index: 0;
}

.pilot-voice-btn:hover::before,
.pilot-search-btn:hover::before {
    width: 100%;
    height: 100%;
}

.pilot-voice-btn:hover,
.pilot-search-btn:hover {
    color: var(--pilot-primary);
    transform: translateY(-2px) scale(1.05);
}

.pilot-voice-btn:active,
.pilot-search-btn:active {
    transform: translateY(0) scale(0.95);
}

.pilot-voice-btn i,
.pilot-search-btn i {
    font-size: 1.2rem;
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
}

/* Click Animation für Buttons */
.pilot-voice-btn.clicked,
.pilot-search-btn.clicked {
    transform: scale(0.9);
    background: rgba(99, 102, 241, 0.2);
}

.pilot-voice-btn.clicked::before,
.pilot-search-btn.clicked::before {
    width: 120%;
    height: 120%;
    background: rgba(99, 102, 241, 0.3);
}

/* Voice Button Spezial-Animation */
.pilot-voice-btn.recording {
    animation: pulse-recording 1.5s ease-in-out infinite;
    color: #ef4444;
}

@keyframes pulse-recording {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
    }
}

/* Micro-Animation für verschiedene Icons */
.pilot-voice-btn:hover i {
    animation: bounceIcon 0.6s ease;
}

.pilot-search-btn:hover i {
    animation: rotateIcon 0.4s ease;
}

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

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

/* Suggestions Dropdown - Neu */
.pilot-suggestions {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    box-shadow: 
        0 16px 40px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    z-index: 1000;
    overflow: hidden;
    transform: translateY(-8px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pilot-suggestions.show {
    transform: translateY(0);
    opacity: 1;
}

.suggestion-item {
    padding: 14px 20px;
    cursor: pointer;
    color: var(--pilot-dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.suggestion-item::after {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--pilot-gradient-primary);
    transition: left 0.3s ease;
    z-index: 0;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    color: white;
    transform: translateX(4px);
}

.suggestion-item:hover::after {
    left: 0;
}

.suggestion-item::before {
    content: '💬';
    font-size: 1rem;
    opacity: 0.7;
    z-index: 2;
    position: relative;
}

/* Quick Suggestions - Moderne Chips */
.pilot-quick-suggestions {
    margin-bottom: 20px;
    animation: fadeInLeft 0.6s ease-out 0.8s both;
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.quick-suggestions-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.suggestions-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--pilot-dark);
    opacity: 0.8;
    letter-spacing: 0.01em;
}

.suggestions-scroll {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-height: 120px;
    overflow-y: auto;
    padding: 4px 0;
}

.suggestion-btn {
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: var(--pilot-primary);
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.suggestion-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--pilot-gradient-primary);
    transition: left 0.3s ease;
    z-index: -1;
}

.suggestion-btn:hover {
    color: white;
    border-color: var(--pilot-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.25);
}

.suggestion-btn:hover::before {
    left: 0;
}

/* Animation für Suggestion Clicks */
.suggestion-btn.suggestion-clicked {
    transform: scale(0.95);
    background: var(--pilot-gradient-primary);
    color: white;
}

/* Natural Language Response Section - NEU */
.pilot-natural-response {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    border: none;
    border-radius: 16px;
    padding: 16px; /* Von 24px auf 16px */
    margin-bottom: 16px; /* Von 24px auf 16px */
    position: relative;
    overflow: hidden;
    animation: slideInRight 0.6s ease-out;
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.natural-response-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.natural-response-icon {
    width: 40px;
    height: 40px;
    background: var(--pilot-gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    animation: pulse 2s ease-in-out infinite;
}

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

.natural-response-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--pilot-dark);
    margin: 0;
}

.natural-response-content {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--pilot-dark);
    margin: 0;
    opacity: 0.9;
}

/* ULTRA-MODERNE Result Cards - REDUZIERTES Padding */
.smg-dialog-pilot-demo .pilot-results {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.05) 0%, 
        rgba(248, 250, 252, 0.1) 100%);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    margin-bottom: 20px; /* Von 32px auf 20px */
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.smg-dialog-pilot-demo .pilot-results.show {
    transform: translateY(0);
    opacity: 1;
}

.smg-dialog-pilot-demo .results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px; /* Von 24px 32px auf 16px 20px */
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(248, 250, 252, 0.95) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    position: relative;
}

.smg-dialog-pilot-demo .results-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--pilot-gradient-primary);
    border-radius: 1px;
}

.smg-dialog-pilot-demo .results-count {
    font-size: 1rem;
    font-weight: 700;
    color: var(--pilot-dark);
    opacity: 0.9;
    letter-spacing: 0.01em;
}

.smg-dialog-pilot-demo .clear-results-btn {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: var(--pilot-primary);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(4px);
}

.smg-dialog-pilot-demo .clear-results-btn:hover {
    background: var(--pilot-gradient-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
    border-color: var(--pilot-primary);
}

/* Results Content - MINIMALES Padding */
.smg-dialog-pilot-demo .results-content {
    padding: 12px 16px 16px 16px; /* Von 16px 0 24px 0 auf 12px 16px 16px 16px */
    max-height: 600px;
    overflow-y: auto;
}

/* ULTRA-MODERNE Result Cards - REDUZIERTES Padding */
.smg-dialog-pilot-demo .result-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(248, 250, 252, 0.95) 100%) !important;
    backdrop-filter: blur(12px);
    border: none;
    border-radius: 20px !important;
    padding: 16px !important; /* Von 20px auf 16px */
    margin-bottom: 16px; /* Von 20px auf 16px */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: cardSlideIn 0.6s ease-out;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
}

.smg-dialog-pilot-demo .result-card-header {
    display: flex;
    align-items: center;
    gap: 12px; /* Von 16px auf 12px */
    margin-bottom: 16px; /* Von 20px auf 16px */
    position: relative;
}

.smg-dialog-pilot-demo .result-card-icon {
    width: 56px !important;
    height: 56px !important;
    background: var(--pilot-gradient-primary);
    border-radius: 16px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem !important;
    box-shadow: 
        0 8px 24px rgba(99, 102, 241, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: iconBounceIn 0.8s ease-out;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.smg-dialog-pilot-demo .result-card-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.smg-dialog-pilot-demo .result-card:hover .result-card-icon::before {
    transform: translateX(100%);
}

.smg-dialog-pilot-demo .result-card-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--pilot-dark);
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.smg-dialog-pilot-demo .result-card-content {
    display: grid;
    gap: 12px;
}

/* ULTRA-MODERNE Item Cards - Customer Journey Style */
.smg-dialog-pilot-demo .opening-hours-item,
.smg-dialog-pilot-demo .shop-item,
.smg-dialog-pilot-demo .event-item,
.smg-dialog-pilot-demo .service-item,
.smg-dialog-pilot-demo .room-item,
.smg-dialog-pilot-demo .emergency-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 250, 252, 0.98) 100%) !important;
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: none !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: itemSlideIn 0.5s ease-out;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    transform: translateY(0);
}

.smg-dialog-pilot-demo .opening-hours-item::before,
.smg-dialog-pilot-demo .shop-item::before,
.smg-dialog-pilot-demo .event-item::before,
.smg-dialog-pilot-demo .service-item::before,
.smg-dialog-pilot-demo .room-item::before,
.smg-dialog-pilot-demo .emergency-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--pilot-gradient-primary);
    border-radius: 2px 0 0 2px;
    opacity: 0.8;
    z-index: 1;
}

.smg-dialog-pilot-demo .opening-hours-item::after,
.smg-dialog-pilot-demo .shop-item::after,
.smg-dialog-pilot-demo .event-item::after,
.smg-dialog-pilot-demo .service-item::after,
.smg-dialog-pilot-demo .room-item::after,
.smg-dialog-pilot-demo .emergency-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--pilot-gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
    border-radius: 16px;
}

.smg-dialog-pilot-demo .opening-hours-item:hover,
.smg-dialog-pilot-demo .shop-item:hover,
.smg-dialog-pilot-demo .event-item:hover,
.smg-dialog-pilot-demo .service-item:hover,
.smg-dialog-pilot-demo .room-item:hover,
.smg-dialog-pilot-demo .emergency-item:hover {
    transform: translateY(-4px) translateX(0);
    box-shadow: 
        0 12px 32px rgba(99, 102, 241, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(248, 250, 252, 1) 100%) !important;
}

.smg-dialog-pilot-demo .opening-hours-item:hover::after,
.smg-dialog-pilot-demo .shop-item:hover::after,
.smg-dialog-pilot-demo .event-item:hover::after,
.smg-dialog-pilot-demo .service-item:hover::after,
.smg-dialog-pilot-demo .room-item:hover::after,
.smg-dialog-pilot-demo .emergency-item:hover::after {
    opacity: 0.03;
}

.smg-dialog-pilot-demo .item-info {
    flex: 1;
    z-index: 2;
    position: relative;
    padding-left: 16px;
}

.smg-dialog-pilot-demo .item-name,
.smg-dialog-pilot-demo .item-title {
    font-weight: 800;
    color: var(--pilot-dark);
    margin-bottom: 8px;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.smg-dialog-pilot-demo .item-details {
    font-size: 0.9rem;
    color: var(--pilot-dark);
    opacity: 0.7;
    font-weight: 500;
    transition: all 0.3s ease;
    line-height: 1.4;
}

/* MODERNE Status Badges */
.smg-dialog-pilot-demo .item-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 3;
    position: relative;
    padding: 8px 16px;
    border-radius: 24px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 100px;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.smg-dialog-pilot-demo .item-status i {
    font-size: 0.7rem;
    animation: statusPulse 2s ease-in-out infinite;
}

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

.smg-dialog-pilot-demo .status-open {
    color: #059669;
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.15) 0%, 
        rgba(5, 150, 105, 0.2) 100%);
    border-color: rgba(16, 185, 129, 0.3);
}

.smg-dialog-pilot-demo .status-open:hover {
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.25) 0%, 
        rgba(5, 150, 105, 0.3) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.2);
}

.smg-dialog-pilot-demo .status-closed {
    color: #dc2626;
    background: linear-gradient(135deg, 
        rgba(239, 68, 68, 0.15) 0%, 
        rgba(220, 38, 38, 0.2) 100%);
    border-color: rgba(239, 68, 68, 0.3);
}

.smg-dialog-pilot-demo .status-closed:hover {
    background: linear-gradient(135deg, 
        rgba(239, 68, 68, 0.25) 0%, 
        rgba(220, 38, 38, 0.3) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.2);
}

.smg-dialog-pilot-demo .status-available {
    color: #059669;
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.15) 0%, 
        rgba(5, 150, 105, 0.2) 100%);
    border-color: rgba(16, 185, 129, 0.3);
}

.smg-dialog-pilot-demo .status-available:hover {
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.25) 0%, 
        rgba(5, 150, 105, 0.3) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.2);
}

.smg-dialog-pilot-demo .status-unavailable {
    color: #dc2626;
    background: linear-gradient(135deg, 
        rgba(239, 68, 68, 0.15) 0%, 
        rgba(220, 38, 38, 0.2) 100%);
    border-color: rgba(239, 68, 68, 0.3);
}

.smg-dialog-pilot-demo .status-unavailable:hover {
    background: linear-gradient(135deg, 
        rgba(239, 68, 68, 0.25) 0%, 
        rgba(220, 38, 38, 0.3) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.2);
}

/* Card spezifische Anpassungen */
.smg-dialog-pilot-demo .opening-hours-item .item-name {
    display: flex;
    align-items: center;
    gap: 12px;
}

.smg-dialog-pilot-demo .opening-hours-item .item-name::before {
    content: "🏪";
    font-size: 1.2rem;
    filter: grayscale(0.3);
}

.smg-dialog-pilot-demo .shop-item .item-name::before {
    content: "🛍️";
    font-size: 1.2rem;
    margin-right: 8px;
}

.smg-dialog-pilot-demo .event-item .item-name::before {
    content: "🎪";
    font-size: 1.2rem;
    margin-right: 8px;
}

.smg-dialog-pilot-demo .service-item .item-name::before {
    content: "ℹ️";
    font-size: 1.2rem;
    margin-right: 8px;
}

.smg-dialog-pilot-demo .room-item .item-name::before {
    content: "🚪";
    font-size: 1.2rem;
    margin-right: 8px;
}

.smg-dialog-pilot-demo .emergency-item .item-name::before {
    content: "🚨";
    font-size: 1.2rem;
    margin-right: 8px;
}

/* Loading Animation - Verbessertes Design */
.pilot-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.loading-animation {
    text-align: center;
}

.loading-dots {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    justify-content: center;
}

.loading-dots span {
    width: 12px;
    height: 12px;
    background: var(--pilot-gradient-primary);
    border-radius: 50%;
    animation: loading-bounce 1.4s ease-in-out infinite both;
}

.loading-dots span:nth-child(1) { animation-delay: -0.32s; }
.loading-dots span:nth-child(2) { animation-delay: -0.16s; }
.loading-dots span:nth-child(3) { animation-delay: 0s; }

@keyframes loading-bounce {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.pilot-loading p {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--pilot-dark);
    margin: 0;
    opacity: 0.8;
}

/* Demo Disclaimer - NEU */
.pilot-demo-disclaimer {
    margin-top: 32px;
    padding: 20px 24px;
    background: rgba(245, 158, 11, 0.05);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 12px;
    position: relative;
    animation: fadeInUp 0.6s ease-out 1s both;
}

.pilot-demo-disclaimer::before {
    content: '💡';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 1.2rem;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    0% { text-shadow: 0 0 5px rgba(245, 158, 11, 0.5); }
    100% { text-shadow: 0 0 15px rgba(245, 158, 11, 0.8); }
}

.disclaimer-text {
    font-size: 0.9rem;
    color: var(--pilot-dark);
    margin: 0 0 0 32px;
    line-height: 1.6;
    opacity: 0.8;
}

.disclaimer-text strong {
    font-weight: 600;
    color: var(--pilot-accent);
}

/* Keyframes für Card Animationen */
@keyframes cardSlideIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes iconBounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) rotate(-10deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.1) rotate(5deg);
    }
    70% {
        transform: scale(0.95) rotate(-2deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes itemSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Force override für existierende Styles */
.smg-dialog-pilot-demo .result-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(248, 250, 252, 0.95) 100%) !important;
    border: none !important;
    border-radius: 20px !important;
    padding: 16px !important; /* Von 20px auf 16px */
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
}

.smg-dialog-pilot-demo .result-card-icon {
    width: 56px !important;
    height: 56px !important;
    border-radius: 16px !important;
    font-size: 1.4rem !important;
}

/* SPEZIELLE Restaurant/Shop Cards - Quadratisches Design */
.smg-dialog-pilot-demo .shop-item {
    display: block !important;
    padding: 0 !important;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 250, 252, 0.98) 100%) !important;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: none !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: itemSlideIn 0.5s ease-out;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
    transform: translateY(0);
    min-height: 140px;
}

.smg-dialog-pilot-demo .shop-item::before {
    display: none !important;
}

.smg-dialog-pilot-demo .shop-item::after {
    display: none !important;
}

.smg-dialog-pilot-demo .shop-item:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 16px 40px rgba(99, 102, 241, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(248, 250, 252, 1) 100%) !important;
}

.smg-dialog-pilot-demo .shop-item .item-info {
    padding: 24px !important;
    padding-left: 24px !important;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.smg-dialog-pilot-demo .shop-item .item-name {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    color: var(--pilot-dark);
    margin-bottom: 12px;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.smg-dialog-pilot-demo .shop-item .item-name::before {
    font-size: 1.8rem;
    margin-right: 0;
}

.smg-dialog-pilot-demo .shop-item .item-details {
    font-size: 0.9rem;
    color: var(--pilot-dark);
    opacity: 0.7;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 16px;
}

/* Restaurant Info Cards */
.smg-dialog-pilot-demo .shop-item .restaurant-info {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.smg-dialog-pilot-demo .shop-item .info-badge {
    background: rgba(99, 102, 241, 0.1);
    color: var(--pilot-primary);
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
}

.smg-dialog-pilot-demo .shop-item .info-badge:hover {
    background: var(--pilot-primary);
    color: white;
    transform: translateY(-1px);
}

.smg-dialog-pilot-demo .shop-item .price-range {
    background: linear-gradient(135deg, 
        rgba(245, 158, 11, 0.1) 0%, 
        rgba(251, 191, 36, 0.15) 100%);
    color: #d97706;
    font-weight: 700;
}

.smg-dialog-pilot-demo .shop-item .rating {
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.1) 0%, 
        rgba(5, 150, 105, 0.15) 100%);
    color: #059669;
    font-weight: 700;
}

.smg-dialog-pilot-demo .shop-item .cuisine-type {
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.1) 0%, 
        rgba(124, 58, 237, 0.15) 100%);
    color: #7c3aed;
    font-weight: 700;
}

/* Grid Layout für Restaurant Cards */
.smg-dialog-pilot-demo .result-card-content.restaurants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-top: 8px;
}

.smg-dialog-pilot-demo .result-card-content.restaurants-grid .shop-item {
    margin-bottom: 0;
}

/* Responsive Anpassungen für Restaurant Cards */
@media (max-width: 768px) {
    .smg-dialog-pilot-demo .result-card-content.restaurants-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .smg-dialog-pilot-demo .shop-item {
        min-height: 120px;
    }
    
    .smg-dialog-pilot-demo .shop-item .item-info {
        padding: 20px !important;
    }
}

/* Responsive Design - COMPLETE MOBILE OVERHAUL */
@media (max-width: 768px) {
    /* Demo Switcher - Kompakter */
    .dialog-pilot-demo-switcher {
        padding: 16px;
        border-radius: 16px;
        margin-bottom: 20px;
    }
    
    .switcher-header h3 {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }
    
    .switcher-header p {
        font-size: 0.85rem;
    }
    
    .switcher-tabs {
        padding: 4px;
        border-radius: 16px;
        gap: 2px;
        max-width: 100%;
    }
    
    .switcher-tab {
        padding: 10px 6px;
        min-height: 60px;
        border-radius: 12px;
    }
    
    .switcher-tab i {
        font-size: 1.1rem;
        margin-bottom: 2px;
    }
    
    .switcher-tab span {
        font-size: 0.65rem;
        line-height: 1.1;
    }
    
    /* Hauptcontainer - Weniger Padding */
    .smg-dialog-pilot-demo {
        padding: 16px;
        border-radius: 20px;
        margin: 16px 0;
    }
    
    /* Demo Header - Kompakter */
    .demo-header {
        margin-bottom: 24px;
    }
    
    .demo-title {
        font-size: 1.6rem !important;
        margin-bottom: 8px;
        line-height: 1.2;
    }
    
    .demo-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* Dialog Interface - Weniger Verschachtelung */
    .dialog-pilot-interface {
        padding: 16px;
        border-radius: 16px;
    }
    
    /* Input Section - Kompakter */
    .pilot-input-container {
        border-radius: 12px;
        border-width: 1px;
    }
    
    .pilot-input {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
    
    .pilot-voice-btn,
    .pilot-search-btn {
        width: 40px;
        height: 40px;
        margin: 4px;
        border-radius: 10px;
    }
    
    .pilot-voice-btn i,
    .pilot-search-btn i {
        font-size: 1rem;
    }
    
    /* Quick Suggestions - Kompakter */
    .pilot-quick-suggestions {
        margin-bottom: 20px;
    }
    
    .suggestions-label {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    .suggestions-scroll {
        max-height: 60px;
        gap: 6px;
    }
    
    .suggestion-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
        border-radius: 8px;
    }
    
    /* Results Section - Weniger Padding */
    .smg-dialog-pilot-demo .results-header {
        padding: 16px 20px;
        flex-direction: row;
        align-items: center;
    }
    
    .smg-dialog-pilot-demo .results-count {
        font-size: 0.85rem;
    }
    
    .smg-dialog-pilot-demo .clear-results-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .smg-dialog-pilot-demo .results-content {
        padding: 16px 20px 20px;
        max-height: 400px;
    }
    
    /* Natural Response - Kompakter */
    .pilot-natural-response {
        padding: 16px;
        margin-bottom: 16px;
        border-radius: 12px;
    }
    
    .natural-response-header {
        gap: 8px;
        margin-bottom: 12px;
    }
    
    .natural-response-icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        font-size: 0.9rem;
    }
    
    .natural-response-title {
        font-size: 0.95rem;
    }
    
    .natural-response-content {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    /* Result Cards - Viel kompakter */
    .smg-dialog-pilot-demo .result-card {
        padding: 16px !important;
        margin-bottom: 12px;
        border-radius: 16px !important;
    }
    
    .smg-dialog-pilot-demo .result-card-header {
        gap: 12px;
        margin-bottom: 16px;
    }
    
    .smg-dialog-pilot-demo .result-card-icon {
        width: 40px !important;
        height: 40px !important;
        border-radius: 12px !important;
        font-size: 1.1rem !important;
    }
    
    .smg-dialog-pilot-demo .result-card-title {
        font-size: 1.1rem;
        line-height: 1.2;
    }
    
    /* MOBILE-OPTIMIERTE Item Cards */
    
    /* Öffnungszeiten - Kompakter Stack */
    .smg-dialog-pilot-demo .opening-hours-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 16px;
        margin-bottom: 6px;
        min-height: auto;
    }
    
    .smg-dialog-pilot-demo .opening-hours-item .item-info {
        padding-left: 12px;
        margin-bottom: 8px;
        width: 100%;
    }
    
    .smg-dialog-pilot-demo .opening-hours-item .item-name {
        font-size: 0.9rem;
        margin-bottom: 2px;
    }
    
    .smg-dialog-pilot-demo .opening-hours-item .item-details {
        font-size: 0.8rem;
    }
    
    .smg-dialog-pilot-demo .opening-hours-item .item-status {
        padding: 4px 12px;
        font-size: 0.7rem;
        align-self: flex-end;
    }
    
    /* Events - Kompakter Block */
    .smg-dialog-pilot-demo .event-item {
        min-height: 80px;
        margin-bottom: 8px;
    }
    
    .smg-dialog-pilot-demo .event-item::after {
        font-size: 1.2rem;
        top: 12px;
        right: 12px;
    }
    
    .smg-dialog-pilot-demo .event-item .item-info {
        padding: 16px 16px 16px 20px !important;
    }
    
    .smg-dialog-pilot-demo .event-item .item-name {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }
    
    .smg-dialog-pilot-demo .event-item .item-details {
        font-size: 0.8rem;
    }
    
    /* Service - Kleinere Tiles */
    .smg-dialog-pilot-demo .service-item {
        min-height: 90px;
        padding: 16px 12px !important;
        margin-bottom: 8px;
    }
    
    .smg-dialog-pilot-demo .service-item .item-name {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }
    
    .smg-dialog-pilot-demo .service-item .item-name::before {
        font-size: 1.5rem;
    }
    
    .smg-dialog-pilot-demo .service-item .item-details {
        font-size: 0.75rem;
    }
    
    .smg-dialog-pilot-demo .result-card-content.service-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 8px;
    }
    
    /* Rooms - Stack Layout */
    .smg-dialog-pilot-demo .room-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 16px;
        margin-bottom: 6px;
    }
    
    .smg-dialog-pilot-demo .room-item .item-info {
        padding-left: 12px;
        margin-bottom: 8px;
        width: 100%;
    }
    
    .smg-dialog-pilot-demo .room-item .item-name {
        font-size: 0.9rem;
        margin-bottom: 2px;
    }
    
    .smg-dialog-pilot-demo .room-item .item-details {
        font-size: 0.8rem;
    }
    
    .smg-dialog-pilot-demo .room-item .item-status {
        padding: 4px 12px;
        font-size: 0.7rem;
        align-self: flex-end;
    }
    
    /* Emergency - Kompakter */
    .smg-dialog-pilot-demo .emergency-item {
        padding: 12px 16px;
        margin-bottom: 8px;
    }
    
    .smg-dialog-pilot-demo .emergency-item .item-info {
        padding-left: 12px;
    }
    
    .smg-dialog-pilot-demo .emergency-item .item-name {
        font-size: 0.95rem;
        margin-bottom: 4px;
    }
    
    .smg-dialog-pilot-demo .emergency-item .item-details {
        font-size: 0.8rem;
    }
    
    /* Restaurant Cards - Einspaltiges Layout */
    .smg-dialog-pilot-demo .result-card-content.restaurants-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .smg-dialog-pilot-demo .shop-item {
        min-height: 100px;
        margin-bottom: 0;
    }
    
    .smg-dialog-pilot-demo .shop-item .item-info {
        padding: 16px !important;
    }
    
    .smg-dialog-pilot-demo .shop-item .item-name {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .smg-dialog-pilot-demo .shop-item .item-name::before {
        font-size: 1.4rem;
    }
    
    .smg-dialog-pilot-demo .shop-item .item-details {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }
    
    .smg-dialog-pilot-demo .shop-item .restaurant-info {
        gap: 6px;
        margin-top: 8px;
    }
    
    .smg-dialog-pilot-demo .shop-item .info-badge {
        padding: 2px 8px;
        font-size: 0.7rem;
        border-radius: 12px;
    }
    
    /* Demo Disclaimer - Kompakter */
    .pilot-demo-disclaimer {
        padding: 12px 16px;
        border-radius: 8px;
        margin-top: 20px;
    }
    
    .disclaimer-text {
        margin-left: 24px;
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .pilot-demo-disclaimer::before {
        font-size: 1rem;
        top: 12px;
        left: 12px;
    }
    
    /* Loading Animation - Kompakter */
    .pilot-loading {
        padding: 32px 16px;
    }
    
    .loading-dots {
        margin-bottom: 16px;
    }
    
    .loading-dots span {
        width: 8px;
        height: 8px;
    }
    
    .pilot-loading p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    /* EXTRA KLEINE Screens - Maximale Platzeffizienz */
    
    /* Switcher - Vertikales Stack Layout */
    .dialog-pilot-demo-switcher {
        padding: 12px;
    }
    
    .switcher-header h3 {
        font-size: 1.2rem;
    }
    
    .switcher-header p {
        font-size: 0.8rem;
    }
    
    .switcher-tabs {
        flex-direction: column;
        gap: 4px;
        padding: 6px;
    }
    
    .switcher-tab {
        flex-direction: row;
        justify-content: center;
        min-height: auto;
        padding: 8px 12px;
    }
    
    .switcher-tab i {
        margin-right: 6px;
        margin-bottom: 0;
    }
    
    .switcher-tabs::after {
        display: none;
    }
    
    /* Hauptcontainer - Minimal Padding */
    .smg-dialog-pilot-demo {
        padding: 8px; /* Von 16px auf 8px */
        border-radius: 20px;
        margin: 12px 0; /* Von 16px auf 12px */
    }
    
    /* Demo Header - Kompakter */
    .demo-header {
        margin-bottom: 20px; /* Von 24px auf 20px */
    }
    
    .demo-title {
        font-size: 1.4rem !important; /* Von 1.6rem auf 1.4rem */
        margin-bottom: 8px;
        line-height: 1.2;
    }
    
    .demo-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* Dialog Interface - MINIMAL Padding */
    .dialog-pilot-interface {
        padding: 8px; /* Von 16px auf 8px */
        border-radius: 16px;
    }
    
    /* Input Section - Kompakt */
    .pilot-input-container {
        border-radius: 12px;
        border-width: 1px;
    }
    
    .pilot-input {
        padding: 10px 12px; /* Von 12px 16px auf 10px 12px */
        font-size: 0.95rem;
    }
    
    .pilot-voice-btn,
    .pilot-search-btn {
        width: 36px; /* Von 40px auf 36px */
        height: 36px;
        margin: 2px; /* Von 4px auf 2px */
        border-radius: 10px;
    }
    
    .pilot-voice-btn i,
    .pilot-search-btn i {
        font-size: 1rem;
    }
    
    /* Quick Suggestions - Kompakter */
    .pilot-quick-suggestions {
        margin-bottom: 12px; /* Von 20px auf 12px */
    }
    
    .suggestions-label {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    .suggestions-scroll {
        max-height: 60px;
        gap: 6px;
    }
    
    .suggestion-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
        border-radius: 8px;
    }
    
    /* Results Section - MINIMAL Padding */
    .smg-dialog-pilot-demo .results-header {
        padding: 12px 16px; /* Von 16px 20px auf 12px 16px */
        flex-direction: row;
        align-items: center;
    }
    
    .smg-dialog-pilot-demo .results-count {
        font-size: 0.85rem;
    }
    
    .smg-dialog-pilot-demo .clear-results-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .smg-dialog-pilot-demo .results-content {
        padding: 8px 12px 12px 12px; /* Von 16px 20px 20px auf 8px 12px 12px 12px */
        max-height: 400px;
    }
    
    /* Natural Response - MINIMAL */
    .pilot-natural-response {
        padding: 12px; /* Von 16px auf 12px */
        margin-bottom: 12px; /* Von 16px auf 12px */
        border-radius: 12px;
    }
    
    .natural-response-header {
        gap: 6px; /* Von 8px auf 6px */
        margin-bottom: 8px; /* Von 12px auf 8px */
    }
    
    .natural-response-icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        font-size: 0.9rem;
    }
    
    .natural-response-title {
        font-size: 0.95rem;
    }
    
    .natural-response-content {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    /* Result Cards - ULTRA kompakt */
    .smg-dialog-pilot-demo .result-card {
        padding: 12px !important; /* Von 16px auf 12px */
        margin-bottom: 8px; /* Von 12px auf 8px */
        border-radius: 16px !important;
    }
    
    .smg-dialog-pilot-demo .result-card-header {
        gap: 8px; /* Von 12px auf 8px */
        margin-bottom: 12px; /* Von 16px auf 12px */
    }
    
    .smg-dialog-pilot-demo .result-card-icon {
        width: 36px !important; /* Von 40px auf 36px */
        height: 36px !important;
        border-radius: 12px !important;
        font-size: 1rem !important; /* Von 1.1rem auf 1rem */
    }
    
    .smg-dialog-pilot-demo .result-card-title {
        font-size: 1rem; /* Von 1.1rem auf 1rem */
        line-height: 1.2;
    }
} /* CSS Version Update Do 29 Mai 2025 10:45:12 CEST */

/* ===== ÖFFNUNGSZEITEN - Moderne Badge Cards ===== */
.smg-dialog-pilot-demo .opening-hours-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 250, 252, 0.98) 100%) !important;
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(99, 102, 241, 0.15) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-bottom: 8px;
    box-shadow: 
        0 2px 12px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    min-height: auto;
}

.smg-dialog-pilot-demo .opening-hours-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--pilot-gradient-primary);
    border-radius: 2px 0 0 2px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.smg-dialog-pilot-demo .opening-hours-item::after {
    display: none !important;
}

.smg-dialog-pilot-demo .opening-hours-item:hover {
    transform: translateY(-2px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 
        0 8px 24px rgba(99, 102, 241, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.smg-dialog-pilot-demo .opening-hours-item:hover::before {
    opacity: 1;
    width: 5px;
}

.smg-dialog-pilot-demo .opening-hours-item .item-info {
    padding-left: 12px;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.smg-dialog-pilot-demo .opening-hours-item .item-name {
    color: var(--pilot-dark) !important;
    font-weight: 700;
    font-size: 0.95rem;
    margin: 0;
    min-width: 80px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.smg-dialog-pilot-demo .opening-hours-item .item-name::before {
    content: "🏪";
    font-size: 1rem;
    animation: none;
    filter: none;
}

.smg-dialog-pilot-demo .opening-hours-item .item-details {
    color: var(--pilot-dark) !important;
    opacity: 0.7;
    font-size: 0.85rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 500;
    margin: 0;
    flex: 1;
}

/* Moderne Status Badges für Öffnungszeiten */
.smg-dialog-pilot-demo .opening-hours-item .item-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 16px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-transform: capitalize;
    letter-spacing: 0.3px;
    min-width: 80px;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.smg-dialog-pilot-demo .opening-hours-item .item-status::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: currentColor;
    opacity: 0.08;
    transition: opacity 0.3s ease;
}

.smg-dialog-pilot-demo .opening-hours-item .item-status:hover::before {
    opacity: 0.15;
}

.smg-dialog-pilot-demo .opening-hours-item .item-status i {
    font-size: 0.6rem;
    position: relative;
    z-index: 2;
}

.smg-dialog-pilot-demo .opening-hours-item .item-status span {
    position: relative;
    z-index: 2;
}

.smg-dialog-pilot-demo .status-open {
    color: #059669;
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.12) 0%, 
        rgba(5, 150, 105, 0.15) 100%);
    border-color: rgba(16, 185, 129, 0.25);
}

.smg-dialog-pilot-demo .status-open:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.18) 0%, 
        rgba(5, 150, 105, 0.22) 100%);
}

.smg-dialog-pilot-demo .status-closed {
    color: #dc2626;
    background: linear-gradient(135deg, 
        rgba(239, 68, 68, 0.12) 0%, 
        rgba(220, 38, 38, 0.15) 100%);
    border-color: rgba(239, 68, 68, 0.25);
}

.smg-dialog-pilot-demo .status-closed:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
    background: linear-gradient(135deg, 
        rgba(239, 68, 68, 0.18) 0%, 
        rgba(220, 38, 38, 0.22) 100%);
}

/* Compact Grid Layout für Öffnungszeiten */
.smg-dialog-pilot-demo .result-card-content.opening-hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 6px;
    margin-top: 8px;
}

/* Live Time Indicator */
.smg-dialog-pilot-demo .opening-hours-item.live-time::before {
    animation: liveIndicator 2s ease-in-out infinite;
}

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

/* Special styling für aktuell geöffnete Shops */
.smg-dialog-pilot-demo .opening-hours-item.status-open {
    border-color: rgba(16, 185, 129, 0.2);
}

.smg-dialog-pilot-demo .opening-hours-item.status-open::before {
    background: linear-gradient(180deg, #10b981 0%, #059669 100%);
}

.smg-dialog-pilot-demo .opening-hours-item.status-closed {
    opacity: 0.8;
}

.smg-dialog-pilot-demo .opening-hours-item.status-closed::before {
    background: linear-gradient(180deg, #ef4444 0%, #dc2626 100%);
}

/* ===== EVENTS - Moderne Gradient Cards ===== */
.smg-dialog-pilot-demo .event-item {
    display: block !important;
    padding: 0 !important;
    background: linear-gradient(135deg, 
        #667eea 0%, 
        #764ba2 25%, 
        #f093fb 50%, 
        #f5576c 75%, 
        #4facfe 100%) !important;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: none !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 
        0 8px 32px rgba(102, 126, 234, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    min-height: 220px;
    transform: translateY(0);
}

.smg-dialog-pilot-demo .event-item::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: eventOrb 6s ease-in-out infinite;
    z-index: 1;
}

@keyframes eventOrb {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    33% { 
        transform: translate(-10px, 10px) scale(1.1);
        opacity: 0.6;
    }
    66% { 
        transform: translate(5px, -5px) scale(0.9);
        opacity: 0.4;
    }
}

.smg-dialog-pilot-demo .event-item::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 50%;
    animation: eventOrbSecond 8s ease-in-out infinite reverse;
    z-index: 1;
}

@keyframes eventOrbSecond {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.2;
    }
    50% { 
        transform: translate(15px, -15px) rotate(180deg);
        opacity: 0.5;
    }
}

.smg-dialog-pilot-demo .event-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 48px rgba(102, 126, 234, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.smg-dialog-pilot-demo .event-item .item-info {
    padding: 24px !important;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 3;
    justify-content: space-between;
    min-height: 220px;
}

.smg-dialog-pilot-demo .event-item .item-name {
    color: white !important;
    font-weight: 600; /* Von 800 auf 600 reduziert */
    font-size: 1.3rem;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    margin-top: 16px; /* Mehr Platz für Datum schaffen */
    /* Text-Umbruch für Titel */
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: calc(100% - 60px); /* Platz für Icon lassen */
}

.smg-dialog-pilot-demo .event-item .item-name::before {
    content: "";
    margin-right: 0;
    font-size: 0;
}

/* Event Type Icons - repositioniert */
.smg-dialog-pilot-demo .event-item .item-name::after {
    content: "🎵";
    position: absolute;
    top: -4px;
    right: 0;
    font-size: 1.8rem;
    opacity: 0.7;
    animation: eventIconFloat 3s ease-in-out infinite;
}

@keyframes eventIconFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
        opacity: 0.7;
    }
    50% { 
        transform: translateY(-3px) rotate(8deg);
        opacity: 0.9;
    }
}

/* Dynamic Icons based on event type */
.smg-dialog-pilot-demo .event-item[data-event-type="music"] .item-name::after {
    content: "🎵";
}

.smg-dialog-pilot-demo .event-item[data-event-type="fashion"] .item-name::after {
    content: "👗";
}

.smg-dialog-pilot-demo .event-item[data-event-type="kids"] .item-name::after {
    content: "🎨";
}

.smg-dialog-pilot-demo .event-item[data-event-type="food"] .item-name::after {
    content: "🍽️";
}

/* Event Description - NEU */
.smg-dialog-pilot-demo .event-item .event-description {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.5;
    margin: 12px 0 16px 0;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    flex: 1;
    /* Text-Umbruch-Kontrolle */
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
    white-space: normal;
    overflow: hidden;
}

.smg-dialog-pilot-demo .event-item .item-details {
    color: rgba(255, 255, 255, 0.95) !important;
    opacity: 1;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.smg-dialog-pilot-demo .event-item .item-details::before {
    content: "🕒";
    font-size: 0.8rem;
}

/* Event Date Badge - repositioniert */
.smg-dialog-pilot-demo .event-item .event-date {
    position: absolute;
    top: 12px;
    left: 16px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--pilot-dark);
    padding: 6px 10px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 4;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    min-width: 60px;
    text-align: center;
}

/* Geometric Shapes */
.smg-dialog-pilot-demo .event-item .geometric-shape {
    position: absolute;
    z-index: 2;
}

.smg-dialog-pilot-demo .event-item .shape-triangle {
    top: 60px;
    right: 30px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 16px solid rgba(255, 255, 255, 0.08);
    animation: shapeRotate 4s linear infinite;
}

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

.smg-dialog-pilot-demo .event-item .shape-circle {
    bottom: 70px;
    right: 20px;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    animation: shapePulse 2s ease-in-out infinite;
}

@keyframes shapePulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.5); opacity: 0.6; }
}

/* Grid Layout für Events */
.smg-dialog-pilot-demo .result-card-content.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 16px;
    margin-top: 8px;
}

/* Verschiedene Gradient-Varianten für verschiedene Events */
.smg-dialog-pilot-demo .event-item:nth-child(1) {
    background: linear-gradient(135deg, 
        #667eea 0%, 
        #764ba2 50%, 
        #f093fb 100%) !important;
}

.smg-dialog-pilot-demo .event-item:nth-child(2) {
    background: linear-gradient(135deg, 
        #f093fb 0%, 
        #f5576c 50%, 
        #4facfe 100%) !important;
}

.smg-dialog-pilot-demo .event-item:nth-child(3) {
    background: linear-gradient(135deg, 
        #4facfe 0%, 
        #00f2fe 50%, 
        #667eea 100%) !important;
}

.smg-dialog-pilot-demo .event-item:nth-child(4) {
    background: linear-gradient(135deg, 
        #f5576c 0%, 
        #f093fb 50%, 
        #764ba2 100%) !important;
}

/* ===== UNIVERSAL SLIDER LAYOUT ===== */
.smg-dialog-pilot-demo .result-card-content.opening-hours-slider,
.smg-dialog-pilot-demo .result-card-content.events-slider,
.smg-dialog-pilot-demo .result-card-content.restaurants-slider,
.smg-dialog-pilot-demo .result-card-content.service-slider,
.smg-dialog-pilot-demo .result-card-content.rooms-slider,
.smg-dialog-pilot-demo .result-card-content.emergency-slider {
    position: relative;
    overflow: visible;
    margin-top: 4px; /* Von 8px auf 4px */
    padding: 0 40px 0 40px; /* Von 50px auf 40px */
    width: auto;
}

.smg-dialog-pilot-demo .slider-wrapper {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 12px 0 16px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
}

.smg-dialog-pilot-demo .slider-wrapper::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

/* Slider Navigation - Bessere Positionierung */
.smg-dialog-pilot-demo .slider-nav {
    position: absolute;
    top: 60px; /* Zentriert in Card-Höhe */
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(99, 102, 241, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 15;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    opacity: 0.8;
    visibility: visible;
}

.smg-dialog-pilot-demo .result-card-content:hover .slider-nav {
    opacity: 1;
    visibility: visible;
}

.smg-dialog-pilot-demo .slider-nav:hover {
    background: var(--pilot-primary);
    color: white;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 24px rgba(99, 102, 241, 0.4);
    border-color: var(--pilot-primary);
}

.smg-dialog-pilot-demo .slider-nav.prev {
    left: 8px;
}

.smg-dialog-pilot-demo .slider-nav.next {
    right: 8px;
}

.smg-dialog-pilot-demo .slider-nav i {
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.smg-dialog-pilot-demo .slider-nav:hover i {
    transform: scale(1.1);
}

.smg-dialog-pilot-demo .slider-nav:active {
    transform: translateY(-50%) scale(0.95);
}

/* Slider Progress Indicator */
.smg-dialog-pilot-demo .slider-progress {
    height: 3px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 2px;
    margin-top: 12px;
    overflow: hidden;
    position: relative;
}

.smg-dialog-pilot-demo .slider-progress-bar {
    height: 100%;
    background: var(--pilot-gradient-primary);
    border-radius: 2px;
    transition: width 0.3s ease;
    width: 30%;
}

/* ===== ÖFFNUNGSZEITEN SLIDER ===== */
.smg-dialog-pilot-demo .result-card-content.opening-hours-slider .slider-wrapper {
    gap: 16px;
}

.smg-dialog-pilot-demo .result-card-content.opening-hours-slider .opening-hours-item {
    min-width: 320px;
    flex-shrink: 0;
    margin-bottom: 0;
    min-height: 110px;
}

/* ===== EVENTS SLIDER ===== */
.smg-dialog-pilot-demo .result-card-content.events-slider .slider-wrapper {
    gap: 24px;
}

.smg-dialog-pilot-demo .result-card-content.events-slider .event-item {
    min-width: 400px;
    max-width: 400px; /* Feste maximale Breite */
    flex-shrink: 0;
    margin-bottom: 0;
    min-height: 220px;
    width: 400px; /* Explizite Breite */
}

/* Events Slider Navigation - Spezifische Positionierung */
.smg-dialog-pilot-demo .result-card-content.events-slider .slider-nav {
    top: 110px; /* Mitte der 220px hohen Event-Cards */
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    z-index: 20; /* Höher als Event-Card Elemente */
}

/* ===== RESTAURANTS SLIDER ===== */
.smg-dialog-pilot-demo .result-card-content.restaurants-slider .slider-wrapper {
    gap: 20px;
}

.smg-dialog-pilot-demo .result-card-content.restaurants-slider .shop-item {
    min-width: 350px;
    flex-shrink: 0;
    margin-bottom: 0;
    min-height: 220px;
}

/* ===== SERVICE SLIDER ===== */
.smg-dialog-pilot-demo .result-card-content.service-slider .slider-wrapper {
    gap: 16px;
}

.smg-dialog-pilot-demo .result-card-content.service-slider .service-item {
    min-width: 200px;
    flex-shrink: 0;
    margin-bottom: 0;
    min-height: 180px;
}

/* ===== ROOMS SLIDER ===== */
.smg-dialog-pilot-demo .result-card-content.rooms-slider .slider-wrapper {
    gap: 16px;
}

.smg-dialog-pilot-demo .result-card-content.rooms-slider .room-item {
    min-width: 320px;
    flex-shrink: 0;
    margin-bottom: 0;
    min-height: 120px;
}

/* ===== EMERGENCY SLIDER ===== */
.smg-dialog-pilot-demo .result-card-content.emergency-slider .slider-wrapper {
    gap: 20px;
}

.smg-dialog-pilot-demo .result-card-content.emergency-slider .emergency-item {
    min-width: 360px;
    flex-shrink: 0;
    margin-bottom: 0;
    min-height: 140px;
}

/* ===== SCHRIFT GEWICHTE REDUZIEREN ===== */

/* Result Card Titles - von 800 auf 600 */
.smg-dialog-pilot-demo .result-card-title {
    font-weight: 600 !important;
    letter-spacing: -0.01em;
}

/* Item Names - von 800/700 auf 600 */
.smg-dialog-pilot-demo .opening-hours-item .item-name,
.smg-dialog-pilot-demo .shop-item .item-name,
.smg-dialog-pilot-demo .event-item .item-name,
.smg-dialog-pilot-demo .service-item .item-name,
.smg-dialog-pilot-demo .room-item .item-name,
.smg-dialog-pilot-demo .emergency-item .item-name {
    font-weight: 600 !important;
}

/* Demo Title - von 800 auf 700 */
.demo-title {
    font-weight: 700 !important;
}

/* Natural Response Title - von 600 auf 500 */
.natural-response-title {
    font-weight: 500 !important;
}

/* Status Badges - von 600/700 auf 500 */
.smg-dialog-pilot-demo .opening-hours-item .item-status,
.smg-dialog-pilot-demo .room-item .item-status {
    font-weight: 500 !important;
}

/* Info Badges - von 600/700 auf 500 */
.smg-dialog-pilot-demo .shop-item .info-badge {
    font-weight: 500 !important;
}

/* Mobile Optimierungen für Slider */
@media (max-width: 768px) {
    .smg-dialog-pilot-demo .result-card-content.opening-hours-slider,
    .smg-dialog-pilot-demo .result-card-content.events-slider,
    .smg-dialog-pilot-demo .result-card-content.restaurants-slider,
    .smg-dialog-pilot-demo .result-card-content.service-slider,
    .smg-dialog-pilot-demo .result-card-content.rooms-slider,
    .smg-dialog-pilot-demo .result-card-content.emergency-slider {
        padding: 0 40px 0 40px; /* Weniger Platz auf Mobile */
    }
    
    .smg-dialog-pilot-demo .slider-nav {
        width: 36px;
        height: 36px;
        opacity: 1;
        visibility: visible;
        top: 50px; /* Angepasst für Mobile */
    }
    
    .smg-dialog-pilot-demo .slider-nav.prev {
        left: 4px;
    }
    
    .smg-dialog-pilot-demo .slider-nav.next {
        right: 4px;
    }
    
    .smg-dialog-pilot-demo .slider-nav i {
        font-size: 0.8rem;
    }
    
    /* Größere Cards auch auf Mobile durch reduzierten Container-Padding */
    .smg-dialog-pilot-demo .result-card-content.events-slider .event-item {
        min-width: 320px;
        min-height: 220px;
    }
    
    .smg-dialog-pilot-demo .result-card-content.restaurants-slider .shop-item {
        min-width: 300px;
        min-height: 180px;
    }
    
    .smg-dialog-pilot-demo .result-card-content.opening-hours-slider .opening-hours-item {
        min-width: 280px;
        min-height: 95px;
    }
    
    .smg-dialog-pilot-demo .result-card-content.service-slider .service-item {
        min-width: 160px;
        min-height: 150px;
    }
    
    .smg-dialog-pilot-demo .result-card-content.rooms-slider .room-item {
        min-width: 280px;
        min-height: 100px;
    }
    
    .smg-dialog-pilot-demo .result-card-content.emergency-slider .emergency-item {
        min-width: 320px;
        min-height: 120px;
    }
}

@media (max-width: 480px) {
    .smg-dialog-pilot-demo .result-card-content.opening-hours-slider,
    .smg-dialog-pilot-demo .result-card-content.events-slider,
    .smg-dialog-pilot-demo .result-card-content.restaurants-slider,
    .smg-dialog-pilot-demo .result-card-content.service-slider,
    .smg-dialog-pilot-demo .result-card-content.rooms-slider,
    .smg-dialog-pilot-demo .result-card-content.emergency-slider {
        padding: 0 32px 0 32px; /* Noch weniger Platz */
    }
    
    .smg-dialog-pilot-demo .slider-nav {
        width: 32px;
        height: 32px;
        top: 45px; /* Weitere Anpassung */
    }
    
    .smg-dialog-pilot-demo .slider-nav.prev {
        left: 2px;
    }
    
    .smg-dialog-pilot-demo .slider-nav.next {
        right: 2px;
    }
    
    /* Kompaktere Cards für sehr kleine Screens */
    .smg-dialog-pilot-demo .result-card-content.events-slider .event-item {
        min-width: 280px;
        min-height: 200px;
    }
    
    .smg-dialog-pilot-demo .result-card-content.restaurants-slider .shop-item {
        min-width: 260px;
        min-height: 160px;
    }
    
    .smg-dialog-pilot-demo .result-card-content.opening-hours-slider .opening-hours-item {
        min-width: 240px;
        min-height: 85px;
    }
    
    .smg-dialog-pilot-demo .result-card-content.service-slider .service-item {
        min-width: 140px;
        min-height: 130px;
    }
    
    .smg-dialog-pilot-demo .result-card-content.rooms-slider .room-item {
        min-width: 240px;
        min-height: 90px;
    }
    
    .smg-dialog-pilot-demo .result-card-content.emergency-slider .emergency-item {
        min-width: 280px;
        min-height: 110px;
    }
}

/* Touch-friendly scrolling */
.smg-dialog-pilot-demo .slider-wrapper {
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}

.smg-dialog-pilot-demo .slider-wrapper > * {
    scroll-snap-align: start;
}

/* === OPTIMIERTE VERSCHACHTELUNG FÜR MAXIMALEN PLATZ === 
 * Reduzierte Paddings und Margins für bessere Raumnutzung
 * Deutlich größere Cards durch optimierte Container-Struktur
 * Version: 2025-01-15 Space Optimization Update
 */

/* MOBILE FULL-WIDTH BREAKOUT */
@media (max-width: 768px) {
    /* Demo Switcher - FULL WIDTH */
    .dialog-pilot-demo-switcher {
        padding: 12px 16px; /* Innen-Padding für Lesbarkeit */
        border-radius: 0; /* Keine Rundungen an den Seiten */
        margin-bottom: 16px;
        margin-left: -50vw;
        margin-right: -50vw;
        left: 50%;
        right: 50%;
        position: relative;
        width: 100vw;
        max-width: 100vw;
        box-sizing: border-box;
    }
    
    /* Hauptcontainer - FULL WIDTH */
    .smg-dialog-pilot-demo {
        padding: 8px 16px; /* Innen-Padding beibehalten */
        border-radius: 0; /* Keine Rundungen an den Seiten */
        margin: 0;
        margin-left: -50vw;
        margin-right: -50vw;
        left: 50%;
        right: 50%;
        position: relative;
        width: 100vw;
        max-width: 100vw;
        box-sizing: border-box;
    }
    
    /* Demo Switcher - Ultra-kompakt */
    .switcher-header h3 {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }
    
    .switcher-header p {
        font-size: 0.85rem;
    }
    
    .switcher-tabs {
        padding: 4px;
        border-radius: 16px;
        gap: 2px;
        max-width: 100%;
    }
    
    .switcher-tab {
        padding: 10px 6px;
        min-height: 60px;
        border-radius: 12px;
    }
    
    .switcher-tab i {
        font-size: 1.1rem;
        margin-bottom: 2px;
    }
    
    .switcher-tab span {
        font-size: 0.65rem;
        line-height: 1.1;
    }
    
    /* Demo Header - Kompakter */
    .demo-header {
        margin-bottom: 20px;
    }
    
    .demo-title {
        font-size: 1.4rem !important;
        margin-bottom: 8px;
        line-height: 1.2;
    }
    
    .demo-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* Dialog Interface - MINIMAL Padding */
    .dialog-pilot-interface {
        padding: 8px;
        border-radius: 16px;
        margin: 0 -8px; /* Negative Margin um das Container-Padding auszugleichen */
        width: calc(100% + 16px);
    }
    
    /* Input Section - Kompakt */
    .pilot-input-container {
        border-radius: 12px;
        border-width: 1px;
    }
    
    .pilot-input {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
    
    .pilot-voice-btn,
    .pilot-search-btn {
        width: 36px;
        height: 36px;
        margin: 2px;
        border-radius: 10px;
    }
    
    .pilot-voice-btn i,
    .pilot-search-btn i {
        font-size: 1rem;
    }
    
    /* Quick Suggestions - Kompakter */
    .pilot-quick-suggestions {
        margin-bottom: 12px;
    }
    
    .suggestions-label {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    .suggestions-scroll {
        max-height: 60px;
        gap: 6px;
    }
    
    .suggestion-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
        border-radius: 8px;
    }
    
    /* Results Section - FULL WIDTH */
    .smg-dialog-pilot-demo .pilot-results {
        margin: 0 -8px; /* Negative Margin um Container-Padding auszugleichen */
        width: calc(100% + 16px);
        border-radius: 16px;
    }
    
    .smg-dialog-pilot-demo .results-header {
        padding: 12px 16px;
        flex-direction: row;
        align-items: center;
    }
    
    .smg-dialog-pilot-demo .results-count {
        font-size: 0.85rem;
    }
    
    .smg-dialog-pilot-demo .clear-results-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .smg-dialog-pilot-demo .results-content {
        padding: 8px 16px 12px 16px; /* Seitliches Padding für Lesbarkeit */
        max-height: 400px;
    }
    
    /* Natural Response - FULL WIDTH */
    .pilot-natural-response {
        padding: 12px 16px; /* Seitliches Padding für Lesbarkeit */
        margin: 0 -8px 12px -8px; /* Negative Margin */
        width: calc(100% + 16px);
        border-radius: 12px;
    }
    
    .natural-response-header {
        gap: 6px;
        margin-bottom: 8px;
    }
    
    .natural-response-icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        font-size: 0.9rem;
    }
    
    .natural-response-title {
        font-size: 0.95rem;
    }
    
    .natural-response-content {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    /* Result Cards - ULTRA kompakt */
    .smg-dialog-pilot-demo .result-card {
        padding: 12px !important;
        margin-bottom: 8px;
        border-radius: 16px !important;
    }
    
    .smg-dialog-pilot-demo .result-card-header {
        gap: 8px;
        margin-bottom: 12px;
    }
    
    .smg-dialog-pilot-demo .result-card-icon {
        width: 36px !important;
        height: 36px !important;
        border-radius: 12px !important;
        font-size: 1rem !important;
    }
    
    .smg-dialog-pilot-demo .result-card-title {
        font-size: 1rem;
        line-height: 1.2;
    }
    
    /* Slider Layout - DEUTLICH kompakter */
    .smg-dialog-pilot-demo .result-card-content.opening-hours-slider,
    .smg-dialog-pilot-demo .result-card-content.events-slider,
    .smg-dialog-pilot-demo .result-card-content.restaurants-slider,
    .smg-dialog-pilot-demo .result-card-content.service-slider,
    .smg-dialog-pilot-demo .result-card-content.rooms-slider,
    .smg-dialog-pilot-demo .result-card-content.emergency-slider {
        padding: 0 30px 0 30px;
        margin-top: 2px;
    }
    
    .smg-dialog-pilot-demo .slider-nav {
        width: 32px;
        height: 32px;
        opacity: 1;
        visibility: visible;
        top: 40px;
    }
    
    .smg-dialog-pilot-demo .slider-nav.prev {
        left: 2px;
    }
    
    .smg-dialog-pilot-demo .slider-nav.next {
        right: 2px;
    }
    
    .smg-dialog-pilot-demo .slider-nav i {
        font-size: 0.7rem;
    }
    
    /* Events, Service, Restaurants etc. - Mobile Optimierung */
    .smg-dialog-pilot-demo .event-item {
        min-height: 80px;
        margin-bottom: 8px;
    }
    
    .smg-dialog-pilot-demo .event-item .item-info {
        padding: 16px 16px 16px 20px !important;
    }
    
    .smg-dialog-pilot-demo .event-item .item-name {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }
    
    .smg-dialog-pilot-demo .event-item .item-details {
        font-size: 0.8rem;
    }
    
    .smg-dialog-pilot-demo .service-item {
        min-height: 90px;
        padding: 16px 12px !important;
        margin-bottom: 8px;
    }
    
    .smg-dialog-pilot-demo .service-item .item-name {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }
    
    .smg-dialog-pilot-demo .service-item .item-name::before {
        font-size: 1.5rem;
    }
    
    .smg-dialog-pilot-demo .service-item .item-details {
        font-size: 0.75rem;
    }
    
    .smg-dialog-pilot-demo .shop-item {
        min-height: 100px;
        margin-bottom: 0;
    }
    
    .smg-dialog-pilot-demo .shop-item .item-info {
        padding: 16px !important;
    }
    
    .smg-dialog-pilot-demo .shop-item .item-name {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .smg-dialog-pilot-demo .shop-item .item-name::before {
        font-size: 1.4rem;
    }
    
    .smg-dialog-pilot-demo .shop-item .item-details {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }
    
    .smg-dialog-pilot-demo .shop-item .restaurant-info {
        gap: 6px;
        margin-top: 8px;
    }
    
    .smg-dialog-pilot-demo .shop-item .info-badge {
        padding: 2px 8px;
        font-size: 0.7rem;
        border-radius: 12px;
    }
    
    /* Demo Disclaimer - FULL WIDTH */
    .pilot-demo-disclaimer {
        padding: 12px 16px;
        border-radius: 8px;
        margin: 20px -8px 0 -8px; /* Negative Margin */
        width: calc(100% + 16px);
    }
    
    .disclaimer-text {
        margin-left: 24px;
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .pilot-demo-disclaimer::before {
        font-size: 1rem;
        top: 12px;
        left: 12px;
    }
    
    /* Loading Animation - Kompakter */
    .pilot-loading {
        padding: 32px 16px;
    }
    
    .loading-dots {
        margin-bottom: 16px;
    }
    
    .loading-dots span {
        width: 8px;
        height: 8px;
    }
    
    .pilot-loading p {
        font-size: 0.9rem;
    }
}

/* ===== ÖFFNUNGSZEITEN - KOMPAKTE VERTIKALE LISTE ===== */
.smg-dialog-pilot-demo .result-card-content.opening-hours-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 8px;
    padding: 0;
}

.smg-dialog-pilot-demo .result-card-content.opening-hours-list .opening-hours-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.6) 0%, 
        rgba(248, 250, 252, 0.8) 100%) !important;
    backdrop-filter: blur(8px);
    border-radius: 12px;
    border: 1px solid rgba(99, 102, 241, 0.1) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    min-height: auto;
    height: 52px;
}

.smg-dialog-pilot-demo .result-card-content.opening-hours-list .opening-hours-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--pilot-gradient-primary);
    border-radius: 2px 0 0 2px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.smg-dialog-pilot-demo .result-card-content.opening-hours-list .opening-hours-item:hover {
    transform: translateX(4px);
    border-color: rgba(99, 102, 241, 0.25);
    box-shadow: 
        0 4px 16px rgba(99, 102, 241, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(248, 250, 252, 0.95) 100%) !important;
}

.smg-dialog-pilot-demo .result-card-content.opening-hours-list .opening-hours-item:hover::before {
    opacity: 1;
    width: 4px;
}

.smg-dialog-pilot-demo .result-card-content.opening-hours-list .opening-hours-item .item-info {
    padding-left: 12px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.smg-dialog-pilot-demo .result-card-content.opening-hours-list .opening-hours-item .item-name {
    color: var(--pilot-dark) !important;
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0;
    min-width: 90px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.smg-dialog-pilot-demo .result-card-content.opening-hours-list .opening-hours-item .item-name::before {
    content: "🏪";
    font-size: 0.9rem;
    animation: none;
    filter: none;
}

.smg-dialog-pilot-demo .result-card-content.opening-hours-list .opening-hours-item .item-details {
    color: var(--pilot-dark) !important;
    opacity: 0.7;
    font-size: 0.85rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, monospace;
    font-weight: 500;
    margin: 0;
    flex: 1;
    text-align: center;
    letter-spacing: 0.3px;
}

.smg-dialog-pilot-demo .result-card-content.opening-hours-list .opening-hours-item .item-status {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 12px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-transform: capitalize;
    letter-spacing: 0.2px;
    min-width: 70px;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.smg-dialog-pilot-demo .result-card-content.opening-hours-list .opening-hours-item .item-status::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: currentColor;
    opacity: 0.08;
    transition: opacity 0.3s ease;
}

.smg-dialog-pilot-demo .result-card-content.opening-hours-list .opening-hours-item .item-status:hover::before {
    opacity: 0.15;
}

.smg-dialog-pilot-demo .result-card-content.opening-hours-list .opening-hours-item .item-status i {
    font-size: 0.5rem;
    position: relative;
    z-index: 2;
}

.smg-dialog-pilot-demo .result-card-content.opening-hours-list .opening-hours-item .item-status span {
    position: relative;
    z-index: 2;
}

/* Kompakte Status Badges für Liste */
.smg-dialog-pilot-demo .result-card-content.opening-hours-list .status-open {
    color: #059669;
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.1) 0%, 
        rgba(5, 150, 105, 0.12) 100%);
    border-color: rgba(16, 185, 129, 0.2);
}

.smg-dialog-pilot-demo .result-card-content.opening-hours-list .status-open:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(16, 185, 129, 0.15);
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.15) 0%, 
        rgba(5, 150, 105, 0.18) 100%);
}

.smg-dialog-pilot-demo .result-card-content.opening-hours-list .status-closed {
    color: #dc2626;
    background: linear-gradient(135deg, 
        rgba(239, 68, 68, 0.1) 0%, 
        rgba(220, 38, 38, 0.12) 100%);
    border-color: rgba(239, 68, 68, 0.2);
}

.smg-dialog-pilot-demo .result-card-content.opening-hours-list .status-closed:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(239, 68, 68, 0.15);
    background: linear-gradient(135deg, 
        rgba(239, 68, 68, 0.15) 0%, 
        rgba(220, 38, 38, 0.18) 100%);
}

/* Alternating Row Colors für bessere Lesbarkeit */
.smg-dialog-pilot-demo .result-card-content.opening-hours-list .opening-hours-item:nth-child(even) {
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.02) 0%, 
        rgba(248, 250, 252, 0.8) 100%) !important;
}

.smg-dialog-pilot-demo .result-card-content.opening-hours-list .opening-hours-item:nth-child(even):hover {
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.05) 0%, 
        rgba(248, 250, 252, 0.95) 100%) !important;
}

/* Spezielle Formatierung für aktuell geöffnete Shops */
.smg-dialog-pilot-demo .result-card-content.opening-hours-list .opening-hours-item.status-open {
    border-color: rgba(16, 185, 129, 0.15);
}

.smg-dialog-pilot-demo .result-card-content.opening-hours-list .opening-hours-item.status-open::before {
    background: linear-gradient(180deg, #10b981 0%, #059669 100%);
    opacity: 0.8;
}

.smg-dialog-pilot-demo .result-card-content.opening-hours-list .opening-hours-item.status-closed {
    opacity: 0.85;
}

.smg-dialog-pilot-demo .result-card-content.opening-hours-list .opening-hours-item.status-closed::before {
    background: linear-gradient(180deg, #ef4444 0%, #dc2626 100%);
    opacity: 0.6;
}

/* Mobile Optimierung für die Liste */
@media (max-width: 768px) {
    .smg-dialog-pilot-demo .result-card-content.opening-hours-list .opening-hours-item {
        padding: 8px 12px;
        height: 48px;
        flex-direction: row;
        align-items: center;
    }
    
    .smg-dialog-pilot-demo .result-card-content.opening-hours-list .opening-hours-item .item-info {
        padding-left: 8px;
        gap: 12px;
    }
    
    .smg-dialog-pilot-demo .result-card-content.opening-hours-list .opening-hours-item .item-name {
        font-size: 0.85rem;
        min-width: 70px;
        gap: 6px;
    }
    
    .smg-dialog-pilot-demo .result-card-content.opening-hours-list .opening-hours-item .item-name::before {
        font-size: 0.8rem;
    }
    
    .smg-dialog-pilot-demo .result-card-content.opening-hours-list .opening-hours-item .item-details {
        font-size: 0.75rem;
    }
    
    .smg-dialog-pilot-demo .result-card-content.opening-hours-list .opening-hours-item .item-status {
        padding: 4px 8px;
        font-size: 0.65rem;
        min-width: 60px;
    }
}

@media (max-width: 480px) {
    .smg-dialog-pilot-demo .result-card-content.opening-hours-list .opening-hours-item {
        padding: 6px 10px;
        height: 44px;
    }
    
    .smg-dialog-pilot-demo .result-card-content.opening-hours-list .opening-hours-item .item-info {
        padding-left: 6px;
        gap: 8px;
    }
    
    .smg-dialog-pilot-demo .result-card-content.opening-hours-list .opening-hours-item .item-name {
        font-size: 0.8rem;
        min-width: 60px;
        gap: 4px;
    }
    
    .smg-dialog-pilot-demo .result-card-content.opening-hours-list .opening-hours-item .item-details {
        font-size: 0.7rem;
    }
    
    .smg-dialog-pilot-demo .result-card-content.opening-hours-list .opening-hours-item .item-status {
        padding: 3px 6px;
        font-size: 0.6rem;
        min-width: 50px;
    }
}
