.categories-wrapper-circle {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
}
.category-home-item {
    text-align: center;
    min-width: 120px;
    flex: 0 0 auto;
}
.category-item-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}
.category-icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f8e8ea, #f2d7da);
    border: 2px solid #e8c1c5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.category-icon-circle:hover {
    background: linear-gradient(135deg, #f5dde0, #efc8cc);
}
.category-icon-circle img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.category-title-circle {
    font-size: 13px;
    color: #4a4a4a;
    font-weight: 500;
    text-align: center;
    transition: color 0.3s ease;
    max-width: 100px;
    word-wrap: break-word;
    line-height: 1.3;
}
.category-item-circle:hover .category-title-circle {
    color: #2c2c2c;
}
@media (max-width: 768px) {
    .categories-wrapper-circle {
        gap: 15px;
        justify-content: flex-start;
    }
    .category-home-item {
        min-width: 100px;
    }
    .category-icon-circle {
        width: 90px;
        height: 90px;
    }
    .category-title-circle {
        font-size: 12px;
        max-width: 90px;
    }
}
@media (max-width: 480px) {
    .categories-wrapper-circle {
        gap: 10px;
        justify-content: flex-start;
    }
    .category-home-item {
        min-width: 80px;
    }
    .category-icon-circle {
        width: 70px;
        height: 70px;
    }
    .category-title-circle {
        font-size: 11px;
        max-width: 70px;
    }
}
