.category-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e8f0fe 100%);
    border-bottom: 1px solid #e5e7eb;
}

.hover-lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12) !important;
}

.tool-icon {
    transition: transform 0.3s ease;
}

.tool-card-category:hover .tool-icon {
    transform: scale(1.1);
}

.empty-state {
    max-width: 500px;
    margin: 0 auto;
}

#tools-container [data-featured="true"] {
    order: -1;
}

[data-filter] {
    transition: all 0.2s ease;
}

[data-filter].active {
    background: #2563eb !important;
    color: white !important;
}