/**
 * Ballas Maschinen - Kategorie-Vorschläge Widget Styling
 * Passt zu Shopware 6 Design
 */

.category-suggest-widget {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 12px 16px;
    margin-bottom: 12px;
    animation: fadeInDown 0.3s ease-out;
}

/* Header mit Icon */
.category-suggest-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #495057;
    margin-bottom: 10px;
}

.category-suggest-icon {
    color: #007bff;
    flex-shrink: 0;
}

/* Button Container */
.category-suggest-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Kategorie Buttons */
.category-suggest-button {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: white;
    border: 1px solid #007bff;
    border-radius: 4px;
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
}

.category-suggest-button:hover {
    background: #007bff;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 123, 255, 0.2);
}

.category-suggest-button:active {
    transform: translateY(0);
}

/* Animation */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .category-suggest-widget {
        padding: 10px 12px;
    }

    .category-suggest-header {
        font-size: 13px;
    }

    .category-suggest-button {
        padding: 6px 12px;
        font-size: 13px;
    }
}

/* Dark Mode Support (optional) */
@media (prefers-color-scheme: dark) {
    .category-suggest-widget {
        background: #2d3748;
        border-color: #4a5568;
    }

    .category-suggest-header {
        color: #e2e8f0;
    }

    .category-suggest-button {
        background: #1a202c;
        border-color: #3182ce;
        color: #63b3ed;
    }

    .category-suggest-button:hover {
        background: #3182ce;
        color: white;
    }
}

/* Variante: Kompakt (wenn Platz knapp ist) */
.category-suggest-widget.compact {
    padding: 8px 12px;
}

.category-suggest-widget.compact .category-suggest-header {
    font-size: 13px;
    margin-bottom: 6px;
}

.category-suggest-widget.compact .category-suggest-button {
    padding: 6px 12px;
    font-size: 13px;
}

/* Variante: Prominente Anzeige */
.category-suggest-widget.prominent {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.category-suggest-widget.prominent .category-suggest-header {
    color: white;
}

.category-suggest-widget.prominent .category-suggest-icon {
    color: white;
}

.category-suggest-widget.prominent .category-suggest-button {
    background: white;
    border-color: white;
    color: #667eea;
}

.category-suggest-widget.prominent .category-suggest-button:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.05);
}
