.scroll-x,
.cat-item,
.cat-circle,
.avatar {
    display: flex;
}

.cat-item,
.cat-circle,
.avatar {
    align-items: center;
}

.cat-circle,
.avatar {
    justify-content: center;
    border-radius: 50%;
}

.cat-item {
    flex-direction: column;
    gap: 8px;
    min-width: 80px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.cat-item:hover,
.card-service:hover {
    transform: translateY(-3px);
}

.scroll-x {
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 10px;
    scrollbar-width: none;
}

.scroll-x::-webkit-scrollbar {
    display: none;
}

.cat-circle {
    width: 64px;
    height: 64px;
    font-size: 24px;
}

.cat-text {
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    color: var(--text-gray);
}

.bg-blue-light {
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--pro-blue);
}

.bg-orange-light {
    background-color: rgba(245, 158, 11, 0.1);
    color: var(--warning-orange);
}

.bg-green-light {
    background-color: rgba(34, 197, 94, 0.1);
    color: var(--success-green);
}

.btn-filter {
    background-color: var(--white);
    border: 1px solid var(--bg-light);
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 16px;
    white-space: nowrap;
    transition: background-color 0.2s ease;
    color: var(--text-gray);
}

.btn-filter:hover {
    background-color: var(--bg-light);
}

.card-service {
    border: 1px solid var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
    cursor: pointer;
    background-color: var(--white);
}

.card-service:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.card-img {
    position: relative;
    height: 200px;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-pro {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--pro-blue);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
}

.avatar {
    width: 24px;
    height: 24px;
    background-color: var(--bg-light);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-gray);
}