/* ================================
   Shop Categories Page Styles
   ================================ */

/* The base styles for hero, filter, and grid are inherited from produkte.css 
   which is used for both shop and category pages */

/* Category Specific Styles */
.category-card {
    position: relative;
}

.category-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #005a73 0%, #0077a0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.category-icon-large i {
    font-size: 2rem;
    color: white;
}

/* Category Statistics */
.category-stats {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.stat-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    background: #f0f7f9;
    border-radius: 15px;
    font-size: 0.9rem;
    color: #005a73;
}

.stat-badge i {
    font-size: 0.85rem;
}

/* Subcategories Preview */
.subcategories-preview {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.subcategories-preview strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 0.9rem;
}

.subcategory-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    padding: 0.25rem 0.75rem;
    background: white;
    border: 1px solid #ddd;
    border-radius: 15px;
    font-size: 0.85rem;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag:hover {
    border-color: #005a73;
    color: #005a73;
    background: #f0f7f9;
}

.tag.more {
    background: #f8f9fa;
    border-color: #f8f9fa;
    color: #888;
    cursor: default;
}

/* CRM Actions - Override for categories */
.category-card .crm-actions {
    margin-top: auto;
    padding-top: 1rem;
}

.category-card .btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: #005a73;
    color: white;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: background 0.3s ease;
}

.category-card .btn:hover {
    background: #004a5c;
}

.category-card .btn i {
    font-size: 0.9rem;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    grid-column: 1 / -1;
}

.empty-state p {
    color: #666;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .category-icon-large {
        width: 60px;
        height: 60px;
    }
    
    .category-icon-large i {
        font-size: 1.5rem;
    }
    
    .category-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .stat-badge {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .subcategory-tags {
        flex-direction: column;
    }
    
    .tag {
        text-align: center;
    }
}