.categories-scroll { display: flex; overflow-x: auto; gap: 15px; padding: 10px; scrollbar-width: thin; } .categories-scroll::-webkit-scrollbar { height: 6px; } .categories-scroll::-webkit-scrollbar-thumb { background: #ccc; border-radius: 4px; } .category { flex: 0 0 auto; text-align: center; } .category-image { border-radius: 50%; width: 100px; height: 100px; object-fit: cover; transition: transform 0.3s ease; } .category-image:hover { transform: scale(1.1); } .category h3 { margin-top: 8px; font-size: 14px; }