.shop-categories-thumbnails { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; max-width: 800px; margin: 25px auto; padding: 0 15px; }
.cat-thumb-item { display: flex; flex-direction: column; align-items: center; text-decoration: none; color: #222; text-align: center; transition: transform 0.2s ease; }
.cat-thumb-item:hover { transform: translateY(-2px); }
.cat-thumb-img { width: 75px; height: 75px; border-radius: 50%; overflow: hidden; border: 1px solid #e5e5e5; background: #ffffff; margin-bottom: 8px; display: flex; justify-content: center; align-items: center; box-shadow: 0 3px 10px rgba(0,0,0,0.03); }
.cat-thumb-img img { width: 100%; height: 100%; object-fit: cover; }
.cat-thumb-title { font-size: 13px; font-weight: 600; line-height: 1.4; color: #222; display: block; word-wrap: break-word; }
@media (max-width: 576px) { .shop-categories-thumbnails { gap: 8px; padding: 0 10px; }
.cat-thumb-img { width: 60px; height: 60px; }
.cat-thumb-title { font-size: 11px; }
 }